You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.11.0-SNAPSHOT-250723091455",
|
||||
"version": "1.11.0-SNAPSHOT-250723125926",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
16
site.ts
16
site.ts
@@ -584,9 +584,9 @@ export interface GetAvailableSlotsResponse {
|
||||
*/
|
||||
export interface SlotGroupAndReason {
|
||||
/**
|
||||
* @generated from protobuf field: api.SlotGroup Slotgroup = 1
|
||||
* @generated from protobuf field: api.SlotGroup SlotGroup = 1
|
||||
*/
|
||||
Slotgroup?: SlotGroup;
|
||||
SlotGroup?: SlotGroup;
|
||||
/**
|
||||
* @generated from protobuf field: string Reason = 2
|
||||
*/
|
||||
@@ -2447,7 +2447,7 @@ export const GetAvailableSlotsResponse = new GetAvailableSlotsResponse$Type();
|
||||
class SlotGroupAndReason$Type extends MessageType<SlotGroupAndReason> {
|
||||
constructor() {
|
||||
super("api.SlotGroupAndReason", [
|
||||
{ no: 1, name: "Slotgroup", kind: "message", localName: "Slotgroup", jsonName: "Slotgroup", T: () => SlotGroup },
|
||||
{ no: 1, name: "SlotGroup", kind: "message", localName: "SlotGroup", jsonName: "SlotGroup", T: () => SlotGroup },
|
||||
{ no: 2, name: "Reason", kind: "scalar", localName: "Reason", jsonName: "Reason", T: 9 /*ScalarType.STRING*/ }
|
||||
]);
|
||||
}
|
||||
@@ -2463,8 +2463,8 @@ class SlotGroupAndReason$Type extends MessageType<SlotGroupAndReason> {
|
||||
while (reader.pos < end) {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* api.SlotGroup Slotgroup */ 1:
|
||||
message.Slotgroup = SlotGroup.internalBinaryRead(reader, reader.uint32(), options, message.Slotgroup);
|
||||
case /* api.SlotGroup SlotGroup */ 1:
|
||||
message.SlotGroup = SlotGroup.internalBinaryRead(reader, reader.uint32(), options, message.SlotGroup);
|
||||
break;
|
||||
case /* string Reason */ 2:
|
||||
message.Reason = reader.string();
|
||||
@@ -2481,9 +2481,9 @@ class SlotGroupAndReason$Type extends MessageType<SlotGroupAndReason> {
|
||||
return message;
|
||||
}
|
||||
internalBinaryWrite(message: SlotGroupAndReason, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* api.SlotGroup Slotgroup = 1; */
|
||||
if (message.Slotgroup)
|
||||
SlotGroup.internalBinaryWrite(message.Slotgroup, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
/* api.SlotGroup SlotGroup = 1; */
|
||||
if (message.SlotGroup)
|
||||
SlotGroup.internalBinaryWrite(message.SlotGroup, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
/* string Reason = 2; */
|
||||
if (message.Reason !== "")
|
||||
writer.tag(2, WireType.LengthDelimited).string(message.Reason);
|
||||
|
||||
Reference in New Issue
Block a user