From 62ed43706f76ba466bd5008dc316a8fcd5564b31 Mon Sep 17 00:00:00 2001 From: ci core model Date: Wed, 18 Feb 2026 10:30:56 +0000 Subject: [PATCH] Latest generation --- actorAction.ts | 26 +++++++++++++++++++++++++- package.json | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/actorAction.ts b/actorAction.ts index e7c71f6..e838053 100644 --- a/actorAction.ts +++ b/actorAction.ts @@ -116,6 +116,14 @@ export interface ActorSetSiteAlias { * @generated from protobuf message api.ActorClearSiteAliasPayload */ export interface ActorClearSiteAliasPayload { + /** + * @generated from protobuf field: api.SiteAlias SiteAlias = 1 + */ + SiteAlias?: SiteAlias; + /** + * @generated from protobuf field: bool IsSlotBookingEnabled = 2 + */ + IsSlotBookingEnabled: boolean; } /** * @generated from protobuf message api.ClearSiteAlias @@ -408,10 +416,14 @@ export const ActorSetSiteAlias = new ActorSetSiteAlias$Type(); // @generated message type with reflection information, may provide speed optimized methods class ActorClearSiteAliasPayload$Type extends MessageType { constructor() { - super("api.ActorClearSiteAliasPayload", [], { "api.messageType": "Command", "api.payload": true, "api.action": "ClearSiteAlias" }); + super("api.ActorClearSiteAliasPayload", [ + { 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*/ } + ], { "api.messageType": "Command", "api.payload": true, "api.action": "ClearSiteAlias" }); } create(value?: PartialMessage): ActorClearSiteAliasPayload { const message = globalThis.Object.create((this.messagePrototype!)); + message.IsSlotBookingEnabled = false; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -421,6 +433,12 @@ class ActorClearSiteAliasPayload$Type extends MessageType