@ampsec/platform-client 74.4.0 → 74.4.2

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.
@@ -4,15 +4,19 @@ export declare const _AssetKeys: z.ZodObject<{
4
4
  extId: z.ZodOptional<z.ZodString>;
5
5
  /** Serial Number */
6
6
  sn: z.ZodOptional<z.ZodString>;
7
+ /** Serial Number */
8
+ hostname: z.ZodOptional<z.ZodString>;
7
9
  /** MAC Addresses. Note: could be empty */
8
10
  macs: z.ZodArray<z.ZodString, "many">;
9
11
  }, "strip", z.ZodTypeAny, {
10
12
  macs: string[];
11
13
  extId?: string | undefined;
12
14
  sn?: string | undefined;
15
+ hostname?: string | undefined;
13
16
  }, {
14
17
  macs: string[];
15
18
  extId?: string | undefined;
16
19
  sn?: string | undefined;
20
+ hostname?: string | undefined;
17
21
  }>;
18
22
  export type AssetKeys = z.infer<typeof _AssetKeys>;
@@ -7,6 +7,8 @@ exports._AssetKeys = zod_1.z.object({
7
7
  extId: zod_1.z.string().optional(),
8
8
  /** Serial Number */
9
9
  sn: zod_1.z.string().optional(),
10
+ /** Serial Number */
11
+ hostname: zod_1.z.string().optional(),
10
12
  /** MAC Addresses. Note: could be empty */
11
13
  macs: zod_1.z.array(zod_1.z.string()),
12
14
  });
