You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -80,9 +80,9 @@ export interface ActorSetSiteAliasPayload {
|
||||
*/
|
||||
AppointmentConstraints?: ActorAuthorisation;
|
||||
/**
|
||||
* @generated from protobuf field: string ActorName = 4
|
||||
* @generated from protobuf field: string Name = 4
|
||||
*/
|
||||
ActorName: string;
|
||||
Name: string;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.ActorSetSiteAlias
|
||||
@@ -269,13 +269,13 @@ class ActorSetSiteAliasPayload$Type extends MessageType<ActorSetSiteAliasPayload
|
||||
{ no: 1, name: "SiteAlias", kind: "message", localName: "SiteAlias", jsonName: "SiteAlias", T: () => SiteAlias },
|
||||
{ no: 2, name: "IsSlotBookingEnabled", kind: "scalar", localName: "IsSlotBookingEnabled", jsonName: "IsSlotBookingEnabled", T: 8 /*ScalarType.BOOL*/ },
|
||||
{ no: 3, name: "AppointmentConstraints", kind: "message", localName: "AppointmentConstraints", jsonName: "AppointmentConstraints", T: () => ActorAuthorisation },
|
||||
{ no: 4, name: "ActorName", kind: "scalar", localName: "ActorName", jsonName: "ActorName", T: 9 /*ScalarType.STRING*/ }
|
||||
{ no: 4, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/ }
|
||||
], { "api.messageType": "Command", "api.payload": true, "api.action": "SetSiteAlias" });
|
||||
}
|
||||
create(value?: PartialMessage<ActorSetSiteAliasPayload>): ActorSetSiteAliasPayload {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.IsSlotBookingEnabled = false;
|
||||
message.ActorName = "";
|
||||
message.Name = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<ActorSetSiteAliasPayload>(this, message, value);
|
||||
return message;
|
||||
@@ -294,8 +294,8 @@ class ActorSetSiteAliasPayload$Type extends MessageType<ActorSetSiteAliasPayload
|
||||
case /* api.ActorAuthorisation AppointmentConstraints */ 3:
|
||||
message.AppointmentConstraints = ActorAuthorisation.internalBinaryRead(reader, reader.uint32(), options, message.AppointmentConstraints);
|
||||
break;
|
||||
case /* string ActorName */ 4:
|
||||
message.ActorName = reader.string();
|
||||
case /* string Name */ 4:
|
||||
message.Name = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
@@ -318,9 +318,9 @@ class ActorSetSiteAliasPayload$Type extends MessageType<ActorSetSiteAliasPayload
|
||||
/* api.ActorAuthorisation AppointmentConstraints = 3; */
|
||||
if (message.AppointmentConstraints)
|
||||
ActorAuthorisation.internalBinaryWrite(message.AppointmentConstraints, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||
/* string ActorName = 4; */
|
||||
if (message.ActorName !== "")
|
||||
writer.tag(4, WireType.LengthDelimited).string(message.ActorName);
|
||||
/* string Name = 4; */
|
||||
if (message.Name !== "")
|
||||
writer.tag(4, WireType.LengthDelimited).string(message.Name);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.12.0-SNAPSHOT-251217083501",
|
||||
"version": "1.12.0-SNAPSHOT-251217084536",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
Reference in New Issue
Block a user