@technova-tech/olive-proto-lib 1.8.8 → 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 +460 -0
- package/terminal/terminal.js +160 -0
- package/types/pos.v1/terminals.d.ts +115 -0
- package/types/terminal/terminal.d.ts +40 -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;
|
|
@@ -1363,6 +1383,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1363
1383
|
updatedBy?: string;
|
|
1364
1384
|
reason?: string;
|
|
1365
1385
|
metadata?: Map<string, string>;
|
|
1386
|
+
auditContext?: string;
|
|
1366
1387
|
});
|
|
1367
1388
|
get id(): string;
|
|
1368
1389
|
set id(value: string);
|
|
@@ -1374,6 +1395,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1374
1395
|
set reason(value: string);
|
|
1375
1396
|
get metadata(): Map<string, string>;
|
|
1376
1397
|
set metadata(value: Map<string, string>);
|
|
1398
|
+
get auditContext(): string;
|
|
1399
|
+
set auditContext(value: string);
|
|
1377
1400
|
static fromObject(data: {
|
|
1378
1401
|
id?: string;
|
|
1379
1402
|
status?: string;
|
|
@@ -1382,6 +1405,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1382
1405
|
metadata?: {
|
|
1383
1406
|
[key: string]: string;
|
|
1384
1407
|
};
|
|
1408
|
+
auditContext?: string;
|
|
1385
1409
|
}): UpdateTerminalStatusRequest;
|
|
1386
1410
|
toObject(): {
|
|
1387
1411
|
id?: string | undefined;
|
|
@@ -1391,6 +1415,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1391
1415
|
metadata?: {
|
|
1392
1416
|
[key: string]: string;
|
|
1393
1417
|
} | undefined;
|
|
1418
|
+
auditContext?: string | undefined;
|
|
1394
1419
|
};
|
|
1395
1420
|
serialize(): Uint8Array;
|
|
1396
1421
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -3686,6 +3711,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3686
3711
|
terminals?: TerminalBulkData[];
|
|
3687
3712
|
uploadedBy?: string;
|
|
3688
3713
|
metadata?: Map<string, string>;
|
|
3714
|
+
auditContext?: string;
|
|
3689
3715
|
});
|
|
3690
3716
|
get terminalTypeId(): string;
|
|
3691
3717
|
set terminalTypeId(value: string);
|
|
@@ -3695,6 +3721,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3695
3721
|
set uploadedBy(value: string);
|
|
3696
3722
|
get metadata(): Map<string, string>;
|
|
3697
3723
|
set metadata(value: Map<string, string>);
|
|
3724
|
+
get auditContext(): string;
|
|
3725
|
+
set auditContext(value: string);
|
|
3698
3726
|
static fromObject(data: {
|
|
3699
3727
|
terminalTypeId?: string;
|
|
3700
3728
|
terminals?: ReturnType<typeof TerminalBulkData.prototype.toObject>[];
|
|
@@ -3702,6 +3730,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3702
3730
|
metadata?: {
|
|
3703
3731
|
[key: string]: string;
|
|
3704
3732
|
};
|
|
3733
|
+
auditContext?: string;
|
|
3705
3734
|
}): BulkUploadTerminalsRequest;
|
|
3706
3735
|
toObject(): {
|
|
3707
3736
|
terminalTypeId?: string | undefined;
|
|
@@ -3721,6 +3750,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3721
3750
|
metadata?: {
|
|
3722
3751
|
[key: string]: string;
|
|
3723
3752
|
} | undefined;
|
|
3753
|
+
auditContext?: string | undefined;
|
|
3724
3754
|
};
|
|
3725
3755
|
serialize(): Uint8Array;
|
|
3726
3756
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -3911,6 +3941,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3911
3941
|
newPin?: string;
|
|
3912
3942
|
changedBy?: string;
|
|
3913
3943
|
reason?: string;
|
|
3944
|
+
auditContext?: string;
|
|
3914
3945
|
});
|
|
3915
3946
|
get terminalId(): string;
|
|
3916
3947
|
set terminalId(value: string);
|
|
@@ -3922,12 +3953,15 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3922
3953
|
set changedBy(value: string);
|
|
3923
3954
|
get reason(): string;
|
|
3924
3955
|
set reason(value: string);
|
|
3956
|
+
get auditContext(): string;
|
|
3957
|
+
set auditContext(value: string);
|
|
3925
3958
|
static fromObject(data: {
|
|
3926
3959
|
terminalId?: string;
|
|
3927
3960
|
oldPin?: string;
|
|
3928
3961
|
newPin?: string;
|
|
3929
3962
|
changedBy?: string;
|
|
3930
3963
|
reason?: string;
|
|
3964
|
+
auditContext?: string;
|
|
3931
3965
|
}): ChangeTerminalPinRequest;
|
|
3932
3966
|
toObject(): {
|
|
3933
3967
|
terminalId?: string | undefined;
|
|
@@ -3935,6 +3969,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3935
3969
|
newPin?: string | undefined;
|
|
3936
3970
|
changedBy?: string | undefined;
|
|
3937
3971
|
reason?: string | undefined;
|
|
3972
|
+
auditContext?: string | undefined;
|
|
3938
3973
|
};
|
|
3939
3974
|
serialize(): Uint8Array;
|
|
3940
3975
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -5778,6 +5813,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
5778
5813
|
terminalId?: string;
|
|
5779
5814
|
configuration?: TerminalConfiguration;
|
|
5780
5815
|
updatedBy?: string;
|
|
5816
|
+
auditContext?: string;
|
|
5781
5817
|
});
|
|
5782
5818
|
get terminalId(): string;
|
|
5783
5819
|
set terminalId(value: string);
|
|
@@ -5786,10 +5822,13 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
5786
5822
|
get hasConfiguration(): boolean;
|
|
5787
5823
|
get updatedBy(): string;
|
|
5788
5824
|
set updatedBy(value: string);
|
|
5825
|
+
get auditContext(): string;
|
|
5826
|
+
set auditContext(value: string);
|
|
5789
5827
|
static fromObject(data: {
|
|
5790
5828
|
terminalId?: string;
|
|
5791
5829
|
configuration?: ReturnType<typeof TerminalConfiguration.prototype.toObject>;
|
|
5792
5830
|
updatedBy?: string;
|
|
5831
|
+
auditContext?: string;
|
|
5793
5832
|
}): UpdateTerminalConfigurationRequest;
|
|
5794
5833
|
toObject(): {
|
|
5795
5834
|
terminalId?: string | undefined;
|
|
@@ -5803,6 +5842,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
5803
5842
|
version?: number | undefined;
|
|
5804
5843
|
} | undefined;
|
|
5805
5844
|
updatedBy?: string | undefined;
|
|
5845
|
+
auditContext?: string | undefined;
|
|
5806
5846
|
};
|
|
5807
5847
|
serialize(): Uint8Array;
|
|
5808
5848
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6031,6 +6071,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6031
6071
|
description?: string;
|
|
6032
6072
|
isActive?: boolean;
|
|
6033
6073
|
createdBy?: string;
|
|
6074
|
+
auditContext?: string;
|
|
6034
6075
|
} & (({
|
|
6035
6076
|
effectiveDate?: string;
|
|
6036
6077
|
}) | ({
|
|
@@ -6056,6 +6097,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6056
6097
|
get hasExpiryDate(): boolean;
|
|
6057
6098
|
get createdBy(): string;
|
|
6058
6099
|
set createdBy(value: string);
|
|
6100
|
+
get auditContext(): string;
|
|
6101
|
+
set auditContext(value: string);
|
|
6059
6102
|
get _effective_date(): "none" | "effectiveDate";
|
|
6060
6103
|
get _expiry_date(): "none" | "expiryDate";
|
|
6061
6104
|
static fromObject(data: {
|
|
@@ -6068,6 +6111,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6068
6111
|
effectiveDate?: string;
|
|
6069
6112
|
expiryDate?: string;
|
|
6070
6113
|
createdBy?: string;
|
|
6114
|
+
auditContext?: string;
|
|
6071
6115
|
}): CreateTerminalChargeRequest;
|
|
6072
6116
|
toObject(): {
|
|
6073
6117
|
terminalId?: string | undefined;
|
|
@@ -6079,6 +6123,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6079
6123
|
effectiveDate?: string | undefined;
|
|
6080
6124
|
expiryDate?: string | undefined;
|
|
6081
6125
|
createdBy?: string | undefined;
|
|
6126
|
+
auditContext?: string | undefined;
|
|
6082
6127
|
};
|
|
6083
6128
|
serialize(): Uint8Array;
|
|
6084
6129
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6140,6 +6185,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6140
6185
|
constructor(data?: any[] | ({
|
|
6141
6186
|
chargeId?: string;
|
|
6142
6187
|
updatedBy?: string;
|
|
6188
|
+
auditContext?: string;
|
|
6143
6189
|
} & (({
|
|
6144
6190
|
amount?: number;
|
|
6145
6191
|
}) | ({
|
|
@@ -6170,6 +6216,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6170
6216
|
get hasExpiryDate(): boolean;
|
|
6171
6217
|
get updatedBy(): string;
|
|
6172
6218
|
set updatedBy(value: string);
|
|
6219
|
+
get auditContext(): string;
|
|
6220
|
+
set auditContext(value: string);
|
|
6173
6221
|
get _amount(): "amount" | "none";
|
|
6174
6222
|
get _description(): "description" | "none";
|
|
6175
6223
|
get _is_active(): "none" | "isActive";
|
|
@@ -6183,6 +6231,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6183
6231
|
effectiveDate?: string;
|
|
6184
6232
|
expiryDate?: string;
|
|
6185
6233
|
updatedBy?: string;
|
|
6234
|
+
auditContext?: string;
|
|
6186
6235
|
}): UpdateTerminalChargeRequest;
|
|
6187
6236
|
toObject(): {
|
|
6188
6237
|
chargeId?: string | undefined;
|
|
@@ -6192,6 +6241,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6192
6241
|
effectiveDate?: string | undefined;
|
|
6193
6242
|
expiryDate?: string | undefined;
|
|
6194
6243
|
updatedBy?: string | undefined;
|
|
6244
|
+
auditContext?: string | undefined;
|
|
6195
6245
|
};
|
|
6196
6246
|
serialize(): Uint8Array;
|
|
6197
6247
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6529,6 +6579,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6529
6579
|
description?: string;
|
|
6530
6580
|
isActive?: boolean;
|
|
6531
6581
|
createdBy?: string;
|
|
6582
|
+
auditContext?: string;
|
|
6532
6583
|
} & (({
|
|
6533
6584
|
effectiveDate?: string;
|
|
6534
6585
|
}) | ({
|
|
@@ -6554,6 +6605,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6554
6605
|
get hasExpiryDate(): boolean;
|
|
6555
6606
|
get createdBy(): string;
|
|
6556
6607
|
set createdBy(value: string);
|
|
6608
|
+
get auditContext(): string;
|
|
6609
|
+
set auditContext(value: string);
|
|
6557
6610
|
get _effective_date(): "none" | "effectiveDate";
|
|
6558
6611
|
get _expiry_date(): "none" | "expiryDate";
|
|
6559
6612
|
static fromObject(data: {
|
|
@@ -6566,6 +6619,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6566
6619
|
effectiveDate?: string;
|
|
6567
6620
|
expiryDate?: string;
|
|
6568
6621
|
createdBy?: string;
|
|
6622
|
+
auditContext?: string;
|
|
6569
6623
|
}): CreateTerminalLimitRequest;
|
|
6570
6624
|
toObject(): {
|
|
6571
6625
|
terminalId?: string | undefined;
|
|
@@ -6577,6 +6631,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6577
6631
|
effectiveDate?: string | undefined;
|
|
6578
6632
|
expiryDate?: string | undefined;
|
|
6579
6633
|
createdBy?: string | undefined;
|
|
6634
|
+
auditContext?: string | undefined;
|
|
6580
6635
|
};
|
|
6581
6636
|
serialize(): Uint8Array;
|
|
6582
6637
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6638,6 +6693,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6638
6693
|
constructor(data?: any[] | ({
|
|
6639
6694
|
limitId?: string;
|
|
6640
6695
|
updatedBy?: string;
|
|
6696
|
+
auditContext?: string;
|
|
6641
6697
|
} & (({
|
|
6642
6698
|
limitAmount?: number;
|
|
6643
6699
|
}) | ({
|
|
@@ -6668,6 +6724,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6668
6724
|
get hasExpiryDate(): boolean;
|
|
6669
6725
|
get updatedBy(): string;
|
|
6670
6726
|
set updatedBy(value: string);
|
|
6727
|
+
get auditContext(): string;
|
|
6728
|
+
set auditContext(value: string);
|
|
6671
6729
|
get _limit_amount(): "none" | "limitAmount";
|
|
6672
6730
|
get _description(): "description" | "none";
|
|
6673
6731
|
get _is_active(): "none" | "isActive";
|
|
@@ -6681,6 +6739,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6681
6739
|
effectiveDate?: string;
|
|
6682
6740
|
expiryDate?: string;
|
|
6683
6741
|
updatedBy?: string;
|
|
6742
|
+
auditContext?: string;
|
|
6684
6743
|
}): UpdateTerminalLimitRequest;
|
|
6685
6744
|
toObject(): {
|
|
6686
6745
|
limitId?: string | undefined;
|
|
@@ -6690,6 +6749,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6690
6749
|
effectiveDate?: string | undefined;
|
|
6691
6750
|
expiryDate?: string | undefined;
|
|
6692
6751
|
updatedBy?: string | undefined;
|
|
6752
|
+
auditContext?: string | undefined;
|
|
6693
6753
|
};
|
|
6694
6754
|
serialize(): Uint8Array;
|
|
6695
6755
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -6974,6 +7034,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6974
7034
|
terminalId?: string;
|
|
6975
7035
|
functions?: UpdateTerminalFunctionsRequest.UpdateTerminalFunctionData[];
|
|
6976
7036
|
updatedBy?: string;
|
|
7037
|
+
auditContext?: string;
|
|
6977
7038
|
});
|
|
6978
7039
|
get terminalId(): string;
|
|
6979
7040
|
set terminalId(value: string);
|
|
@@ -6981,10 +7042,13 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6981
7042
|
set functions(value: UpdateTerminalFunctionsRequest.UpdateTerminalFunctionData[]);
|
|
6982
7043
|
get updatedBy(): string;
|
|
6983
7044
|
set updatedBy(value: string);
|
|
7045
|
+
get auditContext(): string;
|
|
7046
|
+
set auditContext(value: string);
|
|
6984
7047
|
static fromObject(data: {
|
|
6985
7048
|
terminalId?: string;
|
|
6986
7049
|
functions?: ReturnType<typeof UpdateTerminalFunctionsRequest.UpdateTerminalFunctionData.prototype.toObject>[];
|
|
6987
7050
|
updatedBy?: string;
|
|
7051
|
+
auditContext?: string;
|
|
6988
7052
|
}): UpdateTerminalFunctionsRequest;
|
|
6989
7053
|
toObject(): {
|
|
6990
7054
|
terminalId?: string | undefined;
|
|
@@ -6993,6 +7057,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
6993
7057
|
enabled?: boolean | undefined;
|
|
6994
7058
|
}[] | undefined;
|
|
6995
7059
|
updatedBy?: string | undefined;
|
|
7060
|
+
auditContext?: string | undefined;
|
|
6996
7061
|
};
|
|
6997
7062
|
serialize(): Uint8Array;
|
|
6998
7063
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7252,6 +7317,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7252
7317
|
businessId?: string;
|
|
7253
7318
|
outletId?: string;
|
|
7254
7319
|
updatedBy?: string;
|
|
7320
|
+
auditContext?: string;
|
|
7255
7321
|
});
|
|
7256
7322
|
get terminalId(): string;
|
|
7257
7323
|
set terminalId(value: string);
|
|
@@ -7261,17 +7327,21 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7261
7327
|
set outletId(value: string);
|
|
7262
7328
|
get updatedBy(): string;
|
|
7263
7329
|
set updatedBy(value: string);
|
|
7330
|
+
get auditContext(): string;
|
|
7331
|
+
set auditContext(value: string);
|
|
7264
7332
|
static fromObject(data: {
|
|
7265
7333
|
terminalId?: string;
|
|
7266
7334
|
businessId?: string;
|
|
7267
7335
|
outletId?: string;
|
|
7268
7336
|
updatedBy?: string;
|
|
7337
|
+
auditContext?: string;
|
|
7269
7338
|
}): AssignTerminalToOutletRequest;
|
|
7270
7339
|
toObject(): {
|
|
7271
7340
|
terminalId?: string | undefined;
|
|
7272
7341
|
businessId?: string | undefined;
|
|
7273
7342
|
outletId?: string | undefined;
|
|
7274
7343
|
updatedBy?: string | undefined;
|
|
7344
|
+
auditContext?: string | undefined;
|
|
7275
7345
|
};
|
|
7276
7346
|
serialize(): Uint8Array;
|
|
7277
7347
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7286,6 +7356,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7286
7356
|
businessId?: string;
|
|
7287
7357
|
agentId?: string;
|
|
7288
7358
|
updatedBy?: string;
|
|
7359
|
+
auditContext?: string;
|
|
7289
7360
|
});
|
|
7290
7361
|
get terminalId(): string;
|
|
7291
7362
|
set terminalId(value: string);
|
|
@@ -7295,17 +7366,21 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7295
7366
|
set agentId(value: string);
|
|
7296
7367
|
get updatedBy(): string;
|
|
7297
7368
|
set updatedBy(value: string);
|
|
7369
|
+
get auditContext(): string;
|
|
7370
|
+
set auditContext(value: string);
|
|
7298
7371
|
static fromObject(data: {
|
|
7299
7372
|
terminalId?: string;
|
|
7300
7373
|
businessId?: string;
|
|
7301
7374
|
agentId?: string;
|
|
7302
7375
|
updatedBy?: string;
|
|
7376
|
+
auditContext?: string;
|
|
7303
7377
|
}): AssignTerminalToAgentRequest;
|
|
7304
7378
|
toObject(): {
|
|
7305
7379
|
terminalId?: string | undefined;
|
|
7306
7380
|
businessId?: string | undefined;
|
|
7307
7381
|
agentId?: string | undefined;
|
|
7308
7382
|
updatedBy?: string | undefined;
|
|
7383
|
+
auditContext?: string | undefined;
|
|
7309
7384
|
};
|
|
7310
7385
|
serialize(): Uint8Array;
|
|
7311
7386
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7322,6 +7397,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7322
7397
|
category?: string;
|
|
7323
7398
|
address?: string;
|
|
7324
7399
|
phoneNumber?: string;
|
|
7400
|
+
auditContext?: string;
|
|
7325
7401
|
});
|
|
7326
7402
|
get business(): string;
|
|
7327
7403
|
set business(value: string);
|
|
@@ -7335,6 +7411,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7335
7411
|
set address(value: string);
|
|
7336
7412
|
get phoneNumber(): string;
|
|
7337
7413
|
set phoneNumber(value: string);
|
|
7414
|
+
get auditContext(): string;
|
|
7415
|
+
set auditContext(value: string);
|
|
7338
7416
|
static fromObject(data: {
|
|
7339
7417
|
business?: string;
|
|
7340
7418
|
quantity?: number;
|
|
@@ -7342,6 +7420,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7342
7420
|
category?: string;
|
|
7343
7421
|
address?: string;
|
|
7344
7422
|
phoneNumber?: string;
|
|
7423
|
+
auditContext?: string;
|
|
7345
7424
|
}): RequestTerminalRequest;
|
|
7346
7425
|
toObject(): {
|
|
7347
7426
|
business?: string | undefined;
|
|
@@ -7350,6 +7429,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7350
7429
|
category?: string | undefined;
|
|
7351
7430
|
address?: string | undefined;
|
|
7352
7431
|
phoneNumber?: string | undefined;
|
|
7432
|
+
auditContext?: string | undefined;
|
|
7353
7433
|
};
|
|
7354
7434
|
serialize(): Uint8Array;
|
|
7355
7435
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7482,6 +7562,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7482
7562
|
reason?: string;
|
|
7483
7563
|
admin?: string;
|
|
7484
7564
|
terminals?: string[];
|
|
7565
|
+
auditContext?: string;
|
|
7485
7566
|
});
|
|
7486
7567
|
get requestId(): string;
|
|
7487
7568
|
set requestId(value: string);
|
|
@@ -7491,17 +7572,21 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7491
7572
|
set admin(value: string);
|
|
7492
7573
|
get terminals(): string[];
|
|
7493
7574
|
set terminals(value: string[]);
|
|
7575
|
+
get auditContext(): string;
|
|
7576
|
+
set auditContext(value: string);
|
|
7494
7577
|
static fromObject(data: {
|
|
7495
7578
|
requestId?: string;
|
|
7496
7579
|
reason?: string;
|
|
7497
7580
|
admin?: string;
|
|
7498
7581
|
terminals?: string[];
|
|
7582
|
+
auditContext?: string;
|
|
7499
7583
|
}): ApproveTerminalRequestRequest;
|
|
7500
7584
|
toObject(): {
|
|
7501
7585
|
requestId?: string | undefined;
|
|
7502
7586
|
reason?: string | undefined;
|
|
7503
7587
|
admin?: string | undefined;
|
|
7504
7588
|
terminals?: string[] | undefined;
|
|
7589
|
+
auditContext?: string | undefined;
|
|
7505
7590
|
};
|
|
7506
7591
|
serialize(): Uint8Array;
|
|
7507
7592
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7665,6 +7750,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7665
7750
|
requestId?: string;
|
|
7666
7751
|
reason?: string;
|
|
7667
7752
|
admin?: string;
|
|
7753
|
+
auditContext?: string;
|
|
7668
7754
|
});
|
|
7669
7755
|
get requestId(): string;
|
|
7670
7756
|
set requestId(value: string);
|
|
@@ -7672,15 +7758,19 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7672
7758
|
set reason(value: string);
|
|
7673
7759
|
get admin(): string;
|
|
7674
7760
|
set admin(value: string);
|
|
7761
|
+
get auditContext(): string;
|
|
7762
|
+
set auditContext(value: string);
|
|
7675
7763
|
static fromObject(data: {
|
|
7676
7764
|
requestId?: string;
|
|
7677
7765
|
reason?: string;
|
|
7678
7766
|
admin?: string;
|
|
7767
|
+
auditContext?: string;
|
|
7679
7768
|
}): RejectTerminalRequestRequest;
|
|
7680
7769
|
toObject(): {
|
|
7681
7770
|
requestId?: string | undefined;
|
|
7682
7771
|
reason?: string | undefined;
|
|
7683
7772
|
admin?: string | undefined;
|
|
7773
|
+
auditContext?: string | undefined;
|
|
7684
7774
|
};
|
|
7685
7775
|
serialize(): Uint8Array;
|
|
7686
7776
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -8103,14 +8193,19 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8103
8193
|
#private;
|
|
8104
8194
|
constructor(data?: any[] | {
|
|
8105
8195
|
requestId?: string;
|
|
8196
|
+
auditContext?: string;
|
|
8106
8197
|
});
|
|
8107
8198
|
get requestId(): string;
|
|
8108
8199
|
set requestId(value: string);
|
|
8200
|
+
get auditContext(): string;
|
|
8201
|
+
set auditContext(value: string);
|
|
8109
8202
|
static fromObject(data: {
|
|
8110
8203
|
requestId?: string;
|
|
8204
|
+
auditContext?: string;
|
|
8111
8205
|
}): DeleteTerminalRequestRequest;
|
|
8112
8206
|
toObject(): {
|
|
8113
8207
|
requestId?: string | undefined;
|
|
8208
|
+
auditContext?: string | undefined;
|
|
8114
8209
|
};
|
|
8115
8210
|
serialize(): Uint8Array;
|
|
8116
8211
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -8131,6 +8226,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8131
8226
|
priority?: number;
|
|
8132
8227
|
createdBy?: string;
|
|
8133
8228
|
metadata?: POSEntityLimitMetadata;
|
|
8229
|
+
auditContext?: string;
|
|
8134
8230
|
});
|
|
8135
8231
|
get entityType(): string;
|
|
8136
8232
|
set entityType(value: string);
|
|
@@ -8153,6 +8249,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8153
8249
|
get metadata(): POSEntityLimitMetadata;
|
|
8154
8250
|
set metadata(value: POSEntityLimitMetadata);
|
|
8155
8251
|
get hasMetadata(): boolean;
|
|
8252
|
+
get auditContext(): string;
|
|
8253
|
+
set auditContext(value: string);
|
|
8156
8254
|
static fromObject(data: {
|
|
8157
8255
|
entityType?: string;
|
|
8158
8256
|
entityId?: string;
|
|
@@ -8164,6 +8262,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8164
8262
|
priority?: number;
|
|
8165
8263
|
createdBy?: string;
|
|
8166
8264
|
metadata?: ReturnType<typeof POSEntityLimitMetadata.prototype.toObject>;
|
|
8265
|
+
auditContext?: string;
|
|
8167
8266
|
}): CreatePOSEntityLimitRequest;
|
|
8168
8267
|
toObject(): {
|
|
8169
8268
|
entityType?: string | undefined;
|
|
@@ -8180,6 +8279,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8180
8279
|
warningThreshold?: number | undefined;
|
|
8181
8280
|
notifyOnExceed?: boolean | undefined;
|
|
8182
8281
|
} | undefined;
|
|
8282
|
+
auditContext?: string | undefined;
|
|
8183
8283
|
};
|
|
8184
8284
|
serialize(): Uint8Array;
|
|
8185
8285
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -8255,6 +8355,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8255
8355
|
constructor(data?: any[] | ({
|
|
8256
8356
|
limitId?: string;
|
|
8257
8357
|
updatedBy?: string;
|
|
8358
|
+
auditContext?: string;
|
|
8258
8359
|
} & (({
|
|
8259
8360
|
limitAmount?: number;
|
|
8260
8361
|
}) | ({
|
|
@@ -8290,6 +8391,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8290
8391
|
get metadata(): POSEntityLimitMetadata;
|
|
8291
8392
|
set metadata(value: POSEntityLimitMetadata);
|
|
8292
8393
|
get hasMetadata(): boolean;
|
|
8394
|
+
get auditContext(): string;
|
|
8395
|
+
set auditContext(value: string);
|
|
8293
8396
|
get _limit_amount(): "none" | "limitAmount";
|
|
8294
8397
|
get _limit_count(): "none" | "limitCount";
|
|
8295
8398
|
get _status(): "status" | "none";
|
|
@@ -8305,6 +8408,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8305
8408
|
timezone?: string;
|
|
8306
8409
|
updatedBy?: string;
|
|
8307
8410
|
metadata?: ReturnType<typeof POSEntityLimitMetadata.prototype.toObject>;
|
|
8411
|
+
auditContext?: string;
|
|
8308
8412
|
}): UpdatePOSEntityLimitRequest;
|
|
8309
8413
|
toObject(): {
|
|
8310
8414
|
limitId?: string | undefined;
|
|
@@ -8319,6 +8423,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
8319
8423
|
warningThreshold?: number | undefined;
|
|
8320
8424
|
notifyOnExceed?: boolean | undefined;
|
|
8321
8425
|
} | undefined;
|
|
8426
|
+
auditContext?: string | undefined;
|
|
8322
8427
|
};
|
|
8323
8428
|
serialize(): Uint8Array;
|
|
8324
8429
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -9135,6 +9240,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9135
9240
|
priority?: number;
|
|
9136
9241
|
currency?: string;
|
|
9137
9242
|
createdBy?: string;
|
|
9243
|
+
auditContext?: string;
|
|
9138
9244
|
});
|
|
9139
9245
|
get entityType(): string;
|
|
9140
9246
|
set entityType(value: string);
|
|
@@ -9164,6 +9270,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9164
9270
|
set currency(value: string);
|
|
9165
9271
|
get createdBy(): string;
|
|
9166
9272
|
set createdBy(value: string);
|
|
9273
|
+
get auditContext(): string;
|
|
9274
|
+
set auditContext(value: string);
|
|
9167
9275
|
static fromObject(data: {
|
|
9168
9276
|
entityType?: string;
|
|
9169
9277
|
entityId?: string;
|
|
@@ -9179,6 +9287,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9179
9287
|
priority?: number;
|
|
9180
9288
|
currency?: string;
|
|
9181
9289
|
createdBy?: string;
|
|
9290
|
+
auditContext?: string;
|
|
9182
9291
|
}): CreatePOSEntityChargeRequest;
|
|
9183
9292
|
toObject(): {
|
|
9184
9293
|
entityType?: string | undefined;
|
|
@@ -9200,6 +9309,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9200
9309
|
priority?: number | undefined;
|
|
9201
9310
|
currency?: string | undefined;
|
|
9202
9311
|
createdBy?: string | undefined;
|
|
9312
|
+
auditContext?: string | undefined;
|
|
9203
9313
|
};
|
|
9204
9314
|
serialize(): Uint8Array;
|
|
9205
9315
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -9275,6 +9385,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9275
9385
|
chargeId?: string;
|
|
9276
9386
|
chargeTiers?: POSChargeTier[];
|
|
9277
9387
|
updatedBy?: string;
|
|
9388
|
+
auditContext?: string;
|
|
9278
9389
|
} & (({
|
|
9279
9390
|
chargeName?: string;
|
|
9280
9391
|
}) | ({
|
|
@@ -9322,6 +9433,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9322
9433
|
get hasPriority(): boolean;
|
|
9323
9434
|
get updatedBy(): string;
|
|
9324
9435
|
set updatedBy(value: string);
|
|
9436
|
+
get auditContext(): string;
|
|
9437
|
+
set auditContext(value: string);
|
|
9325
9438
|
get _charge_name(): "none" | "chargeName";
|
|
9326
9439
|
get _charge_description(): "none" | "chargeDescription";
|
|
9327
9440
|
get _calculation_method(): "none" | "calculationMethod";
|
|
@@ -9342,6 +9455,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9342
9455
|
status?: string;
|
|
9343
9456
|
priority?: number;
|
|
9344
9457
|
updatedBy?: string;
|
|
9458
|
+
auditContext?: string;
|
|
9345
9459
|
}): UpdatePOSEntityChargeRequest;
|
|
9346
9460
|
toObject(): {
|
|
9347
9461
|
chargeId?: string | undefined;
|
|
@@ -9360,6 +9474,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
9360
9474
|
status?: string | undefined;
|
|
9361
9475
|
priority?: number | undefined;
|
|
9362
9476
|
updatedBy?: string | undefined;
|
|
9477
|
+
auditContext?: string | undefined;
|
|
9363
9478
|
};
|
|
9364
9479
|
serialize(): Uint8Array;
|
|
9365
9480
|
serialize(w: pb_1.BinaryWriter): void;
|