@@ -1 +1 @@
1
- {"version":3,"file":"assetKeys.js","sourceRoot":"","sources":["../../../src/dto/assetKeys.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AAET,QAAA,UAAU,GAAG,OAAC,CAAC,MAAM,CAAC;IACjC,kBAAkB;IAClB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,oBAAoB;IACpB,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,0CAA0C;IAC1C,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;CAC1B,CAAC,CAAC"}
1
+ {"version":3,"file":"assetKeys.js","sourceRoot":"","sources":["../../../src/dto/assetKeys.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AAET,QAAA,UAAU,GAAG,OAAC,CAAC,MAAM,CAAC;IACjC,kBAAkB;IAClB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,oBAAoB;IACpB,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,oBAAoB;IACpB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,0CAA0C;IAC1C,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;CAC1B,CAAC,CAAC"}
@@ -30,9 +30,9 @@ export declare const _SummaryAssetDto: z.ZodObject<{
30
30
  id?: string | undefined;
31
31
  uid?: string | undefined;
32
32
  sn?: string | undefined;
33
+ hostname?: string | undefined;
33
34
  displayValue?: string | undefined;
34
35
  maxSeverity?: string | undefined;
35
- hostname?: string | undefined;
36
36
  lastCheckinTs?: string | undefined;
37
37
  os?: string | undefined;
38
38
  make?: string | undefined;
@@ -41,9 +41,9 @@ export declare const _SummaryAssetDto: z.ZodObject<{
41
41
  id?: string | undefined;
42
42
  uid?: string | undefined;
43
43
  sn?: string | undefined;
44
+ hostname?: string | undefined;
44
45
  displayValue?: string | undefined;
45
46
  maxSeverity?: string | undefined;
46
- hostname?: string | undefined;
47
47
  lastCheckinTs?: string | undefined;
48
48
  os?: string | undefined;
49
49
  make?: string | undefined;
@@ -62,15 +62,18 @@ export declare const _AssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z.obj
62
62
  extKeys: z.ZodObject<{
63
63
  extId: z.ZodOptional<z.ZodString>;
64
64
  sn: z.ZodOptional<z.ZodString>;
65
+ hostname: z.ZodOptional<z.ZodString>;
65
66
  macs: z.ZodArray<z.ZodString, "many">;
66
67
  }, "strip", z.ZodTypeAny, {
67
68
  macs: string[];
68
69
  extId?: string | undefined;
69
70
  sn?: string | undefined;
71
+ hostname?: string | undefined;
70
72
  }, {
71
73
  macs: string[];
72
74
  extId?: string | undefined;
73
75
  sn?: string | undefined;
76
+ hostname?: string | undefined;
74
77
  }>;
75
78
  /** Asset display value */
76
79
  displayValue: z.ZodString;
@@ -87,6 +90,7 @@ export declare const _AssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z.obj
87
90
  macs: string[];
88
91
  extId?: string | undefined;
89
92
  sn?: string | undefined;
93
+ hostname?: string | undefined;
90
94
  };
91
95
  id?: string | undefined;
92
96
  uid?: string | undefined;
@@ -102,6 +106,7 @@ export declare const _AssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z.obj
102
106
  macs: string[];
103
107
  extId?: string | undefined;
104
108
  sn?: string | undefined;
109
+ hostname?: string | undefined;
105
110
  };
106
111
  id?: string | undefined;
107
112
  uid?: string | undefined;
@@ -124,15 +129,18 @@ export declare const _AssetDto: z.ZodObject<z.objectUtil.extendShape<z.objectUti
124
129
  extKeys: z.ZodObject<{
125
130
  extId: z.ZodOptional<z.ZodString>;
126
131
  sn: z.ZodOptional<z.ZodString>;
132
+ hostname: z.ZodOptional<z.ZodString>;
127
133
  macs: z.ZodArray<z.ZodString, "many">;
128
134
  }, "strip", z.ZodTypeAny, {
129
135
  macs: string[];
130
136
  extId?: string | undefined;
131
137
  sn?: string | undefined;
138
+ hostname?: string | undefined;
132
139
  }, {
133
140
  macs: string[];
134
141
  extId?: string | undefined;
135
142
  sn?: string | undefined;
143
+ hostname?: string | undefined;
136
144
  }>;
137
145
  /** Asset display value */
138
146
  displayValue: z.ZodString;
@@ -160,6 +168,7 @@ export declare const _AssetDto: z.ZodObject<z.objectUtil.extendShape<z.objectUti
160
168
  macs: string[];
161
169
  extId?: string | undefined;
162
170
  sn?: string | undefined;
171
+ hostname?: string | undefined;
163
172
  };
164
173
  uid?: string | undefined;
165
174
  assetType?: GlobalAssetType | undefined;
@@ -175,6 +184,7 @@ export declare const _AssetDto: z.ZodObject<z.objectUtil.extendShape<z.objectUti
175
184
  macs: string[];
176
185
  extId?: string | undefined;
177
186
  sn?: string | undefined;
187
+ hostname?: string | undefined;
178
188
  };
179
189
  uid?: string | undefined;
180
190
  assetType?: GlobalAssetType | undefined;
@@ -44,9 +44,9 @@ export declare const _AssetCoverageSummary: z.ZodObject<z.objectUtil.extendShape
44
44
  id?: string | undefined;
45
45
  uid?: string | undefined;
46
46
  sn?: string | undefined;
47
+ hostname?: string | undefined;
47
48
  displayValue?: string | undefined;
48
49
  maxSeverity?: string | undefined;
49
- hostname?: string | undefined;
50
50
  lastCheckinTs?: string | undefined;
51
51
  os?: string | undefined;
52
52
  make?: string | undefined;
@@ -59,9 +59,9 @@ export declare const _AssetCoverageSummary: z.ZodObject<z.objectUtil.extendShape
59
59
  id?: string | undefined;
60
60
  uid?: string | undefined;
61
61
  sn?: string | undefined;
62
+ hostname?: string | undefined;
62
63
  displayValue?: string | undefined;
63
64
  maxSeverity?: string | undefined;
64
- hostname?: string | undefined;
65
65
  lastCheckinTs?: string | undefined;
66
66
  os?: string | undefined;
67
67
  make?: string | undefined;
