@technova-tech/olive-proto-lib 1.7.0 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/pos.v1/terminals.js +248 -0
- package/types/pos.v1/terminals.d.ts +89 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@technova-tech/olive-proto-lib",
|
|
3
|
-
"description": "Proto Library",
|
|
3
|
+
"description": "Olive MFB Proto Library",
|
|
4
4
|
"author": "Technova Technologies",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"compile": "tsc -p tsconfig.json"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
|
-
"version": "1.7.
|
|
14
|
+
"version": "1.7.2",
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@types/google-protobuf": "^3.15.12",
|
|
17
17
|
"protoc-gen-ts": "^0.8.7",
|
package/pos.v1/terminals.js
CHANGED
|
@@ -29100,6 +29100,229 @@ var com;
|
|
|
29100
29100
|
}
|
|
29101
29101
|
}
|
|
29102
29102
|
terminals.POSAppliedCharge = POSAppliedCharge;
|
|
29103
|
+
class CalculatePOSEntityChargesRequest extends pb_1.Message {
|
|
29104
|
+
#one_of_decls = [];
|
|
29105
|
+
constructor(data) {
|
|
29106
|
+
super();
|
|
29107
|
+
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
29108
|
+
if (!Array.isArray(data) && typeof data == "object") {
|
|
29109
|
+
if ("entityType" in data && data.entityType != undefined) {
|
|
29110
|
+
this.entityType = data.entityType;
|
|
29111
|
+
}
|
|
29112
|
+
if ("entityId" in data && data.entityId != undefined) {
|
|
29113
|
+
this.entityId = data.entityId;
|
|
29114
|
+
}
|
|
29115
|
+
if ("amount" in data && data.amount != undefined) {
|
|
29116
|
+
this.amount = data.amount;
|
|
29117
|
+
}
|
|
29118
|
+
if ("transactionType" in data && data.transactionType != undefined) {
|
|
29119
|
+
this.transactionType = data.transactionType;
|
|
29120
|
+
}
|
|
29121
|
+
}
|
|
29122
|
+
}
|
|
29123
|
+
get entityType() {
|
|
29124
|
+
return pb_1.Message.getFieldWithDefault(this, 1, "");
|
|
29125
|
+
}
|
|
29126
|
+
set entityType(value) {
|
|
29127
|
+
pb_1.Message.setField(this, 1, value);
|
|
29128
|
+
}
|
|
29129
|
+
get entityId() {
|
|
29130
|
+
return pb_1.Message.getFieldWithDefault(this, 2, "");
|
|
29131
|
+
}
|
|
29132
|
+
set entityId(value) {
|
|
29133
|
+
pb_1.Message.setField(this, 2, value);
|
|
29134
|
+
}
|
|
29135
|
+
get amount() {
|
|
29136
|
+
return pb_1.Message.getFieldWithDefault(this, 3, 0);
|
|
29137
|
+
}
|
|
29138
|
+
set amount(value) {
|
|
29139
|
+
pb_1.Message.setField(this, 3, value);
|
|
29140
|
+
}
|
|
29141
|
+
get transactionType() {
|
|
29142
|
+
return pb_1.Message.getFieldWithDefault(this, 4, "");
|
|
29143
|
+
}
|
|
29144
|
+
set transactionType(value) {
|
|
29145
|
+
pb_1.Message.setField(this, 4, value);
|
|
29146
|
+
}
|
|
29147
|
+
static fromObject(data) {
|
|
29148
|
+
const message = new CalculatePOSEntityChargesRequest({});
|
|
29149
|
+
if (data.entityType != null) {
|
|
29150
|
+
message.entityType = data.entityType;
|
|
29151
|
+
}
|
|
29152
|
+
if (data.entityId != null) {
|
|
29153
|
+
message.entityId = data.entityId;
|
|
29154
|
+
}
|
|
29155
|
+
if (data.amount != null) {
|
|
29156
|
+
message.amount = data.amount;
|
|
29157
|
+
}
|
|
29158
|
+
if (data.transactionType != null) {
|
|
29159
|
+
message.transactionType = data.transactionType;
|
|
29160
|
+
}
|
|
29161
|
+
return message;
|
|
29162
|
+
}
|
|
29163
|
+
toObject() {
|
|
29164
|
+
const data = {};
|
|
29165
|
+
if (this.entityType != null) {
|
|
29166
|
+
data.entityType = this.entityType;
|
|
29167
|
+
}
|
|
29168
|
+
if (this.entityId != null) {
|
|
29169
|
+
data.entityId = this.entityId;
|
|
29170
|
+
}
|
|
29171
|
+
if (this.amount != null) {
|
|
29172
|
+
data.amount = this.amount;
|
|
29173
|
+
}
|
|
29174
|
+
if (this.transactionType != null) {
|
|
29175
|
+
data.transactionType = this.transactionType;
|
|
29176
|
+
}
|
|
29177
|
+
return data;
|
|
29178
|
+
}
|
|
29179
|
+
serialize(w) {
|
|
29180
|
+
const writer = w || new pb_1.BinaryWriter();
|
|
29181
|
+
if (this.entityType.length)
|
|
29182
|
+
writer.writeString(1, this.entityType);
|
|
29183
|
+
if (this.entityId.length)
|
|
29184
|
+
writer.writeString(2, this.entityId);
|
|
29185
|
+
if (this.amount != 0)
|
|
29186
|
+
writer.writeInt64(3, this.amount);
|
|
29187
|
+
if (this.transactionType.length)
|
|
29188
|
+
writer.writeString(4, this.transactionType);
|
|
29189
|
+
if (!w)
|
|
29190
|
+
return writer.getResultBuffer();
|
|
29191
|
+
}
|
|
29192
|
+
static deserialize(bytes) {
|
|
29193
|
+
const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new CalculatePOSEntityChargesRequest();
|
|
29194
|
+
while (reader.nextField()) {
|
|
29195
|
+
if (reader.isEndGroup())
|
|
29196
|
+
break;
|
|
29197
|
+
switch (reader.getFieldNumber()) {
|
|
29198
|
+
case 1:
|
|
29199
|
+
message.entityType = reader.readString();
|
|
29200
|
+
break;
|
|
29201
|
+
case 2:
|
|
29202
|
+
message.entityId = reader.readString();
|
|
29203
|
+
break;
|
|
29204
|
+
case 3:
|
|
29205
|
+
message.amount = reader.readInt64();
|
|
29206
|
+
break;
|
|
29207
|
+
case 4:
|
|
29208
|
+
message.transactionType = reader.readString();
|
|
29209
|
+
break;
|
|
29210
|
+
default: reader.skipField();
|
|
29211
|
+
}
|
|
29212
|
+
}
|
|
29213
|
+
return message;
|
|
29214
|
+
}
|
|
29215
|
+
serializeBinary() {
|
|
29216
|
+
return this.serialize();
|
|
29217
|
+
}
|
|
29218
|
+
static deserializeBinary(bytes) {
|
|
29219
|
+
return CalculatePOSEntityChargesRequest.deserialize(bytes);
|
|
29220
|
+
}
|
|
29221
|
+
}
|
|
29222
|
+
terminals.CalculatePOSEntityChargesRequest = CalculatePOSEntityChargesRequest;
|
|
29223
|
+
class CalculatePOSEntityChargesResponse extends pb_1.Message {
|
|
29224
|
+
#one_of_decls = [];
|
|
29225
|
+
constructor(data) {
|
|
29226
|
+
super();
|
|
29227
|
+
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
29228
|
+
if (!Array.isArray(data) && typeof data == "object") {
|
|
29229
|
+
if ("success" in data && data.success != undefined) {
|
|
29230
|
+
this.success = data.success;
|
|
29231
|
+
}
|
|
29232
|
+
if ("message" in data && data.message != undefined) {
|
|
29233
|
+
this.message = data.message;
|
|
29234
|
+
}
|
|
29235
|
+
if ("data" in data && data.data != undefined) {
|
|
29236
|
+
this.data = data.data;
|
|
29237
|
+
}
|
|
29238
|
+
}
|
|
29239
|
+
}
|
|
29240
|
+
get success() {
|
|
29241
|
+
return pb_1.Message.getFieldWithDefault(this, 1, false);
|
|
29242
|
+
}
|
|
29243
|
+
set success(value) {
|
|
29244
|
+
pb_1.Message.setField(this, 1, value);
|
|
29245
|
+
}
|
|
29246
|
+
get message() {
|
|
29247
|
+
return pb_1.Message.getFieldWithDefault(this, 2, "");
|
|
29248
|
+
}
|
|
29249
|
+
set message(value) {
|
|
29250
|
+
pb_1.Message.setField(this, 2, value);
|
|
29251
|
+
}
|
|
29252
|
+
get data() {
|
|
29253
|
+
return pb_1.Message.getWrapperField(this, POSChargeCalculationResult, 3);
|
|
29254
|
+
}
|
|
29255
|
+
set data(value) {
|
|
29256
|
+
pb_1.Message.setWrapperField(this, 3, value);
|
|
29257
|
+
}
|
|
29258
|
+
get hasData() {
|
|
29259
|
+
return pb_1.Message.getField(this, 3) != null;
|
|
29260
|
+
}
|
|
29261
|
+
static fromObject(data) {
|
|
29262
|
+
const message = new CalculatePOSEntityChargesResponse({});
|
|
29263
|
+
if (data.success != null) {
|
|
29264
|
+
message.success = data.success;
|
|
29265
|
+
}
|
|
29266
|
+
if (data.message != null) {
|
|
29267
|
+
message.message = data.message;
|
|
29268
|
+
}
|
|
29269
|
+
if (data.data != null) {
|
|
29270
|
+
message.data = POSChargeCalculationResult.fromObject(data.data);
|
|
29271
|
+
}
|
|
29272
|
+
return message;
|
|
29273
|
+
}
|
|
29274
|
+
toObject() {
|
|
29275
|
+
const data = {};
|
|
29276
|
+
if (this.success != null) {
|
|
29277
|
+
data.success = this.success;
|
|
29278
|
+
}
|
|
29279
|
+
if (this.message != null) {
|
|
29280
|
+
data.message = this.message;
|
|
29281
|
+
}
|
|
29282
|
+
if (this.data != null) {
|
|
29283
|
+
data.data = this.data.toObject();
|
|
29284
|
+
}
|
|
29285
|
+
return data;
|
|
29286
|
+
}
|
|
29287
|
+
serialize(w) {
|
|
29288
|
+
const writer = w || new pb_1.BinaryWriter();
|
|
29289
|
+
if (this.success != false)
|
|
29290
|
+
writer.writeBool(1, this.success);
|
|
29291
|
+
if (this.message.length)
|
|
29292
|
+
writer.writeString(2, this.message);
|
|
29293
|
+
if (this.hasData)
|
|
29294
|
+
writer.writeMessage(3, this.data, () => this.data.serialize(writer));
|
|
29295
|
+
if (!w)
|
|
29296
|
+
return writer.getResultBuffer();
|
|
29297
|
+
}
|
|
29298
|
+
static deserialize(bytes) {
|
|
29299
|
+
const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new CalculatePOSEntityChargesResponse();
|
|
29300
|
+
while (reader.nextField()) {
|
|
29301
|
+
if (reader.isEndGroup())
|
|
29302
|
+
break;
|
|
29303
|
+
switch (reader.getFieldNumber()) {
|
|
29304
|
+
case 1:
|
|
29305
|
+
message.success = reader.readBool();
|
|
29306
|
+
break;
|
|
29307
|
+
case 2:
|
|
29308
|
+
message.message = reader.readString();
|
|
29309
|
+
break;
|
|
29310
|
+
case 3:
|
|
29311
|
+
reader.readMessage(message.data, () => message.data = POSChargeCalculationResult.deserialize(reader));
|
|
29312
|
+
break;
|
|
29313
|
+
default: reader.skipField();
|
|
29314
|
+
}
|
|
29315
|
+
}
|
|
29316
|
+
return message;
|
|
29317
|
+
}
|
|
29318
|
+
serializeBinary() {
|
|
29319
|
+
return this.serialize();
|
|
29320
|
+
}
|
|
29321
|
+
static deserializeBinary(bytes) {
|
|
29322
|
+
return CalculatePOSEntityChargesResponse.deserialize(bytes);
|
|
29323
|
+
}
|
|
29324
|
+
}
|
|
29325
|
+
terminals.CalculatePOSEntityChargesResponse = CalculatePOSEntityChargesResponse;
|
|
29103
29326
|
class UnimplementedTerminalServiceService {
|
|
29104
29327
|
static definition = {
|
|
29105
29328
|
AddTerminalInstance: {
|
|
@@ -29659,6 +29882,15 @@ var com;
|
|
|
29659
29882
|
requestDeserialize: (bytes) => GetDefaultPOSEntityChargesRequest.deserialize(new Uint8Array(bytes)),
|
|
29660
29883
|
responseSerialize: (message) => Buffer.from(message.serialize()),
|
|
29661
29884
|
responseDeserialize: (bytes) => GetDefaultPOSEntityChargesResponse.deserialize(new Uint8Array(bytes))
|
|
29885
|
+
},
|
|
29886
|
+
CalculatePOSEntityCharges: {
|
|
29887
|
+
path: "/com.pkg.posv1.terminals.TerminalService/CalculatePOSEntityCharges",
|
|
29888
|
+
requestStream: false,
|
|
29889
|
+
responseStream: false,
|
|
29890
|
+
requestSerialize: (message) => Buffer.from(message.serialize()),
|
|
29891
|
+
requestDeserialize: (bytes) => CalculatePOSEntityChargesRequest.deserialize(new Uint8Array(bytes)),
|
|
29892
|
+
responseSerialize: (message) => Buffer.from(message.serialize()),
|
|
29893
|
+
responseDeserialize: (bytes) => CalculatePOSEntityChargesResponse.deserialize(new Uint8Array(bytes))
|
|
29662
29894
|
}
|
|
29663
29895
|
};
|
|
29664
29896
|
}
|
|
@@ -30659,6 +30891,22 @@ var com;
|
|
|
30659
30891
|
}
|
|
30660
30892
|
}));
|
|
30661
30893
|
};
|
|
30894
|
+
CalculatePOSEntityCharges = (message, metadata, options) => {
|
|
30895
|
+
if (!metadata) {
|
|
30896
|
+
metadata = new grpc_1.Metadata;
|
|
30897
|
+
}
|
|
30898
|
+
if (!options) {
|
|
30899
|
+
options = {};
|
|
30900
|
+
}
|
|
30901
|
+
return new Promise((resolve, reject) => super.CalculatePOSEntityCharges(message, metadata, options, (error, response) => {
|
|
30902
|
+
if (error) {
|
|
30903
|
+
reject(error);
|
|
30904
|
+
}
|
|
30905
|
+
else {
|
|
30906
|
+
resolve(response);
|
|
30907
|
+
}
|
|
30908
|
+
}));
|
|
30909
|
+
};
|
|
30662
30910
|
}
|
|
30663
30911
|
terminals.TerminalServiceClient = TerminalServiceClient;
|
|
30664
30912
|
class UnimplementedBusinessContextServiceService {
|
|
@@ -9831,6 +9831,84 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9831
9831
|
serializeBinary(): Uint8Array;
|
|
9832
9832
|
static deserializeBinary(bytes: Uint8Array): POSAppliedCharge;
|
|
9833
9833
|
}
|
|
9834
|
+
export class CalculatePOSEntityChargesRequest extends pb_1.Message {
|
|
9835
|
+
#private;
|
|
9836
|
+
constructor(data?: any[] | {
|
|
9837
|
+
entityType?: string;
|
|
9838
|
+
entityId?: string;
|
|
9839
|
+
amount?: number;
|
|
9840
|
+
transactionType?: string;
|
|
9841
|
+
});
|
|
9842
|
+
get entityType(): string;
|
|
9843
|
+
set entityType(value: string);
|
|
9844
|
+
get entityId(): string;
|
|
9845
|
+
set entityId(value: string);
|
|
9846
|
+
get amount(): number;
|
|
9847
|
+
set amount(value: number);
|
|
9848
|
+
get transactionType(): string;
|
|
9849
|
+
set transactionType(value: string);
|
|
9850
|
+
static fromObject(data: {
|
|
9851
|
+
entityType?: string;
|
|
9852
|
+
entityId?: string;
|
|
9853
|
+
amount?: number;
|
|
9854
|
+
transactionType?: string;
|
|
9855
|
+
}): CalculatePOSEntityChargesRequest;
|
|
9856
|
+
toObject(): {
|
|
9857
|
+
entityType?: string | undefined;
|
|
9858
|
+
entityId?: string | undefined;
|
|
9859
|
+
amount?: number | undefined;
|
|
9860
|
+
transactionType?: string | undefined;
|
|
9861
|
+
};
|
|
9862
|
+
serialize(): Uint8Array;
|
|
9863
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
9864
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): CalculatePOSEntityChargesRequest;
|
|
9865
|
+
serializeBinary(): Uint8Array;
|
|
9866
|
+
static deserializeBinary(bytes: Uint8Array): CalculatePOSEntityChargesRequest;
|
|
9867
|
+
}
|
|
9868
|
+
export class CalculatePOSEntityChargesResponse extends pb_1.Message {
|
|
9869
|
+
#private;
|
|
9870
|
+
constructor(data?: any[] | {
|
|
9871
|
+
success?: boolean;
|
|
9872
|
+
message?: string;
|
|
9873
|
+
data?: POSChargeCalculationResult;
|
|
9874
|
+
});
|
|
9875
|
+
get success(): boolean;
|
|
9876
|
+
set success(value: boolean);
|
|
9877
|
+
get message(): string;
|
|
9878
|
+
set message(value: string);
|
|
9879
|
+
get data(): POSChargeCalculationResult;
|
|
9880
|
+
set data(value: POSChargeCalculationResult);
|
|
9881
|
+
get hasData(): boolean;
|
|
9882
|
+
static fromObject(data: {
|
|
9883
|
+
success?: boolean;
|
|
9884
|
+
message?: string;
|
|
9885
|
+
data?: ReturnType<typeof POSChargeCalculationResult.prototype.toObject>;
|
|
9886
|
+
}): CalculatePOSEntityChargesResponse;
|
|
9887
|
+
toObject(): {
|
|
9888
|
+
success?: boolean | undefined;
|
|
9889
|
+
message?: string | undefined;
|
|
9890
|
+
data?: {
|
|
9891
|
+
entityType?: string | undefined;
|
|
9892
|
+
entityId?: string | undefined;
|
|
9893
|
+
transactionAmount?: number | undefined;
|
|
9894
|
+
totalCharge?: number | undefined;
|
|
9895
|
+
charges?: {
|
|
9896
|
+
chargeId?: string | undefined;
|
|
9897
|
+
chargeName?: string | undefined;
|
|
9898
|
+
chargeType?: string | undefined;
|
|
9899
|
+
calculationMethod?: string | undefined;
|
|
9900
|
+
chargeAmount?: number | undefined;
|
|
9901
|
+
description?: string | undefined;
|
|
9902
|
+
}[] | undefined;
|
|
9903
|
+
currency?: string | undefined;
|
|
9904
|
+
} | undefined;
|
|
9905
|
+
};
|
|
9906
|
+
serialize(): Uint8Array;
|
|
9907
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
9908
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): CalculatePOSEntityChargesResponse;
|
|
9909
|
+
serializeBinary(): Uint8Array;
|
|
9910
|
+
static deserializeBinary(bytes: Uint8Array): CalculatePOSEntityChargesResponse;
|
|
9911
|
+
}
|
|
9834
9912
|
interface GrpcPromiseServiceInterface<P, R> {
|
|
9835
9913
|
(message: P, metadata: grpc_1.Metadata, options?: grpc_1.CallOptions): Promise<R>;
|
|
9836
9914
|
(message: P, options?: grpc_1.CallOptions): Promise<R>;
|
|
@@ -10395,6 +10473,15 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
10395
10473
|
responseSerialize: (message: GetDefaultPOSEntityChargesResponse) => Buffer;
|
|
10396
10474
|
responseDeserialize: (bytes: Buffer) => GetDefaultPOSEntityChargesResponse;
|
|
10397
10475
|
};
|
|
10476
|
+
CalculatePOSEntityCharges: {
|
|
10477
|
+
path: string;
|
|
10478
|
+
requestStream: boolean;
|
|
10479
|
+
responseStream: boolean;
|
|
10480
|
+
requestSerialize: (message: CalculatePOSEntityChargesRequest) => Buffer;
|
|
10481
|
+
requestDeserialize: (bytes: Buffer) => CalculatePOSEntityChargesRequest;
|
|
10482
|
+
responseSerialize: (message: CalculatePOSEntityChargesResponse) => Buffer;
|
|
10483
|
+
responseDeserialize: (bytes: Buffer) => CalculatePOSEntityChargesResponse;
|
|
10484
|
+
};
|
|
10398
10485
|
};
|
|
10399
10486
|
[method: string]: grpc_1.UntypedHandleCall;
|
|
10400
10487
|
abstract AddTerminalInstance(call: grpc_1.ServerUnaryCall<AddTerminalInstanceRequest, AddTerminalInstanceResponse>, callback: grpc_1.sendUnaryData<AddTerminalInstanceResponse>): void;
|
|
@@ -10459,6 +10546,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
10459
10546
|
abstract UpdatePOSEntityCharge(call: grpc_1.ServerUnaryCall<UpdatePOSEntityChargeRequest, UpdatePOSEntityChargeResponse>, callback: grpc_1.sendUnaryData<UpdatePOSEntityChargeResponse>): void;
|
|
10460
10547
|
abstract GetPOSEntityCharges(call: grpc_1.ServerUnaryCall<GetPOSEntityChargesRequest, GetPOSEntityChargesResponse>, callback: grpc_1.sendUnaryData<GetPOSEntityChargesResponse>): void;
|
|
10461
10548
|
abstract GetDefaultPOSEntityCharges(call: grpc_1.ServerUnaryCall<GetDefaultPOSEntityChargesRequest, GetDefaultPOSEntityChargesResponse>, callback: grpc_1.sendUnaryData<GetDefaultPOSEntityChargesResponse>): void;
|
|
10549
|
+
abstract CalculatePOSEntityCharges(call: grpc_1.ServerUnaryCall<CalculatePOSEntityChargesRequest, CalculatePOSEntityChargesResponse>, callback: grpc_1.sendUnaryData<CalculatePOSEntityChargesResponse>): void;
|
|
10462
10550
|
}
|
|
10463
10551
|
const TerminalServiceClient_base: grpc_1.ServiceClientConstructor;
|
|
10464
10552
|
export class TerminalServiceClient extends TerminalServiceClient_base {
|
|
@@ -10525,6 +10613,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
10525
10613
|
UpdatePOSEntityCharge: GrpcPromiseServiceInterface<UpdatePOSEntityChargeRequest, UpdatePOSEntityChargeResponse>;
|
|
10526
10614
|
GetPOSEntityCharges: GrpcPromiseServiceInterface<GetPOSEntityChargesRequest, GetPOSEntityChargesResponse>;
|
|
10527
10615
|
GetDefaultPOSEntityCharges: GrpcPromiseServiceInterface<GetDefaultPOSEntityChargesRequest, GetDefaultPOSEntityChargesResponse>;
|
|
10616
|
+
CalculatePOSEntityCharges: GrpcPromiseServiceInterface<CalculatePOSEntityChargesRequest, CalculatePOSEntityChargesResponse>;
|
|
10528
10617
|
}
|
|
10529
10618
|
export abstract class UnimplementedBusinessContextServiceService {
|
|
10530
10619
|
static definition: {
|