Latest generation

This commit is contained in:
ci core model
2025-11-19 15:53:45 +00:00
parent 6ab7b24769
commit 34b4bfbe23
2 changed files with 25 additions and 2 deletions

View File

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

25
site.ts
View File

@@ -787,6 +787,14 @@ export interface GetBookingContextResponse {
* @generated from protobuf field: repeated api.PrjMetadata MetaData = 4
*/
MetaData: PrjMetadata[];
/**
* @generated from protobuf field: api.Instruction Instruction = 15
*/
Instruction?: Instruction;
/**
* @generated from protobuf field: repeated api.Document InstructionDocuments = 16
*/
InstructionDocuments: Document[];
}
/**
* ForceBookAppointment
@@ -3379,7 +3387,9 @@ class GetBookingContextResponse$Type extends MessageType<GetBookingContextRespon
{ no: 1, name: "UnitIDs", kind: "scalar", localName: "UnitIDs", jsonName: "UnitIDs", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 2, name: "Segmentations", kind: "message", localName: "Segmentations", jsonName: "Segmentations", repeat: 2 /*RepeatType.UNPACKED*/, T: () => SegmentationFilter },
{ no: 3, name: "CarrierInformation", kind: "message", localName: "CarrierInformation", jsonName: "CarrierInformation", repeat: 2 /*RepeatType.UNPACKED*/, T: () => PrjMetadata },
{ no: 4, name: "MetaData", kind: "message", localName: "MetaData", jsonName: "MetaData", repeat: 2 /*RepeatType.UNPACKED*/, T: () => PrjMetadata }
{ no: 4, name: "MetaData", kind: "message", localName: "MetaData", jsonName: "MetaData", repeat: 2 /*RepeatType.UNPACKED*/, T: () => PrjMetadata },
{ no: 15, name: "Instruction", kind: "message", localName: "Instruction", jsonName: "Instruction", T: () => Instruction },
{ no: 16, name: "InstructionDocuments", kind: "message", localName: "InstructionDocuments", jsonName: "InstructionDocuments", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Document }
]);
}
create(value?: PartialMessage<GetBookingContextResponse>): GetBookingContextResponse {
@@ -3388,6 +3398,7 @@ class GetBookingContextResponse$Type extends MessageType<GetBookingContextRespon
message.Segmentations = [];
message.CarrierInformation = [];
message.MetaData = [];
message.InstructionDocuments = [];
if (value !== undefined)
reflectionMergePartial<GetBookingContextResponse>(this, message, value);
return message;
@@ -3409,6 +3420,12 @@ class GetBookingContextResponse$Type extends MessageType<GetBookingContextRespon
case /* repeated api.PrjMetadata MetaData */ 4:
message.MetaData.push(PrjMetadata.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* api.Instruction Instruction */ 15:
message.Instruction = Instruction.internalBinaryRead(reader, reader.uint32(), options, message.Instruction);
break;
case /* repeated api.Document InstructionDocuments */ 16:
message.InstructionDocuments.push(Document.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -3433,6 +3450,12 @@ class GetBookingContextResponse$Type extends MessageType<GetBookingContextRespon
/* repeated api.PrjMetadata MetaData = 4; */
for (let i = 0; i < message.MetaData.length; i++)
PrjMetadata.internalBinaryWrite(message.MetaData[i], writer.tag(4, WireType.LengthDelimited).fork(), options).join();
/* api.Instruction Instruction = 15; */
if (message.Instruction)
Instruction.internalBinaryWrite(message.Instruction, writer.tag(15, WireType.LengthDelimited).fork(), options).join();
/* repeated api.Document InstructionDocuments = 16; */
for (let i = 0; i < message.InstructionDocuments.length; i++)
Document.internalBinaryWrite(message.InstructionDocuments[i], writer.tag(16, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);