@technova-tech/olive-proto-lib 1.8.6 → 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/audit/audit.js CHANGED
@@ -24,7 +24,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.com = void 0;
27
- const dependency_2 = __importStar(require("./../google/protobuf/struct"));
28
27
  const pb_1 = __importStar(require("google-protobuf"));
29
28
  const grpc_1 = __importStar(require("@grpc/grpc-js"));
30
29
  var com;
@@ -373,117 +372,11 @@ var com;
373
372
  }
374
373
  }
375
374
  audit.GetAuditTrailsRequest = GetAuditTrailsRequest;
376
- class ModifiedField extends pb_1.Message {
377
- #one_of_decls = [];
378
- constructor(data) {
379
- super();
380
- pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
381
- if (!Array.isArray(data) && typeof data == "object") {
382
- if ("fieldName" in data && data.fieldName != undefined) {
383
- this.fieldName = data.fieldName;
384
- }
385
- if ("oldValue" in data && data.oldValue != undefined) {
386
- this.oldValue = data.oldValue;
387
- }
388
- if ("newValue" in data && data.newValue != undefined) {
389
- this.newValue = data.newValue;
390
- }
391
- }
392
- }
393
- get fieldName() {
394
- return pb_1.Message.getFieldWithDefault(this, 1, "");
395
- }
396
- set fieldName(value) {
397
- pb_1.Message.setField(this, 1, value);
398
- }
399
- get oldValue() {
400
- return pb_1.Message.getWrapperField(this, dependency_2.google.protobuf.Value, 2);
401
- }
402
- set oldValue(value) {
403
- pb_1.Message.setWrapperField(this, 2, value);
404
- }
405
- get hasOldValue() {
406
- return pb_1.Message.getField(this, 2) != null;
407
- }
408
- get newValue() {
409
- return pb_1.Message.getWrapperField(this, dependency_2.google.protobuf.Value, 3);
410
- }
411
- set newValue(value) {
412
- pb_1.Message.setWrapperField(this, 3, value);
413
- }
414
- get hasNewValue() {
415
- return pb_1.Message.getField(this, 3) != null;
416
- }
417
- static fromObject(data) {
418
- const message = new ModifiedField({});
419
- if (data.fieldName != null) {
420
- message.fieldName = data.fieldName;
421
- }
422
- if (data.oldValue != null) {
423
- message.oldValue = dependency_2.google.protobuf.Value.fromObject(data.oldValue);
424
- }
425
- if (data.newValue != null) {
426
- message.newValue = dependency_2.google.protobuf.Value.fromObject(data.newValue);
427
- }
428
- return message;
429
- }
430
- toObject() {
431
- const data = {};
432
- if (this.fieldName != null) {
433
- data.fieldName = this.fieldName;
434
- }
435
- if (this.oldValue != null) {
436
- data.oldValue = this.oldValue.toObject();
437
- }
438
- if (this.newValue != null) {
439
- data.newValue = this.newValue.toObject();
440
- }
441
- return data;
442
- }
443
- serialize(w) {
444
- const writer = w || new pb_1.BinaryWriter();
445
- if (this.fieldName.length)
446
- writer.writeString(1, this.fieldName);
447
- if (this.hasOldValue)
448
- writer.writeMessage(2, this.oldValue, () => this.oldValue.serialize(writer));
449
- if (this.hasNewValue)
450
- writer.writeMessage(3, this.newValue, () => this.newValue.serialize(writer));
451
- if (!w)
452
- return writer.getResultBuffer();
453
- }
454
- static deserialize(bytes) {
455
- const reader = bytes instanceof pb_1.BinaryReader ? bytes : new pb_1.BinaryReader(bytes), message = new ModifiedField();
456
- while (reader.nextField()) {
457
- if (reader.isEndGroup())
458
- break;
459
- switch (reader.getFieldNumber()) {
460
- case 1:
461
- message.fieldName = reader.readString();
462
- break;
463
- case 2:
464
- reader.readMessage(message.oldValue, () => message.oldValue = dependency_2.google.protobuf.Value.deserialize(reader));
465
- break;
466
- case 3:
467
- reader.readMessage(message.newValue, () => message.newValue = dependency_2.google.protobuf.Value.deserialize(reader));
468
- break;
469
- default: reader.skipField();
470
- }
471
- }
472
- return message;
473
- }
474
- serializeBinary() {
475
- return this.serialize();
476
- }
477
- static deserializeBinary(bytes) {
478
- return ModifiedField.deserialize(bytes);
479
- }
480
- }
481
- audit.ModifiedField = ModifiedField;
482
375
  class AuditTrail extends pb_1.Message {
483
376
  #one_of_decls = [];
484
377
  constructor(data) {
485
378
  super();
486
- pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [6], this.#one_of_decls);
379
+ pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
487
380
  if (!Array.isArray(data) && typeof data == "object") {
488
381
  if ("id" in data && data.id != undefined) {
489
382
  this.id = data.id;
@@ -539,19 +432,16 @@ var com;
539
432
  pb_1.Message.setField(this, 4, value);
540
433
  }
541
434
  get createdData() {
542
- return pb_1.Message.getWrapperField(this, dependency_2.google.protobuf.Value, 5);
435
+ return pb_1.Message.getFieldWithDefault(this, 5, "");
543
436
  }
544
437
  set createdData(value) {
545
- pb_1.Message.setWrapperField(this, 5, value);
546
- }
547
- get hasCreatedData() {
548
- return pb_1.Message.getField(this, 5) != null;
438
+ pb_1.Message.setField(this, 5, value);
549
439
  }
550
440
  get modifiedFields() {
551
- return pb_1.Message.getRepeatedWrapperField(this, ModifiedField, 6);
441
+ return pb_1.Message.getFieldWithDefault(this, 6, "");
552
442
  }
553
443
  set modifiedFields(value) {
554
- pb_1.Message.setRepeatedWrapperField(this, 6, value);
444
+ pb_1.Message.setField(this, 6, value);
555
445
  }
556
446
  get adminIdentity() {
557
447
  return pb_1.Message.getFieldWithDefault(this, 7, "");
@@ -586,10 +476,10 @@ var com;
586
476
  message.actionDate = data.actionDate;
587
477
  }
588
478
  if (data.createdData != null) {
589
- message.createdData = dependency_2.google.protobuf.Value.fromObject(data.createdData);
479
+ message.createdData = data.createdData;
590
480
  }
591
481
  if (data.modifiedFields != null) {
592
- message.modifiedFields = data.modifiedFields.map(item => ModifiedField.fromObject(item));
482
+ message.modifiedFields = data.modifiedFields;
593
483
  }
594
484
  if (data.adminIdentity != null) {
595
485
  message.adminIdentity = data.adminIdentity;
@@ -617,10 +507,10 @@ var com;
617
507
  data.actionDate = this.actionDate;
618
508
  }
619
509
  if (this.createdData != null) {
620
- data.createdData = this.createdData.toObject();
510
+ data.createdData = this.createdData;
621
511
  }
622
512
  if (this.modifiedFields != null) {
623
- data.modifiedFields = this.modifiedFields.map((item) => item.toObject());
513
+ data.modifiedFields = this.modifiedFields;
624
514
  }
625
515
  if (this.adminIdentity != null) {
626
516
  data.adminIdentity = this.adminIdentity;
@@ -643,10 +533,10 @@ var com;
643
533
  writer.writeString(3, this.action);
644
534
  if (this.actionDate.length)
645
535
  writer.writeString(4, this.actionDate);
646
- if (this.hasCreatedData)
647
- writer.writeMessage(5, this.createdData, () => this.createdData.serialize(writer));
536
+ if (this.createdData.length)
537
+ writer.writeString(5, this.createdData);
648
538
  if (this.modifiedFields.length)
649
- writer.writeRepeatedMessage(6, this.modifiedFields, (item) => item.serialize(writer));
539
+ writer.writeString(6, this.modifiedFields);
650
540
  if (this.adminIdentity.length)
651
541
  writer.writeString(7, this.adminIdentity);
652
542
  if (this.dataType.length)
@@ -675,10 +565,10 @@ var com;
675
565
  message.actionDate = reader.readString();
676
566
  break;
677
567
  case 5:
678
- reader.readMessage(message.createdData, () => message.createdData = dependency_2.google.protobuf.Value.deserialize(reader));
568
+ message.createdData = reader.readString();
679
569
  break;
680
570
  case 6:
681
- reader.readMessage(message.modifiedFields, () => pb_1.Message.addToRepeatedWrapperField(message, 6, ModifiedField.deserialize(reader), ModifiedField));
571
+ message.modifiedFields = reader.readString();
682
572
  break;
683
573
  case 7:
684
574
  message.adminIdentity = reader.readString();
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "compile": "tsc -p tsconfig.json"
12
12
  },
13
13
  "license": "MIT",
14
- "version": "1.8.6",
14
+ "version": "1.8.8",
15
15
  "devDependencies": {
16
16
  "@types/google-protobuf": "^3.15.12",
17
17
  "protoc-gen-ts": "^0.8.7",
@@ -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
  }
@@ -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
  }
@@ -1,5 +1,4 @@
1
1
  /// <reference types="node" />
2
- import * as dependency_2 from "./../google/protobuf/struct";
3
2
  import * as pb_1 from "google-protobuf";
4
3
  import * as grpc_1 from "@grpc/grpc-js";
5
4
  export declare namespace com.pkg.audit {
@@ -100,63 +99,6 @@ export declare namespace com.pkg.audit {
100
99
  serializeBinary(): Uint8Array;
101
100
  static deserializeBinary(bytes: Uint8Array): GetAuditTrailsRequest;
102
101
  }
103
- export class ModifiedField extends pb_1.Message {
104
- #private;
105
- constructor(data?: any[] | {
106
- fieldName?: string;
107
- oldValue?: dependency_2.google.protobuf.Value;
108
- newValue?: dependency_2.google.protobuf.Value;
109
- });
110
- get fieldName(): string;
111
- set fieldName(value: string);
112
- get oldValue(): dependency_2.google.protobuf.Value;
113
- set oldValue(value: dependency_2.google.protobuf.Value);
114
- get hasOldValue(): boolean;
115
- get newValue(): dependency_2.google.protobuf.Value;
116
- set newValue(value: dependency_2.google.protobuf.Value);
117
- get hasNewValue(): boolean;
118
- static fromObject(data: {
119
- fieldName?: string;
120
- oldValue?: ReturnType<typeof dependency_2.google.protobuf.Value.prototype.toObject>;
121
- newValue?: ReturnType<typeof dependency_2.google.protobuf.Value.prototype.toObject>;
122
- }): ModifiedField;
123
- toObject(): {
124
- fieldName?: string | undefined;
125
- oldValue?: {
126
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
127
- numberValue?: number | undefined;
128
- stringValue?: string | undefined;
129
- boolValue?: boolean | undefined;
130
- structValue?: {
131
- fields?: {
132
- [key: string]: any;
133
- } | undefined;
134
- } | undefined;
135
- listValue?: {
136
- values?: any[] | undefined;
137
- } | undefined;
138
- } | undefined;
139
- newValue?: {
140
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
141
- numberValue?: number | undefined;
142
- stringValue?: string | undefined;
143
- boolValue?: boolean | undefined;
144
- structValue?: {
145
- fields?: {
146
- [key: string]: any;
147
- } | undefined;
148
- } | undefined;
149
- listValue?: {
150
- values?: any[] | undefined;
151
- } | undefined;
152
- } | undefined;
153
- };
154
- serialize(): Uint8Array;
155
- serialize(w: pb_1.BinaryWriter): void;
156
- static deserialize(bytes: Uint8Array | pb_1.BinaryReader): ModifiedField;
157
- serializeBinary(): Uint8Array;
158
- static deserializeBinary(bytes: Uint8Array): ModifiedField;
159
- }
160
102
  export class AuditTrail extends pb_1.Message {
161
103
  #private;
162
104
  constructor(data?: any[] | {
@@ -164,8 +106,8 @@ export declare namespace com.pkg.audit {
164
106
  adminName?: string;
165
107
  action?: string;
166
108
  actionDate?: string;
167
- createdData?: dependency_2.google.protobuf.Value;
168
- modifiedFields?: ModifiedField[];
109
+ createdData?: string;
110
+ modifiedFields?: string;
169
111
  adminIdentity?: string;
170
112
  dataType?: string;
171
113
  appName?: string;
@@ -178,11 +120,10 @@ export declare namespace com.pkg.audit {
178
120
  set action(value: string);
179
121
  get actionDate(): string;
180
122
  set actionDate(value: string);
181
- get createdData(): dependency_2.google.protobuf.Value;
182
- set createdData(value: dependency_2.google.protobuf.Value);
183
- get hasCreatedData(): boolean;
184
- get modifiedFields(): ModifiedField[];
185
- set modifiedFields(value: ModifiedField[]);
123
+ get createdData(): string;
124
+ set createdData(value: string);
125
+ get modifiedFields(): string;
126
+ set modifiedFields(value: string);
186
127
  get adminIdentity(): string;
187
128
  set adminIdentity(value: string);
188
129
  get dataType(): string;
@@ -194,8 +135,8 @@ export declare namespace com.pkg.audit {
194
135
  adminName?: string;
195
136
  action?: string;
196
137
  actionDate?: string;
197
- createdData?: ReturnType<typeof dependency_2.google.protobuf.Value.prototype.toObject>;
198
- modifiedFields?: ReturnType<typeof ModifiedField.prototype.toObject>[];
138
+ createdData?: string;
139
+ modifiedFields?: string;
199
140
  adminIdentity?: string;
200
141
  dataType?: string;
201
142
  appName?: string;
@@ -205,51 +146,8 @@ export declare namespace com.pkg.audit {
205
146
  adminName?: string | undefined;
206
147
  action?: string | undefined;
207
148
  actionDate?: string | undefined;
208
- createdData?: {
209
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
210
- numberValue?: number | undefined;
211
- stringValue?: string | undefined;
212
- boolValue?: boolean | undefined;
213
- structValue?: {
214
- fields?: {
215
- [key: string]: any;
216
- } | undefined;
217
- } | undefined;
218
- listValue?: {
219
- values?: any[] | undefined;
220
- } | undefined;
221
- } | undefined;
222
- modifiedFields?: {
223
- fieldName?: string | undefined;
224
- oldValue?: {
225
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
226
- numberValue?: number | undefined;
227
- stringValue?: string | undefined;
228
- boolValue?: boolean | undefined;
229
- structValue?: {
230
- fields?: {
231
- [key: string]: any;
232
- } | undefined;
233
- } | undefined;
234
- listValue?: {
235
- values?: any[] | undefined;
236
- } | undefined;
237
- } | undefined;
238
- newValue?: {
239
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
240
- numberValue?: number | undefined;
241
- stringValue?: string | undefined;
242
- boolValue?: boolean | undefined;
243
- structValue?: {
244
- fields?: {
245
- [key: string]: any;
246
- } | undefined;
247
- } | undefined;
248
- listValue?: {
249
- values?: any[] | undefined;
250
- } | undefined;
251
- } | undefined;
252
- }[] | undefined;
149
+ createdData?: string | undefined;
150
+ modifiedFields?: string | undefined;
253
151
  adminIdentity?: string | undefined;
254
152
  dataType?: string | undefined;
255
153
  appName?: string | undefined;
@@ -294,51 +192,8 @@ export declare namespace com.pkg.audit {
294
192
  adminName?: string | undefined;
295
193
  action?: string | undefined;
296
194
  actionDate?: string | undefined;
297
- createdData?: {
298
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
299
- numberValue?: number | undefined;
300
- stringValue?: string | undefined;
301
- boolValue?: boolean | undefined;
302
- structValue?: {
303
- fields?: {
304
- [key: string]: any;
305
- } | undefined;
306
- } | undefined;
307
- listValue?: {
308
- values?: any[] | undefined;
309
- } | undefined;
310
- } | undefined;
311
- modifiedFields?: {
312
- fieldName?: string | undefined;
313
- oldValue?: {
314
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
315
- numberValue?: number | undefined;
316
- stringValue?: string | undefined;
317
- boolValue?: boolean | undefined;
318
- structValue?: {
319
- fields?: {
320
- [key: string]: any;
321
- } | undefined;
322
- } | undefined;
323
- listValue?: {
324
- values?: any[] | undefined;
325
- } | undefined;
326
- } | undefined;
327
- newValue?: {
328
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
329
- numberValue?: number | undefined;
330
- stringValue?: string | undefined;
331
- boolValue?: boolean | undefined;
332
- structValue?: {
333
- fields?: {
334
- [key: string]: any;
335
- } | undefined;
336
- } | undefined;
337
- listValue?: {
338
- values?: any[] | undefined;
339
- } | undefined;
340
- } | undefined;
341
- }[] | undefined;
195
+ createdData?: string | undefined;
196
+ modifiedFields?: string | undefined;
342
197
  adminIdentity?: string | undefined;
343
198
  dataType?: string | undefined;
344
199
  appName?: string | undefined;
@@ -412,51 +267,8 @@ export declare namespace com.pkg.audit {
412
267
  adminName?: string | undefined;
413
268
  action?: string | undefined;
414
269
  actionDate?: string | undefined;
415
- createdData?: {
416
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
417
- numberValue?: number | undefined;
418
- stringValue?: string | undefined;
419
- boolValue?: boolean | undefined;
420
- structValue?: {
421
- fields?: {
422
- [key: string]: any;
423
- } | undefined;
424
- } | undefined;
425
- listValue?: {
426
- values?: any[] | undefined;
427
- } | undefined;
428
- } | undefined;
429
- modifiedFields?: {
430
- fieldName?: string | undefined;
431
- oldValue?: {
432
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
433
- numberValue?: number | undefined;
434
- stringValue?: string | undefined;
435
- boolValue?: boolean | undefined;
436
- structValue?: {
437
- fields?: {
438
- [key: string]: any;
439
- } | undefined;
440
- } | undefined;
441
- listValue?: {
442
- values?: any[] | undefined;
443
- } | undefined;
444
- } | undefined;
445
- newValue?: {
446
- nullValue?: dependency_2.google.protobuf.NullValue | undefined;
447
- numberValue?: number | undefined;
448
- stringValue?: string | undefined;
449
- boolValue?: boolean | undefined;
450
- structValue?: {
451
- fields?: {
452
- [key: string]: any;
453
- } | undefined;
454
- } | undefined;
455
- listValue?: {
456
- values?: any[] | undefined;
457
- } | undefined;
458
- } | undefined;
459
- }[] | undefined;
270
+ createdData?: string | undefined;
271
+ modifiedFields?: string | undefined;
460
272
  adminIdentity?: string | undefined;
461
273
  dataType?: string | undefined;
462
274
  appName?: string | undefined;
@@ -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;