Latest generation

This commit is contained in:
ci core model
2026-05-27 12:07:54 +00:00
parent 9a67751bfe
commit b990556593
2 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@reflex-platform/npm-core-sdk", "name": "@reflex-platform/npm-core-sdk",
"version": "1.14.0-SNAPSHOT-260527120402", "version": "1.14.0-SNAPSHOT-260527120717",
"description": "npm libs from core model proto files", "description": "npm libs from core model proto files",
"homepage": "", "homepage": "",
"main": "index.ts", "main": "index.ts",

18
site.ts
View File

@@ -1363,9 +1363,9 @@ export interface SiteBookingContext {
*/ */
LanguageCode: string; LanguageCode: string;
/** /**
* @generated from protobuf field: bool isSiteStandAlone = 12 * @generated from protobuf field: bool IsSiteStandAlone = 12
*/ */
isSiteStandAlone: boolean; IsSiteStandAlone: boolean;
} }
/** /**
* @generated from protobuf message api.SiteProjectBookingContext * @generated from protobuf message api.SiteProjectBookingContext
@@ -5261,7 +5261,7 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
{ no: 9, name: "PrefixAppointmentID", kind: "scalar", localName: "PrefixAppointmentID", jsonName: "PrefixAppointmentID", T: 9 /*ScalarType.STRING*/ }, { no: 9, name: "PrefixAppointmentID", kind: "scalar", localName: "PrefixAppointmentID", jsonName: "PrefixAppointmentID", T: 9 /*ScalarType.STRING*/ },
{ no: 10, name: "RoundedPeriodInMinutes", kind: "scalar", localName: "RoundedPeriodInMinutes", jsonName: "RoundedPeriodInMinutes", T: 13 /*ScalarType.UINT32*/ }, { no: 10, name: "RoundedPeriodInMinutes", kind: "scalar", localName: "RoundedPeriodInMinutes", jsonName: "RoundedPeriodInMinutes", T: 13 /*ScalarType.UINT32*/ },
{ no: 11, name: "LanguageCode", kind: "scalar", localName: "LanguageCode", jsonName: "LanguageCode", T: 9 /*ScalarType.STRING*/ }, { no: 11, name: "LanguageCode", kind: "scalar", localName: "LanguageCode", jsonName: "LanguageCode", T: 9 /*ScalarType.STRING*/ },
{ no: 12, name: "isSiteStandAlone", kind: "scalar", T: 8 /*ScalarType.BOOL*/ } { no: 12, name: "IsSiteStandAlone", kind: "scalar", localName: "IsSiteStandAlone", jsonName: "IsSiteStandAlone", T: 8 /*ScalarType.BOOL*/ }
]); ]);
} }
create(value?: PartialMessage<SiteBookingContext>): SiteBookingContext { create(value?: PartialMessage<SiteBookingContext>): SiteBookingContext {
@@ -5276,7 +5276,7 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
message.PrefixAppointmentID = ""; message.PrefixAppointmentID = "";
message.RoundedPeriodInMinutes = 0; message.RoundedPeriodInMinutes = 0;
message.LanguageCode = ""; message.LanguageCode = "";
message.isSiteStandAlone = false; message.IsSiteStandAlone = false;
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<SiteBookingContext>(this, message, value); reflectionMergePartial<SiteBookingContext>(this, message, value);
return message; return message;
@@ -5319,8 +5319,8 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
case /* string LanguageCode */ 11: case /* string LanguageCode */ 11:
message.LanguageCode = reader.string(); message.LanguageCode = reader.string();
break; break;
case /* bool isSiteStandAlone */ 12: case /* bool IsSiteStandAlone */ 12:
message.isSiteStandAlone = reader.bool(); message.IsSiteStandAlone = reader.bool();
break; break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
@@ -5367,9 +5367,9 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
/* string LanguageCode = 11; */ /* string LanguageCode = 11; */
if (message.LanguageCode !== "") if (message.LanguageCode !== "")
writer.tag(11, WireType.LengthDelimited).string(message.LanguageCode); writer.tag(11, WireType.LengthDelimited).string(message.LanguageCode);
/* bool isSiteStandAlone = 12; */ /* bool IsSiteStandAlone = 12; */
if (message.isSiteStandAlone !== false) if (message.IsSiteStandAlone !== false)
writer.tag(12, WireType.Varint).bool(message.isSiteStandAlone); writer.tag(12, WireType.Varint).bool(message.IsSiteStandAlone);
let u = options.writeUnknownFields; let u = options.writeUnknownFields;
if (u !== false) if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);