@technova-tech/olive-proto-lib 1.7.8 → 1.7.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 +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
|
@@ -5078,6 +5078,9 @@ var com;
|
|
|
5078
5078
|
if ("createdAt" in data && data.createdAt != undefined) {
|
|
5079
5079
|
this.createdAt = data.createdAt;
|
|
5080
5080
|
}
|
|
5081
|
+
if ("processorTid" in data && data.processorTid != undefined) {
|
|
5082
|
+
this.processorTid = data.processorTid;
|
|
5083
|
+
}
|
|
5081
5084
|
}
|
|
5082
5085
|
}
|
|
5083
5086
|
get instanceId() {
|
|
@@ -5143,6 +5146,12 @@ var com;
|
|
|
5143
5146
|
set createdAt(value) {
|
|
5144
5147
|
pb_1.Message.setField(this, 10, value);
|
|
5145
5148
|
}
|
|
5149
|
+
get processorTid() {
|
|
5150
|
+
return pb_1.Message.getFieldWithDefault(this, 11, "");
|
|
5151
|
+
}
|
|
5152
|
+
set processorTid(value) {
|
|
5153
|
+
pb_1.Message.setField(this, 11, value);
|
|
5154
|
+
}
|
|
5146
5155
|
static fromObject(data) {
|
|
5147
5156
|
const message = new AvailableTerminalData({});
|
|
5148
5157
|
if (data.instanceId != null) {
|
|
@@ -5175,6 +5184,9 @@ var com;
|
|
|
5175
5184
|
if (data.createdAt != null) {
|
|
5176
5185
|
message.createdAt = data.createdAt;
|
|
5177
5186
|
}
|
|
5187
|
+
if (data.processorTid != null) {
|
|
5188
|
+
message.processorTid = data.processorTid;
|
|
5189
|
+
}
|
|
5178
5190
|
return message;
|
|
5179
5191
|
}
|
|
5180
5192
|
toObject() {
|
|
@@ -5209,6 +5221,9 @@ var com;
|
|
|
5209
5221
|
if (this.createdAt != null) {
|
|
5210
5222
|
data.createdAt = this.createdAt;
|
|
5211
5223
|
}
|
|
5224
|
+
if (this.processorTid != null) {
|
|
5225
|
+
data.processorTid = this.processorTid;
|
|
5226
|
+
}
|
|
5212
5227
|
return data;
|
|
5213
5228
|
}
|
|
5214
5229
|
serialize(w) {
|
|
@@ -5233,6 +5248,8 @@ var com;
|
|
|
5233
5248
|
writer.writeString(9, this.status);
|
|
5234
5249
|
if (this.createdAt.length)
|
|
5235
5250
|
writer.writeString(10, this.createdAt);
|
|
5251
|
+
if (this.processorTid.length)
|
|
5252
|
+
writer.writeString(11, this.processorTid);
|
|
5236
5253
|
if (!w)
|
|
5237
5254
|
return writer.getResultBuffer();
|
|
5238
5255
|
}
|
|
@@ -5272,6 +5289,9 @@ var com;
|
|
|
5272
5289
|
case 10:
|
|
5273
5290
|
message.createdAt = reader.readString();
|
|
5274
5291
|
break;
|
|
5292
|
+
case 11:
|
|
5293
|
+
message.processorTid = reader.readString();
|
|
5294
|
+
break;
|
|
5275
5295
|
default: reader.skipField();
|
|
5276
5296
|
}
|
|
5277
5297
|
}
|
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
|
}
|
|
@@ -1317,6 +1317,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1317
1317
|
location?: string | undefined;
|
|
1318
1318
|
status?: string | undefined;
|
|
1319
1319
|
createdAt?: string | undefined;
|
|
1320
|
+
processorTid?: string | undefined;
|
|
1320
1321
|
}[] | undefined;
|
|
1321
1322
|
pagination?: {
|
|
1322
1323
|
currentPage?: number | undefined;
|
|
@@ -1863,6 +1864,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1863
1864
|
location?: string;
|
|
1864
1865
|
status?: string;
|
|
1865
1866
|
createdAt?: string;
|
|
1867
|
+
processorTid?: string;
|
|
1866
1868
|
});
|
|
1867
1869
|
get instanceId(): string;
|
|
1868
1870
|
set instanceId(value: string);
|
|
@@ -1885,6 +1887,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1885
1887
|
set status(value: string);
|
|
1886
1888
|
get createdAt(): string;
|
|
1887
1889
|
set createdAt(value: string);
|
|
1890
|
+
get processorTid(): string;
|
|
1891
|
+
set processorTid(value: string);
|
|
1888
1892
|
static fromObject(data: {
|
|
1889
1893
|
instanceId?: string;
|
|
1890
1894
|
serialNumber?: string;
|
|
@@ -1896,6 +1900,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1896
1900
|
location?: string;
|
|
1897
1901
|
status?: string;
|
|
1898
1902
|
createdAt?: string;
|
|
1903
|
+
processorTid?: string;
|
|
1899
1904
|
}): AvailableTerminalData;
|
|
1900
1905
|
toObject(): {
|
|
1901
1906
|
instanceId?: string | undefined;
|
|
@@ -1913,6 +1918,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
1913
1918
|
location?: string | undefined;
|
|
1914
1919
|
status?: string | undefined;
|
|
1915
1920
|
createdAt?: string | undefined;
|
|
1921
|
+
processorTid?: string | undefined;
|
|
1916
1922
|
};
|
|
1917
1923
|
serialize(): Uint8Array;
|
|
1918
1924
|
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;
|