You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@reflex-platform/npm-core-sdk",
|
"name": "@reflex-platform/npm-core-sdk",
|
||||||
"version": "1.13.0-SNAPSHOT-260219134032",
|
"version": "1.13.0-SNAPSHOT-260219135718",
|
||||||
"description": "npm libs from core model proto files",
|
"description": "npm libs from core model proto files",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"main": "index.ts",
|
"main": "index.ts",
|
||||||
|
|||||||
34
site.ts
34
site.ts
@@ -12,6 +12,7 @@ import type { PartialMessage } from "@protobuf-ts/runtime";
|
|||||||
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
||||||
import { MessageType } from "@protobuf-ts/runtime";
|
import { MessageType } from "@protobuf-ts/runtime";
|
||||||
import { CommandIdentifierEntry } from "./slotbooking";
|
import { CommandIdentifierEntry } from "./slotbooking";
|
||||||
|
import { AppointmentContent } from "./slotbooking";
|
||||||
import { Period } from "./shared";
|
import { Period } from "./shared";
|
||||||
import { WMSCommission } from "./slotbooking";
|
import { WMSCommission } from "./slotbooking";
|
||||||
import { SegmentationFilter } from "./slotbooking";
|
import { SegmentationFilter } from "./slotbooking";
|
||||||
@@ -1150,9 +1151,18 @@ export interface GetBookingSegmentationsRequest {
|
|||||||
*/
|
*/
|
||||||
AppointmentType: AppointmentType; // Unloading or Loading for the wanted appointment
|
AppointmentType: AppointmentType; // Unloading or Loading for the wanted appointment
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: repeated api.Commission Commissions = 4
|
* @deprecated
|
||||||
|
* @generated from protobuf field: repeated api.Commission Commissions = 4 [deprecated = true]
|
||||||
*/
|
*/
|
||||||
Commissions: Commission[]; // List of Commissions to check
|
Commissions: Commission[]; // List of Commissions to check
|
||||||
|
/**
|
||||||
|
* @generated from protobuf field: api.AppointmentContent Loading = 5
|
||||||
|
*/
|
||||||
|
Loading?: AppointmentContent;
|
||||||
|
/**
|
||||||
|
* @generated from protobuf field: api.AppointmentContent Unloading = 6
|
||||||
|
*/
|
||||||
|
Unloading?: AppointmentContent;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf message api.GetBookingSegmentationsResponse
|
* @generated from protobuf message api.GetBookingSegmentationsResponse
|
||||||
@@ -4546,8 +4556,10 @@ class GetBookingSegmentationsRequest$Type extends MessageType<GetBookingSegmenta
|
|||||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||||
{ no: 2, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/ },
|
{ no: 2, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/ },
|
||||||
{ no: 3, name: "AppointmentType", kind: "enum", localName: "AppointmentType", jsonName: "AppointmentType", T: () => ["api.AppointmentType", AppointmentType] },
|
{ no: 3, name: "AppointmentType", kind: "enum", localName: "AppointmentType", jsonName: "AppointmentType", T: () => ["api.AppointmentType", AppointmentType] },
|
||||||
{ no: 4, name: "Commissions", kind: "message", localName: "Commissions", jsonName: "Commissions", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Commission }
|
{ no: 4, name: "Commissions", kind: "message", localName: "Commissions", jsonName: "Commissions", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Commission },
|
||||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "ActorID", "AppointmentType", "Commissions"] } } });
|
{ no: 5, name: "Loading", kind: "message", localName: "Loading", jsonName: "Loading", T: () => AppointmentContent },
|
||||||
|
{ no: 6, name: "Unloading", kind: "message", localName: "Unloading", jsonName: "Unloading", T: () => AppointmentContent }
|
||||||
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "ActorID", "AppointmentType"] } } });
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<GetBookingSegmentationsRequest>): GetBookingSegmentationsRequest {
|
create(value?: PartialMessage<GetBookingSegmentationsRequest>): GetBookingSegmentationsRequest {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
@@ -4572,9 +4584,15 @@ class GetBookingSegmentationsRequest$Type extends MessageType<GetBookingSegmenta
|
|||||||
case /* api.AppointmentType AppointmentType */ 3:
|
case /* api.AppointmentType AppointmentType */ 3:
|
||||||
message.AppointmentType = reader.int32();
|
message.AppointmentType = reader.int32();
|
||||||
break;
|
break;
|
||||||
case /* repeated api.Commission Commissions */ 4:
|
case /* repeated api.Commission Commissions = 4 [deprecated = true] */ 4:
|
||||||
message.Commissions.push(Commission.internalBinaryRead(reader, reader.uint32(), options));
|
message.Commissions.push(Commission.internalBinaryRead(reader, reader.uint32(), options));
|
||||||
break;
|
break;
|
||||||
|
case /* api.AppointmentContent Loading */ 5:
|
||||||
|
message.Loading = AppointmentContent.internalBinaryRead(reader, reader.uint32(), options, message.Loading);
|
||||||
|
break;
|
||||||
|
case /* api.AppointmentContent Unloading */ 6:
|
||||||
|
message.Unloading = AppointmentContent.internalBinaryRead(reader, reader.uint32(), options, message.Unloading);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
if (u === "throw")
|
if (u === "throw")
|
||||||
@@ -4596,9 +4614,15 @@ class GetBookingSegmentationsRequest$Type extends MessageType<GetBookingSegmenta
|
|||||||
/* api.AppointmentType AppointmentType = 3; */
|
/* api.AppointmentType AppointmentType = 3; */
|
||||||
if (message.AppointmentType !== 0)
|
if (message.AppointmentType !== 0)
|
||||||
writer.tag(3, WireType.Varint).int32(message.AppointmentType);
|
writer.tag(3, WireType.Varint).int32(message.AppointmentType);
|
||||||
/* repeated api.Commission Commissions = 4; */
|
/* repeated api.Commission Commissions = 4 [deprecated = true]; */
|
||||||
for (let i = 0; i < message.Commissions.length; i++)
|
for (let i = 0; i < message.Commissions.length; i++)
|
||||||
Commission.internalBinaryWrite(message.Commissions[i], writer.tag(4, WireType.LengthDelimited).fork(), options).join();
|
Commission.internalBinaryWrite(message.Commissions[i], writer.tag(4, WireType.LengthDelimited).fork(), options).join();
|
||||||
|
/* api.AppointmentContent Loading = 5; */
|
||||||
|
if (message.Loading)
|
||||||
|
AppointmentContent.internalBinaryWrite(message.Loading, writer.tag(5, WireType.LengthDelimited).fork(), options).join();
|
||||||
|
/* api.AppointmentContent Unloading = 6; */
|
||||||
|
if (message.Unloading)
|
||||||
|
AppointmentContent.internalBinaryWrite(message.Unloading, writer.tag(6, WireType.LengthDelimited).fork(), options).join();
|
||||||
let u = options.writeUnknownFields;
|
let u = options.writeUnknownFields;
|
||||||
if (u !== false)
|
if (u !== false)
|
||||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||||
|
|||||||
Reference in New Issue
Block a user