Latest generation

This commit is contained in:
ci core model
2025-11-03 15:43:31 +00:00
parent 0178e3df16
commit 729b14a1e4
2 changed files with 14 additions and 2 deletions

14
site.ts
View File

@@ -1316,6 +1316,10 @@ export interface GetBasicSettingsResponse {
* @generated from protobuf field: string PhotoURI = 8
*/
PhotoURI: string;
/**
* @generated from protobuf field: string PrefixAppointmentID = 9
*/
PrefixAppointmentID: string;
}
/**
* @generated from protobuf message api.GetUnitsRequest
@@ -4983,7 +4987,8 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
{ no: 5, name: "Fax", kind: "scalar", localName: "Fax", jsonName: "Fax", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "Emails", kind: "scalar", localName: "Emails", jsonName: "Emails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 7, name: "ID", kind: "scalar", localName: "ID", jsonName: "ID", T: 9 /*ScalarType.STRING*/ },
{ no: 8, name: "PhotoURI", kind: "scalar", localName: "PhotoURI", jsonName: "PhotoURI", T: 9 /*ScalarType.STRING*/ }
{ no: 8, name: "PhotoURI", kind: "scalar", localName: "PhotoURI", jsonName: "PhotoURI", T: 9 /*ScalarType.STRING*/ },
{ no: 9, name: "PrefixAppointmentID", kind: "scalar", localName: "PrefixAppointmentID", jsonName: "PrefixAppointmentID", T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<GetBasicSettingsResponse>): GetBasicSettingsResponse {
@@ -4995,6 +5000,7 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
message.Emails = [];
message.ID = "";
message.PhotoURI = "";
message.PrefixAppointmentID = "";
if (value !== undefined)
reflectionMergePartial<GetBasicSettingsResponse>(this, message, value);
return message;
@@ -5028,6 +5034,9 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
case /* string PhotoURI */ 8:
message.PhotoURI = reader.string();
break;
case /* string PrefixAppointmentID */ 9:
message.PrefixAppointmentID = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -5064,6 +5073,9 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
/* string PhotoURI = 8; */
if (message.PhotoURI !== "")
writer.tag(8, WireType.LengthDelimited).string(message.PhotoURI);
/* string PrefixAppointmentID = 9; */
if (message.PrefixAppointmentID !== "")
writer.tag(9, WireType.LengthDelimited).string(message.PrefixAppointmentID);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);