Latest generation

This commit is contained in:
ci core model
2026-05-27 12:04:31 +00:00
parent f753164d09
commit 9a67751bfe
2 changed files with 14 additions and 2 deletions

View File

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

14
site.ts
View File

@@ -1362,6 +1362,10 @@ export interface SiteBookingContext {
* @generated from protobuf field: string LanguageCode = 11
*/
LanguageCode: string;
/**
* @generated from protobuf field: bool isSiteStandAlone = 12
*/
isSiteStandAlone: boolean;
}
/**
* @generated from protobuf message api.SiteProjectBookingContext
@@ -5256,7 +5260,8 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
{ no: 8, name: "PhotoURI", kind: "scalar", localName: "PhotoURI", jsonName: "PhotoURI", 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: 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*/ }
]);
}
create(value?: PartialMessage<SiteBookingContext>): SiteBookingContext {
@@ -5271,6 +5276,7 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
message.PrefixAppointmentID = "";
message.RoundedPeriodInMinutes = 0;
message.LanguageCode = "";
message.isSiteStandAlone = false;
if (value !== undefined)
reflectionMergePartial<SiteBookingContext>(this, message, value);
return message;
@@ -5313,6 +5319,9 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
case /* string LanguageCode */ 11:
message.LanguageCode = reader.string();
break;
case /* bool isSiteStandAlone */ 12:
message.isSiteStandAlone = reader.bool();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -5358,6 +5367,9 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
/* string LanguageCode = 11; */
if (message.LanguageCode !== "")
writer.tag(11, WireType.LengthDelimited).string(message.LanguageCode);
/* bool isSiteStandAlone = 12; */
if (message.isSiteStandAlone !== false)
writer.tag(12, WireType.Varint).bool(message.isSiteStandAlone);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);