Latest generation

This commit is contained in:
ci core model
2026-03-17 13:05:36 +00:00
parent c9867a5c31
commit 64f3718241
4 changed files with 131 additions and 47 deletions

View File

@@ -41,12 +41,6 @@ export interface AliasPropertiesAppointmentScheduling {
* @generated from protobuf field: string ActorName = 4
*/
ActorName: string;
/**
* Restriction rule IDs which will be applied when this alias is used.
*
* @generated from protobuf field: repeated string RestrictionRuleIDs = 5
*/
RestrictionRuleIDs: string[];
}
/**
* Alias represents a named link from one resource to another.
@@ -237,8 +231,7 @@ class AliasPropertiesAppointmentScheduling$Type extends MessageType<AliasPropert
{ no: 1, name: "AptType", kind: "enum", localName: "AptType", jsonName: "AptType", T: () => ["api.AppointmentType", AppointmentType], options: { "validate.rules": { enum: { definedOnly: true } } } },
{ no: 2, name: "LoadingCommandIdentifierEntry", kind: "enum", localName: "LoadingCommandIdentifierEntry", jsonName: "LoadingCommandIdentifierEntry", T: () => ["api.CommandIdentifierEntry", CommandIdentifierEntry], options: { "validate.rules": { enum: { definedOnly: true } } } },
{ no: 3, name: "UnLoadingCommandIdentifierEntry", kind: "enum", localName: "UnLoadingCommandIdentifierEntry", jsonName: "UnLoadingCommandIdentifierEntry", T: () => ["api.CommandIdentifierEntry", CommandIdentifierEntry], options: { "validate.rules": { enum: { definedOnly: true } } } },
{ no: 4, name: "ActorName", kind: "scalar", localName: "ActorName", jsonName: "ActorName", T: 9 /*ScalarType.STRING*/ },
{ no: 5, name: "RestrictionRuleIDs", kind: "scalar", localName: "RestrictionRuleIDs", jsonName: "RestrictionRuleIDs", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ }
{ no: 4, name: "ActorName", kind: "scalar", localName: "ActorName", jsonName: "ActorName", T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<AliasPropertiesAppointmentScheduling>): AliasPropertiesAppointmentScheduling {
@@ -247,7 +240,6 @@ class AliasPropertiesAppointmentScheduling$Type extends MessageType<AliasPropert
message.LoadingCommandIdentifierEntry = 0;
message.UnLoadingCommandIdentifierEntry = 0;
message.ActorName = "";
message.RestrictionRuleIDs = [];
if (value !== undefined)
reflectionMergePartial<AliasPropertiesAppointmentScheduling>(this, message, value);
return message;
@@ -269,9 +261,6 @@ class AliasPropertiesAppointmentScheduling$Type extends MessageType<AliasPropert
case /* string ActorName */ 4:
message.ActorName = reader.string();
break;
case /* repeated string RestrictionRuleIDs */ 5:
message.RestrictionRuleIDs.push(reader.string());
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -296,9 +285,6 @@ class AliasPropertiesAppointmentScheduling$Type extends MessageType<AliasPropert
/* string ActorName = 4; */
if (message.ActorName !== "")
writer.tag(4, WireType.LengthDelimited).string(message.ActorName);
/* repeated string RestrictionRuleIDs = 5; */
for (let i = 0; i < message.RestrictionRuleIDs.length; i++)
writer.tag(5, WireType.LengthDelimited).string(message.RestrictionRuleIDs[i]);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);