@or-sdk/library-types-v2 6.0.10 → 6.0.12

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.
@@ -2,38 +2,41 @@ import { Prisma } from '@or-sdk/library-prisma';
2
2
  import { z } from 'zod';
3
3
  export declare const ListView: z.ZodObject<{
4
4
  items: z.ZodArray<z.ZodAny, "many">;
5
- take: z.ZodNumber;
6
- skip: z.ZodNumber;
7
5
  total: z.ZodNumber;
8
6
  cursor: z.ZodObject<{
9
7
  skip: z.ZodNumber;
10
- }, "strip", z.ZodTypeAny, {
11
- skip?: number;
12
- }, {
13
- skip?: number;
14
- }>;
15
- filter: z.ZodOptional<z.ZodAny>;
16
- scope: z.ZodOptional<z.ZodAny>;
8
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
9
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
10
+ take: z.ZodNumber;
11
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12
+ skip: z.ZodNumber;
13
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
14
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
15
+ take: z.ZodNumber;
16
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
17
+ skip: z.ZodNumber;
18
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
19
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
20
+ take: z.ZodNumber;
21
+ }, z.ZodTypeAny, "passthrough">>;
17
22
  }, "strip", z.ZodTypeAny, {
18
23
  items?: any[];
19
- take?: number;
20
- skip?: number;
21
24
  total?: number;
22
- cursor?: {
23
- skip?: number;
24
- };
25
- filter?: any;
26
- scope?: any;
25
+ cursor?: z.objectOutputType<{
26
+ skip: z.ZodNumber;
27
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
28
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
29
+ take: z.ZodNumber;
30
+ }, z.ZodTypeAny, "passthrough">;
27
31
  }, {
28
32
  items?: any[];
29
- take?: number;
30
- skip?: number;
31
33
  total?: number;
32
- cursor?: {
33
- skip?: number;
34
- };
35
- filter?: any;
36
- scope?: any;
34
+ cursor?: z.objectInputType<{
35
+ skip: z.ZodNumber;
36
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
37
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
38
+ take: z.ZodNumber;
39
+ }, z.ZodTypeAny, "passthrough">;
37
40
  }>;
38
41
  export declare enum OrderByEnum {
39
42
  createdAt = "createdAt",
@@ -122,27 +122,27 @@ export declare const AddPackageReleaseReleaseStatusParams: z.ZodObject<{
122
122
  }>;
123
123
  export declare const GetPackagesParamsFilter: z.ZodObject<{
124
124
  prerelease: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodAny, boolean, any>>>;
125
- schemaType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
126
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
127
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
125
+ schemaType: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
126
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
127
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
128
128
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
129
129
  in?: any[];
130
130
  notIn?: any[];
131
131
  }, {
132
132
  in?: any;
133
133
  notIn?: any;
134
- }>>>>;
134
+ }>>>;
135
135
  categories: z.ZodOptional<z.ZodObject<{
136
- name: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
137
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
138
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
136
+ name: z.ZodDefault<z.ZodObject<Pick<{
137
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
138
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
139
139
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
140
140
  in?: any[];
141
141
  notIn?: any[];
142
142
  }, {
143
143
  in?: any;
144
144
  notIn?: any;
145
- }>>>;
145
+ }>>;
146
146
  }, "strip", z.ZodTypeAny, {
147
147
  name?: {
148
148
  in?: any[];
@@ -154,27 +154,27 @@ export declare const GetPackagesParamsFilter: z.ZodObject<{
154
154
  notIn?: any;
155
155
  };
156
156
  }>>;
157
- id: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
158
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
159
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
157
+ id: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
158
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
159
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
160
160
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
161
161
  in?: any[];
162
162
  notIn?: any[];
163
163
  }, {
164
164
  in?: any;
165
165
  notIn?: any;
166
- }>>>>;
166
+ }>>>;
167
167
  statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
