@technova-tech/olive-proto-lib 1.8.4 → 1.8.6
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 +81 -100
- package/google/protobuf/any.js +113 -0
- package/google/protobuf/struct.js +357 -0
- package/package.json +3 -3
- package/pos.v1/terminals.js +20 -0
- package/types/audit/audit.d.ts +173 -65
- package/types/google/protobuf/any.d.ts +27 -0
- package/types/google/protobuf/struct.d.ts +175 -0
- package/types/pos.v1/terminals.d.ts +6 -0
package/types/audit/audit.d.ts
CHANGED
|
@@ -1,31 +1,8 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
import * as dependency_2 from "./../google/protobuf/struct";
|
|
2
3
|
import * as pb_1 from "google-protobuf";
|
|
3
4
|
import * as grpc_1 from "@grpc/grpc-js";
|
|
4
5
|
export declare namespace com.pkg.audit {
|
|
5
|
-
export class Any extends pb_1.Message {
|
|
6
|
-
#private;
|
|
7
|
-
constructor(data?: any[] | {
|
|
8
|
-
typeUrl?: string;
|
|
9
|
-
value?: Uint8Array;
|
|
10
|
-
});
|
|
11
|
-
get typeUrl(): string;
|
|
12
|
-
set typeUrl(value: string);
|
|
13
|
-
get value(): Uint8Array;
|
|
14
|
-
set value(value: Uint8Array);
|
|
15
|
-
static fromObject(data: {
|
|
16
|
-
typeUrl?: string;
|
|
17
|
-
value?: Uint8Array;
|
|
18
|
-
}): Any;
|
|
19
|
-
toObject(): {
|
|
20
|
-
typeUrl?: string | undefined;
|
|
21
|
-
value?: Uint8Array | undefined;
|
|
22
|
-
};
|
|
23
|
-
serialize(): Uint8Array;
|
|
24
|
-
serialize(w: pb_1.BinaryWriter): void;
|
|
25
|
-
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Any;
|
|
26
|
-
serializeBinary(): Uint8Array;
|
|
27
|
-
static deserializeBinary(bytes: Uint8Array): Any;
|
|
28
|
-
}
|
|
29
6
|
export class ValidationErrors extends pb_1.Message {
|
|
30
7
|
#private;
|
|
31
8
|
constructor(data?: any[] | {
|
|
@@ -127,31 +104,51 @@ export declare namespace com.pkg.audit {
|
|
|
127
104
|
#private;
|
|
128
105
|
constructor(data?: any[] | {
|
|
129
106
|
fieldName?: string;
|
|
130
|
-
oldValue?:
|
|
131
|
-
newValue?:
|
|
107
|
+
oldValue?: dependency_2.google.protobuf.Value;
|
|
108
|
+
newValue?: dependency_2.google.protobuf.Value;
|
|
132
109
|
});
|
|
133
110
|
get fieldName(): string;
|
|
134
111
|
set fieldName(value: string);
|
|
135
|
-
get oldValue():
|
|
136
|
-
set oldValue(value:
|
|
112
|
+
get oldValue(): dependency_2.google.protobuf.Value;
|
|
113
|
+
set oldValue(value: dependency_2.google.protobuf.Value);
|
|
137
114
|
get hasOldValue(): boolean;
|
|
138
|
-
get newValue():
|
|
139
|
-
set newValue(value:
|
|
115
|
+
get newValue(): dependency_2.google.protobuf.Value;
|
|
116
|
+
set newValue(value: dependency_2.google.protobuf.Value);
|
|
140
117
|
get hasNewValue(): boolean;
|
|
141
118
|
static fromObject(data: {
|
|
142
119
|
fieldName?: string;
|
|
143
|
-
oldValue?: ReturnType<typeof
|
|
144
|
-
newValue?: ReturnType<typeof
|
|
120
|
+
oldValue?: ReturnType<typeof dependency_2.google.protobuf.Value.prototype.toObject>;
|
|
121
|
+
newValue?: ReturnType<typeof dependency_2.google.protobuf.Value.prototype.toObject>;
|
|
145
122
|
}): ModifiedField;
|
|
146
123
|
toObject(): {
|
|
147
124
|
fieldName?: string | undefined;
|
|
148
125
|
oldValue?: {
|
|
149
|
-
|
|
150
|
-
|
|
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;
|
|
151
138
|
} | undefined;
|
|
152
139
|
newValue?: {
|
|
153
|
-
|
|
154
|
-
|
|
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;
|
|
155
152
|
} | undefined;
|
|
156
153
|
};
|
|
157
154
|
serialize(): Uint8Array;
|
|
@@ -165,52 +162,97 @@ export declare namespace com.pkg.audit {
|
|
|
165
162
|
constructor(data?: any[] | {
|
|
166
163
|
id?: string;
|
|
167
164
|
adminName?: string;
|
|
168
|
-
|
|
165
|
+
action?: string;
|
|
169
166
|
actionDate?: string;
|
|
170
|
-
createdData?:
|
|
167
|
+
createdData?: dependency_2.google.protobuf.Value;
|
|
171
168
|
modifiedFields?: ModifiedField[];
|
|
169
|
+
adminIdentity?: string;
|
|
170
|
+
dataType?: string;
|
|
171
|
+
appName?: string;
|
|
172
172
|
});
|
|
173
173
|
get id(): string;
|
|
174
174
|
set id(value: string);
|
|
175
175
|
get adminName(): string;
|
|
176
176
|
set adminName(value: string);
|
|
177
|
-
get
|
|
178
|
-
set
|
|
177
|
+
get action(): string;
|
|
178
|
+
set action(value: string);
|
|
179
179
|
get actionDate(): string;
|
|
180
180
|
set actionDate(value: string);
|
|
181
|
-
get createdData():
|
|
182
|
-
set createdData(value:
|
|
181
|
+
get createdData(): dependency_2.google.protobuf.Value;
|
|
182
|
+
set createdData(value: dependency_2.google.protobuf.Value);
|
|
183
183
|
get hasCreatedData(): boolean;
|
|
184
184
|
get modifiedFields(): ModifiedField[];
|
|
185
185
|
set modifiedFields(value: ModifiedField[]);
|
|
186
|
+
get adminIdentity(): string;
|
|
187
|
+
set adminIdentity(value: string);
|
|
188
|
+
get dataType(): string;
|
|
189
|
+
set dataType(value: string);
|
|
190
|
+
get appName(): string;
|
|
191
|
+
set appName(value: string);
|
|
186
192
|
static fromObject(data: {
|
|
187
193
|
id?: string;
|
|
188
194
|
adminName?: string;
|
|
189
|
-
|
|
195
|
+
action?: string;
|
|
190
196
|
actionDate?: string;
|
|
191
|
-
createdData?: ReturnType<typeof
|
|
197
|
+
createdData?: ReturnType<typeof dependency_2.google.protobuf.Value.prototype.toObject>;
|
|
192
198
|
modifiedFields?: ReturnType<typeof ModifiedField.prototype.toObject>[];
|
|
199
|
+
adminIdentity?: string;
|
|
200
|
+
dataType?: string;
|
|
201
|
+
appName?: string;
|
|
193
202
|
}): AuditTrail;
|
|
194
203
|
toObject(): {
|
|
195
204
|
id?: string | undefined;
|
|
196
205
|
adminName?: string | undefined;
|
|
197
|
-
|
|
206
|
+
action?: string | undefined;
|
|
198
207
|
actionDate?: string | undefined;
|
|
199
208
|
createdData?: {
|
|
200
|
-
|
|
201
|
-
|
|
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;
|
|
202
221
|
} | undefined;
|
|
203
222
|
modifiedFields?: {
|
|
204
223
|
fieldName?: string | undefined;
|
|
205
224
|
oldValue?: {
|
|
206
|
-
|
|
207
|
-
|
|
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;
|
|
208
237
|
} | undefined;
|
|
209
238
|
newValue?: {
|
|
210
|
-
|
|
211
|
-
|
|
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;
|
|
212
251
|
} | undefined;
|
|
213
252
|
}[] | undefined;
|
|
253
|
+
adminIdentity?: string | undefined;
|
|
254
|
+
dataType?: string | undefined;
|
|
255
|
+
appName?: string | undefined;
|
|
214
256
|
};
|
|
215
257
|
serialize(): Uint8Array;
|
|
216
258
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -250,23 +292,56 @@ export declare namespace com.pkg.audit {
|
|
|
250
292
|
data?: {
|
|
251
293
|
id?: string | undefined;
|
|
252
294
|
adminName?: string | undefined;
|
|
253
|
-
|
|
295
|
+
action?: string | undefined;
|
|
254
296
|
actionDate?: string | undefined;
|
|
255
297
|
createdData?: {
|
|
256
|
-
|
|
257
|
-
|
|
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;
|
|
258
310
|
} | undefined;
|
|
259
311
|
modifiedFields?: {
|
|
260
312
|
fieldName?: string | undefined;
|
|
261
313
|
oldValue?: {
|
|
262
|
-
|
|
263
|
-
|
|
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;
|
|
264
326
|
} | undefined;
|
|
265
327
|
newValue?: {
|
|
266
|
-
|
|
267
|
-
|
|
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;
|
|
268
340
|
} | undefined;
|
|
269
341
|
}[] | undefined;
|
|
342
|
+
adminIdentity?: string | undefined;
|
|
343
|
+
dataType?: string | undefined;
|
|
344
|
+
appName?: string | undefined;
|
|
270
345
|
}[] | undefined;
|
|
271
346
|
errors?: {
|
|
272
347
|
field?: string | undefined;
|
|
@@ -335,23 +410,56 @@ export declare namespace com.pkg.audit {
|
|
|
335
410
|
data?: {
|
|
336
411
|
id?: string | undefined;
|
|
337
412
|
adminName?: string | undefined;
|
|
338
|
-
|
|
413
|
+
action?: string | undefined;
|
|
339
414
|
actionDate?: string | undefined;
|
|
340
415
|
createdData?: {
|
|
341
|
-
|
|
342
|
-
|
|
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;
|
|
343
428
|
} | undefined;
|
|
344
429
|
modifiedFields?: {
|
|
345
430
|
fieldName?: string | undefined;
|
|
346
431
|
oldValue?: {
|
|
347
|
-
|
|
348
|
-
|
|
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;
|
|
349
444
|
} | undefined;
|
|
350
445
|
newValue?: {
|
|
351
|
-
|
|
352
|
-
|
|
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;
|
|
353
458
|
} | undefined;
|
|
354
459
|
}[] | undefined;
|
|
460
|
+
adminIdentity?: string | undefined;
|
|
461
|
+
dataType?: string | undefined;
|
|
462
|
+
appName?: string | undefined;
|
|
355
463
|
} | undefined;
|
|
356
464
|
errors?: {
|
|
357
465
|
field?: string | undefined;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as pb_1 from "google-protobuf";
|
|
2
|
+
export declare namespace google.protobuf {
|
|
3
|
+
class Any extends pb_1.Message {
|
|
4
|
+
#private;
|
|
5
|
+
constructor(data?: any[] | {
|
|
6
|
+
typeUrl?: string;
|
|
7
|
+
value?: Uint8Array;
|
|
8
|
+
});
|
|
9
|
+
get typeUrl(): string;
|
|
10
|
+
set typeUrl(value: string);
|
|
11
|
+
get value(): Uint8Array;
|
|
12
|
+
set value(value: Uint8Array);
|
|
13
|
+
static fromObject(data: {
|
|
14
|
+
typeUrl?: string;
|
|
15
|
+
value?: Uint8Array;
|
|
16
|
+
}): Any;
|
|
17
|
+
toObject(): {
|
|
18
|
+
typeUrl?: string | undefined;
|
|
19
|
+
value?: Uint8Array | undefined;
|
|
20
|
+
};
|
|
21
|
+
serialize(): Uint8Array;
|
|
22
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
23
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Any;
|
|
24
|
+
serializeBinary(): Uint8Array;
|
|
25
|
+
static deserializeBinary(bytes: Uint8Array): Any;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import * as pb_1 from "google-protobuf";
|
|
2
|
+
export declare namespace google.protobuf {
|
|
3
|
+
enum NullValue {
|
|
4
|
+
NULL_VALUE = 0
|
|
5
|
+
}
|
|
6
|
+
class Struct extends pb_1.Message {
|
|
7
|
+
#private;
|
|
8
|
+
constructor(data?: any[] | {
|
|
9
|
+
fields?: Map<string, Value>;
|
|
10
|
+
});
|
|
11
|
+
get fields(): Map<string, Value>;
|
|
12
|
+
set fields(value: Map<string, Value>);
|
|
13
|
+
static fromObject(data: {
|
|
14
|
+
fields?: {
|
|
15
|
+
[key: string]: ReturnType<typeof Value.prototype.toObject>;
|
|
16
|
+
};
|
|
17
|
+
}): Struct;
|
|
18
|
+
toObject(): {
|
|
19
|
+
fields?: {
|
|
20
|
+
[key: string]: {
|
|
21
|
+
nullValue?: NullValue | undefined;
|
|
22
|
+
numberValue?: number | undefined;
|
|
23
|
+
stringValue?: string | undefined;
|
|
24
|
+
boolValue?: boolean | undefined;
|
|
25
|
+
structValue?: {
|
|
26
|
+
fields?: {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
} | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
listValue?: {
|
|
31
|
+
values?: any[] | undefined;
|
|
32
|
+
} | undefined;
|
|
33
|
+
};
|
|
34
|
+
} | undefined;
|
|
35
|
+
};
|
|
36
|
+
serialize(): Uint8Array;
|
|
37
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
38
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Struct;
|
|
39
|
+
serializeBinary(): Uint8Array;
|
|
40
|
+
static deserializeBinary(bytes: Uint8Array): Struct;
|
|
41
|
+
}
|
|
42
|
+
class Value extends pb_1.Message {
|
|
43
|
+
#private;
|
|
44
|
+
constructor(data?: any[] | ({} & (({
|
|
45
|
+
nullValue?: NullValue;
|
|
46
|
+
numberValue?: never;
|
|
47
|
+
stringValue?: never;
|
|
48
|
+
boolValue?: never;
|
|
49
|
+
structValue?: never;
|
|
50
|
+
listValue?: never;
|
|
51
|
+
} | {
|
|
52
|
+
nullValue?: never;
|
|
53
|
+
numberValue?: number;
|
|
54
|
+
stringValue?: never;
|
|
55
|
+
boolValue?: never;
|
|
56
|
+
structValue?: never;
|
|
57
|
+
listValue?: never;
|
|
58
|
+
} | {
|
|
59
|
+
nullValue?: never;
|
|
60
|
+
numberValue?: never;
|
|
61
|
+
stringValue?: string;
|
|
62
|
+
boolValue?: never;
|
|
63
|
+
structValue?: never;
|
|
64
|
+
listValue?: never;
|
|
65
|
+
} | {
|
|
66
|
+
nullValue?: never;
|
|
67
|
+
numberValue?: never;
|
|
68
|
+
stringValue?: never;
|
|
69
|
+
boolValue?: boolean;
|
|
70
|
+
structValue?: never;
|
|
71
|
+
listValue?: never;
|
|
72
|
+
} | {
|
|
73
|
+
nullValue?: never;
|
|
74
|
+
numberValue?: never;
|
|
75
|
+
stringValue?: never;
|
|
76
|
+
boolValue?: never;
|
|
77
|
+
structValue?: Struct;
|
|
78
|
+
listValue?: never;
|
|
79
|
+
} | {
|
|
80
|
+
nullValue?: never;
|
|
81
|
+
numberValue?: never;
|
|
82
|
+
stringValue?: never;
|
|
83
|
+
boolValue?: never;
|
|
84
|
+
structValue?: never;
|
|
85
|
+
listValue?: ListValue;
|
|
86
|
+
}))));
|
|
87
|
+
get nullValue(): NullValue;
|
|
88
|
+
set nullValue(value: NullValue);
|
|
89
|
+
get hasNullValue(): boolean;
|
|
90
|
+
get numberValue(): number;
|
|
91
|
+
set numberValue(value: number);
|
|
92
|
+
get hasNumberValue(): boolean;
|
|
93
|
+
get stringValue(): string;
|
|
94
|
+
set stringValue(value: string);
|
|
95
|
+
get hasStringValue(): boolean;
|
|
96
|
+
get boolValue(): boolean;
|
|
97
|
+
set boolValue(value: boolean);
|
|
98
|
+
get hasBoolValue(): boolean;
|
|
99
|
+
get structValue(): Struct;
|
|
100
|
+
set structValue(value: Struct);
|
|
101
|
+
get hasStructValue(): boolean;
|
|
102
|
+
get listValue(): ListValue;
|
|
103
|
+
set listValue(value: ListValue);
|
|
104
|
+
get hasListValue(): boolean;
|
|
105
|
+
get kind(): "none" | "nullValue" | "numberValue" | "stringValue" | "boolValue" | "structValue" | "listValue";
|
|
106
|
+
static fromObject(data: {
|
|
107
|
+
nullValue?: NullValue;
|
|
108
|
+
numberValue?: number;
|
|
109
|
+
stringValue?: string;
|
|
110
|
+
boolValue?: boolean;
|
|
111
|
+
structValue?: ReturnType<typeof Struct.prototype.toObject>;
|
|
112
|
+
listValue?: ReturnType<typeof ListValue.prototype.toObject>;
|
|
113
|
+
}): Value;
|
|
114
|
+
toObject(): {
|
|
115
|
+
nullValue?: NullValue | undefined;
|
|
116
|
+
numberValue?: number | undefined;
|
|
117
|
+
stringValue?: string | undefined;
|
|
118
|
+
boolValue?: boolean | undefined;
|
|
119
|
+
structValue?: {
|
|
120
|
+
fields?: {
|
|
121
|
+
[key: string]: {
|
|
122
|
+
nullValue?: NullValue | undefined;
|
|
123
|
+
numberValue?: number | undefined;
|
|
124
|
+
stringValue?: string | undefined;
|
|
125
|
+
boolValue?: boolean | undefined;
|
|
126
|
+
structValue?: any | undefined;
|
|
127
|
+
listValue?: {
|
|
128
|
+
values?: any[] | undefined;
|
|
129
|
+
} | undefined;
|
|
130
|
+
};
|
|
131
|
+
} | undefined;
|
|
132
|
+
} | undefined;
|
|
133
|
+
listValue?: {
|
|
134
|
+
values?: any[] | undefined;
|
|
135
|
+
} | undefined;
|
|
136
|
+
};
|
|
137
|
+
serialize(): Uint8Array;
|
|
138
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
139
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Value;
|
|
140
|
+
serializeBinary(): Uint8Array;
|
|
141
|
+
static deserializeBinary(bytes: Uint8Array): Value;
|
|
142
|
+
}
|
|
143
|
+
class ListValue extends pb_1.Message {
|
|
144
|
+
#private;
|
|
145
|
+
constructor(data?: any[] | {
|
|
146
|
+
values?: Value[];
|
|
147
|
+
});
|
|
148
|
+
get values(): Value[];
|
|
149
|
+
set values(value: Value[]);
|
|
150
|
+
static fromObject(data: {
|
|
151
|
+
values?: ReturnType<typeof Value.prototype.toObject>[];
|
|
152
|
+
}): ListValue;
|
|
153
|
+
toObject(): {
|
|
154
|
+
values?: {
|
|
155
|
+
nullValue?: NullValue | undefined;
|
|
156
|
+
numberValue?: number | undefined;
|
|
157
|
+
stringValue?: string | undefined;
|
|
158
|
+
boolValue?: boolean | undefined;
|
|
159
|
+
structValue?: {
|
|
160
|
+
fields?: {
|
|
161
|
+
[key: string]: any;
|
|
162
|
+
} | undefined;
|
|
163
|
+
} | undefined;
|
|
164
|
+
listValue?: {
|
|
165
|
+
values?: any[] | undefined;
|
|
166
|
+
} | undefined;
|
|
167
|
+
}[] | undefined;
|
|
168
|
+
};
|
|
169
|
+
serialize(): Uint8Array;
|
|
170
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
171
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): ListValue;
|
|
172
|
+
serializeBinary(): Uint8Array;
|
|
173
|
+
static deserializeBinary(bytes: Uint8Array): ListValue;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
@@ -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;
|