@ampsec/platform-client 70.0.0 → 70.2.0
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/build/src/FilterCriteria.d.ts +82 -45
- package/build/src/dto/actionExecution.dto.d.ts +3 -2
- package/build/src/dto/agents.dto.d.ts +3 -2
- package/build/src/dto/assets.dto.d.ts +31 -10
- package/build/src/dto/base.dto.d.ts +6 -4
- package/build/src/dto/coverage.dto.d.ts +144 -106
- package/build/src/dto/customActions.dto.d.ts +32 -28
- package/build/src/dto/customScores.dto.d.ts +8 -4
- package/build/src/dto/eng/coverage.dto.d.ts +8 -8
- package/build/src/dto/findings.dto.d.ts +41 -40
- package/build/src/dto/flows.dto.d.ts +222 -179
- package/build/src/dto/notification.dto.d.ts +157 -134
- package/build/src/dto/page.dto.d.ts +5 -5
- package/build/src/dto/platform/platform.actionExecution.dto.d.ts +26 -12
- package/build/src/dto/platform/platform.agents.dto.d.ts +3 -2
- package/build/src/dto/platform/platform.customActions.dto.d.ts +36 -32
- package/build/src/dto/platform/platform.customScores.dto.d.ts +16 -9
- package/build/src/dto/platform/platform.findings.dto.d.ts +37 -34
- package/build/src/dto/platform/platform.flows.dto.d.ts +176 -136
- package/build/src/dto/platform/platform.saasAssets.dto.d.ts +29 -25
- package/build/src/dto/platform/platform.saasUsers.dto.d.ts +48 -44
- package/build/src/dto/platform/platform.tokens.dto.d.ts +21 -9
- package/build/src/dto/platform/tenant.based.dto.d.ts +6 -5
- package/build/src/dto/saasAssets.dto.d.ts +84 -58
- package/build/src/dto/saasUsers.dto.d.ts +131 -110
- package/build/src/dto/tokens.dto.d.ts +3 -2
- package/build/src/dto/users.dto.d.ts +8 -8
- package/build/src/services/contentful.service.d.ts +12 -12
- package/build/src/settings.d.ts +3 -0
- package/build/src/settings.js +3 -0
- package/build/src/settings.js.map +1 -1
- package/package.json +1 -1
- package/src/settings.ts +3 -0
|
@@ -15,17 +15,19 @@ export declare const _UserAccountSummary: z.ZodObject<{
|
|
|
15
15
|
active: boolean;
|
|
16
16
|
}>;
|
|
17
17
|
export type UserAccountSummary = z.infer<typeof _UserAccountSummary>;
|
|
18
|
-
export declare const _AssetCoverageSummary: z.ZodObject<{
|
|
18
|
+
export declare const _AssetCoverageSummary: z.ZodObject<z.objectUtil.extendShape<{
|
|
19
19
|
id: z.ZodOptional<z.ZodString>;
|
|
20
20
|
uid: z.ZodOptional<z.ZodString>;
|
|
21
|
-
sn: z.ZodOptional<z.ZodString>;
|
|
22
21
|
displayValue: z.ZodOptional<z.ZodString>;
|
|
22
|
+
sn: z.ZodOptional<z.ZodString>;
|
|
23
23
|
maxSeverity: z.ZodOptional<z.ZodString>;
|
|
24
24
|
hostname: z.ZodOptional<z.ZodString>;
|
|
25
25
|
lastCheckinTs: z.ZodOptional<z.ZodString>;
|
|
26
26
|
os: z.ZodOptional<z.ZodString>;
|
|
27
27
|
make: z.ZodOptional<z.ZodString>;
|
|
28
28
|
model: z.ZodOptional<z.ZodString>;
|
|
29
|
+
}, {
|
|
30
|
+
/** @deprecated */
|
|
29
31
|
assetAccounts: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
30
32
|
assetAccounts2: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
31
33
|
active: z.ZodBoolean;
|
|
@@ -34,7 +36,7 @@ export declare const _AssetCoverageSummary: z.ZodObject<{
|
|
|
34
36
|
}, {
|
|
35
37
|
active: boolean;
|
|
36
38
|
}>, "many">>;
|
|
37
|
-
}
|
|
39
|
+
}>, "strip", z.ZodTypeAny, {
|
|
38
40
|
assetAccounts: Record<string, unknown>;
|
|
39
41
|
assetAccounts2: Record<string, {
|
|
40
42
|
active: boolean;
|
|
@@ -113,19 +115,23 @@ export declare const _MfaSummary: z.ZodObject<{
|
|
|
113
115
|
}, z.ZodString, "strip">[];
|
|
114
116
|
}>;
|
|
115
117
|
export type MfaSummary = z.infer<typeof _MfaSummary>;
|
|
116
|
-
export declare const _UserCoverageSummary: z.ZodObject<{
|
|
117
|
-
email: z.ZodOptional<z.ZodString>;
|
|
118
|
+
export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<{
|
|
118
119
|
id: z.ZodOptional<z.ZodString>;
|
|
119
|
-
|
|
120
|
-
department: z.ZodOptional<z.ZodString>;
|
|
120
|
+
score: z.ZodOptional<z.ZodNumber>;
|
|
121
121
|
firstName: z.ZodOptional<z.ZodString>;
|
|
122
122
|
lastName: z.ZodOptional<z.ZodString>;
|
|
123
|
-
|
|
123
|
+
email: z.ZodOptional<z.ZodString>;
|
|
124
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
125
|
+
department: z.ZodOptional<z.ZodString>;
|
|
124
126
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
125
127
|
lastActivity: z.ZodOptional<z.ZodString>;
|
|
128
|
+
}, {
|
|
126
129
|
name: z.ZodOptional<z.ZodString>;
|
|
130
|
+
/** @deprecated */
|
|
127
131
|
mfaEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
132
|
+
/** @deprecated */
|
|
128
133
|
mfaRating: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
|
|
134
|
+
/** @deprecated */
|
|
129
135
|
mfaFactors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
130
136
|
cid: z.ZodOptional<z.ZodString>;
|
|
131
137
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -238,6 +244,7 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
238
244
|
}, z.ZodString, "strip">[];
|
|
239
245
|
}>>>;
|
|
240
246
|
notifications: z.ZodOptional<z.ZodNumber>;
|
|
247
|
+
/** @deprecated */
|
|
241
248
|
userAccounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
242
249
|
userAccounts2: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
243
250
|
active: z.ZodBoolean;
|
|
@@ -246,18 +253,21 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
246
253
|
}, {
|
|
247
254
|
active: boolean;
|
|
248
255
|
}>, "many">>;
|
|
256
|
+
/** @deprecated */
|
|
249
257
|
assetAccounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
250
|
-
assets: z.ZodArray<z.ZodObject<{
|
|
258
|
+
assets: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
251
259
|
id: z.ZodOptional<z.ZodString>;
|
|
252
260
|
uid: z.ZodOptional<z.ZodString>;
|
|
253
|
-
sn: z.ZodOptional<z.ZodString>;
|
|
254
261
|
displayValue: z.ZodOptional<z.ZodString>;
|
|
262
|
+
sn: z.ZodOptional<z.ZodString>;
|
|
255
263
|
maxSeverity: z.ZodOptional<z.ZodString>;
|
|
256
264
|
hostname: z.ZodOptional<z.ZodString>;
|
|
257
265
|
lastCheckinTs: z.ZodOptional<z.ZodString>;
|
|
258
266
|
os: z.ZodOptional<z.ZodString>;
|
|
259
267
|
make: z.ZodOptional<z.ZodString>;
|
|
260
268
|
model: z.ZodOptional<z.ZodString>;
|
|
269
|
+
}, {
|
|
270
|
+
/** @deprecated */
|
|
261
271
|
assetAccounts: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
262
272
|
assetAccounts2: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
263
273
|
active: z.ZodBoolean;
|
|
@@ -266,7 +276,7 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
266
276
|
}, {
|
|
267
277
|
active: boolean;
|
|
268
278
|
}>, "many">>;
|
|
269
|
-
}
|
|
279
|
+
}>, "strip", z.ZodTypeAny, {
|
|
270
280
|
assetAccounts: Record<string, unknown>;
|
|
271
281
|
assetAccounts2: Record<string, {
|
|
272
282
|
active: boolean;
|
|
@@ -297,7 +307,7 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
297
307
|
make?: string | undefined;
|
|
298
308
|
model?: string | undefined;
|
|
299
309
|
}>, "many">;
|
|
300
|
-
}
|
|
310
|
+
}>, "strip", z.ZodTypeAny, {
|
|
301
311
|
assetAccounts: Record<string, number>;
|
|
302
312
|
userAccounts: Record<string, number>;
|
|
303
313
|
userAccounts2: Record<string, {
|
|
@@ -319,6 +329,7 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
319
329
|
make?: string | undefined;
|
|
320
330
|
model?: string | undefined;
|
|
321
331
|
}[];
|
|
332
|
+
name?: string | undefined;
|
|
322
333
|
email?: string | undefined;
|
|
323
334
|
id?: string | undefined;
|
|
324
335
|
organization?: string | undefined;
|
|
@@ -328,7 +339,6 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
328
339
|
score?: number | undefined;
|
|
329
340
|
active?: boolean | undefined;
|
|
330
341
|
lastActivity?: string | undefined;
|
|
331
|
-
name?: string | undefined;
|
|
332
342
|
mfaEnabled?: boolean | undefined;
|
|
333
343
|
mfaRating?: "UNKNOWN" | "SECURE" | "INSECURE" | "MISSING" | undefined;
|
|
334
344
|
mfaFactors?: z.objectOutputType<{
|
|
@@ -385,6 +395,7 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
385
395
|
make?: string | undefined;
|
|
386
396
|
model?: string | undefined;
|
|
387
397
|
}[];
|
|
398
|
+
name?: string | undefined;
|
|
388
399
|
email?: string | undefined;
|
|
389
400
|
id?: string | undefined;
|
|
390
401
|
organization?: string | undefined;
|
|
@@ -394,7 +405,6 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
394
405
|
score?: number | undefined;
|
|
395
406
|
active?: boolean | undefined;
|
|
396
407
|
lastActivity?: string | undefined;
|
|
397
|
-
name?: string | undefined;
|
|
398
408
|
mfaEnabled?: boolean | undefined;
|
|
399
409
|
mfaRating?: "UNKNOWN" | "SECURE" | "INSECURE" | "MISSING" | undefined;
|
|
400
410
|
mfaFactors?: z.objectInputType<{
|
|
@@ -431,20 +441,28 @@ export declare const _UserCoverageSummary: z.ZodObject<{
|
|
|
431
441
|
notifications?: number | undefined;
|
|
432
442
|
}>;
|
|
433
443
|
export type UserCoverageSummary = z.infer<typeof _UserCoverageSummary>;
|
|
434
|
-
export declare const _UserCoverageReport: z.ZodObject<{
|
|
435
|
-
email: z.ZodOptional<z.ZodString>;
|
|
444
|
+
export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
436
445
|
id: z.ZodOptional<z.ZodString>;
|
|
437
|
-
|
|
438
|
-
department: z.ZodOptional<z.ZodString>;
|
|
446
|
+
score: z.ZodOptional<z.ZodNumber>;
|
|
439
447
|
firstName: z.ZodOptional<z.ZodString>;
|
|
440
448
|
lastName: z.ZodOptional<z.ZodString>;
|
|
441
|
-
|
|
449
|
+
email: z.ZodOptional<z.ZodString>;
|
|
450
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
451
|
+
department: z.ZodOptional<z.ZodString>;
|
|
442
452
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
443
453
|
lastActivity: z.ZodOptional<z.ZodString>;
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
454
|
+
}, {
|
|
455
|
+
userAccounts: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
456
|
+
id: z.ZodOptional<z.ZodString>;
|
|
457
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
458
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
459
|
+
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
460
|
+
}, {
|
|
461
|
+
etag: z.ZodString;
|
|
462
|
+
}>, {
|
|
447
463
|
uid: z.ZodString;
|
|
464
|
+
cid: z.ZodString;
|
|
465
|
+
email: z.ZodString;
|
|
448
466
|
extId: z.ZodString;
|
|
449
467
|
meta: z.ZodObject<{
|
|
450
468
|
_user: z.ZodObject<{
|
|
@@ -485,13 +503,13 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
485
503
|
name: z.ZodOptional<z.ZodString>;
|
|
486
504
|
email: z.ZodOptional<z.ZodString>;
|
|
487
505
|
}, "strip", z.ZodTypeAny, {
|
|
488
|
-
extId?: string | undefined;
|
|
489
506
|
name?: string | undefined;
|
|
490
507
|
email?: string | undefined;
|
|
491
|
-
}, {
|
|
492
508
|
extId?: string | undefined;
|
|
509
|
+
}, {
|
|
493
510
|
name?: string | undefined;
|
|
494
511
|
email?: string | undefined;
|
|
512
|
+
extId?: string | undefined;
|
|
495
513
|
}>>;
|
|
496
514
|
userType: z.ZodNativeEnum<typeof import("./enums").GlobalUserType>;
|
|
497
515
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -499,30 +517,30 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
499
517
|
firstName: string;
|
|
500
518
|
lastName: string;
|
|
501
519
|
userType: import("./enums").GlobalUserType;
|
|
502
|
-
title?: string | undefined;
|
|
503
|
-
department?: string | undefined;
|
|
504
520
|
organization?: string | undefined;
|
|
521
|
+
department?: string | undefined;
|
|
505
522
|
pictureUrl?: string | undefined;
|
|
523
|
+
title?: string | undefined;
|
|
506
524
|
startDate?: string | undefined;
|
|
507
525
|
manager?: {
|
|
508
|
-
extId?: string | undefined;
|
|
509
526
|
name?: string | undefined;
|
|
510
527
|
email?: string | undefined;
|
|
528
|
+
extId?: string | undefined;
|
|
511
529
|
} | undefined;
|
|
512
530
|
}, {
|
|
513
531
|
email: string;
|
|
514
532
|
firstName: string;
|
|
515
533
|
lastName: string;
|
|
516
534
|
userType: import("./enums").GlobalUserType;
|
|
517
|
-
title?: string | undefined;
|
|
518
|
-
department?: string | undefined;
|
|
519
535
|
organization?: string | undefined;
|
|
536
|
+
department?: string | undefined;
|
|
520
537
|
pictureUrl?: string | undefined;
|
|
538
|
+
title?: string | undefined;
|
|
521
539
|
startDate?: string | undefined;
|
|
522
540
|
manager?: {
|
|
523
|
-
extId?: string | undefined;
|
|
524
541
|
name?: string | undefined;
|
|
525
542
|
email?: string | undefined;
|
|
543
|
+
extId?: string | undefined;
|
|
526
544
|
} | undefined;
|
|
527
545
|
}>;
|
|
528
546
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -531,21 +549,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
531
549
|
firstName: string;
|
|
532
550
|
lastName: string;
|
|
533
551
|
userType: import("./enums").GlobalUserType;
|
|
534
|
-
title?: string | undefined;
|
|
535
|
-
department?: string | undefined;
|
|
536
552
|
organization?: string | undefined;
|
|
553
|
+
department?: string | undefined;
|
|
537
554
|
pictureUrl?: string | undefined;
|
|
555
|
+
title?: string | undefined;
|
|
538
556
|
startDate?: string | undefined;
|
|
539
557
|
manager?: {
|
|
540
|
-
extId?: string | undefined;
|
|
541
558
|
name?: string | undefined;
|
|
542
559
|
email?: string | undefined;
|
|
560
|
+
extId?: string | undefined;
|
|
543
561
|
} | undefined;
|
|
544
562
|
};
|
|
545
|
-
extId?: string | undefined;
|
|
546
563
|
groups?: Record<string, string> | undefined;
|
|
547
|
-
|
|
564
|
+
extId?: string | undefined;
|
|
548
565
|
lastActivityTime?: string | undefined;
|
|
566
|
+
created?: string | undefined;
|
|
549
567
|
factors?: z.objectOutputType<{
|
|
550
568
|
cid: z.ZodOptional<z.ZodString>;
|
|
551
569
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -559,21 +577,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
559
577
|
firstName: string;
|
|
560
578
|
lastName: string;
|
|
561
579
|
userType: import("./enums").GlobalUserType;
|
|
562
|
-
title?: string | undefined;
|
|
563
|
-
department?: string | undefined;
|
|
564
580
|
organization?: string | undefined;
|
|
581
|
+
department?: string | undefined;
|
|
565
582
|
pictureUrl?: string | undefined;
|
|
583
|
+
title?: string | undefined;
|
|
566
584
|
startDate?: string | undefined;
|
|
567
585
|
manager?: {
|
|
568
|
-
extId?: string | undefined;
|
|
569
586
|
name?: string | undefined;
|
|
570
587
|
email?: string | undefined;
|
|
588
|
+
extId?: string | undefined;
|
|
571
589
|
} | undefined;
|
|
572
590
|
};
|
|
573
|
-
extId?: string | undefined;
|
|
574
591
|
groups?: Record<string, string> | undefined;
|
|
575
|
-
|
|
592
|
+
extId?: string | undefined;
|
|
576
593
|
lastActivityTime?: string | undefined;
|
|
594
|
+
created?: string | undefined;
|
|
577
595
|
factors?: z.objectInputType<{
|
|
578
596
|
cid: z.ZodOptional<z.ZodString>;
|
|
579
597
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -590,21 +608,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
590
608
|
firstName: string;
|
|
591
609
|
lastName: string;
|
|
592
610
|
userType: import("./enums").GlobalUserType;
|
|
593
|
-
title?: string | undefined;
|
|
594
|
-
department?: string | undefined;
|
|
595
611
|
organization?: string | undefined;
|
|
612
|
+
department?: string | undefined;
|
|
596
613
|
pictureUrl?: string | undefined;
|
|
614
|
+
title?: string | undefined;
|
|
597
615
|
startDate?: string | undefined;
|
|
598
616
|
manager?: {
|
|
599
|
-
extId?: string | undefined;
|
|
600
617
|
name?: string | undefined;
|
|
601
618
|
email?: string | undefined;
|
|
619
|
+
extId?: string | undefined;
|
|
602
620
|
} | undefined;
|
|
603
621
|
};
|
|
604
|
-
extId?: string | undefined;
|
|
605
622
|
groups?: Record<string, string> | undefined;
|
|
606
|
-
|
|
623
|
+
extId?: string | undefined;
|
|
607
624
|
lastActivityTime?: string | undefined;
|
|
625
|
+
created?: string | undefined;
|
|
608
626
|
factors?: z.objectOutputType<{
|
|
609
627
|
cid: z.ZodOptional<z.ZodString>;
|
|
610
628
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -621,21 +639,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
621
639
|
firstName: string;
|
|
622
640
|
lastName: string;
|
|
623
641
|
userType: import("./enums").GlobalUserType;
|
|
624
|
-
title?: string | undefined;
|
|
625
|
-
department?: string | undefined;
|
|
626
642
|
organization?: string | undefined;
|
|
643
|
+
department?: string | undefined;
|
|
627
644
|
pictureUrl?: string | undefined;
|
|
645
|
+
title?: string | undefined;
|
|
628
646
|
startDate?: string | undefined;
|
|
629
647
|
manager?: {
|
|
630
|
-
extId?: string | undefined;
|
|
631
648
|
name?: string | undefined;
|
|
632
649
|
email?: string | undefined;
|
|
650
|
+
extId?: string | undefined;
|
|
633
651
|
} | undefined;
|
|
634
652
|
};
|
|
635
|
-
extId?: string | undefined;
|
|
636
653
|
groups?: Record<string, string> | undefined;
|
|
637
|
-
|
|
654
|
+
extId?: string | undefined;
|
|
638
655
|
lastActivityTime?: string | undefined;
|
|
656
|
+
created?: string | undefined;
|
|
639
657
|
factors?: z.objectInputType<{
|
|
640
658
|
cid: z.ZodOptional<z.ZodString>;
|
|
641
659
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -646,12 +664,14 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
646
664
|
};
|
|
647
665
|
_raw?: unknown;
|
|
648
666
|
}>;
|
|
667
|
+
}>, z.objectUtil.extendShape<{
|
|
649
668
|
id: z.ZodString;
|
|
650
669
|
createdAt: z.ZodString;
|
|
651
670
|
updatedAt: z.ZodString;
|
|
652
671
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
672
|
+
}, {
|
|
653
673
|
etag: z.ZodString;
|
|
654
|
-
}
|
|
674
|
+
}>>, "strip", z.ZodTypeAny, {
|
|
655
675
|
email: string;
|
|
656
676
|
id: string;
|
|
657
677
|
cid: string;
|
|
@@ -668,21 +688,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
668
688
|
firstName: string;
|
|
669
689
|
lastName: string;
|
|
670
690
|
userType: import("./enums").GlobalUserType;
|
|
671
|
-
title?: string | undefined;
|
|
672
|
-
department?: string | undefined;
|
|
673
691
|
organization?: string | undefined;
|
|
692
|
+
department?: string | undefined;
|
|
674
693
|
pictureUrl?: string | undefined;
|
|
694
|
+
title?: string | undefined;
|
|
675
695
|
startDate?: string | undefined;
|
|
676
696
|
manager?: {
|
|
677
|
-
extId?: string | undefined;
|
|
678
697
|
name?: string | undefined;
|
|
679
698
|
email?: string | undefined;
|
|
699
|
+
extId?: string | undefined;
|
|
680
700
|
} | undefined;
|
|
681
701
|
};
|
|
682
|
-
extId?: string | undefined;
|
|
683
702
|
groups?: Record<string, string> | undefined;
|
|
684
|
-
|
|
703
|
+
extId?: string | undefined;
|
|
685
704
|
lastActivityTime?: string | undefined;
|
|
705
|
+
created?: string | undefined;
|
|
686
706
|
factors?: z.objectOutputType<{
|
|
687
707
|
cid: z.ZodOptional<z.ZodString>;
|
|
688
708
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -710,21 +730,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
710
730
|
firstName: string;
|
|
711
731
|
lastName: string;
|
|
712
732
|
userType: import("./enums").GlobalUserType;
|
|
713
|
-
title?: string | undefined;
|
|
714
|
-
department?: string | undefined;
|
|
715
733
|
organization?: string | undefined;
|
|
734
|
+
department?: string | undefined;
|
|
716
735
|
pictureUrl?: string | undefined;
|
|
736
|
+
title?: string | undefined;
|
|
717
737
|
startDate?: string | undefined;
|
|
718
738
|
manager?: {
|
|
719
|
-
extId?: string | undefined;
|
|
720
739
|
name?: string | undefined;
|
|
721
740
|
email?: string | undefined;
|
|
741
|
+
extId?: string | undefined;
|
|
722
742
|
} | undefined;
|
|
723
743
|
};
|
|
724
|
-
extId?: string | undefined;
|
|
725
744
|
groups?: Record<string, string> | undefined;
|
|
726
|
-
|
|
745
|
+
extId?: string | undefined;
|
|
727
746
|
lastActivityTime?: string | undefined;
|
|
747
|
+
created?: string | undefined;
|
|
728
748
|
factors?: z.objectInputType<{
|
|
729
749
|
cid: z.ZodOptional<z.ZodString>;
|
|
730
750
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -736,11 +756,14 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
736
756
|
_raw?: unknown;
|
|
737
757
|
};
|
|
738
758
|
}>, "many">>;
|
|
739
|
-
assetAccounts: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
759
|
+
assetAccounts: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
760
|
+
id: z.ZodOptional<z.ZodString>;
|
|
761
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
762
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
763
|
+
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
764
|
+
}, {
|
|
765
|
+
etag: z.ZodString;
|
|
766
|
+
}>, {
|
|
744
767
|
extKeys: z.ZodObject<{
|
|
745
768
|
extId: z.ZodOptional<z.ZodString>;
|
|
746
769
|
sn: z.ZodOptional<z.ZodString>;
|
|
@@ -754,6 +777,10 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
754
777
|
extId?: string | undefined;
|
|
755
778
|
sn?: string | undefined;
|
|
756
779
|
}>;
|
|
780
|
+
cid: z.ZodString;
|
|
781
|
+
aid: z.ZodString;
|
|
782
|
+
uid: z.ZodOptional<z.ZodString>;
|
|
783
|
+
displayValue: z.ZodString;
|
|
757
784
|
meta: z.ZodObject<{
|
|
758
785
|
_asset: z.ZodObject<{
|
|
759
786
|
extId: z.ZodString;
|
|
@@ -786,15 +813,15 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
786
813
|
operatingSystems: {
|
|
787
814
|
displayValue: string;
|
|
788
815
|
}[];
|
|
789
|
-
|
|
816
|
+
make?: string | undefined;
|
|
817
|
+
model?: string | undefined;
|
|
790
818
|
lastActivityTime?: string | undefined;
|
|
819
|
+
deviceName?: string | undefined;
|
|
791
820
|
serialNumber?: string | undefined;
|
|
792
821
|
macAddresses?: string[] | undefined;
|
|
793
822
|
owner?: {
|
|
794
823
|
email?: string | undefined;
|
|
795
824
|
} | undefined;
|
|
796
|
-
make?: string | undefined;
|
|
797
|
-
model?: string | undefined;
|
|
798
825
|
}, {
|
|
799
826
|
extId: string;
|
|
800
827
|
assetType: import("./enums").GlobalAssetType;
|
|
@@ -802,15 +829,15 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
802
829
|
operatingSystems: {
|
|
803
830
|
displayValue: string;
|
|
804
831
|
}[];
|
|
805
|
-
|
|
832
|
+
make?: string | undefined;
|
|
833
|
+
model?: string | undefined;
|
|
806
834
|
lastActivityTime?: string | undefined;
|
|
835
|
+
deviceName?: string | undefined;
|
|
807
836
|
serialNumber?: string | undefined;
|
|
808
837
|
macAddresses?: string[] | undefined;
|
|
809
838
|
owner?: {
|
|
810
839
|
email?: string | undefined;
|
|
811
840
|
} | undefined;
|
|
812
|
-
make?: string | undefined;
|
|
813
|
-
model?: string | undefined;
|
|
814
841
|
}>;
|
|
815
842
|
_raw: z.ZodUnknown;
|
|
816
843
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -821,15 +848,15 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
821
848
|
operatingSystems: {
|
|
822
849
|
displayValue: string;
|
|
823
850
|
}[];
|
|
824
|
-
|
|
851
|
+
make?: string | undefined;
|
|
852
|
+
model?: string | undefined;
|
|
825
853
|
lastActivityTime?: string | undefined;
|
|
854
|
+
deviceName?: string | undefined;
|
|
826
855
|
serialNumber?: string | undefined;
|
|
827
856
|
macAddresses?: string[] | undefined;
|
|
828
857
|
owner?: {
|
|
829
858
|
email?: string | undefined;
|
|
830
859
|
} | undefined;
|
|
831
|
-
make?: string | undefined;
|
|
832
|
-
model?: string | undefined;
|
|
833
860
|
};
|
|
834
861
|
_raw?: unknown;
|
|
835
862
|
}, {
|
|
@@ -840,24 +867,26 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
840
867
|
operatingSystems: {
|
|
841
868
|
displayValue: string;
|
|
842
869
|
}[];
|
|
843
|
-
|
|
870
|
+
make?: string | undefined;
|
|
871
|
+
model?: string | undefined;
|
|
844
872
|
lastActivityTime?: string | undefined;
|
|
873
|
+
deviceName?: string | undefined;
|
|
845
874
|
serialNumber?: string | undefined;
|
|
846
875
|
macAddresses?: string[] | undefined;
|
|
847
876
|
owner?: {
|
|
848
877
|
email?: string | undefined;
|
|
849
878
|
} | undefined;
|
|
850
|
-
make?: string | undefined;
|
|
851
|
-
model?: string | undefined;
|
|
852
879
|
};
|
|
853
880
|
_raw?: unknown;
|
|
854
881
|
}>;
|
|
882
|
+
}>, z.objectUtil.extendShape<{
|
|
855
883
|
id: z.ZodString;
|
|
856
884
|
createdAt: z.ZodString;
|
|
857
885
|
updatedAt: z.ZodString;
|
|
858
886
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
887
|
+
}, {
|
|
859
888
|
etag: z.ZodString;
|
|
860
|
-
}
|
|
889
|
+
}>>, "strip", z.ZodTypeAny, {
|
|
861
890
|
id: string;
|
|
862
891
|
cid: string;
|
|
863
892
|
aid: string;
|
|
@@ -879,15 +908,15 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
879
908
|
operatingSystems: {
|
|
880
909
|
displayValue: string;
|
|
881
910
|
}[];
|
|
882
|
-
|
|
911
|
+
make?: string | undefined;
|
|
912
|
+
model?: string | undefined;
|
|
883
913
|
lastActivityTime?: string | undefined;
|
|
914
|
+
deviceName?: string | undefined;
|
|
884
915
|
serialNumber?: string | undefined;
|
|
885
916
|
macAddresses?: string[] | undefined;
|
|
886
917
|
owner?: {
|
|
887
918
|
email?: string | undefined;
|
|
888
919
|
} | undefined;
|
|
889
|
-
make?: string | undefined;
|
|
890
|
-
model?: string | undefined;
|
|
891
920
|
};
|
|
892
921
|
_raw?: unknown;
|
|
893
922
|
};
|
|
@@ -914,23 +943,28 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
914
943
|
operatingSystems: {
|
|
915
944
|
displayValue: string;
|
|
916
945
|
}[];
|
|
917
|
-
|
|
946
|
+
make?: string | undefined;
|
|
947
|
+
model?: string | undefined;
|
|
918
948
|
lastActivityTime?: string | undefined;
|
|
949
|
+
deviceName?: string | undefined;
|
|
919
950
|
serialNumber?: string | undefined;
|
|
920
951
|
macAddresses?: string[] | undefined;
|
|
921
952
|
owner?: {
|
|
922
953
|
email?: string | undefined;
|
|
923
954
|
} | undefined;
|
|
924
|
-
make?: string | undefined;
|
|
925
|
-
model?: string | undefined;
|
|
926
955
|
};
|
|
927
956
|
_raw?: unknown;
|
|
928
957
|
};
|
|
929
958
|
uid?: string | undefined;
|
|
930
959
|
}>, "many">>;
|
|
931
|
-
assets: z.ZodArray<z.ZodObject<{
|
|
932
|
-
|
|
933
|
-
|
|
960
|
+
assets: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
961
|
+
id: z.ZodOptional<z.ZodString>;
|
|
962
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
963
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
964
|
+
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
965
|
+
}, {
|
|
966
|
+
etag: z.ZodString;
|
|
967
|
+
}>, {
|
|
934
968
|
extKeys: z.ZodObject<{
|
|
935
969
|
extId: z.ZodOptional<z.ZodString>;
|
|
936
970
|
sn: z.ZodOptional<z.ZodString>;
|
|
@@ -944,14 +978,18 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
944
978
|
extId?: string | undefined;
|
|
945
979
|
sn?: string | undefined;
|
|
946
980
|
}>;
|
|
981
|
+
displayValue: z.ZodString;
|
|
982
|
+
uid: z.ZodOptional<z.ZodString>;
|
|
947
983
|
assetType: z.ZodOptional<z.ZodNativeEnum<typeof import("./enums").GlobalAssetType>>;
|
|
948
984
|
lastActivityTime: z.ZodOptional<z.ZodString>;
|
|
985
|
+
}>, z.objectUtil.extendShape<{
|
|
949
986
|
id: z.ZodString;
|
|
950
987
|
createdAt: z.ZodString;
|
|
951
988
|
updatedAt: z.ZodString;
|
|
952
989
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
990
|
+
}, {
|
|
953
991
|
etag: z.ZodString;
|
|
954
|
-
}
|
|
992
|
+
}>>, "strip", z.ZodTypeAny, {
|
|
955
993
|
id: string;
|
|
956
994
|
createdAt: string;
|
|
957
995
|
updatedAt: string;
|
|
@@ -982,7 +1020,7 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
982
1020
|
assetType?: import("./enums").GlobalAssetType | undefined;
|
|
983
1021
|
lastActivityTime?: string | undefined;
|
|
984
1022
|
}>, "many">;
|
|
985
|
-
}
|
|
1023
|
+
}>, "strip", z.ZodTypeAny, {
|
|
986
1024
|
assetAccounts: Record<string, {
|
|
987
1025
|
id: string;
|
|
988
1026
|
cid: string;
|
|
@@ -1005,15 +1043,15 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
1005
1043
|
operatingSystems: {
|
|
1006
1044
|
displayValue: string;
|
|
1007
1045
|
}[];
|
|
1008
|
-
|
|
1046
|
+
make?: string | undefined;
|
|
1047
|
+
model?: string | undefined;
|
|
1009
1048
|
lastActivityTime?: string | undefined;
|
|
1049
|
+
deviceName?: string | undefined;
|
|
1010
1050
|
serialNumber?: string | undefined;
|
|
1011
1051
|
macAddresses?: string[] | undefined;
|
|
1012
1052
|
owner?: {
|
|
1013
1053
|
email?: string | undefined;
|
|
1014
1054
|
} | undefined;
|
|
1015
|
-
make?: string | undefined;
|
|
1016
|
-
model?: string | undefined;
|
|
1017
1055
|
};
|
|
1018
1056
|
_raw?: unknown;
|
|
1019
1057
|
};
|
|
@@ -1036,21 +1074,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
1036
1074
|
firstName: string;
|
|
1037
1075
|
lastName: string;
|
|
1038
1076
|
userType: import("./enums").GlobalUserType;
|
|
1039
|
-
title?: string | undefined;
|
|
1040
|
-
department?: string | undefined;
|
|
1041
1077
|
organization?: string | undefined;
|
|
1078
|
+
department?: string | undefined;
|
|
1042
1079
|
pictureUrl?: string | undefined;
|
|
1080
|
+
title?: string | undefined;
|
|
1043
1081
|
startDate?: string | undefined;
|
|
1044
1082
|
manager?: {
|
|
1045
|
-
extId?: string | undefined;
|
|
1046
1083
|
name?: string | undefined;
|
|
1047
1084
|
email?: string | undefined;
|
|
1085
|
+
extId?: string | undefined;
|
|
1048
1086
|
} | undefined;
|
|
1049
1087
|
};
|
|
1050
|
-
extId?: string | undefined;
|
|
1051
1088
|
groups?: Record<string, string> | undefined;
|
|
1052
|
-
|
|
1089
|
+
extId?: string | undefined;
|
|
1053
1090
|
lastActivityTime?: string | undefined;
|
|
1091
|
+
created?: string | undefined;
|
|
1054
1092
|
factors?: z.objectOutputType<{
|
|
1055
1093
|
cid: z.ZodOptional<z.ZodString>;
|
|
1056
1094
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|
|
@@ -1110,15 +1148,15 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
1110
1148
|
operatingSystems: {
|
|
1111
1149
|
displayValue: string;
|
|
1112
1150
|
}[];
|
|
1113
|
-
|
|
1151
|
+
make?: string | undefined;
|
|
1152
|
+
model?: string | undefined;
|
|
1114
1153
|
lastActivityTime?: string | undefined;
|
|
1154
|
+
deviceName?: string | undefined;
|
|
1115
1155
|
serialNumber?: string | undefined;
|
|
1116
1156
|
macAddresses?: string[] | undefined;
|
|
1117
1157
|
owner?: {
|
|
1118
1158
|
email?: string | undefined;
|
|
1119
1159
|
} | undefined;
|
|
1120
|
-
make?: string | undefined;
|
|
1121
|
-
model?: string | undefined;
|
|
1122
1160
|
};
|
|
1123
1161
|
_raw?: unknown;
|
|
1124
1162
|
};
|
|
@@ -1141,21 +1179,21 @@ export declare const _UserCoverageReport: z.ZodObject<{
|
|
|
1141
1179
|
firstName: string;
|
|
1142
1180
|
lastName: string;
|
|
1143
1181
|
userType: import("./enums").GlobalUserType;
|
|
1144
|
-
title?: string | undefined;
|
|
1145
|
-
department?: string | undefined;
|
|
1146
1182
|
organization?: string | undefined;
|
|
1183
|
+
department?: string | undefined;
|
|
1147
1184
|
pictureUrl?: string | undefined;
|
|
1185
|
+
title?: string | undefined;
|
|
1148
1186
|
startDate?: string | undefined;
|
|
1149
1187
|
manager?: {
|
|
1150
|
-
extId?: string | undefined;
|
|
1151
1188
|
name?: string | undefined;
|
|
1152
1189
|
email?: string | undefined;
|
|
1190
|
+
extId?: string | undefined;
|
|
1153
1191
|
} | undefined;
|
|
1154
1192
|
};
|
|
1155
|
-
extId?: string | undefined;
|
|
1156
1193
|
groups?: Record<string, string> | undefined;
|
|
1157
|
-
|
|
1194
|
+
extId?: string | undefined;
|
|
1158
1195
|
lastActivityTime?: string | undefined;
|
|
1196
|
+
created?: string | undefined;
|
|
1159
1197
|
factors?: z.objectInputType<{
|
|
1160
1198
|
cid: z.ZodOptional<z.ZodString>;
|
|
1161
1199
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
|