168
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
169
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
170
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
168
+ status: z.ZodDefault<z.ZodObject<Pick<{
169
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
170
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
171
171
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
172
172
  in?: any[];
173
173
  notIn?: any[];
174
174
  }, {
175
175
  in?: any;
176
176
  notIn?: any;
177
- }>>>;
177
+ }>>;
178
178
  }, "strip", z.ZodTypeAny, {
179
179
  status?: {
180
180
  in?: any[];
@@ -187,26 +187,26 @@ export declare const GetPackagesParamsFilter: z.ZodObject<{
187
187
  };
188
188
  }>>>;
189
189
  statusDetailsRelease: z.ZodDefault<z.ZodOptional<z.ZodObject<{
190
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
191
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
192
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
190
+ status: z.ZodDefault<z.ZodObject<Pick<{
191
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
192
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
193
193
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
194
194
  in?: any[];
195
195
  notIn?: any[];
196
196
  }, {
197
197
  in?: any;
198
198
  notIn?: any;
199
- }>>>;
200
- level: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
201
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
202
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
199
+ }>>;
200
+ level: z.ZodDefault<z.ZodObject<Pick<{
201
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
202
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
203
203
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
204
204
  in?: any[];
205
205
  notIn?: any[];
206
206
  }, {
207
207
  in?: any;
208
208
  notIn?: any;
209
- }>>>;
209
+ }>>;
210
210
  }, "strip", z.ZodTypeAny, {
211
211
  status?: {
212
212
  in?: any[];
@@ -297,8 +297,8 @@ export declare enum GetPackagesParamsOrderByEnum {
297
297
  createdAt = "createdAt"
298
298
  }
299
299
  export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
300
- take: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
301
300
  skip: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
301
+ take: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
302
302
  orderBy: z.ZodDefault<z.ZodNativeEnum<z.EnumLike>>;
303
303
  order: z.ZodDefault<z.ZodNativeEnum<{
304
304
  asc: "asc";
@@ -306,27 +306,27 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
306
306
  }>>;
307
307
  filter: z.ZodDefault<z.ZodOptional<z.ZodObject<{
308
308
  prerelease: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodAny, boolean, any>>>;
309
- schemaType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
310
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
311
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
309
+ schemaType: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
310
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
311
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
312
312
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
313
313
  in?: any[];
314
314
  notIn?: any[];
315
315
  }, {
316
316
  in?: any;
317
317
  notIn?: any;
318
- }>>>>;
318
+ }>>>;
319
319
  categories: z.ZodOptional<z.ZodObject<{
320
- name: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
321
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
322
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
320
+ name: z.ZodDefault<z.ZodObject<Pick<{
321
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
322
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
323
323
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
324
324
  in?: any[];
325
325
  notIn?: any[];
326
326
  }, {
327
327
  in?: any;
328
328
  notIn?: any;
329
- }>>>;
329
+ }>>;
330
330
  }, "strip", z.ZodTypeAny, {
331
331
  name?: {
332
332
  in?: any[];
@@ -338,27 +338,27 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
338
338
  notIn?: any;
339
339
  };
340
340
  }>>;
341
- id: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
342
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
343
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
341
+ id: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
342
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
343
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
344
344
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
345
345
  in?: any[];
346
346
  notIn?: any[];
347
347
  }, {
348
348
  in?: any;
349
349
  notIn?: any;
350
- }>>>>;
350
+ }>>>;
351
351
  statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
352
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
353
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
354
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
352
+ status: z.ZodDefault<z.ZodObject<Pick<{
353
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
354
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
355
355
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
356
356
  in?: any[];
357
357
  notIn?: any[];
358
358
  }, {
359
359
  in?: any;
360
360
  notIn?: any;
361
- }>>>;
361
+ }>>;
362
362
  }, "strip", z.ZodTypeAny, {
363
363
  status?: {
364
364
  in?: any[];
@@ -371,26 +371,26 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
371
371
  };
372
372
  }>>>;
373
373
  statusDetailsRelease: z.ZodDefault<z.ZodOptional<z.ZodObject<{
374
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
375
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
376
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
374
+ status: z.ZodDefault<z.ZodObject<Pick<{
375
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
376
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
377
377
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
378
378
  in?: any[];
379
379
  notIn?: any[];
380
380
  }, {
381
381
  in?: any;
382
382
  notIn?: any;
383
- }>>>;
384
- level: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
385
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
386
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
383
+ }>>;
384
+ level: z.ZodDefault<z.ZodObject<Pick<{
385
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
386
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
387
387
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
388
388
  in?: any[];
389
389
  notIn?: any[];
390
390
  }, {
391
391
  in?: any;
392
392
  notIn?: any;
393
- }>>>;
393
+ }>>;
394
394
  }, "strip", z.ZodTypeAny, {
395
395
  status?: {
396
396
  in?: any[];
@@ -477,27 +477,27 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
477
477
  }>>>;
478
478
  scope: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
479
479
  prerelease: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodAny, boolean, any>>>;
480
- schemaType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
481
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
482
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
480
+ schemaType: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
481
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
482
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
483
483
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
484
484
  in?: any[];
485
485
  notIn?: any[];
486
486
  }, {
487
487
  in?: any;
488
488
  notIn?: any;
489
- }>>>>;
489
+ }>>>;
490
490
  categories: z.ZodOptional<z.ZodObject<{
491
- name: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
492
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
493
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
491
+ name: z.ZodDefault<z.ZodObject<Pick<{
492
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
493
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
494
494
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
495
495
  in?: any[];
496
496
  notIn?: any[];
497
497
  }, {
498
498
  in?: any;
499
499
  notIn?: any;
500
- }>>>;
500
+ }>>;
501
501
  }, "strip", z.ZodTypeAny, {
502
502
  name?: {
503
503
  in?: any[];
@@ -509,27 +509,27 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
509
509
  notIn?: any;
510
510
  };
511
511
  }>>;
