Latest generation

This commit is contained in:
ci core model
2025-12-02 10:31:48 +00:00
parent 469fea438b
commit f8354a684d
2 changed files with 14 additions and 2 deletions

View File

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

14
site.ts
View File

@@ -1330,6 +1330,10 @@ export interface SiteProjectBookingContext {
* @generated from protobuf field: repeated api.SiteProjectAptTypeBookingContext ByAppointmentTypes = 2
*/
ByAppointmentTypes: SiteProjectAptTypeBookingContext[];
/**
* @generated from protobuf field: string ProjectName = 3
*/
ProjectName: string;
}
/**
* @generated from protobuf message api.SiteProjectAptTypeBookingContext
@@ -5451,13 +5455,15 @@ class SiteProjectBookingContext$Type extends MessageType<SiteProjectBookingConte
constructor() {
super("api.SiteProjectBookingContext", [
{ no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/ },
{ no: 2, name: "ByAppointmentTypes", kind: "message", localName: "ByAppointmentTypes", jsonName: "ByAppointmentTypes", repeat: 2 /*RepeatType.UNPACKED*/, T: () => SiteProjectAptTypeBookingContext }
{ no: 2, name: "ByAppointmentTypes", kind: "message", localName: "ByAppointmentTypes", jsonName: "ByAppointmentTypes", repeat: 2 /*RepeatType.UNPACKED*/, T: () => SiteProjectAptTypeBookingContext },
{ no: 3, name: "ProjectName", kind: "scalar", localName: "ProjectName", jsonName: "ProjectName", T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<SiteProjectBookingContext>): SiteProjectBookingContext {
const message = globalThis.Object.create((this.messagePrototype!));
message.ProjectID = "";
message.ByAppointmentTypes = [];
message.ProjectName = "";
if (value !== undefined)
reflectionMergePartial<SiteProjectBookingContext>(this, message, value);
return message;
@@ -5473,6 +5479,9 @@ class SiteProjectBookingContext$Type extends MessageType<SiteProjectBookingConte
case /* repeated api.SiteProjectAptTypeBookingContext ByAppointmentTypes */ 2:
message.ByAppointmentTypes.push(SiteProjectAptTypeBookingContext.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* string ProjectName */ 3:
message.ProjectName = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -5491,6 +5500,9 @@ class SiteProjectBookingContext$Type extends MessageType<SiteProjectBookingConte
/* repeated api.SiteProjectAptTypeBookingContext ByAppointmentTypes = 2; */
for (let i = 0; i < message.ByAppointmentTypes.length; i++)
SiteProjectAptTypeBookingContext.internalBinaryWrite(message.ByAppointmentTypes[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
/* string ProjectName = 3; */
if (message.ProjectName !== "")
writer.tag(3, WireType.LengthDelimited).string(message.ProjectName);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);