Latest generation

This commit is contained in:
ci core model
2026-04-28 09:48:43 +00:00
parent a2502d3b7c
commit b9ebc8859c
2 changed files with 8 additions and 8 deletions

View File

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

14
site.ts
View File

@@ -1257,9 +1257,9 @@ export interface GetBookingSegmentationsResponse {
*/
SegmentationChoices: Segmentation[];
/**
* @generated from protobuf field: repeated api.MetadataElement SegmentationKeys = 2
* @generated from protobuf field: repeated api.PrjMetadata SegmentationKeys = 2
*/
SegmentationKeys: MetadataElement[];
SegmentationKeys: PrjMetadata[];
}
/**
* @generated from protobuf message api.GetMyBookingContextRequest
@@ -4975,7 +4975,7 @@ class GetBookingSegmentationsResponse$Type extends MessageType<GetBookingSegment
constructor() {
super("api.GetBookingSegmentationsResponse", [
{ no: 1, name: "SegmentationChoices", kind: "message", localName: "SegmentationChoices", jsonName: "SegmentationChoices", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Segmentation },
{ no: 2, name: "SegmentationKeys", kind: "message", localName: "SegmentationKeys", jsonName: "SegmentationKeys", repeat: 2 /*RepeatType.UNPACKED*/, T: () => MetadataElement }
{ no: 2, name: "SegmentationKeys", kind: "message", localName: "SegmentationKeys", jsonName: "SegmentationKeys", repeat: 2 /*RepeatType.UNPACKED*/, T: () => PrjMetadata }
]);
}
create(value?: PartialMessage<GetBookingSegmentationsResponse>): GetBookingSegmentationsResponse {
@@ -4994,8 +4994,8 @@ class GetBookingSegmentationsResponse$Type extends MessageType<GetBookingSegment
case /* repeated api.Segmentation SegmentationChoices = 1 [deprecated = true] */ 1:
message.SegmentationChoices.push(Segmentation.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* repeated api.MetadataElement SegmentationKeys */ 2:
message.SegmentationKeys.push(MetadataElement.internalBinaryRead(reader, reader.uint32(), options));
case /* repeated api.PrjMetadata SegmentationKeys */ 2:
message.SegmentationKeys.push(PrjMetadata.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
let u = options.readUnknownField;
@@ -5012,9 +5012,9 @@ class GetBookingSegmentationsResponse$Type extends MessageType<GetBookingSegment
/* repeated api.Segmentation SegmentationChoices = 1 [deprecated = true]; */
for (let i = 0; i < message.SegmentationChoices.length; i++)
Segmentation.internalBinaryWrite(message.SegmentationChoices[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.MetadataElement SegmentationKeys = 2; */
/* repeated api.PrjMetadata SegmentationKeys = 2; */
for (let i = 0; i < message.SegmentationKeys.length; i++)
MetadataElement.internalBinaryWrite(message.SegmentationKeys[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
PrjMetadata.internalBinaryWrite(message.SegmentationKeys[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);