@technova-tech/olive-proto-lib 1.8.7 → 1.8.8
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 +20 -0
- package/terminal/terminal.js +20 -0
- package/types/pos.v1/terminals.d.ts +6 -0
- package/types/terminal/terminal.d.ts +14 -0
package/package.json
CHANGED
package/pos.v1/terminals.js
CHANGED
|
@@ -5141,6 +5141,9 @@ var com;
|
|
|
5141
5141
|
if ("processorTid" in data && data.processorTid != undefined) {
|
|
5142
5142
|
this.processorTid = data.processorTid;
|
|
5143
5143
|
}
|
|
5144
|
+
if ("category" in data && data.category != undefined) {
|
|
5145
|
+
this.category = data.category;
|
|
5146
|
+
}
|
|
5144
5147
|
}
|
|
5145
5148
|
}
|
|
5146
5149
|
get instanceId() {
|
|
@@ -5212,6 +5215,12 @@ var com;
|
|
|
5212
5215
|
set processorTid(value) {
|
|
5213
5216
|
pb_1.Message.setField(this, 11, value);
|
|
5214
5217
|
}
|
|
5218
|
+
get category() {
|
|
5219
|
+
return pb_1.Message.getFieldWithDefault(this, 12, "");
|
|
5220
|
+
}
|
|
5221
|
+
set category(value) {
|
|
5222
|
+
pb_1.Message.setField(this, 12, value);
|
|
5223
|
+
}
|
|
5215
5224
|
static fromObject(data) {
|
|
5216
5225
|
const message = new AvailableTerminalData({});
|
|
5217
5226
|
if (data.instanceId != null) {
|
|
@@ -5247,6 +5256,9 @@ var com;
|
|
|
5247
5256
|
if (data.processorTid != null) {
|
|
5248
5257
|
message.processorTid = data.processorTid;
|
|
5249
5258
|
}
|
|
5259
|
+
if (data.category != null) {
|
|
5260
|
+
message.category = data.category;
|
|
5261
|
+
}
|
|
5250
5262
|
return message;
|
|
5251
5263
|
}
|
|
5252
5264
|
toObject() {
|
|
@@ -5284,6 +5296,9 @@ var com;
|
|
|
5284
5296
|
if (this.processorTid != null) {
|
|
5285
5297
|
data.processorTid = this.processorTid;
|
|
5286
5298
|
}
|
|
5299
|
+
if (this.category != null) {
|
|
5300
|
+
data.category = this.category;
|
|
5301
|
+
}
|
|
5287
5302
|
return data;
|
|
5288
5303
|
}
|
|
5289
5304
|
serialize(w) {
|
|
@@ -5310,6 +5325,8 @@ var com;
|
|
|
5310
5325
|
writer.writeString(10, this.createdAt);
|
|
5311
5326
|
if (this.processorTid.length)
|
|
5312
5327
|
writer.writeString(11, this.processorTid);
|
|
5328
|
+
if (this.category.length)
|
|
5329
|
+
writer.writeString(12, this.category);
|
|
5313
5330
|
if (!w)
|
|
5314
5331
|
return writer.getResultBuffer();
|
|
5315
5332
|
}
|
|
@@ -5352,6 +5369,9 @@ var com;
|
|
|
5352
5369
|
case 11:
|
|
5353
5370
|
message.processorTid = reader.readString();
|
|
5354
5371
|
break;
|
|
5372
|
+
case 12:
|
|
5373
|
+
message.category = reader.readString();
|
|
5374
|
+
break;
|
|
5355
5375
|
default: reader.skipField();
|
|
5356
5376
|
}
|
|
5357
5377
|
}
|
package/terminal/terminal.js
CHANGED
|
@@ -5976,6 +5976,9 @@ var com;
|
|
|
5976
5976
|
if ("processorTid" in data && data.processorTid != undefined) {
|
|
5977
5977
|
this.processorTid = data.processorTid;
|
|
5978
5978
|
}
|
|
5979
|
+
if ("category" in data && data.category != undefined) {
|
|
5980
|
+
this.category = data.category;
|
|
5981
|
+
}
|
|
5979
5982
|
}
|
|
5980
5983
|
if (!this.meta)
|
|
5981
5984
|
this.meta = new Map();
|
|
@@ -6085,6 +6088,12 @@ var com;
|
|
|
6085
6088
|
set processorTid(value) {
|
|
6086
6089
|
pb_1.Message.setField(this, 16, value);
|
|
6087
6090
|
}
|
|
6091
|
+
get category() {
|
|
6092
|
+
return pb_1.Message.getFieldWithDefault(this, 17, "");
|
|
6093
|
+
}
|
|
6094
|
+
set category(value) {
|
|
6095
|
+
pb_1.Message.setField(this, 17, value);
|
|
6096
|
+
}
|
|
6088
6097
|
static fromObject(data) {
|
|
6089
6098
|
const message = new TerminalData({});
|
|
6090
6099
|
if (data.tid != null) {
|
|
@@ -6135,6 +6144,9 @@ var com;
|
|
|
6135
6144
|
if (data.processorTid != null) {
|
|
6136
6145
|
message.processorTid = data.processorTid;
|
|
6137
6146
|
}
|
|
6147
|
+
if (data.category != null) {
|
|
6148
|
+
message.category = data.category;
|
|
6149
|
+
}
|
|
6138
6150
|
return message;
|
|
6139
6151
|
}
|
|
6140
6152
|
toObject() {
|
|
@@ -6187,6 +6199,9 @@ var com;
|
|
|
6187
6199
|
if (this.processorTid != null) {
|
|
6188
6200
|
data.processorTid = this.processorTid;
|
|
6189
6201
|
}
|
|
6202
|
+
if (this.category != null) {
|
|
6203
|
+
data.category = this.category;
|
|
6204
|
+
}
|
|
6190
6205
|
return data;
|
|
6191
6206
|
}
|
|
6192
6207
|
serialize(w) {
|
|
@@ -6227,6 +6242,8 @@ var com;
|
|
|
6227
6242
|
writer.writeMessage(15, this.terminalType, () => this.terminalType.serialize(writer));
|
|
6228
6243
|
if (this.processorTid.length)
|
|
6229
6244
|
writer.writeString(16, this.processorTid);
|
|
6245
|
+
if (this.category.length)
|
|
6246
|
+
writer.writeString(17, this.category);
|
|
6230
6247
|
if (!w)
|
|
6231
6248
|
return writer.getResultBuffer();
|
|
6232
6249
|
}
|
|
@@ -6284,6 +6301,9 @@ var com;
|
|
|
6284
6301
|
case 16:
|
|
6285
6302
|
message.processorTid = reader.readString();
|
|
6286
6303
|
break;
|
|
6304
|
+
case 17:
|
|
6305
|
+
message.category = reader.readString();
|
|
6306
|
+
break;
|
|
6287
6307
|
default: reader.skipField();
|
|
6288
6308
|
}
|
|
6289
6309
|
}
|
|
@@ -1337,6 +1337,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1337
1337
|
status?: string | undefined;
|
|
1338
1338
|
createdAt?: string | undefined;
|
|
1339
1339
|
processorTid?: string | undefined;
|
|
1340
|
+
category?: string | undefined;
|
|
1340
1341
|
}[] | undefined;
|
|
1341
1342
|
pagination?: {
|
|
1342
1343
|
currentPage?: number | undefined;
|
|
@@ -1884,6 +1885,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1884
1885
|
status?: string;
|
|
1885
1886
|
createdAt?: string;
|
|
1886
1887
|
processorTid?: string;
|
|
1888
|
+
category?: string;
|
|
1887
1889
|
});
|
|
1888
1890
|
get instanceId(): string;
|
|
1889
1891
|
set instanceId(value: string);
|
|
@@ -1908,6 +1910,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1908
1910
|
set createdAt(value: string);
|
|
1909
1911
|
get processorTid(): string;
|
|
1910
1912
|
set processorTid(value: string);
|
|
1913
|
+
get category(): string;
|
|
1914
|
+
set category(value: string);
|
|
1911
1915
|
static fromObject(data: {
|
|
1912
1916
|
instanceId?: string;
|
|
1913
1917
|
serialNumber?: string;
|
|
@@ -1920,6 +1924,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1920
1924
|
status?: string;
|
|
1921
1925
|
createdAt?: string;
|
|
1922
1926
|
processorTid?: string;
|
|
1927
|
+
category?: string;
|
|
1923
1928
|
}): AvailableTerminalData;
|
|
1924
1929
|
toObject(): {
|
|
1925
1930
|
instanceId?: string | undefined;
|
|
@@ -1938,6 +1943,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1938
1943
|
status?: string | undefined;
|
|
1939
1944
|
createdAt?: string | undefined;
|
|
1940
1945
|
processorTid?: string | undefined;
|
|
1946
|
+
category?: string | undefined;
|
|
1941
1947
|
};
|
|
1942
1948
|
serialize(): Uint8Array;
|
|
1943
1949
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -437,6 +437,7 @@ export declare namespace com.pkg.terminal {
|
|
|
437
437
|
updatedAt?: string | undefined;
|
|
438
438
|
} | undefined;
|
|
439
439
|
processorTid?: string | undefined;
|
|
440
|
+
category?: string | undefined;
|
|
440
441
|
} | undefined;
|
|
441
442
|
firstName?: string | undefined;
|
|
442
443
|
lastName?: string | undefined;
|
|
@@ -692,6 +693,7 @@ export declare namespace com.pkg.terminal {
|
|
|
692
693
|
updatedAt?: string | undefined;
|
|
693
694
|
} | undefined;
|
|
694
695
|
processorTid?: string | undefined;
|
|
696
|
+
category?: string | undefined;
|
|
695
697
|
} | undefined;
|
|
696
698
|
firstName?: string | undefined;
|
|
697
699
|
lastName?: string | undefined;
|
|
@@ -2201,6 +2203,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2201
2203
|
serialNumber?: string;
|
|
2202
2204
|
terminalType?: TerminalTypeData;
|
|
2203
2205
|
processorTid?: string;
|
|
2206
|
+
category?: string;
|
|
2204
2207
|
});
|
|
2205
2208
|
get tid(): string;
|
|
2206
2209
|
set tid(value: string);
|
|
@@ -2237,6 +2240,8 @@ export declare namespace com.pkg.terminal {
|
|
|
2237
2240
|
get hasTerminalType(): boolean;
|
|
2238
2241
|
get processorTid(): string;
|
|
2239
2242
|
set processorTid(value: string);
|
|
2243
|
+
get category(): string;
|
|
2244
|
+
set category(value: string);
|
|
2240
2245
|
static fromObject(data: {
|
|
2241
2246
|
tid?: string;
|
|
2242
2247
|
outlet?: ReturnType<typeof OutletData.prototype.toObject>;
|
|
@@ -2256,6 +2261,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2256
2261
|
serialNumber?: string;
|
|
2257
2262
|
terminalType?: ReturnType<typeof TerminalTypeData.prototype.toObject>;
|
|
2258
2263
|
processorTid?: string;
|
|
2264
|
+
category?: string;
|
|
2259
2265
|
}): TerminalData;
|
|
2260
2266
|
toObject(): {
|
|
2261
2267
|
tid?: string | undefined;
|
|
@@ -2381,6 +2387,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2381
2387
|
updatedAt?: string | undefined;
|
|
2382
2388
|
} | undefined;
|
|
2383
2389
|
processorTid?: string | undefined;
|
|
2390
|
+
category?: string | undefined;
|
|
2384
2391
|
};
|
|
2385
2392
|
serialize(): Uint8Array;
|
|
2386
2393
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -2546,6 +2553,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2546
2553
|
updatedAt?: string | undefined;
|
|
2547
2554
|
} | undefined;
|
|
2548
2555
|
processorTid?: string | undefined;
|
|
2556
|
+
category?: string | undefined;
|
|
2549
2557
|
} | undefined;
|
|
2550
2558
|
error?: string | undefined;
|
|
2551
2559
|
message?: string | undefined;
|
|
@@ -2717,6 +2725,7 @@ export declare namespace com.pkg.terminal {
|
|
|
2717
2725
|
updatedAt?: string | undefined;
|
|
2718
2726
|
} | undefined;
|
|
2719
2727
|
processorTid?: string | undefined;
|
|
2728
|
+
category?: string | undefined;
|
|
2720
2729
|
}[] | undefined;
|
|
2721
2730
|
error?: string | undefined;
|
|
2722
2731
|
message?: string | undefined;
|
|
@@ -3188,6 +3197,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3188
3197
|
updatedAt?: string | undefined;
|
|
3189
3198
|
} | undefined;
|
|
3190
3199
|
processorTid?: string | undefined;
|
|
3200
|
+
category?: string | undefined;
|
|
3191
3201
|
}[] | undefined;
|
|
3192
3202
|
error?: string | undefined;
|
|
3193
3203
|
message?: string | undefined;
|
|
@@ -3715,6 +3725,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3715
3725
|
updatedAt?: string | undefined;
|
|
3716
3726
|
} | undefined;
|
|
3717
3727
|
processorTid?: string | undefined;
|
|
3728
|
+
category?: string | undefined;
|
|
3718
3729
|
} | undefined;
|
|
3719
3730
|
};
|
|
3720
3731
|
serialize(): Uint8Array;
|
|
@@ -3904,6 +3915,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3904
3915
|
updatedAt?: string | undefined;
|
|
3905
3916
|
} | undefined;
|
|
3906
3917
|
processorTid?: string | undefined;
|
|
3918
|
+
category?: string | undefined;
|
|
3907
3919
|
} | undefined;
|
|
3908
3920
|
} | undefined;
|
|
3909
3921
|
error?: string | undefined;
|
|
@@ -4169,6 +4181,7 @@ export declare namespace com.pkg.terminal {
|
|
|
4169
4181
|
updatedAt?: string | undefined;
|
|
4170
4182
|
} | undefined;
|
|
4171
4183
|
processorTid?: string | undefined;
|
|
4184
|
+
category?: string | undefined;
|
|
4172
4185
|
} | undefined;
|
|
4173
4186
|
}[] | undefined;
|
|
4174
4187
|
error?: string | undefined;
|
|
@@ -4405,6 +4418,7 @@ export declare namespace com.pkg.terminal {
|
|
|
4405
4418
|
updatedAt?: string | undefined;
|
|
4406
4419
|
} | undefined;
|
|
4407
4420
|
processorTid?: string | undefined;
|
|
4421
|
+
category?: string | undefined;
|
|
4408
4422
|
}[] | undefined;
|
|
4409
4423
|
error?: string | undefined;
|
|
4410
4424
|
message?: string | undefined;
|