You've already forked npm-core-sdk
Latest generation
This commit is contained in:
14
site.ts
14
site.ts
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user