512
- id: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
513
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
514
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
512
+ id: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
513
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
514
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
515
515
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
516
516
  in?: any[];
517
517
  notIn?: any[];
518
518
  }, {
519
519
  in?: any;
520
520
  notIn?: any;
521
- }>>>>;
521
+ }>>>;
522
522
  statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
523
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
524
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
525
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
523
+ status: z.ZodDefault<z.ZodObject<Pick<{
524
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
525
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
526
526
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
527
527
  in?: any[];
528
528
  notIn?: any[];
529
529
  }, {
530
530
  in?: any;
531
531
  notIn?: any;
532
- }>>>;
532
+ }>>;
533
533
  }, "strip", z.ZodTypeAny, {
534
534
  status?: {
535
535
  in?: any[];
@@ -542,26 +542,26 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
542
542
  };
543
543
  }>>>;
544
544
  statusDetailsRelease: z.ZodDefault<z.ZodOptional<z.ZodObject<{
545
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
546
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
547
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
545
+ status: z.ZodDefault<z.ZodObject<Pick<{
546
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
547
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
548
548
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
549
549
  in?: any[];
550
550
  notIn?: any[];
551
551
  }, {
552
552
  in?: any;
553
553
  notIn?: any;
554
- }>>>;
555
- level: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
556
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
557
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
554
+ }>>;
555
+ level: z.ZodDefault<z.ZodObject<Pick<{
556
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
557
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
558
558
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
559
559
  in?: any[];
560
560
  notIn?: any[];
561
561
  }, {
562
562
  in?: any;
563
563
  notIn?: any;
564
- }>>>;
564
+ }>>;
565
565
  }, "strip", z.ZodTypeAny, {
566
566
  status?: {
567
567
  in?: any[];
@@ -606,8 +606,8 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
606
606
  }>>>;
607
607
  query: z.ZodDefault<z.ZodString>;
608
608
  }, "strip", z.ZodTypeAny, {
609
- take?: number;
610
609
  skip?: number;
610
+ take?: number;
611
611
  orderBy?: string | number;
612
612
  order?: "asc" | "desc";
613
613
  filter?: {
@@ -657,8 +657,8 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
657
657
  };
658
658
  query?: string;
659
659
  }, {
660
- take?: any;
661
660
  skip?: any;
661
+ take?: any;
662
662
  orderBy?: string | number;
663
663
  order?: "asc" | "desc";
664
664
  filter?: {
@@ -710,27 +710,27 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
710
710
  }>>>;
711
711
  export declare const GetPackageParams: z.ZodOptional<z.ZodObject<Pick<{
712
712
  prerelease: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodAny, boolean, any>>>;
713
- schemaType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
714
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
715
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
713
+ schemaType: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
714
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
715
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
716
716
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
717
717
  in?: any[];
718
718
  notIn?: any[];
719
719
  }, {
720
720
  in?: any;
721
721
  notIn?: any;
722
- }>>>>;
722
+ }>>>;
723
723
  categories: z.ZodOptional<z.ZodObject<{
724
- name: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
725
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
726
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
724
+ name: z.ZodDefault<z.ZodObject<Pick<{
725
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
726
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
727
727
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
728
728
  in?: any[];
729
729
  notIn?: any[];
730
730
  }, {
731
731
  in?: any;
732
732
  notIn?: any;
733
- }>>>;
733
+ }>>;
734
734
  }, "strip", z.ZodTypeAny, {
735
735
  name?: {
736
736
  in?: any[];
@@ -742,27 +742,27 @@ export declare const GetPackageParams: z.ZodOptional<z.ZodObject<Pick<{
742
742
  notIn?: any;
743
743
  };
744
744
  }>>;
745
- id: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
746
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
747
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
745
+ id: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
746
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
747
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
748
748
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
749
749
  in?: any[];
750
750
  notIn?: any[];
751
751
  }, {
752
752
  in?: any;
753
753
  notIn?: any;
754
- }>>>>;
754
+ }>>>;
755
755
  statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
