@technova-tech/olive-proto-lib 1.8.7 → 1.8.9
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 +1 -1
- package/pos.v1/terminals.js +480 -0
- package/terminal/terminal.js +180 -0
- package/types/pos.v1/terminals.d.ts +121 -0
- package/types/terminal/terminal.d.ts +54 -0
|
@@ -95,6 +95,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
95
95
|
notes?: string;
|
|
96
96
|
quantity?: number;
|
|
97
97
|
processorTid?: string;
|
|
98
|
+
auditContext?: string;
|
|
98
99
|
});
|
|
99
100
|
get terminalTypeId(): string;
|
|
100
101
|
set terminalTypeId(value: string);
|
|
@@ -118,6 +119,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
118
119
|
set quantity(value: number);
|
|
119
120
|
get processorTid(): string;
|
|
120
121
|
set processorTid(value: string);
|
|
122
|
+
get auditContext(): string;
|
|
123
|
+
set auditContext(value: string);
|
|
121
124
|
static fromObject(data: {
|
|
122
125
|
terminalTypeId?: string;
|
|
123
126
|
serialNumber?: string;
|
|
@@ -132,6 +135,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
132
135
|
notes?: string;
|
|
133
136
|
quantity?: number;
|
|
134
137
|
processorTid?: string;
|
|
138
|
+
auditContext?: string;
|
|
135
139
|
}): AddTerminalInstanceRequest;
|
|
136
140
|
toObject(): {
|
|
137
141
|
terminalTypeId?: string | undefined;
|
|
@@ -147,6 +151,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
147
151
|
notes?: string | undefined;
|
|
148
152
|
quantity?: number | undefined;
|
|
149
153
|
processorTid?: string | undefined;
|
|
154
|
+
auditContext?: string | undefined;
|
|
150
155
|
};
|
|
151
156
|
serialize(): Uint8Array;
|
|
152
157
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -319,6 +324,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
319
324
|
updatedBy?: string;
|
|
320
325
|
notes?: string;
|
|
321
326
|
processorTid?: string;
|
|
327
|
+
auditContext?: string;
|
|
322
328
|
});
|
|
323
329
|
get instanceId(): string;
|
|
324
330
|
set instanceId(value: string);
|
|
@@ -340,6 +346,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
340
346
|
set notes(value: string);
|
|
341
347
|
get processorTid(): string;
|
|
342
348
|
set processorTid(value: string);
|
|
349
|
+
get auditContext(): string;
|
|
350
|
+
set auditContext(value: string);
|
|
343
351
|
static fromObject(data: {
|
|
344
352
|
instanceId?: string;
|
|
345
353
|
status?: string;
|
|
@@ -353,6 +361,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
353
361
|
updatedBy?: string;
|
|
354
362
|
notes?: string;
|
|
355
363
|
processorTid?: string;
|
|
364
|
+
auditContext?: string;
|
|
356
365
|
}): UpdateTerminalInstanceRequest;
|
|
357
366
|
toObject(): {
|
|
358
367
|
instanceId?: string | undefined;
|
|
@@ -367,6 +376,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
367
376
|
updatedBy?: string | undefined;
|
|
368
377
|
notes?: string | undefined;
|
|
369
378
|
processorTid?: string | undefined;
|
|
379
|
+
auditContext?: string | undefined;
|
|
370
380
|
};
|
|
371
381
|
serialize(): Uint8Array;
|
|
372
382
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -637,6 +647,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
637
647
|
metadata?: Map<string, string>;
|
|
638
648
|
processorTid?: string;
|
|
639
649
|
category?: string;
|
|
650
|
+
auditContext?: string;
|
|
640
651
|
});
|
|
641
652
|
get serialNumber(): string;
|
|
642
653
|
set serialNumber(value: string);
|
|
@@ -666,6 +677,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
666
677
|
set processorTid(value: string);
|
|
667
678
|
get category(): string;
|
|
668
679
|
set category(value: string);
|
|
680
|
+
get auditContext(): string;
|
|
681
|
+
set auditContext(value: string);
|
|
669
682
|
static fromObject(data: {
|
|
670
683
|
serialNumber?: string;
|
|
671
684
|
businessId?: string;
|
|
@@ -682,6 +695,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
682
695
|
};
|
|
683
696
|
processorTid?: string;
|
|
684
697
|
category?: string;
|
|
698
|
+
auditContext?: string;
|
|
685
699
|
}): AssignTerminalRequest;
|
|
686
700
|
toObject(): {
|
|
687
701
|
serialNumber?: string | undefined;
|
|
@@ -708,6 +722,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
708
722
|
} | undefined;
|
|
709
723
|
processorTid?: string | undefined;
|
|
710
724
|
category?: string | undefined;
|
|
725
|
+
auditContext?: string | undefined;
|
|
711
726
|
};
|
|
712
727
|
serialize(): Uint8Array;
|
|
713
728
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -932,6 +947,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
932
947
|
reason?: string;
|
|
933
948
|
returnDate?: string;
|
|
934
949
|
metadata?: Map<string, string>;
|
|
950
|
+
auditContext?: string;
|
|
935
951
|
});
|
|
936
952
|
get serialNumber(): string;
|
|
937
953
|
set serialNumber(value: string);
|
|
@@ -945,6 +961,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
945
961
|
set returnDate(value: string);
|
|
946
962
|
get metadata(): Map<string, string>;
|
|
947
963
|
set metadata(value: Map<string, string>);
|
|
964
|
+
get auditContext(): string;
|
|
965
|
+
set auditContext(value: string);
|
|
948
966
|
static fromObject(data: {
|
|
949
967
|
serialNumber?: string;
|
|
950
968
|
businessId?: string;
|
|
@@ -954,6 +972,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
954
972
|
metadata?: {
|
|
955
973
|
[key: string]: string;
|
|
956
974
|
};
|
|
975
|
+
auditContext?: string;
|
|
957
976
|
}): UnassignTerminalRequest;
|
|
958
977
|
toObject(): {
|
|
959
978
|
serialNumber?: string | undefined;
|
|
@@ -964,6 +983,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
964
983
|
metadata?: {
|
|
965
984
|
[key: string]: string;
|
|
966
985
|
} | undefined;
|
|
986
|
+
auditContext?: string | undefined;
|
|
967
987
|
};
|
|
968
988
|
serialize(): Uint8Array;
|
|
969
989
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1337,6 +1357,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1337
1357
|
status?: string | undefined;
|
|
1338
1358
|
createdAt?: string | undefined;
|
|
1339
1359
|
processorTid?: string | undefined;
|
|
1360
|
+
category?: string | undefined;
|
|
1340
1361
|
}[] | undefined;
|
|
1341
1362
|
pagination?: {
|
|
1342
1363
|
currentPage?: number | undefined;
|
|
@@ -1362,6 +1383,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1362
1383
|
updatedBy?: string;
|
|
1363
1384
|
reason?: string;
|
|
1364
1385
|
metadata?: Map<string, string>;
|
|
1386
|
+
auditContext?: string;
|
|
1365
1387
|
});
|
|
1366
1388
|
get id(): string;
|
|
1367
1389
|
set id(value: string);
|
|
@@ -1373,6 +1395,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1373
1395
|
set reason(value: string);
|
|
1374
1396
|
get metadata(): Map<string, string>;
|
|
1375
1397
|
set metadata(value: Map<string, string>);
|
|
1398
|
+
get auditContext(): string;
|
|
1399
|
+
set auditContext(value: string);
|
|
1376
1400
|
static fromObject(data: {
|
|
1377
1401
|
id?: string;
|
|
1378
1402
|
status?: string;
|
|
@@ -1381,6 +1405,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1381
1405
|
metadata?: {
|
|
1382
1406
|
[key: string]: string;
|
|
1383
1407
|
};
|
|
1408
|
+
auditContext?: string;
|
|
1384
1409
|
}): UpdateTerminalStatusRequest;
|
|
1385
1410
|
toObject(): {
|
|
1386
1411
|
id?: string | undefined;
|
|
@@ -1390,6 +1415,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1390
1415
|
metadata?: {
|
|
1391
1416
|
[key: string]: string;
|
|
1392
1417
|
} | undefined;
|
|
1418
|
+
auditContext?: string | undefined;
|
|
1393
1419
|
};
|
|
1394
1420
|
serialize(): Uint8Array;
|
|
1395
1421
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1884,6 +1910,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1884
1910
|
status?: string;
|
|
1885
1911
|
createdAt?: string;
|
|
1886
1912
|
processorTid?: string;
|
|
1913
|
+
category?: string;
|
|
1887
1914
|
});
|
|
1888
1915
|
get instanceId(): string;
|
|
1889
1916
|
set instanceId(value: string);
|
|
@@ -1908,6 +1935,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1908
1935
|
set createdAt(value: string);
|
|
1909
1936
|
get processorTid(): string;
|
|
1910
1937
|
set processorTid(value: string);
|
|
1938
|
+
get category(): string;
|
|
1939
|
+
set category(value: string);
|
|
1911
1940
|
static fromObject(data: {
|
|
1912
1941
|
instanceId?: string;
|
|
1913
1942
|
serialNumber?: string;
|
|
@@ -1920,6 +1949,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1920
1949
|
status?: string;
|
|
1921
1950
|
createdAt?: string;
|
|
1922
1951
|
processorTid?: string;
|
|
1952
|
+
category?: string;
|
|
1923
1953
|
}): AvailableTerminalData;
|
|
1924
1954
|
toObject(): {
|
|
1925
1955
|
instanceId?: string | undefined;
|
|
@@ -1938,6 +1968,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1938
1968
|
status?: string | undefined;
|
|
1939
1969
|
createdAt?: string | undefined;
|
|
1940
1970
|
processorTid?: string | undefined;
|
|
1971
|
+
category?: string | undefined;
|
|
1941
1972
|
};
|
|
1942
1973
|
serialize(): Uint8Array;
|
|
1943
1974
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -3680,6 +3711,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3680
3711
|
terminals?: TerminalBulkData[];
|
|
3681
3712
|
uploadedBy?: string;
|
|
3682
3713
|
metadata?: Map<string, string>;
|
|
3714
|
+
auditContext?: string;
|
|
3683
3715
|
});
|
|
3684
3716
|
get terminalTypeId(): string;
|
|
3685
3717
|
set terminalTypeId(value: string);
|
|
@@ -3689,6 +3721,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3689
3721
|
set uploadedBy(value: string);
|
|
3690
3722
|
get metadata(): Map<string, string>;
|
|
3691
3723
|
set metadata(value: Map<string, string>);
|
|
3724
|
+
get auditContext(): string;
|
|
3725
|
+
set auditContext(value: string);
|
|
3692
3726
|
static fromObject(data: {
|
|
3693
3727
|
terminalTypeId?: string;
|
|
3694
3728
|
terminals?: ReturnType<typeof TerminalBulkData.prototype.toObject>[];
|
|
@@ -3696,6 +3730,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3696
3730
|
metadata?: {
|
|
3697
3731
|
[key: string]: string;
|
|
3698
3732
|
};
|
|
3733
|
+
auditContext?: string;
|
|
3699
3734
|
}): BulkUploadTerminalsRequest;
|
|
3700
3735
|
toObject(): {
|
|
3701
3736
|
terminalTypeId?: string | undefined;
|
|
@@ -3715,6 +3750,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3715
3750
|
metadata?: {
|
|
3716
3751
|
[key: string]: string;
|
|
3717
3752
|
} | undefined;
|
|
3753
|
+
auditContext?: string | undefined;
|
|
3718
3754
|
};
|
|
3719
3755
|
serialize(): Uint8Array;
|
|
3720
3756
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -3905,6 +3941,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3905
3941
|
newPin?: string;
|
|
3906
3942
|
changedBy?: string;
|
|
3907
3943
|
reason?: string;
|
|
3944
|
+
auditContext?: string;
|
|
3908
3945
|
});
|
|
3909
3946
|
get terminalId(): string;
|
|
3910
3947
|
set terminalId(value: string);
|
|
@@ -3916,12 +3953,15 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3916
3953
|
set changedBy(value: string);
|
|
3917
3954
|
get reason(): string;
|
|
3918
3955
|
set reason(value: string);
|
|
3956
|
+
get auditContext(): string;
|
|
3957
|
+
set auditContext(value: string);
|
|
3919
3958
|
static fromObject(data: {
|
|
3920
3959
|
terminalId?: string;
|
|
3921
3960
|
oldPin?: string;
|
|
3922
3961
|
newPin?: string;
|
|
3923
3962
|
changedBy?: string;
|
|
3924
3963
|
reason?: string;
|
|
3964
|
+
auditContext?: string;
|
|
3925
3965
|
}): ChangeTerminalPinRequest;
|
|
3926
3966
|
toObject(): {
|
|
3927
3967
|
terminalId?: string | undefined;
|
|
@@ -3929,6 +3969,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3929
3969
|
newPin?: string | undefined;
|
|
3930
3970
|
changedBy?: string | undefined;
|
|
3931
3971
|
reason?: string | undefined;
|
|
3972
|
+
auditContext?: string | undefined;
|
|
3932
3973
|
};
|
|
3933
3974
|
serialize(): Uint8Array;
|
|
3934
3975
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -5772,6 +5813,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
5772
5813
|
terminalId?: string;
|
|
5773
5814
|
configuration?: TerminalConfiguration;
|
|
5774
5815
|
updatedBy?: string;
|
|
5816
|
+
auditContext?: string;
|
|
5775
5817
|
});
|
|
5776
5818
|
get terminalId(): string;
|
|
5777
5819
|
set terminalId(value: string);
|
|
@@ -5780,10 +5822,13 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
5780
5822
|
get hasConfiguration(): boolean;
|
|
5781
5823
|
get updatedBy(): string;
|
|
5782
5824
|
set updatedBy(value: string);
|
|
5825
|
+
get auditContext(): string;
|
|
5826
|
+
set auditContext(value: string);
|
|
5783
5827
|
static fromObject(data: {
|
|
5784
5828
|
terminalId?: string;
|
|
5785
5829
|
configuration?: ReturnType<typeof TerminalConfiguration.prototype.toObject>;
|
|
5786
5830
|
updatedBy?: string;
|
|
5831
|
+
auditContext?: string;
|
|
5787
5832
|
}): UpdateTerminalConfigurationRequest;
|
|
5788
5833
|
toObject(): {
|
|
5789
5834
|
terminalId?: string | undefined;
|
|
@@ -5797,6 +5842,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
5797
5842
|
version?: number | undefined;
|
|
5798
5843
|
} | undefined;
|
|
5799
5844
|
updatedBy?: string | undefined;
|
|
5845
|
+
auditContext?: string | undefined;
|
|
5800
5846
|
};
|
|
5801
5847
|
serialize(): Uint8Array;
|
|
5802
5848
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6025,6 +6071,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6025
6071
|
description?: string;
|
|
6026
6072
|
isActive?: boolean;
|
|
6027
6073
|
createdBy?: string;
|
|
6074
|
+
auditContext?: string;
|
|
6028
6075
|
} & (({
|
|
6029
6076
|
effectiveDate?: string;
|
|
6030
6077
|
}) | ({
|
|
@@ -6050,6 +6097,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6050
6097
|
get hasExpiryDate(): boolean;
|
|
6051
6098
|
get createdBy(): string;
|
|
6052
6099
|
set createdBy(value: string);
|
|
6100
|
+
get auditContext(): string;
|
|
6101
|
+
set auditContext(value: string);
|
|
6053
6102
|
get _effective_date(): "none" | "effectiveDate";
|
|
6054
6103
|
get _expiry_date(): "none" | "expiryDate";
|
|
6055
6104
|
static fromObject(data: {
|
|
@@ -6062,6 +6111,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6062
6111
|
effectiveDate?: string;
|
|
6063
6112
|
expiryDate?: string;
|
|
6064
6113
|
createdBy?: string;
|
|
6114
|
+
auditContext?: string;
|
|
6065
6115
|
}): CreateTerminalChargeRequest;
|
|
6066
6116
|
toObject(): {
|
|
6067
6117
|
terminalId?: string | undefined;
|
|
@@ -6073,6 +6123,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6073
6123
|
effectiveDate?: string | undefined;
|
|
6074
6124
|
expiryDate?: string | undefined;
|
|
6075
6125
|
createdBy?: string | undefined;
|
|
6126
|
+
auditContext?: string | undefined;
|
|
6076
6127
|
};
|
|
6077
6128
|
serialize(): Uint8Array;
|
|
6078
6129
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6134,6 +6185,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6134
6185
|
constructor(data?: any[] | ({
|
|
6135
6186
|
chargeId?: string;
|
|
6136
6187
|
updatedBy?: string;
|
|
6188
|
+
auditContext?: string;
|
|
6137
6189
|
} & (({
|
|
6138
6190
|
amount?: number;
|
|
6139
6191
|
}) | ({
|
|
@@ -6164,6 +6216,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6164
6216
|
get hasExpiryDate(): boolean;
|
|
6165
6217
|
get updatedBy(): string;
|
|
6166
6218
|
set updatedBy(value: string);
|
|
6219
|
+
get auditContext(): string;
|
|
6220
|
+
set auditContext(value: string);
|
|
6167
6221
|
get _amount(): "amount" | "none";
|
|
6168
6222
|
get _description(): "description" | "none";
|
|
6169
6223
|
get _is_active(): "none" | "isActive";
|
|
@@ -6177,6 +6231,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6177
6231
|
effectiveDate?: string;
|
|
6178
6232
|
expiryDate?: string;
|
|
6179
6233
|
updatedBy?: string;
|
|
6234
|
+
auditContext?: string;
|
|
6180
6235
|
}): UpdateTerminalChargeRequest;
|
|
6181
6236
|
toObject(): {
|
|
6182
6237
|
chargeId?: string | undefined;
|
|
@@ -6186,6 +6241,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6186
6241
|
effectiveDate?: string | undefined;
|
|
6187
6242
|
expiryDate?: string | undefined;
|
|
6188
6243
|
updatedBy?: string | undefined;
|
|
6244
|
+
auditContext?: string | undefined;
|
|
6189
6245
|
};
|
|
6190
6246
|
serialize(): Uint8Array;
|
|
6191
6247
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6523,6 +6579,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6523
6579
|
description?: string;
|
|
6524
6580
|
isActive?: boolean;
|
|
6525
6581
|
createdBy?: string;
|
|
6582
|
+
auditContext?: string;
|
|
6526
6583
|
} & (({
|
|
6527
6584
|
effectiveDate?: string;
|
|
6528
6585
|
}) | ({
|
|
@@ -6548,6 +6605,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6548
6605
|
get hasExpiryDate(): boolean;
|
|
6549
6606
|
get createdBy(): string;
|
|
6550
6607
|
set createdBy(value: string);
|
|
6608
|
+
get auditContext(): string;
|
|
6609
|
+
set auditContext(value: string);
|
|
6551
6610
|
get _effective_date(): "none" | "effectiveDate";
|
|
6552
6611
|
get _expiry_date(): "none" | "expiryDate";
|
|
6553
6612
|
static fromObject(data: {
|
|
@@ -6560,6 +6619,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6560
6619
|
effectiveDate?: string;
|
|
6561
6620
|
expiryDate?: string;
|
|
6562
6621
|
createdBy?: string;
|
|
6622
|
+
auditContext?: string;
|
|
6563
6623
|
}): CreateTerminalLimitRequest;
|
|
6564
6624
|
toObject(): {
|
|
6565
6625
|
terminalId?: string | undefined;
|
|
@@ -6571,6 +6631,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6571
6631
|
effectiveDate?: string | undefined;
|
|
6572
6632
|
expiryDate?: string | undefined;
|
|
6573
6633
|
createdBy?: string | undefined;
|
|
6634
|
+
auditContext?: string | undefined;
|
|
6574
6635
|
};
|
|
6575
6636
|
serialize(): Uint8Array;
|
|
6576
6637
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6632,6 +6693,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6632
6693
|
constructor(data?: any[] | ({
|
|
6633
6694
|
limitId?: string;
|
|
6634
6695
|
updatedBy?: string;
|
|
6696
|
+
auditContext?: string;
|
|
6635
6697
|
} & (({
|
|
6636
6698
|
limitAmount?: number;
|
|
6637
6699
|
}) | ({
|
|
@@ -6662,6 +6724,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6662
6724
|
get hasExpiryDate(): boolean;
|
|
6663
6725
|
get updatedBy(): string;
|
|
6664
6726
|
set updatedBy(value: string);
|
|
6727
|
+
get auditContext(): string;
|
|
6728
|
+
set auditContext(value: string);
|
|
6665
6729
|
get _limit_amount(): "none" | "limitAmount";
|
|
6666
6730
|
get _description(): "description" | "none";
|
|
6667
6731
|
get _is_active(): "none" | "isActive";
|
|
@@ -6675,6 +6739,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6675
6739
|
effectiveDate?: string;
|
|
6676
6740
|
expiryDate?: string;
|
|
6677
6741
|
updatedBy?: string;
|
|
6742
|
+
auditContext?: string;
|
|
6678
6743
|
}): UpdateTerminalLimitRequest;
|
|
6679
6744
|
toObject(): {
|
|
6680
6745
|
limitId?: string | undefined;
|
|
@@ -6684,6 +6749,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6684
6749
|
effectiveDate?: string | undefined;
|
|
6685
6750
|
expiryDate?: string | undefined;
|
|
6686
6751
|
updatedBy?: string | undefined;
|
|
6752
|
+
auditContext?: string | undefined;
|
|
6687
6753
|
};
|
|
6688
6754
|
serialize(): Uint8Array;
|
|
6689
6755
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6968,6 +7034,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6968
7034
|
terminalId?: string;
|
|
6969
7035
|
functions?: UpdateTerminalFunctionsRequest.UpdateTerminalFunctionData[];
|
|
6970
7036
|
updatedBy?: string;
|
|
7037
|
+
auditContext?: string;
|
|
6971
7038
|
});
|
|
6972
7039
|
get terminalId(): string;
|
|
6973
7040
|
set terminalId(value: string);
|
|
@@ -6975,10 +7042,13 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6975
7042
|
set functions(value: UpdateTerminalFunctionsRequest.UpdateTerminalFunctionData[]);
|
|
6976
7043
|
get updatedBy(): string;
|
|
6977
7044
|
set updatedBy(value: string);
|
|
7045
|
+
get auditContext(): string;
|
|
7046
|
+
set auditContext(value: string);
|
|
6978
7047
|
static fromObject(data: {
|
|
6979
7048
|
terminalId?: string;
|
|
6980
7049
|
functions?: ReturnType<typeof UpdateTerminalFunctionsRequest.UpdateTerminalFunctionData.prototype.toObject>[];
|
|
6981
7050
|
updatedBy?: string;
|
|
7051
|
+
auditContext?: string;
|
|
6982
7052
|
}): UpdateTerminalFunctionsRequest;
|
|
6983
7053
|
toObject(): {
|
|
6984
7054
|
terminalId?: string | undefined;
|
|
@@ -6987,6 +7057,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6987
7057
|
enabled?: boolean | undefined;
|
|
6988
7058
|
}[] | undefined;
|
|
6989
7059
|
updatedBy?: string | undefined;
|
|
7060
|
+
auditContext?: string | undefined;
|
|
6990
7061
|
};
|
|
6991
7062
|
serialize(): Uint8Array;
|
|
6992
7063
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7246,6 +7317,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7246
7317
|
businessId?: string;
|
|
7247
7318
|
outletId?: string;
|
|
7248
7319
|
updatedBy?: string;
|
|
7320
|
+
auditContext?: string;
|
|
7249
7321
|
});
|
|
7250
7322
|
get terminalId(): string;
|
|
7251
7323
|
set terminalId(value: string);
|
|
@@ -7255,17 +7327,21 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7255
7327
|
set outletId(value: string);
|
|
7256
7328
|
get updatedBy(): string;
|
|
7257
7329
|
set updatedBy(value: string);
|
|
7330
|
+
get auditContext(): string;
|
|
7331
|
+
set auditContext(value: string);
|
|
7258
7332
|
static fromObject(data: {
|
|
7259
7333
|
terminalId?: string;
|
|
7260
7334
|
businessId?: string;
|
|
7261
7335
|
outletId?: string;
|
|
7262
7336
|
updatedBy?: string;
|
|
7337
|
+
auditContext?: string;
|
|
7263
7338
|
}): AssignTerminalToOutletRequest;
|
|
7264
7339
|
toObject(): {
|
|
7265
7340
|
terminalId?: string | undefined;
|
|
7266
7341
|
businessId?: string | undefined;
|
|
7267
7342
|
outletId?: string | undefined;
|
|
7268
7343
|
updatedBy?: string | undefined;
|
|
7344
|
+
auditContext?: string | undefined;
|
|
7269
7345
|
};
|
|
7270
7346
|
serialize(): Uint8Array;
|
|
7271
7347
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7280,6 +7356,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7280
7356
|
businessId?: string;
|
|
7281
7357
|
agentId?: string;
|
|
7282
7358
|
updatedBy?: string;
|
|
7359
|
+
auditContext?: string;
|
|
7283
7360
|
});
|
|
7284
7361
|
get terminalId(): string;
|
|
7285
7362
|
set terminalId(value: string);
|
|
@@ -7289,17 +7366,21 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7289
7366
|
set agentId(value: string);
|
|
7290
7367
|
get updatedBy(): string;
|
|
7291
7368
|
set updatedBy(value: string);
|
|
7369
|
+
get auditContext(): string;
|
|
7370
|
+
set auditContext(value: string);
|
|
7292
7371
|
static fromObject(data: {
|
|
7293
7372
|
terminalId?: string;
|
|
7294
7373
|
businessId?: string;
|
|
7295
7374
|
agentId?: string;
|
|
7296
7375
|
updatedBy?: string;
|
|
7376
|
+
auditContext?: string;
|
|
7297
7377
|
}): AssignTerminalToAgentRequest;
|
|
7298
7378
|
toObject(): {
|
|
7299
7379
|
terminalId?: string | undefined;
|
|
7300
7380
|
businessId?: string | undefined;
|
|
7301
7381
|
agentId?: string | undefined;
|
|
7302
7382
|
updatedBy?: string | undefined;
|
|
7383
|
+
auditContext?: string | undefined;
|
|
7303
7384
|
};
|
|
7304
7385
|
serialize(): Uint8Array;
|
|
7305
7386
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7316,6 +7397,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7316
7397
|
category?: string;
|
|
7317
7398
|
address?: string;
|
|
7318
7399
|
phoneNumber?: string;
|
|
7400
|
+
auditContext?: string;
|
|
7319
7401
|
});
|
|
7320
7402
|
get business(): string;
|
|
7321
7403
|
set business(value: string);
|
|
@@ -7329,6 +7411,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7329
7411
|
set address(value: string);
|
|
7330
7412
|
get phoneNumber(): string;
|
|
7331
7413
|
set phoneNumber(value: string);
|
|
7414
|
+
get auditContext(): string;
|
|
7415
|
+
set auditContext(value: string);
|
|
7332
7416
|
static fromObject(data: {
|
|
7333
7417
|
business?: string;
|
|
7334
7418
|
quantity?: number;
|
|
@@ -7336,6 +7420,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7336
7420
|
category?: string;
|
|
7337
7421
|
address?: string;
|
|
7338
7422
|
phoneNumber?: string;
|
|
7423
|
+
auditContext?: string;
|
|
7339
7424
|
}): RequestTerminalRequest;
|
|
7340
7425
|
toObject(): {
|
|
7341
7426
|
business?: string | undefined;
|
|
@@ -7344,6 +7429,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7344
7429
|
category?: string | undefined;
|
|
7345
7430
|
address?: string | undefined;
|
|
7346
7431
|
phoneNumber?: string | undefined;
|
|
7432
|
+
auditContext?: string | undefined;
|
|
7347
7433
|
};
|
|
7348
7434
|
serialize(): Uint8Array;
|
|
7349
7435
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7476,6 +7562,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7476
7562
|
reason?: string;
|
|
7477
7563
|
admin?: string;
|
|
7478
7564
|
terminals?: string[];
|
|
7565
|
+
auditContext?: string;
|
|
7479
7566
|
});
|
|
7480
7567
|
get requestId(): string;
|
|
7481
7568
|
set requestId(value: string);
|
|
@@ -7485,17 +7572,21 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7485
7572
|
set admin(value: string);
|
|
7486
7573
|
get terminals(): string[];
|
|
7487
7574
|
set terminals(value: string[]);
|
|
7575
|
+
get auditContext(): string;
|
|
7576
|
+
set auditContext(value: string);
|
|
7488
7577
|
static fromObject(data: {
|
|
7489
7578
|
requestId?: string;
|
|
7490
7579
|
reason?: string;
|
|
7491
7580
|
admin?: string;
|
|
7492
7581
|
terminals?: string[];
|
|
7582
|
+
auditContext?: string;
|
|
7493
7583
|
}): ApproveTerminalRequestRequest;
|
|
7494
7584
|
toObject(): {
|
|
7495
7585
|
requestId?: string | undefined;
|
|
7496
7586
|
reason?: string | undefined;
|
|
7497
7587
|
admin?: string | undefined;
|
|
7498
7588
|
terminals?: string[] | undefined;
|
|
7589
|
+
auditContext?: string | undefined;
|
|
7499
7590
|
};
|
|
7500
7591
|
serialize(): Uint8Array;
|
|
7501
7592
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7659,6 +7750,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7659
7750
|
requestId?: string;
|
|
7660
7751
|
reason?: string;
|
|
7661
7752
|
admin?: string;
|
|
7753
|
+
auditContext?: string;
|
|
7662
7754
|
});
|
|
7663
7755
|
get requestId(): string;
|
|
7664
7756
|
set requestId(value: string);
|
|
@@ -7666,15 +7758,19 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7666
7758
|
set reason(value: string);
|
|
7667
7759
|
get admin(): string;
|
|
7668
7760
|
set admin(value: string);
|
|
7761
|
+
get auditContext(): string;
|
|
7762
|
+
set auditContext(value: string);
|
|
7669
7763
|
static fromObject(data: {
|
|
7670
7764
|
requestId?: string;
|
|
7671
7765
|
reason?: string;
|
|
7672
7766
|
admin?: string;
|
|
7767
|
+
auditContext?: string;
|
|
7673
7768
|
}): RejectTerminalRequestRequest;
|
|
7674
7769
|
toObject(): {
|
|
7675
7770
|
requestId?: string | undefined;
|
|
7676
7771
|
reason?: string | undefined;
|
|
7677
7772
|
admin?: string | undefined;
|
|
7773
|
+
auditContext?: string | undefined;
|
|
7678
7774
|
};
|
|
7679
7775
|
serialize(): Uint8Array;
|
|
7680
7776
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -8097,14 +8193,19 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8097
8193
|
#private;
|
|
8098
8194
|
constructor(data?: any[] | {
|
|
8099
8195
|
requestId?: string;
|
|
8196
|
+
auditContext?: string;
|
|
8100
8197
|
});
|
|
8101
8198
|
get requestId(): string;
|
|
8102
8199
|
set requestId(value: string);
|
|
8200
|
+
get auditContext(): string;
|
|
8201
|
+
set auditContext(value: string);
|
|
8103
8202
|
static fromObject(data: {
|
|
8104
8203
|
requestId?: string;
|
|
8204
|
+
auditContext?: string;
|
|
8105
8205
|
}): DeleteTerminalRequestRequest;
|
|
8106
8206
|
toObject(): {
|
|
8107
8207
|
requestId?: string | undefined;
|
|
8208
|
+
auditContext?: string | undefined;
|
|
8108
8209
|
};
|
|
8109
8210
|
serialize(): Uint8Array;
|
|
8110
8211
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -8125,6 +8226,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8125
8226
|
priority?: number;
|
|
8126
8227
|
createdBy?: string;
|
|
8127
8228
|
metadata?: POSEntityLimitMetadata;
|
|
8229
|
+
auditContext?: string;
|
|
8128
8230
|
});
|
|
8129
8231
|
get entityType(): string;
|
|
8130
8232
|
set entityType(value: string);
|
|
@@ -8147,6 +8249,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8147
8249
|
get metadata(): POSEntityLimitMetadata;
|
|
8148
8250
|
set metadata(value: POSEntityLimitMetadata);
|
|
8149
8251
|
get hasMetadata(): boolean;
|
|
8252
|
+
get auditContext(): string;
|
|
8253
|
+
set auditContext(value: string);
|
|
8150
8254
|
static fromObject(data: {
|
|
8151
8255
|
entityType?: string;
|
|
8152
8256
|
entityId?: string;
|
|
@@ -8158,6 +8262,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8158
8262
|
priority?: number;
|
|
8159
8263
|
createdBy?: string;
|
|
8160
8264
|
metadata?: ReturnType<typeof POSEntityLimitMetadata.prototype.toObject>;
|
|
8265
|
+
auditContext?: string;
|
|
8161
8266
|
}): CreatePOSEntityLimitRequest;
|
|
8162
8267
|
toObject(): {
|
|
8163
8268
|
entityType?: string | undefined;
|
|
@@ -8174,6 +8279,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8174
8279
|
warningThreshold?: number | undefined;
|
|
8175
8280
|
notifyOnExceed?: boolean | undefined;
|
|
8176
8281
|
} | undefined;
|
|
8282
|
+
auditContext?: string | undefined;
|
|
8177
8283
|
};
|
|
8178
8284
|
serialize(): Uint8Array;
|
|
8179
8285
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -8249,6 +8355,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8249
8355
|
constructor(data?: any[] | ({
|
|
8250
8356
|
limitId?: string;
|
|
8251
8357
|
updatedBy?: string;
|
|
8358
|
+
auditContext?: string;
|
|
8252
8359
|
} & (({
|
|
8253
8360
|
limitAmount?: number;
|
|
8254
8361
|
}) | ({
|
|
@@ -8284,6 +8391,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8284
8391
|
get metadata(): POSEntityLimitMetadata;
|
|
8285
8392
|
set metadata(value: POSEntityLimitMetadata);
|
|
8286
8393
|
get hasMetadata(): boolean;
|
|
8394
|
+
get auditContext(): string;
|
|
8395
|
+
set auditContext(value: string);
|
|
8287
8396
|
get _limit_amount(): "none" | "limitAmount";
|
|
8288
8397
|
get _limit_count(): "none" | "limitCount";
|
|
8289
8398
|
get _status(): "status" | "none";
|
|
@@ -8299,6 +8408,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8299
8408
|
timezone?: string;
|
|
8300
8409
|
updatedBy?: string;
|
|
8301
8410
|
metadata?: ReturnType<typeof POSEntityLimitMetadata.prototype.toObject>;
|
|
8411
|
+
auditContext?: string;
|
|
8302
8412
|
}): UpdatePOSEntityLimitRequest;
|
|
8303
8413
|
toObject(): {
|
|
8304
8414
|
limitId?: string | undefined;
|
|
@@ -8313,6 +8423,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8313
8423
|
warningThreshold?: number | undefined;
|
|
8314
8424
|
notifyOnExceed?: boolean | undefined;
|
|
8315
8425
|
} | undefined;
|
|
8426
|
+
auditContext?: string | undefined;
|
|
8316
8427
|
};
|
|
8317
8428
|
serialize(): Uint8Array;
|
|
8318
8429
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -9129,6 +9240,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9129
9240
|
priority?: number;
|
|
9130
9241
|
currency?: string;
|
|
9131
9242
|
createdBy?: string;
|
|
9243
|
+
auditContext?: string;
|
|
9132
9244
|
});
|
|
9133
9245
|
get entityType(): string;
|
|
9134
9246
|
set entityType(value: string);
|
|
@@ -9158,6 +9270,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9158
9270
|
set currency(value: string);
|
|
9159
9271
|
get createdBy(): string;
|
|
9160
9272
|
set createdBy(value: string);
|
|
9273
|
+
get auditContext(): string;
|
|
9274
|
+
set auditContext(value: string);
|
|
9161
9275
|
static fromObject(data: {
|
|
9162
9276
|
entityType?: string;
|
|
9163
9277
|
entityId?: string;
|
|
@@ -9173,6 +9287,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9173
9287
|
priority?: number;
|
|
9174
9288
|
currency?: string;
|
|
9175
9289
|
createdBy?: string;
|
|
9290
|
+
auditContext?: string;
|
|
9176
9291
|
}): CreatePOSEntityChargeRequest;
|
|
9177
9292
|
toObject(): {
|
|
9178
9293
|
entityType?: string | undefined;
|
|
@@ -9194,6 +9309,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9194
9309
|
priority?: number | undefined;
|
|
9195
9310
|
currency?: string | undefined;
|
|
9196
9311
|
createdBy?: string | undefined;
|
|
9312
|
+
auditContext?: string | undefined;
|
|
9197
9313
|
};
|
|
9198
9314
|
serialize(): Uint8Array;
|
|
9199
9315
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -9269,6 +9385,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9269
9385
|
chargeId?: string;
|
|
9270
9386
|
chargeTiers?: POSChargeTier[];
|
|
9271
9387
|
updatedBy?: string;
|
|
9388
|
+
auditContext?: string;
|
|
9272
9389
|
} & (({
|
|
9273
9390
|
chargeName?: string;
|
|
9274
9391
|
}) | ({
|
|
@@ -9316,6 +9433,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9316
9433
|
get hasPriority(): boolean;
|
|
9317
9434
|
get updatedBy(): string;
|
|
9318
9435
|
set updatedBy(value: string);
|
|
9436
|
+
get auditContext(): string;
|
|
9437
|
+
set auditContext(value: string);
|
|
9319
9438
|
get _charge_name(): "none" | "chargeName";
|
|
9320
9439
|
get _charge_description(): "none" | "chargeDescription";
|
|
9321
9440
|
get _calculation_method(): "none" | "calculationMethod";
|
|
@@ -9336,6 +9455,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9336
9455
|
status?: string;
|
|
9337
9456
|
priority?: number;
|
|
9338
9457
|
updatedBy?: string;
|
|
9458
|
+
auditContext?: string;
|
|
9339
9459
|
}): UpdatePOSEntityChargeRequest;
|
|
9340
9460
|
toObject(): {
|
|
9341
9461
|
chargeId?: string | undefined;
|
|
@@ -9354,6 +9474,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9354
9474
|
status?: string | undefined;
|
|
9355
9475
|
priority?: number | undefined;
|
|
9356
9476
|
updatedBy?: string | undefined;
|
|
9477
|
+
auditContext?: string | undefined;
|
|
9357
9478
|
};
|
|
9358
9479
|
serialize(): Uint8Array;
|
|
9359
9480
|
serialize(w: pb_1.BinaryWriter): void;
|