@@ -78,19 +78,19 @@ export declare const _MfaSummary: z.ZodObject<{
78
78
  vendorName: z.ZodOptional<z.ZodString>;
79
79
  factorType: z.ZodOptional<z.ZodString>;
80
80
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
81
- }, "strip", z.ZodString, z.objectOutputType<{
81
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
82
82
  cid: z.ZodOptional<z.ZodString>;
83
83
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
84
84
  vendorName: z.ZodOptional<z.ZodString>;
85
85
  factorType: z.ZodOptional<z.ZodString>;
86
86
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
87
- }, z.ZodString, "strip">, z.objectInputType<{
87
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
88
88
  cid: z.ZodOptional<z.ZodString>;
89
89
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
90
90
  vendorName: z.ZodOptional<z.ZodString>;
91
91
  factorType: z.ZodOptional<z.ZodString>;
92
92
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
93
- }, z.ZodString, "strip">>, "many">;
93
+ }, z.ZodUnknown, "strip">>, "many">;
94
94
  }, "strip", z.ZodTypeAny, {
95
95
  allowEmptyFactors: boolean;
96
96
  mfaEnabled: boolean;
@@ -101,7 +101,7 @@ export declare const _MfaSummary: z.ZodObject<{
101
101
  vendorName: z.ZodOptional<z.ZodString>;
102
102
  factorType: z.ZodOptional<z.ZodString>;
103
103
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
104
- }, z.ZodString, "strip">[];
104
+ }, z.ZodUnknown, "strip">[];
105
105
  }, {
106
106
  allowEmptyFactors: boolean;
107
107
  mfaEnabled: boolean;
@@ -112,7 +112,7 @@ export declare const _MfaSummary: z.ZodObject<{
112
112
  vendorName: z.ZodOptional<z.ZodString>;
113
113
  factorType: z.ZodOptional<z.ZodString>;
114
114
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
115
- }, z.ZodString, "strip">[];
115
+ }, z.ZodUnknown, "strip">[];
116
116
  }>;
117
117
  export type MfaSummary = z.infer<typeof _MfaSummary>;
118
118
  export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<{
@@ -138,19 +138,19 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
138
138
  vendorName: z.ZodOptional<z.ZodString>;
139
139
  factorType: z.ZodOptional<z.ZodString>;
140
140
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
141
- }, "strip", z.ZodString, z.objectOutputType<{
141
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
142
142
  cid: z.ZodOptional<z.ZodString>;
143
143
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
144
144
  vendorName: z.ZodOptional<z.ZodString>;
145
145
  factorType: z.ZodOptional<z.ZodString>;
146
146
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
147
- }, z.ZodString, "strip">, z.objectInputType<{
147
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
148
148
  cid: z.ZodOptional<z.ZodString>;
149
149
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
150
150
  vendorName: z.ZodOptional<z.ZodString>;
151
151
  factorType: z.ZodOptional<z.ZodString>;
152
152
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
153
- }, z.ZodString, "strip">>, "many">>;
153
+ }, z.ZodUnknown, "strip">>, "many">>;
154
154
  mfaSummary: z.ZodOptional<z.ZodObject<{
155
155
  allowEmptyFactors: z.ZodBoolean;
156
156
  mfaEnabled: z.ZodBoolean;
@@ -161,19 +161,19 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
161
161
  vendorName: z.ZodOptional<z.ZodString>;
162
162
  factorType: z.ZodOptional<z.ZodString>;
163
163
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
164
- }, "strip", z.ZodString, z.objectOutputType<{
164
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
165
165
  cid: z.ZodOptional<z.ZodString>;
166
166
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
167
167
  vendorName: z.ZodOptional<z.ZodString>;
168
168
  factorType: z.ZodOptional<z.ZodString>;
169
169
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
170
- }, z.ZodString, "strip">, z.objectInputType<{
170
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
171
171
  cid: z.ZodOptional<z.ZodString>;
172
172
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
173
173
  vendorName: z.ZodOptional<z.ZodString>;
174
174
  factorType: z.ZodOptional<z.ZodString>;
175
175
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
176
- }, z.ZodString, "strip">>, "many">;
176
+ }, z.ZodUnknown, "strip">>, "many">;
177
177
  }, "strip", z.ZodTypeAny, {
178
178
  allowEmptyFactors: boolean;
179
179
  mfaEnabled: boolean;
@@ -184,7 +184,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
184
184
  vendorName: z.ZodOptional<z.ZodString>;
185
185
  factorType: z.ZodOptional<z.ZodString>;
186
186
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
187
- }, z.ZodString, "strip">[];
187
+ }, z.ZodUnknown, "strip">[];
188
188
  }, {
189
189
  allowEmptyFactors: boolean;
190
190
  mfaEnabled: boolean;
@@ -195,7 +195,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
195
195
  vendorName: z.ZodOptional<z.ZodString>;
196
196
  factorType: z.ZodOptional<z.ZodString>;
197
197
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
198
- }, z.ZodString, "strip">[];
198
+ }, z.ZodUnknown, "strip">[];
199
199
  }>>;