756
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
757
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
758
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
756
+ status: z.ZodDefault<z.ZodObject<Pick<{
757
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
758
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
759
759
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
760
760
  in?: any[];
761
761
  notIn?: any[];
762
762
  }, {
763
763
  in?: any;
764
764
  notIn?: any;
765
- }>>>;
765
+ }>>;
766
766
  }, "strip", z.ZodTypeAny, {
767
767
  status?: {
768
768
  in?: any[];
@@ -775,26 +775,26 @@ export declare const GetPackageParams: z.ZodOptional<z.ZodObject<Pick<{
775
775
  };
776
776
  }>>>;
777
777
  statusDetailsRelease: z.ZodDefault<z.ZodOptional<z.ZodObject<{
778
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
779
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
780
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
778
+ status: z.ZodDefault<z.ZodObject<Pick<{
779
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
780
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
781
781
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
782
782
  in?: any[];
783
783
  notIn?: any[];
784
784
  }, {
785
785
  in?: any;
786
786
  notIn?: any;
787
- }>>>;
788
- level: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
789
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
790
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
787
+ }>>;
788
+ level: z.ZodDefault<z.ZodObject<Pick<{
789
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
790
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
791
791
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
792
792
  in?: any[];
793
793
  notIn?: any[];
794
794
  }, {
795
795
  in?: any;
796
796
  notIn?: any;
797
- }>>>;
797
+ }>>;
798
798
  }, "strip", z.ZodTypeAny, {
799
799
  status?: {
800
800
  in?: any[];
@@ -861,27 +861,27 @@ export declare const DeletePackageParams: z.ZodObject<{
861
861
  force: z.ZodEffects<z.ZodAny, boolean, any>;
862
862
  filter: z.ZodObject<Pick<{
863
863
  prerelease: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodAny, boolean, any>>>;
864
- schemaType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
865
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
866
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
864
+ schemaType: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
865
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
866
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
867
867
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
868
868
  in?: any[];
869
869
  notIn?: any[];
870
870
  }, {
871
871
  in?: any;
872
872
  notIn?: any;
873
- }>>>>;
873
+ }>>>;
874
874
  categories: z.ZodOptional<z.ZodObject<{
875
- name: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
876
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
877
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
875
+ name: z.ZodDefault<z.ZodObject<Pick<{
876
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
877
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
878
878
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
879
879
  in?: any[];
880
880
  notIn?: any[];
881
881
  }, {
882
882
  in?: any;
883
883
  notIn?: any;
884
- }>>>;
884
+ }>>;
885
885
  }, "strip", z.ZodTypeAny, {
886
886
  name?: {
887
887
  in?: any[];
@@ -893,27 +893,27 @@ export declare const DeletePackageParams: z.ZodObject<{
893
893
  notIn?: any;
894
894
  };
895
895
  }>>;
896
- id: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
897
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
898
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
896
+ id: z.ZodOptional<z.ZodDefault<z.ZodObject<Pick<{
897
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
898
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
899
899
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
900
900
  in?: any[];
901
901
  notIn?: any[];
902
902
  }, {
903
903
  in?: any;
904
904
  notIn?: any;
905
- }>>>>;
905
+ }>>>;
906
906
  statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
907
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
908
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
909
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
907
+ status: z.ZodDefault<z.ZodObject<Pick<{
908
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
909
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
910
910
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
911
911
  in?: any[];
912
912
  notIn?: any[];
913
913
  }, {
914
914
  in?: any;
915
915
  notIn?: any;
916
- }>>>;
916
+ }>>;
917
917
  }, "strip", z.ZodTypeAny, {
918
918
  status?: {
919
919
  in?: any[];
@@ -926,26 +926,26 @@ export declare const DeletePackageParams: z.ZodObject<{
926
926
  };
927
927
  }>>>;
928
928
  statusDetailsRelease: z.ZodDefault<z.ZodOptional<z.ZodObject<{
929
- status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
930
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
931
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
929
+ status: z.ZodDefault<z.ZodObject<Pick<{
930
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
931
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
932
932
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
933
933
  in?: any[];
934
934
  notIn?: any[];
935
935
  }, {
936
936
  in?: any;
937
937
  notIn?: any;
938
- }>>>;
939
- level: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
940
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
941
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
938
+ }>>;
939
+ level: z.ZodDefault<z.ZodObject<Pick<{
940
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
941
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
942
942
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
943
943
  in?: any[];
944
944
  notIn?: any[];
945
945
  }, {
946
946
  in?: any;
947
947
  notIn?: any;
948
- }>>>;
948
+ }>>;
949
949
  }, "strip", z.ZodTypeAny, {
950
950
  status?: {
951
951
  in?: any[];