You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.12.0-SNAPSHOT-251113093004",
|
||||
"version": "1.12.0-SNAPSHOT-251113100238",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
@@ -557,6 +557,10 @@ export interface AppointmentCommission {
|
||||
* @generated from protobuf field: string PartnerAppID = 5
|
||||
*/
|
||||
PartnerAppID: string; // ID of the partnerAppID to notify for the appointment commission
|
||||
/**
|
||||
* @generated from protobuf field: string ActorID = 7
|
||||
*/
|
||||
ActorID: string; // ID of the actorID which linked the site on the project commission
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.Commission
|
||||
@@ -2161,7 +2165,8 @@ class AppointmentCommission$Type extends MessageType<AppointmentCommission> {
|
||||
{ no: 6, name: "ExecutionflowID", kind: "scalar", localName: "ExecutionflowID", jsonName: "ExecutionflowID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 3, name: "Quantities", kind: "message", localName: "Quantities", jsonName: "Quantities", repeat: 2 /*RepeatType.UNPACKED*/, T: () => QuantityByUnit, options: { "validate.rules": { repeated: { minItems: "1" } } } },
|
||||
{ no: 4, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 5, name: "PartnerAppID", kind: "scalar", localName: "PartnerAppID", jsonName: "PartnerAppID", T: 9 /*ScalarType.STRING*/ }
|
||||
{ no: 5, name: "PartnerAppID", kind: "scalar", localName: "PartnerAppID", jsonName: "PartnerAppID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 7, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/ }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<AppointmentCommission>): AppointmentCommission {
|
||||
@@ -2172,6 +2177,7 @@ class AppointmentCommission$Type extends MessageType<AppointmentCommission> {
|
||||
message.Quantities = [];
|
||||
message.OrganisationID = "";
|
||||
message.PartnerAppID = "";
|
||||
message.ActorID = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<AppointmentCommission>(this, message, value);
|
||||
return message;
|
||||
@@ -2199,6 +2205,9 @@ class AppointmentCommission$Type extends MessageType<AppointmentCommission> {
|
||||
case /* string PartnerAppID */ 5:
|
||||
message.PartnerAppID = reader.string();
|
||||
break;
|
||||
case /* string ActorID */ 7:
|
||||
message.ActorID = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -2229,6 +2238,9 @@ class AppointmentCommission$Type extends MessageType<AppointmentCommission> {
|
||||
/* string ExecutionflowID = 6; */
|
||||
if (message.ExecutionflowID !== "")
|
||||
writer.tag(6, WireType.LengthDelimited).string(message.ExecutionflowID);
|
||||
/* string ActorID = 7; */
|
||||
if (message.ActorID !== "")
|
||||
writer.tag(7, WireType.LengthDelimited).string(message.ActorID);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user