200
200
  mfaReports: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
201
201
  allowEmptyFactors: z.ZodBoolean;
@@ -207,19 +207,19 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
207
207
  vendorName: z.ZodOptional<z.ZodString>;
208
208
  factorType: z.ZodOptional<z.ZodString>;
209
209
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
210
- }, "strip", z.ZodString, z.objectOutputType<{
210
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
211
211
  cid: z.ZodOptional<z.ZodString>;
212
212
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
213
213
  vendorName: z.ZodOptional<z.ZodString>;
214
214
  factorType: z.ZodOptional<z.ZodString>;
215
215
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
216
- }, z.ZodString, "strip">, z.objectInputType<{
216
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
217
217
  cid: z.ZodOptional<z.ZodString>;
218
218
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
219
219
  vendorName: z.ZodOptional<z.ZodString>;
220
220
  factorType: z.ZodOptional<z.ZodString>;
221
221
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
222
- }, z.ZodString, "strip">>, "many">;
222
+ }, z.ZodUnknown, "strip">>, "many">;
223
223
  }, "strip", z.ZodTypeAny, {
224
224
  allowEmptyFactors: boolean;
225
225
  mfaEnabled: boolean;
@@ -230,7 +230,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
230
230
  vendorName: z.ZodOptional<z.ZodString>;
231
231
  factorType: z.ZodOptional<z.ZodString>;
232
232
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
233
- }, z.ZodString, "strip">[];
233
+ }, z.ZodUnknown, "strip">[];
234
234
  }, {
235
235
  allowEmptyFactors: boolean;
236
236
  mfaEnabled: boolean;
@@ -241,7 +241,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
241
241
  vendorName: z.ZodOptional<z.ZodString>;
242
242
  factorType: z.ZodOptional<z.ZodString>;
243
243
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
244
- }, z.ZodString, "strip">[];
244
+ }, z.ZodUnknown, "strip">[];
245
245
  }>>>;
246
246
  notifications: z.ZodOptional<z.ZodNumber>;
247
247
  /** @deprecated */
@@ -284,9 +284,9 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
284
284
  id?: string | undefined;
285
285
  uid?: string | undefined;
286
286
  sn?: string | undefined;
287
+ hostname?: string | undefined;
287
288
  displayValue?: string | undefined;
288
289
  maxSeverity?: string | undefined;
289
- hostname?: string | undefined;
290
290
  lastCheckinTs?: string | undefined;
291
291
  os?: string | undefined;
292
292
  make?: string | undefined;
@@ -299,9 +299,9 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
299
299
  id?: string | undefined;
300
300
  uid?: string | undefined;
301
301
  sn?: string | undefined;
302
+ hostname?: string | undefined;
302
303
  displayValue?: string | undefined;
303
304
  maxSeverity?: string | undefined;
304
- hostname?: string | undefined;
305
305
  lastCheckinTs?: string | undefined;
306
306
  os?: string | undefined;
307
307
  make?: string | undefined;
@@ -321,9 +321,9 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
321
321
  id?: string | undefined;
322
322
  uid?: string | undefined;
323
323
  sn?: string | undefined;
324
+ hostname?: string | undefined;
324
325
  displayValue?: string | undefined;
