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.14.0-SNAPSHOT-260428093706",
|
"version": "1.14.0-SNAPSHOT-260428094758",
|
||||||
"description": "npm libs from core model proto files",
|
"description": "npm libs from core model proto files",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"main": "index.ts",
|
"main": "index.ts",
|
||||||
|
|||||||
14
site.ts
14
site.ts
@@ -1257,9 +1257,9 @@ export interface GetBookingSegmentationsResponse {
|
|||||||
*/
|
*/
|
||||||
SegmentationChoices: Segmentation[];
|
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
|
* @generated from protobuf message api.GetMyBookingContextRequest
|
||||||
@@ -4975,7 +4975,7 @@ class GetBookingSegmentationsResponse$Type extends MessageType<GetBookingSegment
|
|||||||
constructor() {
|
constructor() {
|
||||||
super("api.GetBookingSegmentationsResponse", [
|
super("api.GetBookingSegmentationsResponse", [
|
||||||
{ no: 1, name: "SegmentationChoices", kind: "message", localName: "SegmentationChoices", jsonName: "SegmentationChoices", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Segmentation },
|
{ 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 {
|
create(value?: PartialMessage<GetBookingSegmentationsResponse>): GetBookingSegmentationsResponse {
|
||||||
@@ -4994,8 +4994,8 @@ class GetBookingSegmentationsResponse$Type extends MessageType<GetBookingSegment
|
|||||||
case /* repeated api.Segmentation SegmentationChoices = 1 [deprecated = true] */ 1:
|
case /* repeated api.Segmentation SegmentationChoices = 1 [deprecated = true] */ 1:
|
||||||
message.SegmentationChoices.push(Segmentation.internalBinaryRead(reader, reader.uint32(), options));
|
message.SegmentationChoices.push(Segmentation.internalBinaryRead(reader, reader.uint32(), options));
|
||||||
break;
|
break;
|
||||||
case /* repeated api.MetadataElement SegmentationKeys */ 2:
|
case /* repeated api.PrjMetadata SegmentationKeys */ 2:
|
||||||
message.SegmentationKeys.push(MetadataElement.internalBinaryRead(reader, reader.uint32(), options));
|
message.SegmentationKeys.push(PrjMetadata.internalBinaryRead(reader, reader.uint32(), options));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
@@ -5012,9 +5012,9 @@ class GetBookingSegmentationsResponse$Type extends MessageType<GetBookingSegment
|
|||||||
/* repeated api.Segmentation SegmentationChoices = 1 [deprecated = true]; */
|
/* repeated api.Segmentation SegmentationChoices = 1 [deprecated = true]; */
|
||||||
for (let i = 0; i < message.SegmentationChoices.length; i++)
|
for (let i = 0; i < message.SegmentationChoices.length; i++)
|
||||||
Segmentation.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();
|
||||||
/* repeated api.MetadataElement SegmentationKeys = 2; */
|
/* repeated api.PrjMetadata SegmentationKeys = 2; */
|
||||||
for (let i = 0; i < message.SegmentationKeys.length; i++)
|
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;
|
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