You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -80,9 +80,9 @@ export interface ActorSetSiteAliasPayload {
|
|||||||
*/
|
*/
|
||||||
AppointmentConstraints?: ActorAuthorisation;
|
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
|
* @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: 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: 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: 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" });
|
], { "api.messageType": "Command", "api.payload": true, "api.action": "SetSiteAlias" });
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<ActorSetSiteAliasPayload>): ActorSetSiteAliasPayload {
|
create(value?: PartialMessage<ActorSetSiteAliasPayload>): ActorSetSiteAliasPayload {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
message.IsSlotBookingEnabled = false;
|
message.IsSlotBookingEnabled = false;
|
||||||
message.ActorName = "";
|
message.Name = "";
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<ActorSetSiteAliasPayload>(this, message, value);
|
reflectionMergePartial<ActorSetSiteAliasPayload>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
@@ -294,8 +294,8 @@ class ActorSetSiteAliasPayload$Type extends MessageType<ActorSetSiteAliasPayload
|
|||||||
case /* api.ActorAuthorisation AppointmentConstraints */ 3:
|
case /* api.ActorAuthorisation AppointmentConstraints */ 3:
|
||||||
message.AppointmentConstraints = ActorAuthorisation.internalBinaryRead(reader, reader.uint32(), options, message.AppointmentConstraints);
|
message.AppointmentConstraints = ActorAuthorisation.internalBinaryRead(reader, reader.uint32(), options, message.AppointmentConstraints);
|
||||||
break;
|
break;
|
||||||
case /* string ActorName */ 4:
|
case /* string Name */ 4:
|
||||||
message.ActorName = reader.string();
|
message.Name = reader.string();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
@@ -318,9 +318,9 @@ class ActorSetSiteAliasPayload$Type extends MessageType<ActorSetSiteAliasPayload
|
|||||||
/* api.ActorAuthorisation AppointmentConstraints = 3; */
|
/* api.ActorAuthorisation AppointmentConstraints = 3; */
|
||||||
if (message.AppointmentConstraints)
|
if (message.AppointmentConstraints)
|
||||||
ActorAuthorisation.internalBinaryWrite(message.AppointmentConstraints, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
ActorAuthorisation.internalBinaryWrite(message.AppointmentConstraints, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||||
/* string ActorName = 4; */
|
/* string Name = 4; */
|
||||||
if (message.ActorName !== "")
|
if (message.Name !== "")
|
||||||
writer.tag(4, WireType.LengthDelimited).string(message.ActorName);
|
writer.tag(4, WireType.LengthDelimited).string(message.Name);
|
||||||
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);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@reflex-platform/npm-core-sdk",
|
"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",
|
"description": "npm libs from core model proto files",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"main": "index.ts",
|
"main": "index.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user