325
326
  maxSeverity?: string | undefined;
326
- hostname?: string | undefined;
327
327
  lastCheckinTs?: string | undefined;
328
328
  os?: string | undefined;
329
329
  make?: string | undefined;
@@ -347,7 +347,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
347
347
  vendorName: z.ZodOptional<z.ZodString>;
348
348
  factorType: z.ZodOptional<z.ZodString>;
349
349
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
350
- }, z.ZodString, "strip">[] | undefined;
350
+ }, z.ZodUnknown, "strip">[] | undefined;
351
351
  mfaSummary?: {
352
352
  allowEmptyFactors: boolean;
353
353
  mfaEnabled: boolean;
@@ -358,7 +358,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
358
358
  vendorName: z.ZodOptional<z.ZodString>;
359
359
  factorType: z.ZodOptional<z.ZodString>;
360
360
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
361
- }, z.ZodString, "strip">[];
361
+ }, z.ZodUnknown, "strip">[];
362
362
  } | undefined;
363
363
  mfaReports?: Record<string, {
364
364
  allowEmptyFactors: boolean;
@@ -370,7 +370,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
370
370
  vendorName: z.ZodOptional<z.ZodString>;
371
371
  factorType: z.ZodOptional<z.ZodString>;
372
372
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
373
- }, z.ZodString, "strip">[];
373
+ }, z.ZodUnknown, "strip">[];
374
374
  }> | undefined;
375
375
  notifications?: number | undefined;
376
376
  }, {
@@ -387,9 +387,9 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
387
387
  id?: string | undefined;
388
388
  uid?: string | undefined;
389
389
  sn?: string | undefined;
390
+ hostname?: string | undefined;
390
391
  displayValue?: string | undefined;
391
392
  maxSeverity?: string | undefined;
392
- hostname?: string | undefined;
393
393
  lastCheckinTs?: string | undefined;
394
394
  os?: string | undefined;
395
395
  make?: string | undefined;
@@ -413,7 +413,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
413
413
  vendorName: z.ZodOptional<z.ZodString>;
414
414
  factorType: z.ZodOptional<z.ZodString>;
415
415
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
416
- }, z.ZodString, "strip">[] | undefined;
416
+ }, z.ZodUnknown, "strip">[] | undefined;
417
417
  mfaSummary?: {
418
418
  allowEmptyFactors: boolean;
419
419
  mfaEnabled: boolean;
@@ -424,7 +424,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
424
424
  vendorName: z.ZodOptional<z.ZodString>;
425
425
  factorType: z.ZodOptional<z.ZodString>;
426
426
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
427
- }, z.ZodString, "strip">[];
427
+ }, z.ZodUnknown, "strip">[];
428
428
  } | undefined;
429
429
  mfaReports?: Record<string, {
430
430
  allowEmptyFactors: boolean;
@@ -436,7 +436,7 @@ export declare const _UserCoverageSummary: z.ZodObject<z.objectUtil.extendShape<
436
436
  vendorName: z.ZodOptional<z.ZodString>;
437
437
  factorType: z.ZodOptional<z.ZodString>;
438
438
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
439
- }, z.ZodString, "strip">[];
439
+ }, z.ZodUnknown, "strip">[];
440
440
  }> | undefined;
441
441
  notifications?: number | undefined;
442
442
  }>;
@@ -476,19 +476,19 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
476
476
  vendorName: z.ZodOptional<z.ZodString>;
477
477
  factorType: z.ZodOptional<z.ZodString>;
