Latest generation

This commit is contained in:
ci core model
2025-10-16 07:44:47 +00:00
parent f5687e9a40
commit 465afb3be9
2 changed files with 8 additions and 9 deletions

View File

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

15
site.ts
View File

@@ -11,7 +11,6 @@ import { UnknownFieldHandler } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
import { SegmentationFilter } from "./slotbooking";
import { Period } from "./shared";
import { QuantityByUnit } from "./slotbooking";
import { Slot } from "./slotbooking";
@@ -1309,9 +1308,9 @@ export interface GetPossibleSegmentationOnSiteForBookingResponse {
/**
* Name of the Site
*
* @generated from protobuf field: repeated api.SegmentationFilter SegmentationChoices = 1
* @generated from protobuf field: repeated api.Segmentation SegmentationChoices = 1
*/
SegmentationChoices: SegmentationFilter[];
SegmentationChoices: Segmentation[];
}
// @generated message type with reflection information, may provide speed optimized methods
class Site$Type extends MessageType<Site> {
@@ -4927,7 +4926,7 @@ export const GetPossibleSegmentationOnSiteForBookingRequest = new GetPossibleSeg
class GetPossibleSegmentationOnSiteForBookingResponse$Type extends MessageType<GetPossibleSegmentationOnSiteForBookingResponse> {
constructor() {
super("api.GetPossibleSegmentationOnSiteForBookingResponse", [
{ no: 1, name: "SegmentationChoices", kind: "message", localName: "SegmentationChoices", jsonName: "SegmentationChoices", repeat: 2 /*RepeatType.UNPACKED*/, T: () => SegmentationFilter }
{ no: 1, name: "SegmentationChoices", kind: "message", localName: "SegmentationChoices", jsonName: "SegmentationChoices", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Segmentation }
]);
}
create(value?: PartialMessage<GetPossibleSegmentationOnSiteForBookingResponse>): GetPossibleSegmentationOnSiteForBookingResponse {
@@ -4942,8 +4941,8 @@ class GetPossibleSegmentationOnSiteForBookingResponse$Type extends MessageType<G
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* repeated api.SegmentationFilter SegmentationChoices */ 1:
message.SegmentationChoices.push(SegmentationFilter.internalBinaryRead(reader, reader.uint32(), options));
case /* repeated api.Segmentation SegmentationChoices */ 1:
message.SegmentationChoices.push(Segmentation.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
let u = options.readUnknownField;
@@ -4957,9 +4956,9 @@ class GetPossibleSegmentationOnSiteForBookingResponse$Type extends MessageType<G
return message;
}
internalBinaryWrite(message: GetPossibleSegmentationOnSiteForBookingResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* repeated api.SegmentationFilter SegmentationChoices = 1; */
/* repeated api.Segmentation SegmentationChoices = 1; */
for (let i = 0; i < message.SegmentationChoices.length; i++)
SegmentationFilter.internalBinaryWrite(message.SegmentationChoices[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
Segmentation.internalBinaryWrite(message.SegmentationChoices[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);