@or-sdk/library-types-v1 6.0.5 → 6.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,8 +5,9 @@ export declare const GetPackagesResponseEntity: z.ZodObject<{
5
5
  isExternal: z.ZodOptional<z.ZodBoolean>;
6
6
  isSandbox: z.ZodOptional<z.ZodBoolean>;
7
7
  isPlayground: z.ZodOptional<z.ZodBoolean>;
8
- latest: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
8
+ latest: z.ZodDefault<z.ZodNullable<z.ZodObject<{
9
9
  label: z.ZodOptional<z.ZodString>;
10
+ name: z.ZodOptional<z.ZodString>;
10
11
  id: z.ZodOptional<z.ZodString>;
11
12
  version: z.ZodOptional<z.ZodString>;
12
13
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -16,29 +17,31 @@ export declare const GetPackagesResponseEntity: z.ZodObject<{
16
17
  recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
17
18
  shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
19
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
19
- }, "strip", z.ZodTypeAny, {
20
- label?: string;
21
- id?: string;
22
- version?: string;
23
- categories?: string[];
24
- description?: string;
25
- icon?: string;
26
- iconType?: string;
27
- recommendedSteps?: string[];
28
- shape?: string;
29
- tags?: string[];
30
- }, {
31
- label?: string;
32
- id?: string;
33
- version?: string;
34
- categories?: string[];
35
- description?: string;
36
- icon?: string;
37
- iconType?: string;
38
- recommendedSteps?: string[];
39
- shape?: string;
40
- tags?: string[];
41
- }>, z.ZodRecord<z.ZodAny, z.ZodAny>>>;
20
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
21
+ label: z.ZodOptional<z.ZodString>;
22
+ name: z.ZodOptional<z.ZodString>;
23
+ id: z.ZodOptional<z.ZodString>;
24
+ version: z.ZodOptional<z.ZodString>;
25
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
30
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
32
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
33
+ label: z.ZodOptional<z.ZodString>;
34
+ name: z.ZodOptional<z.ZodString>;
35
+ id: z.ZodOptional<z.ZodString>;
36
+ version: z.ZodOptional<z.ZodString>;
37
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
38
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
42
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
43
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
44
+ }, z.ZodTypeAny, "passthrough">>>>;
42
45
  latestVersion: z.ZodOptional<z.ZodString>;
43
46
  level: z.ZodOptional<z.ZodNativeEnum<{
44
47
  USER: "USER";
@@ -51,7 +54,7 @@ export declare const GetPackagesResponseEntity: z.ZodObject<{
51
54
  PDE: "PDE";
52
55
  }>, "many">>;
53
56
  name: z.ZodOptional<z.ZodString>;
54
- releases: z.ZodOptional<z.ZodArray<z.ZodObject<{
57
+ releases: z.ZodDefault<z.ZodArray<z.ZodObject<{
55
58
  status: z.ZodNativeEnum<{
56
59
  TEST_ONLY: "TEST_ONLY";
57
60
  PENDING: "PENDING";
@@ -111,18 +114,19 @@ export declare const GetPackagesResponseEntity: z.ZodObject<{
111
114
  isExternal?: boolean;
112
115
  isSandbox?: boolean;
113
116
  isPlayground?: boolean;
114
- latest?: {
115
- label?: string;
116
- id?: string;
117
- version?: string;
118
- categories?: string[];
119
- description?: string;
120
- icon?: string;
121
- iconType?: string;
122
- recommendedSteps?: string[];
123
- shape?: string;
124
- tags?: string[];
125
- } & Record<any, any>;
117
+ latest?: z.objectOutputType<{
118
+ label: z.ZodOptional<z.ZodString>;
119
+ name: z.ZodOptional<z.ZodString>;
120
+ id: z.ZodOptional<z.ZodString>;
121
+ version: z.ZodOptional<z.ZodString>;
122
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
123
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
124
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
125
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
126
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
127
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
128
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
129
+ }, z.ZodTypeAny, "passthrough">;
126
130
  latestVersion?: string;
127
131
  level?: "USER" | "ACCOUNT" | "PDE";
128
132
  levels?: ("USER" | "ACCOUNT" | "PDE")[];
@@ -146,18 +150,19 @@ export declare const GetPackagesResponseEntity: z.ZodObject<{
146
150
  isExternal?: boolean;
147
151
  isSandbox?: boolean;
148
152
  isPlayground?: boolean;
149
- latest?: {
150
- label?: string;
151
- id?: string;
152
- version?: string;
153
- categories?: string[];
154
- description?: string;
155
- icon?: string;
156
- iconType?: string;
157
- recommendedSteps?: string[];
158
- shape?: string;
159
- tags?: string[];
160
- } & Record<any, any>;
153
+ latest?: z.objectInputType<{
154
+ label: z.ZodOptional<z.ZodString>;
155
+ name: z.ZodOptional<z.ZodString>;
156
+ id: z.ZodOptional<z.ZodString>;
157
+ version: z.ZodOptional<z.ZodString>;
158
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
159
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
160
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
161
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
162
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
163
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
164
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
165
+ }, z.ZodTypeAny, "passthrough">;
161
166
  latestVersion?: string;
162
167
  level?: "USER" | "ACCOUNT" | "PDE";
163
168
  levels?: ("USER" | "ACCOUNT" | "PDE")[];
@@ -183,8 +188,9 @@ export declare const GetPackagesResponse: z.ZodObject<{
183
188
  isExternal: z.ZodOptional<z.ZodBoolean>;
184
189
  isSandbox: z.ZodOptional<z.ZodBoolean>;
185
190
  isPlayground: z.ZodOptional<z.ZodBoolean>;
186
- latest: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
191
+ latest: z.ZodDefault<z.ZodNullable<z.ZodObject<{
187
192
  label: z.ZodOptional<z.ZodString>;
193
+ name: z.ZodOptional<z.ZodString>;
188
194
  id: z.ZodOptional<z.ZodString>;
189
195
  version: z.ZodOptional<z.ZodString>;
190
196
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -194,29 +200,31 @@ export declare const GetPackagesResponse: z.ZodObject<{
194
200
  recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
195
201
  shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
196
202
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
197
- }, "strip", z.ZodTypeAny, {
198
- label?: string;
199
- id?: string;
200
- version?: string;
201
- categories?: string[];
202
- description?: string;
203
- icon?: string;
204
- iconType?: string;
205
- recommendedSteps?: string[];
206
- shape?: string;
207
- tags?: string[];
208
- }, {
209
- label?: string;
210
- id?: string;
211
- version?: string;
212
- categories?: string[];
213
- description?: string;
214
- icon?: string;
215
- iconType?: string;
216
- recommendedSteps?: string[];
217
- shape?: string;
218
- tags?: string[];
219
- }>, z.ZodRecord<z.ZodAny, z.ZodAny>>>;
203
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
204
+ label: z.ZodOptional<z.ZodString>;
205
+ name: z.ZodOptional<z.ZodString>;
206
+ id: z.ZodOptional<z.ZodString>;
207
+ version: z.ZodOptional<z.ZodString>;
208
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
209
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
210
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
211
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
212
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
213
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
214
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
215
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
216
+ label: z.ZodOptional<z.ZodString>;
217
+ name: z.ZodOptional<z.ZodString>;
218
+ id: z.ZodOptional<z.ZodString>;
219
+ version: z.ZodOptional<z.ZodString>;
220
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
221
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
222
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
223
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
224
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
225
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
226
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
227
+ }, z.ZodTypeAny, "passthrough">>>>;
220
228
  latestVersion: z.ZodOptional<z.ZodString>;
221
229
  level: z.ZodOptional<z.ZodNativeEnum<{
222
230
  USER: "USER";
@@ -229,7 +237,7 @@ export declare const GetPackagesResponse: z.ZodObject<{
229
237
  PDE: "PDE";
230
238
  }>, "many">>;
231
239
  name: z.ZodOptional<z.ZodString>;
232
- releases: z.ZodOptional<z.ZodArray<z.ZodObject<{
240
+ releases: z.ZodDefault<z.ZodArray<z.ZodObject<{
233
241
  status: z.ZodNativeEnum<{
234
242
  TEST_ONLY: "TEST_ONLY";
235
243
  PENDING: "PENDING";
@@ -289,18 +297,19 @@ export declare const GetPackagesResponse: z.ZodObject<{
289
297
  isExternal?: boolean;
290
298
  isSandbox?: boolean;
291
299
  isPlayground?: boolean;
292
- latest?: {
293
- label?: string;
294
- id?: string;
295
- version?: string;
296
- categories?: string[];
297
- description?: string;
298
- icon?: string;
299
- iconType?: string;
300
- recommendedSteps?: string[];
301
- shape?: string;
302
- tags?: string[];
303
- } & Record<any, any>;
300
+ latest?: z.objectOutputType<{
301
+ label: z.ZodOptional<z.ZodString>;
302
+ name: z.ZodOptional<z.ZodString>;
303
+ id: z.ZodOptional<z.ZodString>;
304
+ version: z.ZodOptional<z.ZodString>;
305
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
306
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
307
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
308
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
309
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
310
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
311
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
312
+ }, z.ZodTypeAny, "passthrough">;
304
313
  latestVersion?: string;
305
314
  level?: "USER" | "ACCOUNT" | "PDE";
306
315
  levels?: ("USER" | "ACCOUNT" | "PDE")[];
@@ -324,18 +333,19 @@ export declare const GetPackagesResponse: z.ZodObject<{
324
333
  isExternal?: boolean;
325
334
  isSandbox?: boolean;
326
335
  isPlayground?: boolean;
327
- latest?: {
328
- label?: string;
329
- id?: string;
330
- version?: string;
331
- categories?: string[];
332
- description?: string;
333
- icon?: string;
334
- iconType?: string;
335
- recommendedSteps?: string[];
336
- shape?: string;
337
- tags?: string[];
338
- } & Record<any, any>;
336
+ latest?: z.objectInputType<{
337
+ label: z.ZodOptional<z.ZodString>;
338
+ name: z.ZodOptional<z.ZodString>;
339
+ id: z.ZodOptional<z.ZodString>;
340
+ version: z.ZodOptional<z.ZodString>;
341
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
342
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
343
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
344
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
345
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
346
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
347
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
348
+ }, z.ZodTypeAny, "passthrough">;
339
349
  latestVersion?: string;
340
350
  level?: "USER" | "ACCOUNT" | "PDE";
341
351
  levels?: ("USER" | "ACCOUNT" | "PDE")[];
@@ -415,18 +425,19 @@ export declare const GetPackagesResponse: z.ZodObject<{
415
425
  isExternal?: boolean;
416
426
  isSandbox?: boolean;
417
427
  isPlayground?: boolean;
418
- latest?: {
419
- label?: string;
420
- id?: string;
421
- version?: string;
422
- categories?: string[];
423
- description?: string;
424
- icon?: string;
425
- iconType?: string;
426
- recommendedSteps?: string[];
427
- shape?: string;
428
- tags?: string[];
429
- } & Record<any, any>;
428
+ latest?: z.objectOutputType<{
429
+ label: z.ZodOptional<z.ZodString>;
430
+ name: z.ZodOptional<z.ZodString>;
431
+ id: z.ZodOptional<z.ZodString>;
432
+ version: z.ZodOptional<z.ZodString>;
433
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
434
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
435
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
436
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
437
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
438
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
439
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
440
+ }, z.ZodTypeAny, "passthrough">;
430
441
  latestVersion?: string;
431
442
  level?: "USER" | "ACCOUNT" | "PDE";
432
443
  levels?: ("USER" | "ACCOUNT" | "PDE")[];
@@ -472,18 +483,19 @@ export declare const GetPackagesResponse: z.ZodObject<{
472
483
  isExternal?: boolean;
473
484
  isSandbox?: boolean;
474
485
  isPlayground?: boolean;
475
- latest?: {
476
- label?: string;
477
- id?: string;
478
- version?: string;
479
- categories?: string[];
480
- description?: string;
481
- icon?: string;
482
- iconType?: string;
483
- recommendedSteps?: string[];
484
- shape?: string;
485
- tags?: string[];
486
- } & Record<any, any>;
486
+ latest?: z.objectInputType<{
487
+ label: z.ZodOptional<z.ZodString>;
488
+ name: z.ZodOptional<z.ZodString>;
489
+ id: z.ZodOptional<z.ZodString>;
490
+ version: z.ZodOptional<z.ZodString>;
491
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
492
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
493
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
494
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
495
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
496
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
497
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
498
+ }, z.ZodTypeAny, "passthrough">;
487
499
  latestVersion?: string;
488
500
  level?: "USER" | "ACCOUNT" | "PDE";
489
501
  levels?: ("USER" | "ACCOUNT" | "PDE")[];
@@ -644,8 +656,9 @@ export declare const PackageStatusDetails: z.ZodOptional<z.ZodObject<{
644
656
  export declare const GetPackageResponse: z.ZodObject<{
645
657
  baseUrl: z.ZodString;
646
658
  data: z.ZodAny;
647
- packageMeta: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
659
+ packageMeta: z.ZodDefault<z.ZodNullable<z.ZodObject<{
648
660
  label: z.ZodOptional<z.ZodString>;
661
+ name: z.ZodOptional<z.ZodString>;
649
662
  id: z.ZodOptional<z.ZodString>;
650
663
  version: z.ZodOptional<z.ZodString>;
651
664
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -655,29 +668,31 @@ export declare const GetPackageResponse: z.ZodObject<{
655
668
  recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
656
669
  shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
657
670
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
658
- }, "strip", z.ZodTypeAny, {
659
- label?: string;
660
- id?: string;
661
- version?: string;
662
- categories?: string[];
663
- description?: string;
664
- icon?: string;
665
- iconType?: string;
666
- recommendedSteps?: string[];
667
- shape?: string;
668
- tags?: string[];
669
- }, {
670
- label?: string;
671
- id?: string;
672
- version?: string;
673
- categories?: string[];
674
- description?: string;
675
- icon?: string;
676
- iconType?: string;
677
- recommendedSteps?: string[];
678
- shape?: string;
679
- tags?: string[];
680
- }>, z.ZodRecord<z.ZodAny, z.ZodAny>>>;
671
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
672
+ label: z.ZodOptional<z.ZodString>;
673
+ name: z.ZodOptional<z.ZodString>;
674
+ id: z.ZodOptional<z.ZodString>;
675
+ version: z.ZodOptional<z.ZodString>;
676
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
677
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
678
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
679
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
680
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
681
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
682
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
683
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
684
+ label: z.ZodOptional<z.ZodString>;
685
+ name: z.ZodOptional<z.ZodString>;
686
+ id: z.ZodOptional<z.ZodString>;
687
+ version: z.ZodOptional<z.ZodString>;
688
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
689
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
690
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
691
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
692
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
693
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
694
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
695
+ }, z.ZodTypeAny, "passthrough">>>>;
681
696
  id: z.ZodString;
682
697
  version: z.ZodString;
683
698
  schemaType: z.ZodNativeEnum<{
@@ -826,18 +841,19 @@ export declare const GetPackageResponse: z.ZodObject<{
826
841
  }, "strip", z.ZodTypeAny, {
827
842
  baseUrl?: string;
828
843
  data?: any;
829
- packageMeta?: {
830
- label?: string;
831
- id?: string;
832
- version?: string;
833
- categories?: string[];
834
- description?: string;
835
- icon?: string;
836
- iconType?: string;
837
- recommendedSteps?: string[];
838
- shape?: string;
839
- tags?: string[];
840
- } & Record<any, any>;
844
+ packageMeta?: z.objectOutputType<{
845
+ label: z.ZodOptional<z.ZodString>;
846
+ name: z.ZodOptional<z.ZodString>;
847
+ id: z.ZodOptional<z.ZodString>;
848
+ version: z.ZodOptional<z.ZodString>;
849
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
850
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
851
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
852
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
853
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
854
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
855
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
856
+ }, z.ZodTypeAny, "passthrough">;
841
857
  id?: string;
842
858
  version?: string;
843
859
  schemaType?: "UNKNOWN" | "LEGACY" | "EXTERNAL";
@@ -867,18 +883,19 @@ export declare const GetPackageResponse: z.ZodObject<{
867
883
  }, {
868
884
  baseUrl?: string;
869
885
  data?: any;
870
- packageMeta?: {
871
- label?: string;
872
- id?: string;
873
- version?: string;
874
- categories?: string[];
875
- description?: string;
876
- icon?: string;
877
- iconType?: string;
878
- recommendedSteps?: string[];
879
- shape?: string;
880
- tags?: string[];
881
- } & Record<any, any>;
886
+ packageMeta?: z.objectInputType<{
887
+ label: z.ZodOptional<z.ZodString>;
888
+ name: z.ZodOptional<z.ZodString>;
889
+ id: z.ZodOptional<z.ZodString>;
890
+ version: z.ZodOptional<z.ZodString>;
891
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
892
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
893
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
894
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
895
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
896
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
897
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
898
+ }, z.ZodTypeAny, "passthrough">;
882
899
  id?: string;
883
900
  version?: string;
884
901
  schemaType?: "UNKNOWN" | "LEGACY" | "EXTERNAL";
@@ -906,63 +923,132 @@ export declare const GetPackageResponse: z.ZodObject<{
906
923
  };
907
924
  servingType?: string;
908
925
  }>;
909
- export declare const GetPackageByIdResponse: z.ZodObject<{
910
- version: z.ZodString;
911
- baseUrl: z.ZodString;
912
- statusDetails: z.ZodOptional<z.ZodOptional<z.ZodObject<{
913
- release: z.ZodObject<{
914
- pde: z.ZodOptional<z.ZodObject<{
915
- status: z.ZodArray<z.ZodNativeEnum<{
916
- TEST_ONLY: "TEST_ONLY";
917
- PENDING: "PENDING";
918
- EXTRACTING: "EXTRACTING";
919
- UPLOADED: "UPLOADED";
920
- BETA: "BETA";
921
- RELEASED: "RELEASED";
922
- ACCOUNT_BETA: "ACCOUNT_BETA";
923
- DEPRECATED: "DEPRECATED";
924
- }>, "many">;
925
- }, "strip", z.ZodTypeAny, {
926
- status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
927
- }, {
928
- status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
929
- }>>;
930
- user: z.ZodOptional<z.ZodObject<{
931
- status: z.ZodArray<z.ZodNativeEnum<{
932
- TEST_ONLY: "TEST_ONLY";
933
- PENDING: "PENDING";
934
- EXTRACTING: "EXTRACTING";
935
- UPLOADED: "UPLOADED";
936
- BETA: "BETA";
937
- RELEASED: "RELEASED";
938
- ACCOUNT_BETA: "ACCOUNT_BETA";
939
- DEPRECATED: "DEPRECATED";
940
- }>, "many">;
941
- }, "strip", z.ZodTypeAny, {
942
- status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
943
- }, {
944
- status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
945
- }>>;
946
- account: z.ZodOptional<z.ZodObject<{
947
- status: z.ZodArray<z.ZodNativeEnum<{
948
- TEST_ONLY: "TEST_ONLY";
949
- PENDING: "PENDING";
950
- EXTRACTING: "EXTRACTING";
951
- UPLOADED: "UPLOADED";
952
- BETA: "BETA";
953
- RELEASED: "RELEASED";
954
- ACCOUNT_BETA: "ACCOUNT_BETA";
955
- DEPRECATED: "DEPRECATED";
956
- }>, "many">;
957
- }, "strip", z.ZodTypeAny, {
958
- status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
959
- }, {
960
- status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
961
- }>>;
926
+ export declare const GetPackageByIdIncludes: z.ZodObject<{
927
+ releaseNotes: z.ZodOptional<z.ZodOptional<z.ZodObject<{
928
+ markdown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
929
+ }, "strip", z.ZodTypeAny, {
930
+ markdown?: string;
931
+ }, {
932
+ markdown?: string;
933
+ }>>>;
934
+ member: z.ZodOptional<z.ZodObject<{
935
+ account: z.ZodOptional<z.ZodArray<z.ZodObject<{
936
+ accountId: z.ZodString;
962
937
  }, "strip", z.ZodTypeAny, {
963
- pde?: {
964
- status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
965
- };
938
+ accountId?: string;
939
+ }, {
940
+ accountId?: string;
941
+ }>, "many">>;
942
+ user: z.ZodOptional<z.ZodArray<z.ZodObject<{
943
+ userId: z.ZodString;
944
+ }, "strip", z.ZodTypeAny, {
945
+ userId?: string;
946
+ }, {
947
+ userId?: string;
948
+ }>, "many">>;
949
+ }, "strip", z.ZodTypeAny, {
950
+ account?: {
951
+ accountId?: string;
952
+ }[];
953
+ user?: {
954
+ userId?: string;
955
+ }[];
956
+ }, {
957
+ account?: {
958
+ accountId?: string;
959
+ }[];
960
+ user?: {
961
+ userId?: string;
962
+ }[];
963
+ }>>;
964
+ membersAccountIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
965
+ membersUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
966
+ }, "strip", z.ZodTypeAny, {
967
+ releaseNotes?: {
968
+ markdown?: string;
969
+ };
970
+ member?: {
971
+ account?: {
972
+ accountId?: string;
973
+ }[];
974
+ user?: {
975
+ userId?: string;
976
+ }[];
977
+ };
978
+ membersAccountIds?: string[];
979
+ membersUserIds?: string[];
980
+ }, {
981
+ releaseNotes?: {
982
+ markdown?: string;
983
+ };
984
+ member?: {
985
+ account?: {
986
+ accountId?: string;
987
+ }[];
988
+ user?: {
989
+ userId?: string;
990
+ }[];
991
+ };
992
+ membersAccountIds?: string[];
993
+ membersUserIds?: string[];
994
+ }>;
995
+ export declare const GetPackageByIdResponse: z.ZodIntersection<z.ZodObject<{
996
+ version: z.ZodString;
997
+ baseUrl: z.ZodString;
998
+ statusDetails: z.ZodOptional<z.ZodOptional<z.ZodObject<{
999
+ release: z.ZodObject<{
1000
+ pde: z.ZodOptional<z.ZodObject<{
1001
+ status: z.ZodArray<z.ZodNativeEnum<{
1002
+ TEST_ONLY: "TEST_ONLY";
1003
+ PENDING: "PENDING";
1004
+ EXTRACTING: "EXTRACTING";
1005
+ UPLOADED: "UPLOADED";
1006
+ BETA: "BETA";
1007
+ RELEASED: "RELEASED";
1008
+ ACCOUNT_BETA: "ACCOUNT_BETA";
1009
+ DEPRECATED: "DEPRECATED";
1010
+ }>, "many">;
1011
+ }, "strip", z.ZodTypeAny, {
1012
+ status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
1013
+ }, {
1014
+ status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
1015
+ }>>;
1016
+ user: z.ZodOptional<z.ZodObject<{
1017
+ status: z.ZodArray<z.ZodNativeEnum<{
1018
+ TEST_ONLY: "TEST_ONLY";
1019
+ PENDING: "PENDING";
1020
+ EXTRACTING: "EXTRACTING";
1021
+ UPLOADED: "UPLOADED";
1022
+ BETA: "BETA";
1023
+ RELEASED: "RELEASED";
1024
+ ACCOUNT_BETA: "ACCOUNT_BETA";
1025
+ DEPRECATED: "DEPRECATED";
1026
+ }>, "many">;
1027
+ }, "strip", z.ZodTypeAny, {
1028
+ status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
1029
+ }, {
1030
+ status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
1031
+ }>>;
1032
+ account: z.ZodOptional<z.ZodObject<{
1033
+ status: z.ZodArray<z.ZodNativeEnum<{
1034
+ TEST_ONLY: "TEST_ONLY";
1035
+ PENDING: "PENDING";
1036
+ EXTRACTING: "EXTRACTING";
1037
+ UPLOADED: "UPLOADED";
1038
+ BETA: "BETA";
1039
+ RELEASED: "RELEASED";
1040
+ ACCOUNT_BETA: "ACCOUNT_BETA";
1041
+ DEPRECATED: "DEPRECATED";
1042
+ }>, "many">;
1043
+ }, "strip", z.ZodTypeAny, {
1044
+ status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
1045
+ }, {
1046
+ status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
1047
+ }>>;
1048
+ }, "strip", z.ZodTypeAny, {
1049
+ pde?: {
1050
+ status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
1051
+ };
966
1052
  user?: {
967
1053
  status?: ("TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED")[];
968
1054
  };
@@ -1028,52 +1114,14 @@ export declare const GetPackageByIdResponse: z.ZodObject<{
1028
1114
  };
1029
1115
  }>>>;
1030
1116
  servingType: z.ZodOptional<z.ZodString>;
1031
- releaseNotes: z.ZodOptional<z.ZodOptional<z.ZodObject<{
1032
- markdown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1033
- }, "strip", z.ZodTypeAny, {
1034
- markdown?: string;
1035
- }, {
1036
- markdown?: string;
1037
- }>>>;
1038
- member: z.ZodOptional<z.ZodObject<{
1039
- account: z.ZodOptional<z.ZodArray<z.ZodObject<{
1040
- accountId: z.ZodString;
1041
- }, "strip", z.ZodTypeAny, {
1042
- accountId?: string;
1043
- }, {
1044
- accountId?: string;
1045
- }>, "many">>;
1046
- user: z.ZodOptional<z.ZodArray<z.ZodObject<{
1047
- userId: z.ZodString;
1048
- }, "strip", z.ZodTypeAny, {
1049
- userId?: string;
1050
- }, {
1051
- userId?: string;
1052
- }>, "many">>;
1053
- }, "strip", z.ZodTypeAny, {
1054
- account?: {
1055
- accountId?: string;
1056
- }[];
1057
- user?: {
1058
- userId?: string;
1059
- }[];
1060
- }, {
1061
- account?: {
1062
- accountId?: string;
1063
- }[];
1064
- user?: {
1065
- userId?: string;
1066
- }[];
1067
- }>>;
1068
- membersAccountIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1069
- membersUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1070
1117
  createdAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodString]>>;
1071
1118
  revisionId: z.ZodOptional<z.ZodString>;
1072
1119
  name: z.ZodOptional<z.ZodString>;
1073
1120
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1074
1121
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1075
- packageMeta: z.ZodOptional<z.ZodOptional<z.ZodIntersection<z.ZodObject<{
1122
+ packageMeta: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1076
1123
  label: z.ZodOptional<z.ZodString>;
1124
+ name: z.ZodOptional<z.ZodString>;
1077
1125
  id: z.ZodOptional<z.ZodString>;
1078
1126
  version: z.ZodOptional<z.ZodString>;
1079
1127
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1083,29 +1131,31 @@ export declare const GetPackageByIdResponse: z.ZodObject<{
1083
1131
  recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1084
1132
  shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1085
1133
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1086
- }, "strip", z.ZodTypeAny, {
1087
- label?: string;
1088
- id?: string;
1089
- version?: string;
1090
- categories?: string[];
1091
- description?: string;
1092
- icon?: string;
1093
- iconType?: string;
1094
- recommendedSteps?: string[];
1095
- shape?: string;
1096
- tags?: string[];
1097
- }, {
1098
- label?: string;
1099
- id?: string;
1100
- version?: string;
1101
- categories?: string[];
1102
- description?: string;
1103
- icon?: string;
1104
- iconType?: string;
1105
- recommendedSteps?: string[];
1106
- shape?: string;
1107
- tags?: string[];
1108
- }>, z.ZodRecord<z.ZodAny, z.ZodAny>>>>;
1134
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1135
+ label: z.ZodOptional<z.ZodString>;
1136
+ name: z.ZodOptional<z.ZodString>;
1137
+ id: z.ZodOptional<z.ZodString>;
1138
+ version: z.ZodOptional<z.ZodString>;
1139
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1140
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1141
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1142
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1143
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1144
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1145
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1146
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1147
+ label: z.ZodOptional<z.ZodString>;
1148
+ name: z.ZodOptional<z.ZodString>;
1149
+ id: z.ZodOptional<z.ZodString>;
1150
+ version: z.ZodOptional<z.ZodString>;
1151
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1152
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1153
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1154
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1155
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1156
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1157
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1158
+ }, z.ZodTypeAny, "passthrough">>>>;
1109
1159
  id: z.ZodOptional<z.ZodString>;
1110
1160
  schemaType: z.ZodOptional<z.ZodNativeEnum<{
1111
1161
  LEGACY: "LEGACY";
@@ -1132,36 +1182,24 @@ export declare const GetPackageByIdResponse: z.ZodObject<{
1132
1182
  };
1133
1183
  };
1134
1184
  servingType?: string;
1135
- releaseNotes?: {
1136
- markdown?: string;
1137
- };
1138
- member?: {
1139
- account?: {
1140
- accountId?: string;
1141
- }[];
1142
- user?: {
1143
- userId?: string;
1144
- }[];
1145
- };
1146
- membersAccountIds?: string[];
1147
- membersUserIds?: string[];
1148
1185
  createdAt?: string | Date;
1149
1186
  revisionId?: string;
1150
1187
  name?: string;
1151
1188
  description?: string;
1152
1189
  categories?: string[];
1153
- packageMeta?: {
1154
- label?: string;
1155
- id?: string;
1156
- version?: string;
1157
- categories?: string[];
1158
- description?: string;
1159
- icon?: string;
1160
- iconType?: string;
1161
- recommendedSteps?: string[];
1162
- shape?: string;
1163
- tags?: string[];
1164
- } & Record<any, any>;
1190
+ packageMeta?: z.objectOutputType<{
1191
+ label: z.ZodOptional<z.ZodString>;
1192
+ name: z.ZodOptional<z.ZodString>;
1193
+ id: z.ZodOptional<z.ZodString>;
1194
+ version: z.ZodOptional<z.ZodString>;
1195
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1196
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1197
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1198
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1199
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1200
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1201
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1202
+ }, z.ZodTypeAny, "passthrough">;
1165
1203
  id?: string;
1166
1204
  schemaType?: "UNKNOWN" | "LEGACY" | "EXTERNAL";
1167
1205
  }, {
@@ -1184,6 +1222,67 @@ export declare const GetPackageByIdResponse: z.ZodObject<{
1184
1222
  };
1185
1223
  };
1186
1224
  servingType?: string;
1225
+ createdAt?: string | Date;
1226
+ revisionId?: string;
1227
+ name?: string;
1228
+ description?: string;
1229
+ categories?: string[];
1230
+ packageMeta?: z.objectInputType<{
1231
+ label: z.ZodOptional<z.ZodString>;
1232
+ name: z.ZodOptional<z.ZodString>;
1233
+ id: z.ZodOptional<z.ZodString>;
1234
+ version: z.ZodOptional<z.ZodString>;
1235
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1236
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1237
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1238
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1239
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1240
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1241
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1242
+ }, z.ZodTypeAny, "passthrough">;
1243
+ id?: string;
1244
+ schemaType?: "UNKNOWN" | "LEGACY" | "EXTERNAL";
1245
+ }>, z.ZodObject<{
1246
+ releaseNotes: z.ZodOptional<z.ZodOptional<z.ZodObject<{
1247
+ markdown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1248
+ }, "strip", z.ZodTypeAny, {
1249
+ markdown?: string;
1250
+ }, {
1251
+ markdown?: string;
1252
+ }>>>;
1253
+ member: z.ZodOptional<z.ZodObject<{
1254
+ account: z.ZodOptional<z.ZodArray<z.ZodObject<{
1255
+ accountId: z.ZodString;
1256
+ }, "strip", z.ZodTypeAny, {
1257
+ accountId?: string;
1258
+ }, {
1259
+ accountId?: string;
1260
+ }>, "many">>;
1261
+ user: z.ZodOptional<z.ZodArray<z.ZodObject<{
1262
+ userId: z.ZodString;
1263
+ }, "strip", z.ZodTypeAny, {
1264
+ userId?: string;
1265
+ }, {
1266
+ userId?: string;
1267
+ }>, "many">>;
1268
+ }, "strip", z.ZodTypeAny, {
1269
+ account?: {
1270
+ accountId?: string;
1271
+ }[];
1272
+ user?: {
1273
+ userId?: string;
1274
+ }[];
1275
+ }, {
1276
+ account?: {
1277
+ accountId?: string;
1278
+ }[];
1279
+ user?: {
1280
+ userId?: string;
1281
+ }[];
1282
+ }>>;
1283
+ membersAccountIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1284
+ membersUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1285
+ }, "strip", z.ZodTypeAny, {
1187
1286
  releaseNotes?: {
1188
1287
  markdown?: string;
1189
1288
  };
@@ -1197,29 +1296,25 @@ export declare const GetPackageByIdResponse: z.ZodObject<{
1197
1296
  };
1198
1297
  membersAccountIds?: string[];
1199
1298
  membersUserIds?: string[];
1200
- createdAt?: string | Date;
1201
- revisionId?: string;
1202
- name?: string;
1203
- description?: string;
1204
- categories?: string[];
1205
- packageMeta?: {
1206
- label?: string;
1207
- id?: string;
1208
- version?: string;
1209
- categories?: string[];
1210
- description?: string;
1211
- icon?: string;
1212
- iconType?: string;
1213
- recommendedSteps?: string[];
1214
- shape?: string;
1215
- tags?: string[];
1216
- } & Record<any, any>;
1217
- id?: string;
1218
- schemaType?: "UNKNOWN" | "LEGACY" | "EXTERNAL";
1219
- }>;
1220
- export declare const GetPackageByIdLatestResponse: z.ZodObject<{
1221
- packageMeta: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
1299
+ }, {
1300
+ releaseNotes?: {
1301
+ markdown?: string;
1302
+ };
1303
+ member?: {
1304
+ account?: {
1305
+ accountId?: string;
1306
+ }[];
1307
+ user?: {
1308
+ userId?: string;
1309
+ }[];
1310
+ };
1311
+ membersAccountIds?: string[];
1312
+ membersUserIds?: string[];
1313
+ }>>;
1314
+ export declare const GetPackageByIdLatestResponse: z.ZodIntersection<z.ZodObject<{
1315
+ packageMeta: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1222
1316
  label: z.ZodOptional<z.ZodString>;
1317
+ name: z.ZodOptional<z.ZodString>;
1223
1318
  id: z.ZodOptional<z.ZodString>;
1224
1319
  version: z.ZodOptional<z.ZodString>;
1225
1320
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1229,29 +1324,31 @@ export declare const GetPackageByIdLatestResponse: z.ZodObject<{
1229
1324
  recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1230
1325
  shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1231
1326
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1232
- }, "strip", z.ZodTypeAny, {
1233
- label?: string;
1234
- id?: string;
1235
- version?: string;
1236
- categories?: string[];
1237
- description?: string;
1238
- icon?: string;
1239
- iconType?: string;
1240
- recommendedSteps?: string[];
1241
- shape?: string;
1242
- tags?: string[];
1243
- }, {
1244
- label?: string;
1245
- id?: string;
1246
- version?: string;
1247
- categories?: string[];
1248
- description?: string;
1249
- icon?: string;
1250
- iconType?: string;
1251
- recommendedSteps?: string[];
1252
- shape?: string;
1253
- tags?: string[];
1254
- }>, z.ZodRecord<z.ZodAny, z.ZodAny>>>;
1327
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1328
+ label: z.ZodOptional<z.ZodString>;
1329
+ name: z.ZodOptional<z.ZodString>;
1330
+ id: z.ZodOptional<z.ZodString>;
1331
+ version: z.ZodOptional<z.ZodString>;
1332
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1333
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1334
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1335
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1336
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1337
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1338
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1339
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1340
+ label: z.ZodOptional<z.ZodString>;
1341
+ name: z.ZodOptional<z.ZodString>;
1342
+ id: z.ZodOptional<z.ZodString>;
1343
+ version: z.ZodOptional<z.ZodString>;
1344
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1345
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1346
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1347
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1348
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1349
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1350
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1351
+ }, z.ZodTypeAny, "passthrough">>>>;
1255
1352
  id: z.ZodString;
1256
1353
  schemaType: z.ZodNativeEnum<{
1257
1354
  LEGACY: "LEGACY";
@@ -1259,45 +1356,159 @@ export declare const GetPackageByIdLatestResponse: z.ZodObject<{
1259
1356
  UNKNOWN: "UNKNOWN";
1260
1357
  }>;
1261
1358
  version: z.ZodString;
1359
+ name: z.ZodOptional<z.ZodString>;
1262
1360
  baseUrl: z.ZodString;
1263
1361
  servingType: z.ZodOptional<z.ZodString>;
1264
- }, "strip", z.ZodTypeAny, {
1265
- packageMeta?: {
1266
- label?: string;
1267
- id?: string;
1362
+ releases: z.ZodDefault<z.ZodArray<z.ZodObject<{
1363
+ status: z.ZodNativeEnum<{
1364
+ TEST_ONLY: "TEST_ONLY";
1365
+ PENDING: "PENDING";
1366
+ EXTRACTING: "EXTRACTING";
1367
+ UPLOADED: "UPLOADED";
1368
+ BETA: "BETA";
1369
+ RELEASED: "RELEASED";
1370
+ ACCOUNT_BETA: "ACCOUNT_BETA";
1371
+ DEPRECATED: "DEPRECATED";
1372
+ }>;
1373
+ level: z.ZodNativeEnum<{
1374
+ USER: "USER";
1375
+ ACCOUNT: "ACCOUNT";
1376
+ PDE: "PDE";
1377
+ }>;
1378
+ version: z.ZodString;
1379
+ primaryId: z.ZodOptional<z.ZodNumber>;
1380
+ }, "strip", z.ZodTypeAny, {
1381
+ status?: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
1382
+ level?: "USER" | "ACCOUNT" | "PDE";
1383
+ version?: string;
1384
+ primaryId?: number;
1385
+ }, {
1386
+ status?: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
1387
+ level?: "USER" | "ACCOUNT" | "PDE";
1268
1388
  version?: string;
1269
- categories?: string[];
1270
- description?: string;
1271
- icon?: string;
1272
- iconType?: string;
1273
- recommendedSteps?: string[];
1274
- shape?: string;
1275
- tags?: string[];
1276
- } & Record<any, any>;
1389
+ primaryId?: number;
1390
+ }>, "many">>;
1391
+ }, "strip", z.ZodTypeAny, {
1392
+ packageMeta?: z.objectOutputType<{
1393
+ label: z.ZodOptional<z.ZodString>;
1394
+ name: z.ZodOptional<z.ZodString>;
1395
+ id: z.ZodOptional<z.ZodString>;
1396
+ version: z.ZodOptional<z.ZodString>;
1397
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1398
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1399
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1400
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1401
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1402
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1403
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1404
+ }, z.ZodTypeAny, "passthrough">;
1277
1405
  id?: string;
1278
1406
  schemaType?: "UNKNOWN" | "LEGACY" | "EXTERNAL";
1279
1407
  version?: string;
1408
+ name?: string;
1280
1409
  baseUrl?: string;
1281
1410
  servingType?: string;
1282
- }, {
1283
- packageMeta?: {
1284
- label?: string;
1285
- id?: string;
1411
+ releases?: {
1412
+ status?: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
1413
+ level?: "USER" | "ACCOUNT" | "PDE";
1286
1414
  version?: string;
1287
- categories?: string[];
1288
- description?: string;
1289
- icon?: string;
1290
- iconType?: string;
1291
- recommendedSteps?: string[];
1292
- shape?: string;
1293
- tags?: string[];
1294
- } & Record<any, any>;
1415
+ primaryId?: number;
1416
+ }[];
1417
+ }, {
1418
+ packageMeta?: z.objectInputType<{
1419
+ label: z.ZodOptional<z.ZodString>;
1420
+ name: z.ZodOptional<z.ZodString>;
1421
+ id: z.ZodOptional<z.ZodString>;
1422
+ version: z.ZodOptional<z.ZodString>;
1423
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1424
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1425
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1426
+ iconType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1427
+ recommendedSteps: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1428
+ shape: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1429
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1430
+ }, z.ZodTypeAny, "passthrough">;
1295
1431
  id?: string;
1296
1432
  schemaType?: "UNKNOWN" | "LEGACY" | "EXTERNAL";
1297
1433
  version?: string;
1434
+ name?: string;
1298
1435
  baseUrl?: string;
1299
1436
  servingType?: string;
1300
- }>;
1437
+ releases?: {
1438
+ status?: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
1439
+ level?: "USER" | "ACCOUNT" | "PDE";
1440
+ version?: string;
1441
+ primaryId?: number;
1442
+ }[];
1443
+ }>, z.ZodObject<{
1444
+ releaseNotes: z.ZodOptional<z.ZodOptional<z.ZodObject<{
1445
+ markdown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1446
+ }, "strip", z.ZodTypeAny, {
1447
+ markdown?: string;
1448
+ }, {
1449
+ markdown?: string;
1450
+ }>>>;
1451
+ member: z.ZodOptional<z.ZodObject<{
1452
+ account: z.ZodOptional<z.ZodArray<z.ZodObject<{
1453
+ accountId: z.ZodString;
1454
+ }, "strip", z.ZodTypeAny, {
1455
+ accountId?: string;
1456
+ }, {
1457
+ accountId?: string;
1458
+ }>, "many">>;
1459
+ user: z.ZodOptional<z.ZodArray<z.ZodObject<{
1460
+ userId: z.ZodString;
1461
+ }, "strip", z.ZodTypeAny, {
1462
+ userId?: string;
1463
+ }, {
1464
+ userId?: string;
1465
+ }>, "many">>;
1466
+ }, "strip", z.ZodTypeAny, {
1467
+ account?: {
1468
+ accountId?: string;
1469
+ }[];
1470
+ user?: {
1471
+ userId?: string;
1472
+ }[];
1473
+ }, {
1474
+ account?: {
1475
+ accountId?: string;
1476
+ }[];
1477
+ user?: {
1478
+ userId?: string;
1479
+ }[];
1480
+ }>>;
1481
+ membersAccountIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1482
+ membersUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1483
+ }, "strip", z.ZodTypeAny, {
1484
+ releaseNotes?: {
1485
+ markdown?: string;
1486
+ };
1487
+ member?: {
1488
+ account?: {
1489
+ accountId?: string;
1490
+ }[];
1491
+ user?: {
1492
+ userId?: string;
1493
+ }[];
1494
+ };
1495
+ membersAccountIds?: string[];
1496
+ membersUserIds?: string[];
1497
+ }, {
1498
+ releaseNotes?: {
1499
+ markdown?: string;
1500
+ };
1501
+ member?: {
1502
+ account?: {
1503
+ accountId?: string;
1504
+ }[];
1505
+ user?: {
1506
+ userId?: string;
1507
+ }[];
1508
+ };
1509
+ membersAccountIds?: string[];
1510
+ membersUserIds?: string[];
1511
+ }>>;
1301
1512
  export declare const GetPackageArchiveSignedUrl: z.ZodObject<{
1302
1513
  key: z.ZodString;
1303
1514
  url: z.ZodString;