@ampsec/platform-client 70.0.0 → 70.1.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
|
@@ -29,6 +29,8 @@ export declare const _StringMatcher: z.ZodObject<{
|
|
|
29
29
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>;
|
|
30
30
|
}, "strip", z.ZodTypeAny, {
|
|
31
31
|
$eq?: string | null | undefined;
|
|
32
|
+
$in?: (string | null)[] | undefined;
|
|
33
|
+
$nin?: (string | null)[] | undefined;
|
|
32
34
|
$neq?: string | null | undefined;
|
|
33
35
|
$lt?: string | undefined;
|
|
34
36
|
$gt?: string | undefined;
|
|
@@ -36,10 +38,10 @@ export declare const _StringMatcher: z.ZodObject<{
|
|
|
36
38
|
$gte?: string | undefined;
|
|
37
39
|
$like?: string | undefined;
|
|
38
40
|
$nlike?: string | undefined;
|
|
39
|
-
$in?: (string | null)[] | undefined;
|
|
40
|
-
$nin?: (string | null)[] | undefined;
|
|
41
41
|
}, {
|
|
42
42
|
$eq?: string | null | undefined;
|
|
43
|
+
$in?: (string | null)[] | undefined;
|
|
44
|
+
$nin?: (string | null)[] | undefined;
|
|
43
45
|
$neq?: string | null | undefined;
|
|
44
46
|
$lt?: string | undefined;
|
|
45
47
|
$gt?: string | undefined;
|
|
@@ -47,8 +49,6 @@ export declare const _StringMatcher: z.ZodObject<{
|
|
|
47
49
|
$gte?: string | undefined;
|
|
48
50
|
$like?: string | undefined;
|
|
49
51
|
$nlike?: string | undefined;
|
|
50
|
-
$in?: (string | null)[] | undefined;
|
|
51
|
-
$nin?: (string | null)[] | undefined;
|
|
52
52
|
}>;
|
|
53
53
|
export type StringMatcher = z.infer<typeof _StringMatcher>;
|
|
54
54
|
export declare const _NumberMatcher: z.ZodObject<{
|
|
@@ -62,22 +62,22 @@ export declare const _NumberMatcher: z.ZodObject<{
|
|
|
62
62
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodNumber>, "many">>;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
64
|
$eq?: number | null | undefined;
|
|
65
|
+
$in?: (number | null)[] | undefined;
|
|
66
|
+
$nin?: (number | null)[] | undefined;
|
|
65
67
|
$neq?: number | null | undefined;
|
|
66
68
|
$lt?: number | undefined;
|
|
67
69
|
$gt?: number | undefined;
|
|
68
70
|
$lte?: number | undefined;
|
|
69
71
|
$gte?: number | undefined;
|
|
70
|
-
$in?: (number | null)[] | undefined;
|
|
71
|
-
$nin?: (number | null)[] | undefined;
|
|
72
72
|
}, {
|
|
73
73
|
$eq?: number | null | undefined;
|
|
74
|
+
$in?: (number | null)[] | undefined;
|
|
75
|
+
$nin?: (number | null)[] | undefined;
|
|
74
76
|
$neq?: number | null | undefined;
|
|
75
77
|
$lt?: number | undefined;
|
|
76
78
|
$gt?: number | undefined;
|
|
77
79
|
$lte?: number | undefined;
|
|
78
80
|
$gte?: number | undefined;
|
|
79
|
-
$in?: (number | null)[] | undefined;
|
|
80
|
-
$nin?: (number | null)[] | undefined;
|
|
81
81
|
}>;
|
|
82
82
|
export type NumberMatcher = z.infer<typeof _NumberMatcher>;
|
|
83
83
|
export declare const _DateMatcher: z.ZodObject<{
|
|
@@ -125,24 +125,28 @@ export declare const _SortFilter: z.ZodObject<{
|
|
|
125
125
|
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
126
126
|
}>;
|
|
127
127
|
export type SortFilter = z.infer<typeof _SortFilter>;
|
|
128
|
-
export declare const _BaseFilter: z.ZodObject<{
|
|
128
|
+
export declare const _BaseFilter: z.ZodObject<z.objectUtil.extendShape<{
|
|
129
129
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
130
130
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
131
|
+
}, {
|
|
131
132
|
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
132
|
-
}
|
|
133
|
+
}>, "strip", z.ZodTypeAny, {
|
|
134
|
+
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
133
135
|
limit?: number | undefined;
|
|
134
136
|
offset?: number | undefined;
|
|
135
|
-
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
136
137
|
}, {
|
|
138
|
+
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
137
139
|
limit?: number | undefined;
|
|
138
140
|
offset?: number | undefined;
|
|
139
|
-
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
140
141
|
}>;
|
|
141
142
|
export type BaseFilter = z.infer<typeof _BaseFilter>;
|
|
142
|
-
export declare const _FilterCriteria: z.ZodObject<{
|
|
143
|
-
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
143
|
+
export declare const _FilterCriteria: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
144
144
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
145
145
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
146
|
+
}, {
|
|
147
|
+
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
148
|
+
}>, {
|
|
149
|
+
/** Entity ID */
|
|
146
150
|
id: z.ZodOptional<z.ZodObject<{
|
|
147
151
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
148
152
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -159,6 +163,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
159
163
|
$in?: (string | null)[] | undefined;
|
|
160
164
|
$nin?: (string | null)[] | undefined;
|
|
161
165
|
}>>;
|
|
166
|
+
/** Tenant ID */
|
|
162
167
|
tid: z.ZodOptional<z.ZodObject<{
|
|
163
168
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
164
169
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -175,6 +180,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
175
180
|
$in?: (string | null)[] | undefined;
|
|
176
181
|
$nin?: (string | null)[] | undefined;
|
|
177
182
|
}>>;
|
|
183
|
+
/** Connector ID */
|
|
178
184
|
cid: z.ZodOptional<z.ZodObject<{
|
|
179
185
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
180
186
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -191,8 +197,11 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
191
197
|
$in?: (string | null)[] | undefined;
|
|
192
198
|
$nin?: (string | null)[] | undefined;
|
|
193
199
|
}>>;
|
|
200
|
+
/** Organization name. Defaults to `*` which matches all organizations. */
|
|
194
201
|
organization: z.ZodOptional<z.ZodString>;
|
|
202
|
+
/** Department name. Defaults to `*` which matches all departments. */
|
|
195
203
|
department: z.ZodOptional<z.ZodString>;
|
|
204
|
+
/** User ID */
|
|
196
205
|
uid: z.ZodOptional<z.ZodObject<{
|
|
197
206
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
198
207
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -209,6 +218,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
209
218
|
$in?: (string | null)[] | undefined;
|
|
210
219
|
$nin?: (string | null)[] | undefined;
|
|
211
220
|
}>>;
|
|
221
|
+
/** Asset ID */
|
|
212
222
|
aid: z.ZodOptional<z.ZodObject<{
|
|
213
223
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
214
224
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -225,6 +235,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
225
235
|
$in?: (string | null)[] | undefined;
|
|
226
236
|
$nin?: (string | null)[] | undefined;
|
|
227
237
|
}>>;
|
|
238
|
+
/** Created at Date */
|
|
228
239
|
createdAt: z.ZodOptional<z.ZodObject<{
|
|
229
240
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
230
241
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -247,6 +258,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
247
258
|
$lte?: string | undefined;
|
|
248
259
|
$gte?: string | undefined;
|
|
249
260
|
}>>;
|
|
261
|
+
/** Updated at Date */
|
|
250
262
|
updatedAt: z.ZodOptional<z.ZodObject<{
|
|
251
263
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
252
264
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -269,6 +281,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
269
281
|
$lte?: string | undefined;
|
|
270
282
|
$gte?: string | undefined;
|
|
271
283
|
}>>;
|
|
284
|
+
/** Deleted at Date. `null` if not deleted */
|
|
272
285
|
deletedAt: z.ZodOptional<z.ZodObject<{
|
|
273
286
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
274
287
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -291,7 +304,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
291
304
|
$lte?: string | undefined;
|
|
292
305
|
$gte?: string | undefined;
|
|
293
306
|
}>>;
|
|
294
|
-
}
|
|
307
|
+
}>, "strip", z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodObject<{
|
|
295
308
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
296
309
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
297
310
|
$lt: z.ZodOptional<z.ZodString>;
|
|
@@ -304,6 +317,8 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
304
317
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>;
|
|
305
318
|
}, "strip", z.ZodTypeAny, {
|
|
306
319
|
$eq?: string | null | undefined;
|
|
320
|
+
$in?: (string | null)[] | undefined;
|
|
321
|
+
$nin?: (string | null)[] | undefined;
|
|
307
322
|
$neq?: string | null | undefined;
|
|
308
323
|
$lt?: string | undefined;
|
|
309
324
|
$gt?: string | undefined;
|
|
@@ -311,10 +326,10 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
311
326
|
$gte?: string | undefined;
|
|
312
327
|
$like?: string | undefined;
|
|
313
328
|
$nlike?: string | undefined;
|
|
314
|
-
$in?: (string | null)[] | undefined;
|
|
315
|
-
$nin?: (string | null)[] | undefined;
|
|
316
329
|
}, {
|
|
317
330
|
$eq?: string | null | undefined;
|
|
331
|
+
$in?: (string | null)[] | undefined;
|
|
332
|
+
$nin?: (string | null)[] | undefined;
|
|
318
333
|
$neq?: string | null | undefined;
|
|
319
334
|
$lt?: string | undefined;
|
|
320
335
|
$gt?: string | undefined;
|
|
@@ -322,8 +337,6 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
322
337
|
$gte?: string | undefined;
|
|
323
338
|
$like?: string | undefined;
|
|
324
339
|
$nlike?: string | undefined;
|
|
325
|
-
$in?: (string | null)[] | undefined;
|
|
326
|
-
$nin?: (string | null)[] | undefined;
|
|
327
340
|
}>, z.ZodNumber, z.ZodObject<{
|
|
328
341
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
329
342
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -335,32 +348,35 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
335
348
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodNumber>, "many">>;
|
|
336
349
|
}, "strip", z.ZodTypeAny, {
|
|
337
350
|
$eq?: number | null | undefined;
|
|
351
|
+
$in?: (number | null)[] | undefined;
|
|
352
|
+
$nin?: (number | null)[] | undefined;
|
|
338
353
|
$neq?: number | null | undefined;
|
|
339
354
|
$lt?: number | undefined;
|
|
340
355
|
$gt?: number | undefined;
|
|
341
356
|
$lte?: number | undefined;
|
|
342
357
|
$gte?: number | undefined;
|
|
343
|
-
$in?: (number | null)[] | undefined;
|
|
344
|
-
$nin?: (number | null)[] | undefined;
|
|
345
358
|
}, {
|
|
346
359
|
$eq?: number | null | undefined;
|
|
360
|
+
$in?: (number | null)[] | undefined;
|
|
361
|
+
$nin?: (number | null)[] | undefined;
|
|
347
362
|
$neq?: number | null | undefined;
|
|
348
363
|
$lt?: number | undefined;
|
|
349
364
|
$gt?: number | undefined;
|
|
350
365
|
$lte?: number | undefined;
|
|
351
366
|
$gte?: number | undefined;
|
|
352
|
-
$in?: (number | null)[] | undefined;
|
|
353
|
-
$nin?: (number | null)[] | undefined;
|
|
354
367
|
}>, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodObject<{
|
|
355
368
|
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
356
369
|
}, "strip", z.ZodTypeAny, {
|
|
357
370
|
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
358
371
|
}, {
|
|
359
372
|
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
360
|
-
}>]>>, z.objectOutputType<{
|
|
361
|
-
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
373
|
+
}>]>>, z.objectOutputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
362
374
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
363
375
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
}, {
|
|
377
|
+
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
378
|
+
}>, {
|
|
379
|
+
/** Entity ID */
|
|
364
380
|
id: z.ZodOptional<z.ZodObject<{
|
|
365
381
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
366
382
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -377,6 +393,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
377
393
|
$in?: (string | null)[] | undefined;
|
|
378
394
|
$nin?: (string | null)[] | undefined;
|
|
379
395
|
}>>;
|
|
396
|
+
/** Tenant ID */
|
|
380
397
|
tid: z.ZodOptional<z.ZodObject<{
|
|
381
398
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
382
399
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -393,6 +410,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
393
410
|
$in?: (string | null)[] | undefined;
|
|
394
411
|
$nin?: (string | null)[] | undefined;
|
|
395
412
|
}>>;
|
|
413
|
+
/** Connector ID */
|
|
396
414
|
cid: z.ZodOptional<z.ZodObject<{
|
|
397
415
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
398
416
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -409,8 +427,11 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
409
427
|
$in?: (string | null)[] | undefined;
|
|
410
428
|
$nin?: (string | null)[] | undefined;
|
|
411
429
|
}>>;
|
|
430
|
+
/** Organization name. Defaults to `*` which matches all organizations. */
|
|
412
431
|
organization: z.ZodOptional<z.ZodString>;
|
|
432
|
+
/** Department name. Defaults to `*` which matches all departments. */
|
|
413
433
|
department: z.ZodOptional<z.ZodString>;
|
|
434
|
+
/** User ID */
|
|
414
435
|
uid: z.ZodOptional<z.ZodObject<{
|
|
415
436
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
416
437
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -427,6 +448,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
427
448
|
$in?: (string | null)[] | undefined;
|
|
428
449
|
$nin?: (string | null)[] | undefined;
|
|
429
450
|
}>>;
|
|
451
|
+
/** Asset ID */
|
|
430
452
|
aid: z.ZodOptional<z.ZodObject<{
|
|
431
453
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
432
454
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -443,6 +465,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
443
465
|
$in?: (string | null)[] | undefined;
|
|
444
466
|
$nin?: (string | null)[] | undefined;
|
|
445
467
|
}>>;
|
|
468
|
+
/** Created at Date */
|
|
446
469
|
createdAt: z.ZodOptional<z.ZodObject<{
|
|
447
470
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
448
471
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -465,6 +488,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
465
488
|
$lte?: string | undefined;
|
|
466
489
|
$gte?: string | undefined;
|
|
467
490
|
}>>;
|
|
491
|
+
/** Updated at Date */
|
|
468
492
|
updatedAt: z.ZodOptional<z.ZodObject<{
|
|
469
493
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
470
494
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -487,6 +511,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
487
511
|
$lte?: string | undefined;
|
|
488
512
|
$gte?: string | undefined;
|
|
489
513
|
}>>;
|
|
514
|
+
/** Deleted at Date. `null` if not deleted */
|
|
490
515
|
deletedAt: z.ZodOptional<z.ZodObject<{
|
|
491
516
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
492
517
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -509,7 +534,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
509
534
|
$lte?: string | undefined;
|
|
510
535
|
$gte?: string | undefined;
|
|
511
536
|
}>>;
|
|
512
|
-
}
|
|
537
|
+
}>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodObject<{
|
|
513
538
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
514
539
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
515
540
|
$lt: z.ZodOptional<z.ZodString>;
|
|
@@ -522,6 +547,8 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
522
547
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>;
|
|
523
548
|
}, "strip", z.ZodTypeAny, {
|
|
524
549
|
$eq?: string | null | undefined;
|
|
550
|
+
$in?: (string | null)[] | undefined;
|
|
551
|
+
$nin?: (string | null)[] | undefined;
|
|
525
552
|
$neq?: string | null | undefined;
|
|
526
553
|
$lt?: string | undefined;
|
|
527
554
|
$gt?: string | undefined;
|
|
@@ -529,10 +556,10 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
529
556
|
$gte?: string | undefined;
|
|
530
557
|
$like?: string | undefined;
|
|
531
558
|
$nlike?: string | undefined;
|
|
532
|
-
$in?: (string | null)[] | undefined;
|
|
533
|
-
$nin?: (string | null)[] | undefined;
|
|
534
559
|
}, {
|
|
535
560
|
$eq?: string | null | undefined;
|
|
561
|
+
$in?: (string | null)[] | undefined;
|
|
562
|
+
$nin?: (string | null)[] | undefined;
|
|
536
563
|
$neq?: string | null | undefined;
|
|
537
564
|
$lt?: string | undefined;
|
|
538
565
|
$gt?: string | undefined;
|
|
@@ -540,8 +567,6 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
540
567
|
$gte?: string | undefined;
|
|
541
568
|
$like?: string | undefined;
|
|
542
569
|
$nlike?: string | undefined;
|
|
543
|
-
$in?: (string | null)[] | undefined;
|
|
544
|
-
$nin?: (string | null)[] | undefined;
|
|
545
570
|
}>, z.ZodNumber, z.ZodObject<{
|
|
546
571
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
547
572
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -553,32 +578,35 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
553
578
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodNumber>, "many">>;
|
|
554
579
|
}, "strip", z.ZodTypeAny, {
|
|
555
580
|
$eq?: number | null | undefined;
|
|
581
|
+
$in?: (number | null)[] | undefined;
|
|
582
|
+
$nin?: (number | null)[] | undefined;
|
|
556
583
|
$neq?: number | null | undefined;
|
|
557
584
|
$lt?: number | undefined;
|
|
558
585
|
$gt?: number | undefined;
|
|
559
586
|
$lte?: number | undefined;
|
|
560
587
|
$gte?: number | undefined;
|
|
561
|
-
$in?: (number | null)[] | undefined;
|
|
562
|
-
$nin?: (number | null)[] | undefined;
|
|
563
588
|
}, {
|
|
564
589
|
$eq?: number | null | undefined;
|
|
590
|
+
$in?: (number | null)[] | undefined;
|
|
591
|
+
$nin?: (number | null)[] | undefined;
|
|
565
592
|
$neq?: number | null | undefined;
|
|
566
593
|
$lt?: number | undefined;
|
|
567
594
|
$gt?: number | undefined;
|
|
568
595
|
$lte?: number | undefined;
|
|
569
596
|
$gte?: number | undefined;
|
|
570
|
-
$in?: (number | null)[] | undefined;
|
|
571
|
-
$nin?: (number | null)[] | undefined;
|
|
572
597
|
}>, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodObject<{
|
|
573
598
|
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
574
599
|
}, "strip", z.ZodTypeAny, {
|
|
575
600
|
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
576
601
|
}, {
|
|
577
602
|
sort?: Record<string, "ASC" | "DESC"> | undefined;
|
|
578
|
-
}>]>>, "strip">, z.objectInputType<{
|
|
579
|
-
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
603
|
+
}>]>>, "strip">, z.objectInputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
580
604
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
581
605
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
606
|
+
}, {
|
|
607
|
+
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
608
|
+
}>, {
|
|
609
|
+
/** Entity ID */
|
|
582
610
|
id: z.ZodOptional<z.ZodObject<{
|
|
583
611
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
584
612
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -595,6 +623,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
595
623
|
$in?: (string | null)[] | undefined;
|
|
596
624
|
$nin?: (string | null)[] | undefined;
|
|
597
625
|
}>>;
|
|
626
|
+
/** Tenant ID */
|
|
598
627
|
tid: z.ZodOptional<z.ZodObject<{
|
|
599
628
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
600
629
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -611,6 +640,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
611
640
|
$in?: (string | null)[] | undefined;
|
|
612
641
|
$nin?: (string | null)[] | undefined;
|
|
613
642
|
}>>;
|
|
643
|
+
/** Connector ID */
|
|
614
644
|
cid: z.ZodOptional<z.ZodObject<{
|
|
615
645
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
616
646
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -627,8 +657,11 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
627
657
|
$in?: (string | null)[] | undefined;
|
|
628
658
|
$nin?: (string | null)[] | undefined;
|
|
629
659
|
}>>;
|
|
660
|
+
/** Organization name. Defaults to `*` which matches all organizations. */
|
|
630
661
|
organization: z.ZodOptional<z.ZodString>;
|
|
662
|
+
/** Department name. Defaults to `*` which matches all departments. */
|
|
631
663
|
department: z.ZodOptional<z.ZodString>;
|
|
664
|
+
/** User ID */
|
|
632
665
|
uid: z.ZodOptional<z.ZodObject<{
|
|
633
666
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
634
667
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -645,6 +678,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
645
678
|
$in?: (string | null)[] | undefined;
|
|
646
679
|
$nin?: (string | null)[] | undefined;
|
|
647
680
|
}>>;
|
|
681
|
+
/** Asset ID */
|
|
648
682
|
aid: z.ZodOptional<z.ZodObject<{
|
|
649
683
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
650
684
|
$ne: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -661,6 +695,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
661
695
|
$in?: (string | null)[] | undefined;
|
|
662
696
|
$nin?: (string | null)[] | undefined;
|
|
663
697
|
}>>;
|
|
698
|
+
/** Created at Date */
|
|
664
699
|
createdAt: z.ZodOptional<z.ZodObject<{
|
|
665
700
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
666
701
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -683,6 +718,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
683
718
|
$lte?: string | undefined;
|
|
684
719
|
$gte?: string | undefined;
|
|
685
720
|
}>>;
|
|
721
|
+
/** Updated at Date */
|
|
686
722
|
updatedAt: z.ZodOptional<z.ZodObject<{
|
|
687
723
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
688
724
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -705,6 +741,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
705
741
|
$lte?: string | undefined;
|
|
706
742
|
$gte?: string | undefined;
|
|
707
743
|
}>>;
|
|
744
|
+
/** Deleted at Date. `null` if not deleted */
|
|
708
745
|
deletedAt: z.ZodOptional<z.ZodObject<{
|
|
709
746
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
710
747
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -727,7 +764,7 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
727
764
|
$lte?: string | undefined;
|
|
728
765
|
$gte?: string | undefined;
|
|
729
766
|
}>>;
|
|
730
|
-
}
|
|
767
|
+
}>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodObject<{
|
|
731
768
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
732
769
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
733
770
|
$lt: z.ZodOptional<z.ZodString>;
|
|
@@ -740,6 +777,8 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
740
777
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>;
|
|
741
778
|
}, "strip", z.ZodTypeAny, {
|
|
742
779
|
$eq?: string | null | undefined;
|
|
780
|
+
$in?: (string | null)[] | undefined;
|
|
781
|
+
$nin?: (string | null)[] | undefined;
|
|
743
782
|
$neq?: string | null | undefined;
|
|
744
783
|
$lt?: string | undefined;
|
|
745
784
|
$gt?: string | undefined;
|
|
@@ -747,10 +786,10 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
747
786
|
$gte?: string | undefined;
|
|
748
787
|
$like?: string | undefined;
|
|
749
788
|
$nlike?: string | undefined;
|
|
750
|
-
$in?: (string | null)[] | undefined;
|
|
751
|
-
$nin?: (string | null)[] | undefined;
|
|
752
789
|
}, {
|
|
753
790
|
$eq?: string | null | undefined;
|
|
791
|
+
$in?: (string | null)[] | undefined;
|
|
792
|
+
$nin?: (string | null)[] | undefined;
|
|
754
793
|
$neq?: string | null | undefined;
|
|
755
794
|
$lt?: string | undefined;
|
|
756
795
|
$gt?: string | undefined;
|
|
@@ -758,8 +797,6 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
758
797
|
$gte?: string | undefined;
|
|
759
798
|
$like?: string | undefined;
|
|
760
799
|
$nlike?: string | undefined;
|
|
761
|
-
$in?: (string | null)[] | undefined;
|
|
762
|
-
$nin?: (string | null)[] | undefined;
|
|
763
800
|
}>, z.ZodNumber, z.ZodObject<{
|
|
764
801
|
$eq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
765
802
|
$neq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -771,22 +808,22 @@ export declare const _FilterCriteria: z.ZodObject<{
|
|
|
771
808
|
$nin: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodNumber>, "many">>;
|
|
772
809
|
}, "strip", z.ZodTypeAny, {
|
|
773
810
|
$eq?: number | null | undefined;
|
|
811
|
+
$in?: (number | null)[] | undefined;
|
|
812
|
+
$nin?: (number | null)[] | undefined;
|
|
774
813
|
$neq?: number | null | undefined;
|
|
775
814
|
$lt?: number | undefined;
|
|
776
815
|
$gt?: number | undefined;
|
|
777
816
|
$lte?: number | undefined;
|
|
778
817
|
$gte?: number | undefined;
|
|
779
|
-
$in?: (number | null)[] | undefined;
|
|
780
|
-
$nin?: (number | null)[] | undefined;
|
|
781
818
|
}, {
|
|
782
819
|
$eq?: number | null | undefined;
|
|
820
|
+
$in?: (number | null)[] | undefined;
|
|
821
|
+
$nin?: (number | null)[] | undefined;
|
|
783
822
|
$neq?: number | null | undefined;
|
|
784
823
|
$lt?: number | undefined;
|
|
785
824
|
$gt?: number | undefined;
|
|
786
825
|
$lte?: number | undefined;
|
|
787
826
|
$gte?: number | undefined;
|
|
788
|
-
$in?: (number | null)[] | undefined;
|
|
789
|
-
$nin?: (number | null)[] | undefined;
|
|
790
827
|
}>, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodObject<{
|
|
791
828
|
sort: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["ASC", "DESC"]>>>;
|
|
792
829
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4,11 +4,12 @@ export declare const _ActionExecutionInput: z.ZodUnknown;
|
|
|
4
4
|
export type ActionExecutionInput = z.infer<typeof _ActionExecutionInput>;
|
|
5
5
|
export declare const _ActionExecutionOutput: z.ZodUnknown;
|
|
6
6
|
export type ActionExecutionOutput = z.infer<typeof _ActionExecutionOutput>;
|
|
7
|
-
export declare const _ActionExecutionDto: z.ZodObject<{
|
|
7
|
+
export declare const _ActionExecutionDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
8
8
|
id: z.ZodString;
|
|
9
9
|
createdAt: z.ZodString;
|
|
10
10
|
updatedAt: z.ZodString;
|
|
11
11
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
12
|
+
}, {
|
|
12
13
|
tid: z.ZodString;
|
|
13
14
|
actionSpecId: z.ZodString;
|
|
14
15
|
flowStateId: z.ZodNullable<z.ZodString>;
|
|
@@ -17,7 +18,7 @@ export declare const _ActionExecutionDto: z.ZodObject<{
|
|
|
17
18
|
output: z.ZodUnknown;
|
|
18
19
|
executionTime: z.ZodNullable<z.ZodString>;
|
|
19
20
|
executionDuration: z.ZodNullable<z.ZodNumber>;
|
|
20
|
-
}
|
|
21
|
+
}>, "strip", z.ZodTypeAny, {
|
|
21
22
|
status: ActionExecutionStatus;
|
|
22
23
|
id: string;
|
|
23
24
|
tid: string;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { AgentStatus } from './enums/agent.status';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
export declare const _AgentDto: z.ZodObject<{
|
|
3
|
+
export declare const _AgentDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
4
4
|
id: z.ZodString;
|
|
5
5
|
createdAt: z.ZodString;
|
|
6
6
|
updatedAt: z.ZodString;
|
|
7
7
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
8
|
+
}, {
|
|
8
9
|
firstName: z.ZodNullable<z.ZodString>;
|
|
9
10
|
lastName: z.ZodNullable<z.ZodString>;
|
|
10
11
|
status: z.ZodNativeEnum<typeof AgentStatus>;
|
|
@@ -18,7 +19,7 @@ export declare const _AgentDto: z.ZodObject<{
|
|
|
18
19
|
email: z.ZodString;
|
|
19
20
|
pictureUrl: z.ZodNullable<z.ZodString>;
|
|
20
21
|
lastLoggedIn: z.ZodNullable<z.ZodString>;
|
|
21
|
-
}
|
|
22
|
+
}>, "strip", z.ZodTypeAny, {
|
|
22
23
|
email: string;
|
|
23
24
|
status: AgentStatus;
|
|
24
25
|
id: string;
|
|
@@ -29,8 +29,8 @@ export declare const _SummaryAssetDto: z.ZodObject<{
|
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
id?: string | undefined;
|
|
31
31
|
uid?: string | undefined;
|
|
32
|
-
displayValue?: string | undefined;
|
|
33
32
|
sn?: string | undefined;
|
|
33
|
+
displayValue?: string | undefined;
|
|
34
34
|
maxSeverity?: string | undefined;
|
|
35
35
|
hostname?: string | undefined;
|
|
36
36
|
lastCheckinTs?: string | undefined;
|
|
@@ -40,8 +40,8 @@ export declare const _SummaryAssetDto: z.ZodObject<{
|
|
|
40
40
|
}, {
|
|
41
41
|
id?: string | undefined;
|
|
42
42
|
uid?: string | undefined;
|
|
43
|
-
displayValue?: string | undefined;
|
|
44
43
|
sn?: string | undefined;
|
|
44
|
+
displayValue?: string | undefined;
|
|
45
45
|
maxSeverity?: string | undefined;
|
|
46
46
|
hostname?: string | undefined;
|
|
47
47
|
lastCheckinTs?: string | undefined;
|
|
@@ -50,12 +50,15 @@ export declare const _SummaryAssetDto: z.ZodObject<{
|
|
|
50
50
|
model?: string | undefined;
|
|
51
51
|
}>;
|
|
52
52
|
export type SummaryAssetDto = z.infer<typeof _SummaryAssetDto>;
|
|
53
|
-
export declare const _AssetUpsertDto: z.ZodObject<{
|
|
53
|
+
export declare const _AssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
54
54
|
id: z.ZodOptional<z.ZodString>;
|
|
55
55
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
56
56
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
57
57
|
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
58
|
+
}, {
|
|
58
59
|
etag: z.ZodString;
|
|
60
|
+
}>, {
|
|
61
|
+
/** External Keys */
|
|
59
62
|
extKeys: z.ZodObject<{
|
|
60
63
|
extId: z.ZodOptional<z.ZodString>;
|
|
61
64
|
sn: z.ZodOptional<z.ZodString>;
|
|
@@ -69,11 +72,15 @@ export declare const _AssetUpsertDto: z.ZodObject<{
|
|
|
69
72
|
extId?: string | undefined;
|
|
70
73
|
sn?: string | undefined;
|
|
71
74
|
}>;
|
|
75
|
+
/** Asset display value */
|
|
72
76
|
displayValue: z.ZodString;
|
|
77
|
+
/** User Id of the asset owner */
|
|
73
78
|
uid: z.ZodOptional<z.ZodString>;
|
|
79
|
+
/** Asset type */
|
|
74
80
|
assetType: z.ZodOptional<z.ZodNativeEnum<typeof GlobalAssetType>>;
|
|
81
|
+
/** Last activity time for the asset */
|
|
75
82
|
lastActivityTime: z.ZodOptional<z.ZodString>;
|
|
76
|
-
}
|
|
83
|
+
}>, "strip", z.ZodTypeAny, {
|
|
77
84
|
etag: string;
|
|
78
85
|
displayValue: string;
|
|
79
86
|
extKeys: {
|
|
@@ -82,10 +89,10 @@ export declare const _AssetUpsertDto: z.ZodObject<{
|
|
|
82
89
|
sn?: string | undefined;
|
|
83
90
|
};
|
|
84
91
|
id?: string | undefined;
|
|
92
|
+
uid?: string | undefined;
|
|
85
93
|
createdAt?: string | undefined;
|
|
86
94
|
updatedAt?: string | undefined;
|
|
87
95
|
deletedAt?: string | null | undefined;
|
|
88
|
-
uid?: string | undefined;
|
|
89
96
|
assetType?: GlobalAssetType | undefined;
|
|
90
97
|
lastActivityTime?: string | undefined;
|
|
91
98
|
}, {
|
|
@@ -97,17 +104,23 @@ export declare const _AssetUpsertDto: z.ZodObject<{
|
|
|
97
104
|
sn?: string | undefined;
|
|
98
105
|
};
|
|
99
106
|
id?: string | undefined;
|
|
107
|
+
uid?: string | undefined;
|
|
100
108
|
createdAt?: string | undefined;
|
|
101
109
|
updatedAt?: string | undefined;
|
|
102
110
|
deletedAt?: string | null | undefined;
|
|
103
|
-
uid?: string | undefined;
|
|
104
111
|
assetType?: GlobalAssetType | undefined;
|
|
105
112
|
lastActivityTime?: string | undefined;
|
|
106
113
|
}>;
|
|
107
114
|
export type AssetUpsertDto = z.infer<typeof _AssetUpsertDto>;
|
|
108
|
-
export declare const _AssetDto: z.ZodObject<{
|
|
109
|
-
|
|
110
|
-
|
|
115
|
+
export declare const _AssetDto: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
116
|
+
id: z.ZodOptional<z.ZodString>;
|
|
117
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
118
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
119
|
+
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
120
|
+
}, {
|
|
121
|
+
etag: z.ZodString;
|
|
122
|
+
}>, {
|
|
123
|
+
/** External Keys */
|
|
111
124
|
extKeys: z.ZodObject<{
|
|
112
125
|
extId: z.ZodOptional<z.ZodString>;
|
|
113
126
|
sn: z.ZodOptional<z.ZodString>;
|
|
@@ -121,14 +134,22 @@ export declare const _AssetDto: z.ZodObject<{
|
|
|
121
134
|
extId?: string | undefined;
|
|
122
135
|
sn?: string | undefined;
|
|
123
136
|
}>;
|
|
137
|
+
/** Asset display value */
|
|
138
|
+
displayValue: z.ZodString;
|
|
139
|
+
/** User Id of the asset owner */
|
|
140
|
+
uid: z.ZodOptional<z.ZodString>;
|
|
141
|
+
/** Asset type */
|
|
124
142
|
assetType: z.ZodOptional<z.ZodNativeEnum<typeof GlobalAssetType>>;
|
|
143
|
+
/** Last activity time for the asset */
|
|
125
144
|
lastActivityTime: z.ZodOptional<z.ZodString>;
|
|
145
|
+
}>, z.objectUtil.extendShape<{
|
|
126
146
|
id: z.ZodString;
|
|
127
147
|
createdAt: z.ZodString;
|
|
128
148
|
updatedAt: z.ZodString;
|
|
129
149
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
150
|
+
}, {
|
|
130
151
|
etag: z.ZodString;
|
|
131
|
-
}
|
|
152
|
+
}>>, "strip", z.ZodTypeAny, {
|
|
132
153
|
id: string;
|
|
133
154
|
createdAt: string;
|
|
134
155
|
updatedAt: string;
|
|
@@ -39,13 +39,14 @@ export declare const _BaseUpsertDto: z.ZodObject<{
|
|
|
39
39
|
deletedAt?: string | null | undefined;
|
|
40
40
|
}>;
|
|
41
41
|
export type BaseUpsertDto = z.infer<typeof _BaseUpsertDto>;
|
|
42
|
-
export declare const _ChangeAwareUpsertDto: z.ZodObject<{
|
|
42
|
+
export declare const _ChangeAwareUpsertDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
43
43
|
id: z.ZodOptional<z.ZodString>;
|
|
44
44
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
45
45
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
46
46
|
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47
|
+
}, {
|
|
47
48
|
etag: z.ZodString;
|
|
48
|
-
}
|
|
49
|
+
}>, "strip", z.ZodTypeAny, {
|
|
49
50
|
etag: string;
|
|
50
51
|
id?: string | undefined;
|
|
51
52
|
createdAt?: string | undefined;
|
|
@@ -59,13 +60,14 @@ export declare const _ChangeAwareUpsertDto: z.ZodObject<{
|
|
|
59
60
|
deletedAt?: string | null | undefined;
|
|
60
61
|
}>;
|
|
61
62
|
export type ChangeAwareUpsertDto = z.infer<typeof _ChangeAwareUpsertDto>;
|
|
62
|
-
export declare const _ChangeAwareDto: z.ZodObject<{
|
|
63
|
+
export declare const _ChangeAwareDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
63
64
|
id: z.ZodString;
|
|
64
65
|
createdAt: z.ZodString;
|
|
65
66
|
updatedAt: z.ZodString;
|
|
66
67
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
68
|
+
}, {
|
|
67
69
|
etag: z.ZodString;
|
|
68
|
-
}
|
|
70
|
+
}>, "strip", z.ZodTypeAny, {
|
|
69
71
|
id: string;
|
|
70
72
|
createdAt: string;
|
|
71
73
|
updatedAt: string;
|