@technova-tech/olive-proto-lib 1.8.4 → 1.8.5
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/types/pos.v1/terminals.d.ts +6 -0
package/package.json
CHANGED
package/pos.v1/terminals.js
CHANGED
|
@@ -10399,6 +10399,9 @@ var com;
|
|
|
10399
10399
|
if ("notes" in data && data.notes != undefined) {
|
|
10400
10400
|
this.notes = data.notes;
|
|
10401
10401
|
}
|
|
10402
|
+
if ("processorTid" in data && data.processorTid != undefined) {
|
|
10403
|
+
this.processorTid = data.processorTid;
|
|
10404
|
+
}
|
|
10402
10405
|
}
|
|
10403
10406
|
if (!this.deviceConfiguration)
|
|
10404
10407
|
this.deviceConfiguration = new Map();
|
|
@@ -10445,6 +10448,12 @@ var com;
|
|
|
10445
10448
|
set notes(value) {
|
|
10446
10449
|
pb_1.Message.setField(this, 7, value);
|
|
10447
10450
|
}
|
|
10451
|
+
get processorTid() {
|
|
10452
|
+
return pb_1.Message.getFieldWithDefault(this, 8, "");
|
|
10453
|
+
}
|
|
10454
|
+
set processorTid(value) {
|
|
10455
|
+
pb_1.Message.setField(this, 8, value);
|
|
10456
|
+
}
|
|
10448
10457
|
static fromObject(data) {
|
|
10449
10458
|
const message = new TerminalBulkData({});
|
|
10450
10459
|
if (data.serialNumber != null) {
|
|
@@ -10468,6 +10477,9 @@ var com;
|
|
|
10468
10477
|
if (data.notes != null) {
|
|
10469
10478
|
message.notes = data.notes;
|
|
10470
10479
|
}
|
|
10480
|
+
if (data.processorTid != null) {
|
|
10481
|
+
message.processorTid = data.processorTid;
|
|
10482
|
+
}
|
|
10471
10483
|
return message;
|
|
10472
10484
|
}
|
|
10473
10485
|
toObject() {
|
|
@@ -10493,6 +10505,9 @@ var com;
|
|
|
10493
10505
|
if (this.notes != null) {
|
|
10494
10506
|
data.notes = this.notes;
|
|
10495
10507
|
}
|
|
10508
|
+
if (this.processorTid != null) {
|
|
10509
|
+
data.processorTid = this.processorTid;
|
|
10510
|
+
}
|
|
10496
10511
|
return data;
|
|
10497
10512
|
}
|
|
10498
10513
|
serialize(w) {
|
|
@@ -10515,6 +10530,8 @@ var com;
|
|
|
10515
10530
|
}
|
|
10516
10531
|
if (this.notes.length)
|
|
10517
10532
|
writer.writeString(7, this.notes);
|
|
10533
|
+
if (this.processorTid.length)
|
|
10534
|
+
writer.writeString(8, this.processorTid);
|
|
10518
10535
|
if (!w)
|
|
10519
10536
|
return writer.getResultBuffer();
|
|
10520
10537
|
}
|
|
@@ -10545,6 +10562,9 @@ var com;
|
|
|
10545
10562
|
case 7:
|
|
10546
10563
|
message.notes = reader.readString();
|
|
10547
10564
|
break;
|
|
10565
|
+
case 8:
|
|
10566
|
+
message.processorTid = reader.readString();
|
|
10567
|
+
break;
|
|
10548
10568
|
default: reader.skipField();
|
|
10549
10569
|
}
|
|
10550
10570
|
}
|
|
@@ -3709,6 +3709,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3709
3709
|
[key: string]: string;
|
|
3710
3710
|
} | undefined;
|
|
3711
3711
|
notes?: string | undefined;
|
|
3712
|
+
processorTid?: string | undefined;
|
|
3712
3713
|
}[] | undefined;
|
|
3713
3714
|
uploadedBy?: string | undefined;
|
|
3714
3715
|
metadata?: {
|
|
@@ -3731,6 +3732,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3731
3732
|
warrantyExpiryDate?: string;
|
|
3732
3733
|
deviceConfiguration?: Map<string, string>;
|
|
3733
3734
|
notes?: string;
|
|
3735
|
+
processorTid?: string;
|
|
3734
3736
|
});
|
|
3735
3737
|
get serialNumber(): string;
|
|
3736
3738
|
set serialNumber(value: string);
|
|
@@ -3746,6 +3748,8 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3746
3748
|
set deviceConfiguration(value: Map<string, string>);
|
|
3747
3749
|
get notes(): string;
|
|
3748
3750
|
set notes(value: string);
|
|
3751
|
+
get processorTid(): string;
|
|
3752
|
+
set processorTid(value: string);
|
|
3749
3753
|
static fromObject(data: {
|
|
3750
3754
|
serialNumber?: string;
|
|
3751
3755
|
condition?: string;
|
|
@@ -3756,6 +3760,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3756
3760
|
[key: string]: string;
|
|
3757
3761
|
};
|
|
3758
3762
|
notes?: string;
|
|
3763
|
+
processorTid?: string;
|
|
3759
3764
|
}): TerminalBulkData;
|
|
3760
3765
|
toObject(): {
|
|
3761
3766
|
serialNumber?: string | undefined;
|
|
@@ -3767,6 +3772,7 @@ export declare namespace com.pkg.posv1.terminals {
|
|
|
3767
3772
|
[key: string]: string;
|
|
3768
3773
|
} | undefined;
|
|
3769
3774
|
notes?: string | undefined;
|
|
3775
|
+
processorTid?: string | undefined;
|
|
3770
3776
|
};
|
|
3771
3777
|
serialize(): Uint8Array;
|
|
3772
3778
|
serialize(w: pb_1.BinaryWriter): void;
|