@technova-tech/olive-proto-lib 1.7.8 → 1.8.0
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 +81 -1
- package/terminal/terminal.js +20 -0
- package/types/pos.v1/terminals.d.ts +25 -0
- package/types/terminal/terminal.d.ts +14 -0
package/package.json
CHANGED
package/pos.v1/terminals.js
CHANGED
|
@@ -958,6 +958,9 @@ var com;
|
|
|
958
958
|
if ("notes" in data && data.notes != undefined) {
|
|
959
959
|
this.notes = data.notes;
|
|
960
960
|
}
|
|
961
|
+
if ("processorTid" in data && data.processorTid != undefined) {
|
|
962
|
+
this.processorTid = data.processorTid;
|
|
963
|
+
}
|
|
961
964
|
}
|
|
962
965
|
if (!this.deviceConfiguration)
|
|
963
966
|
this.deviceConfiguration = new Map();
|
|
@@ -1016,6 +1019,12 @@ var com;
|
|
|
1016
1019
|
set notes(value) {
|
|
1017
1020
|
pb_1.Message.setField(this, 9, value);
|
|
1018
1021
|
}
|
|
1022
|
+
get processorTid() {
|
|
1023
|
+
return pb_1.Message.getFieldWithDefault(this, 10, "");
|
|
1024
|
+
}
|
|
1025
|
+
set processorTid(value) {
|
|
1026
|
+
pb_1.Message.setField(this, 10, value);
|
|
1027
|
+
}
|
|
1019
1028
|
static fromObject(data) {
|
|
1020
1029
|
const message = new UpdateTerminalInstanceRequest({});
|
|
1021
1030
|
if (data.instanceId != null) {
|
|
@@ -1045,6 +1054,9 @@ var com;
|
|
|
1045
1054
|
if (data.notes != null) {
|
|
1046
1055
|
message.notes = data.notes;
|
|
1047
1056
|
}
|
|
1057
|
+
if (data.processorTid != null) {
|
|
1058
|
+
message.processorTid = data.processorTid;
|
|
1059
|
+
}
|
|
1048
1060
|
return message;
|
|
1049
1061
|
}
|
|
1050
1062
|
toObject() {
|
|
@@ -1076,6 +1088,9 @@ var com;
|
|
|
1076
1088
|
if (this.notes != null) {
|
|
1077
1089
|
data.notes = this.notes;
|
|
1078
1090
|
}
|
|
1091
|
+
if (this.processorTid != null) {
|
|
1092
|
+
data.processorTid = this.processorTid;
|
|
1093
|
+
}
|
|
1079
1094
|
return data;
|
|
1080
1095
|
}
|
|
1081
1096
|
serialize(w) {
|
|
@@ -1102,6 +1117,8 @@ var com;
|
|
|
1102
1117
|
writer.writeString(8, this.updatedBy);
|
|
1103
1118
|
if (this.notes.length)
|
|
1104
1119
|
writer.writeString(9, this.notes);
|
|
1120
|
+
if (this.processorTid.length)
|
|
1121
|
+
writer.writeString(10, this.processorTid);
|
|
1105
1122
|
if (!w)
|
|
1106
1123
|
return writer.getResultBuffer();
|
|
1107
1124
|
}
|
|
@@ -1138,6 +1155,9 @@ var com;
|
|
|
1138
1155
|
case 9:
|
|
1139
1156
|
message.notes = reader.readString();
|
|
1140
1157
|
break;
|
|
1158
|
+
case 10:
|
|
1159
|
+
message.processorTid = reader.readString();
|
|
1160
|
+
break;
|
|
1141
1161
|
default: reader.skipField();
|
|
1142
1162
|
}
|
|
1143
1163
|
}
|
|
@@ -1428,6 +1448,9 @@ var com;
|
|
|
1428
1448
|
if ("functions" in data && data.functions != undefined) {
|
|
1429
1449
|
this.functions = data.functions;
|
|
1430
1450
|
}
|
|
1451
|
+
if ("processorTid" in data && data.processorTid != undefined) {
|
|
1452
|
+
this.processorTid = data.processorTid;
|
|
1453
|
+
}
|
|
1431
1454
|
}
|
|
1432
1455
|
}
|
|
1433
1456
|
get id() {
|
|
@@ -1520,6 +1543,12 @@ var com;
|
|
|
1520
1543
|
set functions(value) {
|
|
1521
1544
|
pb_1.Message.setRepeatedWrapperField(this, 15, value);
|
|
1522
1545
|
}
|
|
1546
|
+
get processorTid() {
|
|
1547
|
+
return pb_1.Message.getFieldWithDefault(this, 16, "");
|
|
1548
|
+
}
|
|
1549
|
+
set processorTid(value) {
|
|
1550
|
+
pb_1.Message.setField(this, 16, value);
|
|
1551
|
+
}
|
|
1523
1552
|
static fromObject(data) {
|
|
1524
1553
|
const message = new TerminalInstanceDetails({});
|
|
1525
1554
|
if (data.id != null) {
|
|
@@ -1567,6 +1596,9 @@ var com;
|
|
|
1567
1596
|
if (data.functions != null) {
|
|
1568
1597
|
message.functions = data.functions.map(item => TerminalFunction.fromObject(item));
|
|
1569
1598
|
}
|
|
1599
|
+
if (data.processorTid != null) {
|
|
1600
|
+
message.processorTid = data.processorTid;
|
|
1601
|
+
}
|
|
1570
1602
|
return message;
|
|
1571
1603
|
}
|
|
1572
1604
|
toObject() {
|
|
@@ -1616,6 +1648,9 @@ var com;
|
|
|
1616
1648
|
if (this.functions != null) {
|
|
1617
1649
|
data.functions = this.functions.map((item) => item.toObject());
|
|
1618
1650
|
}
|
|
1651
|
+
if (this.processorTid != null) {
|
|
1652
|
+
data.processorTid = this.processorTid;
|
|
1653
|
+
}
|
|
1619
1654
|
return data;
|
|
1620
1655
|
}
|
|
1621
1656
|
serialize(w) {
|
|
@@ -1650,6 +1685,8 @@ var com;
|
|
|
1650
1685
|
writer.writeString(14, this.updatedAt);
|
|
1651
1686
|
if (this.functions.length)
|
|
1652
1687
|
writer.writeRepeatedMessage(15, this.functions, (item) => item.serialize(writer));
|
|
1688
|
+
if (this.processorTid.length)
|
|
1689
|
+
writer.writeString(16, this.processorTid);
|
|
1653
1690
|
if (!w)
|
|
1654
1691
|
return writer.getResultBuffer();
|
|
1655
1692
|
}
|
|
@@ -1704,6 +1741,9 @@ var com;
|
|
|
1704
1741
|
case 15:
|
|
1705
1742
|
reader.readMessage(message.functions, () => pb_1.Message.addToRepeatedWrapperField(message, 15, TerminalFunction.deserialize(reader), TerminalFunction));
|
|
1706
1743
|
break;
|
|
1744
|
+
case 16:
|
|
1745
|
+
message.processorTid = reader.readString();
|
|
1746
|
+
break;
|
|
1707
1747
|
default: reader.skipField();
|
|
1708
1748
|
}
|
|
1709
1749
|
}
|
|
@@ -5078,6 +5118,9 @@ var com;
|
|
|
5078
5118
|
if ("createdAt" in data && data.createdAt != undefined) {
|
|
5079
5119
|
this.createdAt = data.createdAt;
|
|
5080
5120
|
}
|
|
5121
|
+
if ("processorTid" in data && data.processorTid != undefined) {
|
|
5122
|
+
this.processorTid = data.processorTid;
|
|
5123
|
+
}
|
|
5081
5124
|
}
|
|
5082
5125
|
}
|
|
5083
5126
|
get instanceId() {
|
|
@@ -5143,6 +5186,12 @@ var com;
|
|
|
5143
5186
|
set createdAt(value) {
|
|
5144
5187
|
pb_1.Message.setField(this, 10, value);
|
|
5145
5188
|
}
|
|
5189
|
+
get processorTid() {
|
|
5190
|
+
return pb_1.Message.getFieldWithDefault(this, 11, "");
|
|
5191
|
+
}
|
|
5192
|
+
set processorTid(value) {
|
|
5193
|
+
pb_1.Message.setField(this, 11, value);
|
|
5194
|
+
}
|
|
5146
5195
|
static fromObject(data) {
|
|
5147
5196
|
const message = new AvailableTerminalData({});
|
|
5148
5197
|
if (data.instanceId != null) {
|
|
@@ -5175,6 +5224,9 @@ var com;
|
|
|
5175
5224
|
if (data.createdAt != null) {
|
|
5176
5225
|
message.createdAt = data.createdAt;
|
|
5177
5226
|
}
|
|
5227
|
+
if (data.processorTid != null) {
|
|
5228
|
+
message.processorTid = data.processorTid;
|
|
5229
|
+
}
|
|
5178
5230
|
return message;
|
|
5179
5231
|
}
|
|
5180
5232
|
toObject() {
|
|
@@ -5209,6 +5261,9 @@ var com;
|
|
|
5209
5261
|
if (this.createdAt != null) {
|
|
5210
5262
|
data.createdAt = this.createdAt;
|
|
5211
5263
|
}
|
|
5264
|
+
if (this.processorTid != null) {
|
|
5265
|
+
data.processorTid = this.processorTid;
|
|
5266
|
+
}
|
|
5212
5267
|
return data;
|
|
5213
5268
|
}
|
|
5214
5269
|
serialize(w) {
|
|
@@ -5233,6 +5288,8 @@ var com;
|
|
|
5233
5288
|
writer.writeString(9, this.status);
|
|
5234
5289
|
if (this.createdAt.length)
|
|
5235
5290
|
writer.writeString(10, this.createdAt);
|
|
5291
|
+
if (this.processorTid.length)
|
|
5292
|
+
writer.writeString(11, this.processorTid);
|
|
5236
5293
|
if (!w)
|
|
5237
5294
|
return writer.getResultBuffer();
|
|
5238
5295
|
}
|
|
@@ -5272,6 +5329,9 @@ var com;
|
|
|
5272
5329
|
case 10:
|
|
5273
5330
|
message.createdAt = reader.readString();
|
|
5274
5331
|
break;
|
|
5332
|
+
case 11:
|
|
5333
|
+
message.processorTid = reader.readString();
|
|
5334
|
+
break;
|
|
5275
5335
|
default: reader.skipField();
|
|
5276
5336
|
}
|
|
5277
5337
|
}
|
|
@@ -21943,7 +22003,7 @@ var com;
|
|
|
21943
22003
|
#one_of_decls = [];
|
|
21944
22004
|
constructor(data) {
|
|
21945
22005
|
super();
|
|
21946
|
-
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
22006
|
+
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [4], this.#one_of_decls);
|
|
21947
22007
|
if (!Array.isArray(data) && typeof data == "object") {
|
|
21948
22008
|
if ("requestId" in data && data.requestId != undefined) {
|
|
21949
22009
|
this.requestId = data.requestId;
|
|
@@ -21954,6 +22014,9 @@ var com;
|
|
|
21954
22014
|
if ("admin" in data && data.admin != undefined) {
|
|
21955
22015
|
this.admin = data.admin;
|
|
21956
22016
|
}
|
|
22017
|
+
if ("terminals" in data && data.terminals != undefined) {
|
|
22018
|
+
this.terminals = data.terminals;
|
|
22019
|
+
}
|
|
21957
22020
|
}
|
|
21958
22021
|
}
|
|
21959
22022
|
get requestId() {
|
|
@@ -21974,6 +22037,12 @@ var com;
|
|
|
21974
22037
|
set admin(value) {
|
|
21975
22038
|
pb_1.Message.setField(this, 3, value);
|
|
21976
22039
|
}
|
|
22040
|
+
get terminals() {
|
|
22041
|
+
return pb_1.Message.getFieldWithDefault(this, 4, []);
|
|
22042
|
+
}
|
|
22043
|
+
set terminals(value) {
|
|
22044
|
+
pb_1.Message.setField(this, 4, value);
|
|
22045
|
+
}
|
|
21977
22046
|
static fromObject(data) {
|
|
21978
22047
|
const message = new ApproveTerminalRequestRequest({});
|
|
21979
22048
|
if (data.requestId != null) {
|
|
@@ -21985,6 +22054,9 @@ var com;
|
|
|
21985
22054
|
if (data.admin != null) {
|
|
21986
22055
|
message.admin = data.admin;
|
|
21987
22056
|
}
|
|
22057
|
+
if (data.terminals != null) {
|
|
22058
|
+
message.terminals = data.terminals;
|
|
22059
|
+
}
|
|
21988
22060
|
return message;
|
|
21989
22061
|
}
|
|
21990
22062
|
toObject() {
|
|
@@ -21998,6 +22070,9 @@ var com;
|
|
|
21998
22070
|
if (this.admin != null) {
|
|
21999
22071
|
data.admin = this.admin;
|
|
22000
22072
|
}
|
|
22073
|
+
if (this.terminals != null) {
|
|
22074
|
+
data.terminals = this.terminals;
|
|
22075
|
+
}
|
|
22001
22076
|
return data;
|
|
22002
22077
|
}
|
|
22003
22078
|
serialize(w) {
|
|
@@ -22008,6 +22083,8 @@ var com;
|
|
|
22008
22083
|
writer.writeString(2, this.reason);
|
|
22009
22084
|
if (this.admin.length)
|
|
22010
22085
|
writer.writeString(3, this.admin);
|
|
22086
|
+
if (this.terminals.length)
|
|
22087
|
+
writer.writeRepeatedString(4, this.terminals);
|
|
22011
22088
|
if (!w)
|
|
22012
22089
|
return writer.getResultBuffer();
|
|
22013
22090
|
}
|
|
@@ -22026,6 +22103,9 @@ var com;
|
|
|
22026
22103
|
case 3:
|
|
22027
22104
|
message.admin = reader.readString();
|
|
22028
22105
|
break;
|
|
22106
|
+
case 4:
|
|
22107
|
+
pb_1.Message.addToRepeatedField(message, 4, reader.readString());
|
|
22108
|
+
break;
|
|
22029
22109
|
default: reader.skipField();
|
|
22030
22110
|
}
|
|
22031
22111
|
}
|
package/terminal/terminal.js
CHANGED
|
@@ -5973,6 +5973,9 @@ var com;
|
|
|
5973
5973
|
if ("terminalType" in data && data.terminalType != undefined) {
|
|
5974
5974
|
this.terminalType = data.terminalType;
|
|
5975
5975
|
}
|
|
5976
|
+
if ("processorTid" in data && data.processorTid != undefined) {
|
|
5977
|
+
this.processorTid = data.processorTid;
|
|
5978
|
+
}
|
|
5976
5979
|
}
|
|
5977
5980
|
if (!this.meta)
|
|
5978
5981
|
this.meta = new Map();
|
|
@@ -6076,6 +6079,12 @@ var com;
|
|
|
6076
6079
|
get hasTerminalType() {
|
|
6077
6080
|
return pb_1.Message.getField(this, 15) != null;
|
|
6078
6081
|
}
|
|
6082
|
+
get processorTid() {
|
|
6083
|
+
return pb_1.Message.getFieldWithDefault(this, 16, "");
|
|
6084
|
+
}
|
|
6085
|
+
set processorTid(value) {
|
|
6086
|
+
pb_1.Message.setField(this, 16, value);
|
|
6087
|
+
}
|
|
6079
6088
|
static fromObject(data) {
|
|
6080
6089
|
const message = new TerminalData({});
|
|
6081
6090
|
if (data.tid != null) {
|
|
@@ -6123,6 +6132,9 @@ var com;
|
|
|
6123
6132
|
if (data.terminalType != null) {
|
|
6124
6133
|
message.terminalType = TerminalTypeData.fromObject(data.terminalType);
|
|
6125
6134
|
}
|
|
6135
|
+
if (data.processorTid != null) {
|
|
6136
|
+
message.processorTid = data.processorTid;
|
|
6137
|
+
}
|
|
6126
6138
|
return message;
|
|
6127
6139
|
}
|
|
6128
6140
|
toObject() {
|
|
@@ -6172,6 +6184,9 @@ var com;
|
|
|
6172
6184
|
if (this.terminalType != null) {
|
|
6173
6185
|
data.terminalType = this.terminalType.toObject();
|
|
6174
6186
|
}
|
|
6187
|
+
if (this.processorTid != null) {
|
|
6188
|
+
data.processorTid = this.processorTid;
|
|
6189
|
+
}
|
|
6175
6190
|
return data;
|
|
6176
6191
|
}
|
|
6177
6192
|
serialize(w) {
|
|
@@ -6210,6 +6225,8 @@ var com;
|
|
|
6210
6225
|
writer.writeString(14, this.serialNumber);
|
|
6211
6226
|
if (this.hasTerminalType)
|
|
6212
6227
|
writer.writeMessage(15, this.terminalType, () => this.terminalType.serialize(writer));
|
|
6228
|
+
if (this.processorTid.length)
|
|
6229
|
+
writer.writeString(16, this.processorTid);
|
|
6213
6230
|
if (!w)
|
|
6214
6231
|
return writer.getResultBuffer();
|
|
6215
6232
|
}
|
|
@@ -6264,6 +6281,9 @@ var com;
|
|
|
6264
6281
|
case 15:
|
|
6265
6282
|
reader.readMessage(message.terminalType, () => message.terminalType = TerminalTypeData.deserialize(reader));
|
|
6266
6283
|
break;
|
|
6284
|
+
case 16:
|
|
6285
|
+
message.processorTid = reader.readString();
|
|
6286
|
+
break;
|
|
6267
6287
|
default: reader.skipField();
|
|
6268
6288
|
}
|
|
6269
6289
|
}
|
|
@@ -202,6 +202,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
202
202
|
description?: string | undefined;
|
|
203
203
|
enabled?: boolean | undefined;
|
|
204
204
|
}[] | undefined;
|
|
205
|
+
processorTid?: string | undefined;
|
|
205
206
|
}[] | undefined;
|
|
206
207
|
terminalType?: {
|
|
207
208
|
id?: string | undefined;
|
|
@@ -295,6 +296,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
295
296
|
description?: string | undefined;
|
|
296
297
|
enabled?: boolean | undefined;
|
|
297
298
|
}[] | undefined;
|
|
299
|
+
processorTid?: string | undefined;
|
|
298
300
|
} | undefined;
|
|
299
301
|
errors?: string[] | undefined;
|
|
300
302
|
};
|
|
@@ -316,6 +318,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
316
318
|
deviceConfiguration?: Map<string, string>;
|
|
317
319
|
updatedBy?: string;
|
|
318
320
|
notes?: string;
|
|
321
|
+
processorTid?: string;
|
|
319
322
|
});
|
|
320
323
|
get instanceId(): string;
|
|
321
324
|
set instanceId(value: string);
|
|
@@ -335,6 +338,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
335
338
|
set updatedBy(value: string);
|
|
336
339
|
get notes(): string;
|
|
337
340
|
set notes(value: string);
|
|
341
|
+
get processorTid(): string;
|
|
342
|
+
set processorTid(value: string);
|
|
338
343
|
static fromObject(data: {
|
|
339
344
|
instanceId?: string;
|
|
340
345
|
status?: string;
|
|
@@ -347,6 +352,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
347
352
|
};
|
|
348
353
|
updatedBy?: string;
|
|
349
354
|
notes?: string;
|
|
355
|
+
processorTid?: string;
|
|
350
356
|
}): UpdateTerminalInstanceRequest;
|
|
351
357
|
toObject(): {
|
|
352
358
|
instanceId?: string | undefined;
|
|
@@ -360,6 +366,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
360
366
|
} | undefined;
|
|
361
367
|
updatedBy?: string | undefined;
|
|
362
368
|
notes?: string | undefined;
|
|
369
|
+
processorTid?: string | undefined;
|
|
363
370
|
};
|
|
364
371
|
serialize(): Uint8Array;
|
|
365
372
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -414,6 +421,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
414
421
|
description?: string | undefined;
|
|
415
422
|
enabled?: boolean | undefined;
|
|
416
423
|
}[] | undefined;
|
|
424
|
+
processorTid?: string | undefined;
|
|
417
425
|
} | undefined;
|
|
418
426
|
errors?: string[] | undefined;
|
|
419
427
|
};
|
|
@@ -464,6 +472,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
464
472
|
description?: string | undefined;
|
|
465
473
|
enabled?: boolean | undefined;
|
|
466
474
|
}[] | undefined;
|
|
475
|
+
processorTid?: string | undefined;
|
|
467
476
|
}[] | undefined;
|
|
468
477
|
terminalType?: {
|
|
469
478
|
id?: string | undefined;
|
|
@@ -497,6 +506,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
497
506
|
createdAt?: string;
|
|
498
507
|
updatedAt?: string;
|
|
499
508
|
functions?: TerminalFunction[];
|
|
509
|
+
processorTid?: string;
|
|
500
510
|
});
|
|
501
511
|
get id(): string;
|
|
502
512
|
set id(value: string);
|
|
@@ -528,6 +538,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
528
538
|
set updatedAt(value: string);
|
|
529
539
|
get functions(): TerminalFunction[];
|
|
530
540
|
set functions(value: TerminalFunction[]);
|
|
541
|
+
get processorTid(): string;
|
|
542
|
+
set processorTid(value: string);
|
|
531
543
|
static fromObject(data: {
|
|
532
544
|
id?: string;
|
|
533
545
|
terminalInstanceId?: string;
|
|
@@ -544,6 +556,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
544
556
|
createdAt?: string;
|
|
545
557
|
updatedAt?: string;
|
|
546
558
|
functions?: ReturnType<typeof TerminalFunction.prototype.toObject>[];
|
|
559
|
+
processorTid?: string;
|
|
547
560
|
}): TerminalInstanceDetails;
|
|
548
561
|
toObject(): {
|
|
549
562
|
id?: string | undefined;
|
|
@@ -566,6 +579,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
566
579
|
description?: string | undefined;
|
|
567
580
|
enabled?: boolean | undefined;
|
|
568
581
|
}[] | undefined;
|
|
582
|
+
processorTid?: string | undefined;
|
|
569
583
|
};
|
|
570
584
|
serialize(): Uint8Array;
|
|
571
585
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1317,6 +1331,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1317
1331
|
location?: string | undefined;
|
|
1318
1332
|
status?: string | undefined;
|
|
1319
1333
|
createdAt?: string | undefined;
|
|
1334
|
+
processorTid?: string | undefined;
|
|
1320
1335
|
}[] | undefined;
|
|
1321
1336
|
pagination?: {
|
|
1322
1337
|
currentPage?: number | undefined;
|
|
@@ -1863,6 +1878,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1863
1878
|
location?: string;
|
|
1864
1879
|
status?: string;
|
|
1865
1880
|
createdAt?: string;
|
|
1881
|
+
processorTid?: string;
|
|
1866
1882
|
});
|
|
1867
1883
|
get instanceId(): string;
|
|
1868
1884
|
set instanceId(value: string);
|
|
@@ -1885,6 +1901,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1885
1901
|
set status(value: string);
|
|
1886
1902
|
get createdAt(): string;
|
|
1887
1903
|
set createdAt(value: string);
|
|
1904
|
+
get processorTid(): string;
|
|
1905
|
+
set processorTid(value: string);
|
|
1888
1906
|
static fromObject(data: {
|
|
1889
1907
|
instanceId?: string;
|
|
1890
1908
|
serialNumber?: string;
|
|
@@ -1896,6 +1914,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1896
1914
|
location?: string;
|
|
1897
1915
|
status?: string;
|
|
1898
1916
|
createdAt?: string;
|
|
1917
|
+
processorTid?: string;
|
|
1899
1918
|
}): AvailableTerminalData;
|
|
1900
1919
|
toObject(): {
|
|
1901
1920
|
instanceId?: string | undefined;
|
|
@@ -1913,6 +1932,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1913
1932
|
location?: string | undefined;
|
|
1914
1933
|
status?: string | undefined;
|
|
1915
1934
|
createdAt?: string | undefined;
|
|
1935
|
+
processorTid?: string | undefined;
|
|
1916
1936
|
};
|
|
1917
1937
|
serialize(): Uint8Array;
|
|
1918
1938
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -7438,6 +7458,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7438
7458
|
requestId?: string;
|
|
7439
7459
|
reason?: string;
|
|
7440
7460
|
admin?: string;
|
|
7461
|
+
terminals?: string[];
|
|
7441
7462
|
});
|
|
7442
7463
|
get requestId(): string;
|
|
7443
7464
|
set requestId(value: string);
|
|
@@ -7445,15 +7466,19 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
7445
7466
|
set reason(value: string);
|
|
7446
7467
|
get admin(): string;
|
|
7447
7468
|
set admin(value: string);
|
|
7469
|
+
get terminals(): string[];
|
|
7470
|
+
set terminals(value: string[]);
|
|
7448
7471
|
static fromObject(data: {
|
|
7449
7472
|
requestId?: string;
|
|
7450
7473
|
reason?: string;
|
|
7451
7474
|
admin?: string;
|
|
7475
|
+
terminals?: string[];
|
|
7452
7476
|
}): ApproveTerminalRequestRequest;
|
|
7453
7477
|
toObject(): {
|
|
7454
7478
|
requestId?: string | undefined;
|
|
7455
7479
|
reason?: string | undefined;
|
|
7456
7480
|
admin?: string | undefined;
|
|
7481
|
+
terminals?: string[] | undefined;
|
|
7457
7482
|
};
|
|
7458
7483
|
serialize(): Uint8Array;
|
|
7459
7484
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -436,6 +436,7 @@ export declare namespace com.pkg.terminal {
|
|
|
436
436
|
createdAt?: string | undefined;
|
|
437
437
|
updatedAt?: string | undefined;
|
|
438
438
|
} | undefined;
|
|
439
|
+
processorTid?: string | undefined;
|
|
439
440
|
} | undefined;
|
|
440
441
|
firstName?: string | undefined;
|
|
441
442
|
lastName?: string | undefined;
|
|
@@ -690,6 +691,7 @@ export declare namespace com.pkg.terminal {
|
|
|
690
691
|
createdAt?: string | undefined;
|
|
691
692
|
updatedAt?: string | undefined;
|
|
692
693
|
} | undefined;
|
|
694
|
+
processorTid?: string | undefined;
|
|
693
695
|
} | undefined;
|
|
694
696
|
firstName?: string | undefined;
|
|
695
697
|
lastName?: string | undefined;
|
|
@@ -2198,6 +2200,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2198
2200
|
deviceType?: string;
|
|
2199
2201
|
serialNumber?: string;
|
|
2200
2202
|
terminalType?: TerminalTypeData;
|
|
2203
|
+
processorTid?: string;
|
|
2201
2204
|
});
|
|
2202
2205
|
get tid(): string;
|
|
2203
2206
|
set tid(value: string);
|
|
@@ -2232,6 +2235,8 @@ export declare namespace com.pkg.terminal {
|
|
|
2232
2235
|
get terminalType(): TerminalTypeData;
|
|
2233
2236
|
set terminalType(value: TerminalTypeData);
|
|
2234
2237
|
get hasTerminalType(): boolean;
|
|
2238
|
+
get processorTid(): string;
|
|
2239
|
+
set processorTid(value: string);
|
|
2235
2240
|
static fromObject(data: {
|
|
2236
2241
|
tid?: string;
|
|
2237
2242
|
outlet?: ReturnType<typeof OutletData.prototype.toObject>;
|
|
@@ -2250,6 +2255,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2250
2255
|
deviceType?: string;
|
|
2251
2256
|
serialNumber?: string;
|
|
2252
2257
|
terminalType?: ReturnType<typeof TerminalTypeData.prototype.toObject>;
|
|
2258
|
+
processorTid?: string;
|
|
2253
2259
|
}): TerminalData;
|
|
2254
2260
|
toObject(): {
|
|
2255
2261
|
tid?: string | undefined;
|
|
@@ -2374,6 +2380,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2374
2380
|
createdAt?: string | undefined;
|
|
2375
2381
|
updatedAt?: string | undefined;
|
|
2376
2382
|
} | undefined;
|
|
2383
|
+
processorTid?: string | undefined;
|
|
2377
2384
|
};
|
|
2378
2385
|
serialize(): Uint8Array;
|
|
2379
2386
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -2538,6 +2545,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2538
2545
|
createdAt?: string | undefined;
|
|
2539
2546
|
updatedAt?: string | undefined;
|
|
2540
2547
|
} | undefined;
|
|
2548
|
+
processorTid?: string | undefined;
|
|
2541
2549
|
} | undefined;
|
|
2542
2550
|
error?: string | undefined;
|
|
2543
2551
|
message?: string | undefined;
|
|
@@ -2708,6 +2716,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2708
2716
|
createdAt?: string | undefined;
|
|
2709
2717
|
updatedAt?: string | undefined;
|
|
2710
2718
|
} | undefined;
|
|
2719
|
+
processorTid?: string | undefined;
|
|
2711
2720
|
}[] | undefined;
|
|
2712
2721
|
error?: string | undefined;
|
|
2713
2722
|
message?: string | undefined;
|
|
@@ -3178,6 +3187,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3178
3187
|
createdAt?: string | undefined;
|
|
3179
3188
|
updatedAt?: string | undefined;
|
|
3180
3189
|
} | undefined;
|
|
3190
|
+
processorTid?: string | undefined;
|
|
3181
3191
|
}[] | undefined;
|
|
3182
3192
|
error?: string | undefined;
|
|
3183
3193
|
message?: string | undefined;
|
|
@@ -3704,6 +3714,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3704
3714
|
createdAt?: string | undefined;
|
|
3705
3715
|
updatedAt?: string | undefined;
|
|
3706
3716
|
} | undefined;
|
|
3717
|
+
processorTid?: string | undefined;
|
|
3707
3718
|
} | undefined;
|
|
3708
3719
|
};
|
|
3709
3720
|
serialize(): Uint8Array;
|
|
@@ -3892,6 +3903,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3892
3903
|
createdAt?: string | undefined;
|
|
3893
3904
|
updatedAt?: string | undefined;
|
|
3894
3905
|
} | undefined;
|
|
3906
|
+
processorTid?: string | undefined;
|
|
3895
3907
|
} | undefined;
|
|
3896
3908
|
} | undefined;
|
|
3897
3909
|
error?: string | undefined;
|
|
@@ -4156,6 +4168,7 @@ export declare namespace com.pkg.terminal {
|
|
|
4156
4168
|
createdAt?: string | undefined;
|
|
4157
4169
|
updatedAt?: string | undefined;
|
|
4158
4170
|
} | undefined;
|
|
4171
|
+
processorTid?: string | undefined;
|
|
4159
4172
|
} | undefined;
|
|
4160
4173
|
}[] | undefined;
|
|
4161
4174
|
error?: string | undefined;
|
|
@@ -4386,6 +4399,7 @@ export declare namespace com.pkg.terminal {
|
|
|
4386
4399
|
createdAt?: string | undefined;
|
|
4387
4400
|
updatedAt?: string | undefined;
|
|
4388
4401
|
} | undefined;
|
|
4402
|
+
processorTid?: string | undefined;
|
|
4389
4403
|
}[] | undefined;
|
|
4390
4404
|
error?: string | undefined;
|
|
4391
4405
|
message?: string | undefined;
|