@technova-tech/olive-proto-lib 1.9.7 → 1.9.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
CHANGED
|
@@ -950,6 +950,9 @@ var com;
|
|
|
950
950
|
if ("search" in data && data.search != undefined) {
|
|
951
951
|
this.search = data.search;
|
|
952
952
|
}
|
|
953
|
+
if ("mfbId" in data && data.mfbId != undefined) {
|
|
954
|
+
this.mfbId = data.mfbId;
|
|
955
|
+
}
|
|
953
956
|
}
|
|
954
957
|
}
|
|
955
958
|
get terminalId() {
|
|
@@ -1018,6 +1021,12 @@ var com;
|
|
|
1018
1021
|
set search(value) {
|
|
1019
1022
|
pb_1.Message.setField(this, 11, value);
|
|
1020
1023
|
}
|
|
1024
|
+
get mfbId() {
|
|
1025
|
+
return pb_1.Message.getFieldWithDefault(this, 12, "");
|
|
1026
|
+
}
|
|
1027
|
+
set mfbId(value) {
|
|
1028
|
+
pb_1.Message.setField(this, 12, value);
|
|
1029
|
+
}
|
|
1021
1030
|
static fromObject(data) {
|
|
1022
1031
|
const message = new AllTransactionsFilter({});
|
|
1023
1032
|
if (data.terminalId != null) {
|
|
@@ -1053,6 +1062,9 @@ var com;
|
|
|
1053
1062
|
if (data.search != null) {
|
|
1054
1063
|
message.search = data.search;
|
|
1055
1064
|
}
|
|
1065
|
+
if (data.mfbId != null) {
|
|
1066
|
+
message.mfbId = data.mfbId;
|
|
1067
|
+
}
|
|
1056
1068
|
return message;
|
|
1057
1069
|
}
|
|
1058
1070
|
toObject() {
|
|
@@ -1090,6 +1102,9 @@ var com;
|
|
|
1090
1102
|
if (this.search != null) {
|
|
1091
1103
|
data.search = this.search;
|
|
1092
1104
|
}
|
|
1105
|
+
if (this.mfbId != null) {
|
|
1106
|
+
data.mfbId = this.mfbId;
|
|
1107
|
+
}
|
|
1093
1108
|
return data;
|
|
1094
1109
|
}
|
|
1095
1110
|
serialize(w) {
|
|
@@ -1116,6 +1131,8 @@ var com;
|
|
|
1116
1131
|
writer.writeString(10, this.sortOrder);
|
|
1117
1132
|
if (this.search.length)
|
|
1118
1133
|
writer.writeString(11, this.search);
|
|
1134
|
+
if (this.mfbId.length)
|
|
1135
|
+
writer.writeString(12, this.mfbId);
|
|
1119
1136
|
if (!w)
|
|
1120
1137
|
return writer.getResultBuffer();
|
|
1121
1138
|
}
|
|
@@ -1158,6 +1175,9 @@ var com;
|
|
|
1158
1175
|
case 11:
|
|
1159
1176
|
message.search = reader.readString();
|
|
1160
1177
|
break;
|
|
1178
|
+
case 12:
|
|
1179
|
+
message.mfbId = reader.readString();
|
|
1180
|
+
break;
|
|
1161
1181
|
default: reader.skipField();
|
|
1162
1182
|
}
|
|
1163
1183
|
}
|
|
@@ -331,6 +331,7 @@ export declare namespace com.pkg.posv1.terminalTransactions {
|
|
|
331
331
|
sortBy?: string;
|
|
332
332
|
sortOrder?: string;
|
|
333
333
|
search?: string;
|
|
334
|
+
mfbId?: string;
|
|
334
335
|
});
|
|
335
336
|
get terminalId(): string;
|
|
336
337
|
set terminalId(value: string);
|
|
@@ -354,6 +355,8 @@ export declare namespace com.pkg.posv1.terminalTransactions {
|
|
|
354
355
|
set sortOrder(value: string);
|
|
355
356
|
get search(): string;
|
|
356
357
|
set search(value: string);
|
|
358
|
+
get mfbId(): string;
|
|
359
|
+
set mfbId(value: string);
|
|
357
360
|
static fromObject(data: {
|
|
358
361
|
terminalId?: string;
|
|
359
362
|
businessId?: string;
|
|
@@ -366,6 +369,7 @@ export declare namespace com.pkg.posv1.terminalTransactions {
|
|
|
366
369
|
sortBy?: string;
|
|
367
370
|
sortOrder?: string;
|
|
368
371
|
search?: string;
|
|
372
|
+
mfbId?: string;
|
|
369
373
|
}): AllTransactionsFilter;
|
|
370
374
|
toObject(): {
|
|
371
375
|
terminalId?: string | undefined;
|
|
@@ -379,6 +383,7 @@ export declare namespace com.pkg.posv1.terminalTransactions {
|
|
|
379
383
|
sortBy?: string | undefined;
|
|
380
384
|
sortOrder?: string | undefined;
|
|
381
385
|
search?: string | undefined;
|
|
386
|
+
mfbId?: string | undefined;
|
|
382
387
|
};
|
|
383
388
|
serialize(): Uint8Array;
|
|
384
389
|
serialize(w: pb_1.BinaryWriter): void;
|