You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -85,10 +85,6 @@ export interface AppointmentCreatedPayload {
|
||||
* @generated from protobuf field: string Reason = 12
|
||||
*/
|
||||
Reason: string;
|
||||
/**
|
||||
* @generated from protobuf field: bool HasCommission = 13
|
||||
*/
|
||||
HasCommission: boolean;
|
||||
/**
|
||||
* @generated from protobuf field: bool InstructionAck = 14
|
||||
*/
|
||||
@@ -1378,7 +1374,6 @@ class AppointmentCreatedPayload$Type extends MessageType<AppointmentCreatedPaylo
|
||||
{ no: 7, name: "Emails", kind: "scalar", localName: "Emails", jsonName: "Emails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Must be a valid email address", example: "[\"John.doe@reflex.com\", \"will.smith@reflex.com\"]" }, "validate.rules": { repeated: { minItems: "1", items: { string: { email: true, ignoreEmpty: true } } } } } },
|
||||
{ no: 8, name: "MetaData", kind: "message", localName: "MetaData", jsonName: "MetaData", repeat: 2 /*RepeatType.UNPACKED*/, T: () => MetadataElement, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Metadata are characteristics specific to the site. They can be of several data form (string, integer, float, boolean or timestamp)" }, "api.metadata": true, "api.aggKey": "Key" } },
|
||||
{ no: 12, name: "Reason", kind: "scalar", localName: "Reason", jsonName: "Reason", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 13, name: "HasCommission", kind: "scalar", localName: "HasCommission", jsonName: "HasCommission", T: 8 /*ScalarType.BOOL*/ },
|
||||
{ no: 14, name: "InstructionAck", kind: "scalar", localName: "InstructionAck", jsonName: "InstructionAck", T: 8 /*ScalarType.BOOL*/ },
|
||||
{ no: 16, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 17, name: "Address", kind: "message", localName: "Address", jsonName: "Address", T: () => Address },
|
||||
@@ -1394,7 +1389,6 @@ class AppointmentCreatedPayload$Type extends MessageType<AppointmentCreatedPaylo
|
||||
message.Emails = [];
|
||||
message.MetaData = [];
|
||||
message.Reason = "";
|
||||
message.HasCommission = false;
|
||||
message.InstructionAck = false;
|
||||
message.ActorID = "";
|
||||
message.SiteName = "";
|
||||
@@ -1431,9 +1425,6 @@ class AppointmentCreatedPayload$Type extends MessageType<AppointmentCreatedPaylo
|
||||
case /* string Reason */ 12:
|
||||
message.Reason = reader.string();
|
||||
break;
|
||||
case /* bool HasCommission */ 13:
|
||||
message.HasCommission = reader.bool();
|
||||
break;
|
||||
case /* bool InstructionAck */ 14:
|
||||
message.InstructionAck = reader.bool();
|
||||
break;
|
||||
@@ -1479,9 +1470,6 @@ class AppointmentCreatedPayload$Type extends MessageType<AppointmentCreatedPaylo
|
||||
/* string Reason = 12; */
|
||||
if (message.Reason !== "")
|
||||
writer.tag(12, WireType.LengthDelimited).string(message.Reason);
|
||||
/* bool HasCommission = 13; */
|
||||
if (message.HasCommission !== false)
|
||||
writer.tag(13, WireType.Varint).bool(message.HasCommission);
|
||||
/* bool InstructionAck = 14; */
|
||||
if (message.InstructionAck !== false)
|
||||
writer.tag(14, WireType.Varint).bool(message.InstructionAck);
|
||||
|
||||
Reference in New Issue
Block a user