478
478
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
479
- }, "strip", z.ZodString, z.objectOutputType<{
479
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
480
480
  cid: z.ZodOptional<z.ZodString>;
481
481
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
482
482
  vendorName: z.ZodOptional<z.ZodString>;
483
483
  factorType: z.ZodOptional<z.ZodString>;
484
484
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
485
- }, z.ZodString, "strip">, z.objectInputType<{
485
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
486
486
  cid: z.ZodOptional<z.ZodString>;
487
487
  status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ACTIVE">, z.ZodString]>>;
488
488
  vendorName: z.ZodOptional<z.ZodString>;
489
489
  factorType: z.ZodOptional<z.ZodString>;
490
490
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
491
- }, z.ZodString, "strip">>, "many">>;
491
+ }, z.ZodUnknown, "strip">>, "many">>;
492
492
  profile: z.ZodObject<{
493
493
  firstName: z.ZodString;
494
494
  lastName: z.ZodString;
@@ -574,7 +574,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
574
574
  vendorName: z.ZodOptional<z.ZodString>;
575
575
  factorType: z.ZodOptional<z.ZodString>;
576
576
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
577
- }, z.ZodString, "strip">[] | undefined;
577
+ }, z.ZodUnknown, "strip">[] | undefined;
578
578
  }, {
579
579
  profile: {
580
580
  email: string;
@@ -603,7 +603,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
603
603
  vendorName: z.ZodOptional<z.ZodString>;
604
604
  factorType: z.ZodOptional<z.ZodString>;
605
605
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
606
- }, z.ZodString, "strip">[] | undefined;
606
+ }, z.ZodUnknown, "strip">[] | undefined;
607
607
  }>;
608
608
  _raw: z.ZodUnknown;
609
609
  }, "strip", z.ZodTypeAny, {
@@ -635,7 +635,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
635
635
  vendorName: z.ZodOptional<z.ZodString>;
636
636
  factorType: z.ZodOptional<z.ZodString>;
637
637
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
638
- }, z.ZodString, "strip">[] | undefined;
638
+ }, z.ZodUnknown, "strip">[] | undefined;
639
639
  };
640
640
  _raw?: unknown;
641
641
  }, {
@@ -667,7 +667,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
667
667
  vendorName: z.ZodOptional<z.ZodString>;
668
668
  factorType: z.ZodOptional<z.ZodString>;
669
669
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
670
- }, z.ZodString, "strip">[] | undefined;
670
+ }, z.ZodUnknown, "strip">[] | undefined;
671
671
  };
672
672
  _raw?: unknown;
673
673
  }>;
@@ -717,7 +717,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
717
717
  vendorName: z.ZodOptional<z.ZodString>;
718
718
  factorType: z.ZodOptional<z.ZodString>;
719
719
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
720
- }, z.ZodString, "strip">[] | undefined;
720
+ }, z.ZodUnknown, "strip">[] | undefined;
721
721
  };
722
722
  _raw?: unknown;
723
723
  };
@@ -760,7 +760,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
760
760
  vendorName: z.ZodOptional<z.ZodString>;
761
761
  factorType: z.ZodOptional<z.ZodString>;
762
762
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
763
- }, z.ZodString, "strip">[] | undefined;
763
+ }, z.ZodUnknown, "strip">[] | undefined;
764
764
  };
765
765
  _raw?: unknown;
766
766
  };
@@ -776,15 +776,18 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
776
776
  extKeys: z.ZodObject<{
777
777
  extId: z.ZodOptional<z.ZodString>;
778
778
  sn: z.ZodOptional<z.ZodString>;
779
+ hostname: z.ZodOptional<z.ZodString>;
779
780
  macs: z.ZodArray<z.ZodString, "many">;
780
781
  }, "strip", z.ZodTypeAny, {
781
782
  macs: string[];
782
783
  extId?: string | undefined;
783
784
  sn?: string | undefined;
785
+ hostname?: string | undefined;
784
786
  }, {
785
787
  macs: string[];
786
788
  extId?: string | undefined;
787
789
  sn?: string | undefined;
790
+ hostname?: string | undefined;
788
791
  }>;
789
792
  cid: z.ZodString;
790
793
  aid: z.ZodString;
@@ -908,6 +911,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
908
911
  macs: string[];
909
912
  extId?: string | undefined;
910
913
  sn?: string | undefined;
914
+ hostname?: string | undefined;
911
915
  };
