@technova-tech/olive-proto-lib 1.8.6 → 1.8.7
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 +14 -124
- package/package.json +1 -1
- package/types/audit/audit.d.ts +14 -202
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, [
|
|
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.
|
|
435
|
+
return pb_1.Message.getFieldWithDefault(this, 5, "");
|
|
543
436
|
}
|
|
544
437
|
set createdData(value) {
|
|
545
|
-
pb_1.Message.
|
|
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.
|
|
441
|
+
return pb_1.Message.getFieldWithDefault(this, 6, "");
|
|
552
442
|
}
|
|
553
443
|
set modifiedFields(value) {
|
|
554
|
-
pb_1.Message.
|
|
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 =
|
|
479
|
+
message.createdData = data.createdData;
|
|
590
480
|
}
|
|
591
481
|
if (data.modifiedFields != null) {
|
|
592
|
-
message.modifiedFields = data.modifiedFields
|
|
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
|
|
510
|
+
data.createdData = this.createdData;
|
|
621
511
|
}
|
|
622
512
|
if (this.modifiedFields != null) {
|
|
623
|
-
data.modifiedFields = this.modifiedFields
|
|
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.
|
|
647
|
-
writer.
|
|
536
|
+
if (this.createdData.length)
|
|
537
|
+
writer.writeString(5, this.createdData);
|
|
648
538
|
if (this.modifiedFields.length)
|
|
649
|
-
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
|
-
|
|
568
|
+
message.createdData = reader.readString();
|
|
679
569
|
break;
|
|
680
570
|
case 6:
|
|
681
|
-
|
|
571
|
+
message.modifiedFields = reader.readString();
|
|
682
572
|
break;
|
|
683
573
|
case 7:
|
|
684
574
|
message.adminIdentity = reader.readString();
|
package/package.json
CHANGED
package/types/audit/audit.d.ts
CHANGED
|
@@ -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?:
|
|
168
|
-
modifiedFields?:
|
|
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():
|
|
182
|
-
set createdData(value:
|
|
183
|
-
get
|
|
184
|
-
|
|
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?:
|
|
198
|
-
modifiedFields?:
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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;
|