912
916
  meta: {
913
917
  _asset: {
@@ -943,6 +947,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
943
947
  macs: string[];
944
948
  extId?: string | undefined;
945
949
  sn?: string | undefined;
950
+ hostname?: string | undefined;
946
951
  };
947
952
  meta: {
948
953
  _asset: {
@@ -977,15 +982,18 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
977
982
  extKeys: z.ZodObject<{
978
983
  extId: z.ZodOptional<z.ZodString>;
979
984
  sn: z.ZodOptional<z.ZodString>;
985
+ hostname: z.ZodOptional<z.ZodString>;
980
986
  macs: z.ZodArray<z.ZodString, "many">;
981
987
  }, "strip", z.ZodTypeAny, {
982
988
  macs: string[];
983
989
  extId?: string | undefined;
984
990
  sn?: string | undefined;
991
+ hostname?: string | undefined;
985
992
  }, {
986
993
  macs: string[];
987
994
  extId?: string | undefined;
988
995
  sn?: string | undefined;
996
+ hostname?: string | undefined;
989
997
  }>;
990
998
  displayValue: z.ZodString;
991
999
  uid: z.ZodOptional<z.ZodString>;
@@ -1009,6 +1017,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1009
1017
  macs: string[];
1010
1018
  extId?: string | undefined;
1011
1019
  sn?: string | undefined;
1020
+ hostname?: string | undefined;
1012
1021
  };
1013
1022
  uid?: string | undefined;
1014
1023
  assetType?: import("./enums").GlobalAssetType | undefined;
@@ -1024,6 +1033,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1024
1033
  macs: string[];
1025
1034
  extId?: string | undefined;
1026
1035
  sn?: string | undefined;
1036
+ hostname?: string | undefined;
1027
1037
  };
1028
1038
  uid?: string | undefined;
1029
1039
  assetType?: import("./enums").GlobalAssetType | undefined;
@@ -1043,6 +1053,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1043
1053
  macs: string[];
1044
1054
  extId?: string | undefined;
1045
1055
  sn?: string | undefined;
1056
+ hostname?: string | undefined;
1046
1057
  };
1047
1058
  meta: {
1048
1059
  _asset: {
@@ -1105,7 +1116,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1105
1116
  vendorName: z.ZodOptional<z.ZodString>;
1106
1117
  factorType: z.ZodOptional<z.ZodString>;
1107
1118
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
1108
- }, z.ZodString, "strip">[] | undefined;
1119
+ }, z.ZodUnknown, "strip">[] | undefined;
1109
1120
  };
1110
1121
  _raw?: unknown;
1111
1122
  };
@@ -1121,6 +1132,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1121
1132
  macs: string[];
1122
1133
  extId?: string | undefined;
1123
1134
  sn?: string | undefined;
1135
+ hostname?: string | undefined;
1124
1136
  };
1125
1137
  uid?: string | undefined;
1126
1138
  assetType?: import("./enums").GlobalAssetType | undefined;
@@ -1149,6 +1161,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1149
1161
  macs: string[];
1150
1162
  extId?: string | undefined;
1151
1163
  sn?: string | undefined;
1164
+ hostname?: string | undefined;
1152
1165
  };
1153
1166
  meta: {
1154
1167
  _asset: {
@@ -1211,7 +1224,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1211
1224
  vendorName: z.ZodOptional<z.ZodString>;
1212
1225
  factorType: z.ZodOptional<z.ZodString>;
1213
1226
  secure: z.ZodOptional<z.ZodEnum<["SECURE", "INSECURE", "UNKNOWN", "MISSING"]>>;
1214
- }, z.ZodString, "strip">[] | undefined;
1227
+ }, z.ZodUnknown, "strip">[] | undefined;
1215
1228
  };
1216
1229
  _raw?: unknown;
1217
1230
  };
@@ -1227,6 +1240,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
1227
1240
  macs: string[];
1228
1241
  extId?: string | undefined;
1229
1242
  sn?: string | undefined;
1243
+ hostname?: string | undefined;
1230
1244
  };
1231
1245
  uid?: string | undefined;
1232
1246
  assetType?: import("./enums").GlobalAssetType | undefined;