@or-sdk/library-types-v2 6.0.8 → 6.0.10
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/CHANGELOG.md +12 -0
- package/dist/cjs/index.js +140 -72
- package/dist/cjs/index.js.map +3 -3
- package/dist/esm/index.js +140 -72
- package/dist/esm/index.js.map +3 -3
- package/dist/types/List.d.ts +9 -4
- package/dist/types/Packages/params.d.ts +75 -110
- package/dist/types/Packages/response.d.ts +391 -38
- package/dist/types/index.d.ts +3 -0
- package/package.json +2 -2
package/dist/types/List.d.ts
CHANGED
|
@@ -35,12 +35,17 @@ export declare const ListView: z.ZodObject<{
|
|
|
35
35
|
filter?: any;
|
|
36
36
|
scope?: any;
|
|
37
37
|
}>;
|
|
38
|
+
export declare enum OrderByEnum {
|
|
39
|
+
createdAt = "createdAt",
|
|
40
|
+
updatedAt = "updatedAt",
|
|
41
|
+
label = "label"
|
|
42
|
+
}
|
|
38
43
|
export declare const PaginationParamsFunc: ({ orderByEnum, orderByDefault, orderDefault, }: {
|
|
39
|
-
orderByEnum?:
|
|
44
|
+
orderByEnum?: z.EnumLike;
|
|
40
45
|
orderByDefault?: string;
|
|
41
46
|
orderDefault?: Prisma.SortOrder;
|
|
42
47
|
}) => z.ZodObject<{
|
|
43
|
-
orderBy: z.ZodDefault<z.
|
|
48
|
+
orderBy: z.ZodDefault<z.ZodNativeEnum<z.EnumLike>>;
|
|
44
49
|
order: z.ZodDefault<z.ZodNativeEnum<{
|
|
45
50
|
asc: "asc";
|
|
46
51
|
desc: "desc";
|
|
@@ -48,12 +53,12 @@ export declare const PaginationParamsFunc: ({ orderByEnum, orderByDefault, order
|
|
|
48
53
|
skip: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
|
|
49
54
|
take: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
|
|
50
55
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
orderBy?: string;
|
|
56
|
+
orderBy?: string | number;
|
|
52
57
|
order?: "asc" | "desc";
|
|
53
58
|
skip?: number;
|
|
54
59
|
take?: number;
|
|
55
60
|
}, {
|
|
56
|
-
orderBy?: string;
|
|
61
|
+
orderBy?: string | number;
|
|
57
62
|
order?: "asc" | "desc";
|
|
58
63
|
skip?: any;
|
|
59
64
|
take?: any;
|
|
@@ -4,46 +4,46 @@ export declare const UniversalPackageParams: z.ZodObject<{
|
|
|
4
4
|
revisionId: z.ZodOptional<z.ZodString>;
|
|
5
5
|
version: z.ZodOptional<z.ZodString>;
|
|
6
6
|
type: z.ZodNativeEnum<{
|
|
7
|
-
TEST_ONLY: "TEST_ONLY";
|
|
8
|
-
UNKNOWN: "UNKNOWN";
|
|
9
|
-
STEP: "STEP";
|
|
10
|
-
STEP_INPUT: "STEP_INPUT";
|
|
11
|
-
STEP_TEMPLATE: "STEP_TEMPLATE";
|
|
12
|
-
FLOW_TEMPLATE: "FLOW_TEMPLATE";
|
|
13
7
|
BOT_TEMPLATE: "BOT_TEMPLATE";
|
|
14
|
-
TICKET_INPUT: "TICKET_INPUT";
|
|
15
|
-
CONTENT_INPUT: "CONTENT_INPUT";
|
|
16
8
|
CONTENT: "CONTENT";
|
|
9
|
+
CONTENT_INPUT: "CONTENT_INPUT";
|
|
10
|
+
FLOW_TEMPLATE: "FLOW_TEMPLATE";
|
|
17
11
|
NPM_UNPACKED: "NPM_UNPACKED";
|
|
18
|
-
S3_BUCKET: "S3_BUCKET";
|
|
19
12
|
RWC_INPUT: "RWC_INPUT";
|
|
13
|
+
S3_BUCKET: "S3_BUCKET";
|
|
14
|
+
STEP: "STEP";
|
|
15
|
+
STEP_INPUT: "STEP_INPUT";
|
|
16
|
+
STEP_TEMPLATE: "STEP_TEMPLATE";
|
|
17
|
+
TEST_ONLY: "TEST_ONLY";
|
|
18
|
+
TICKET_INPUT: "TICKET_INPUT";
|
|
19
|
+
UNKNOWN: "UNKNOWN";
|
|
20
20
|
}>;
|
|
21
21
|
}, "strip", z.ZodTypeAny, {
|
|
22
22
|
id?: string;
|
|
23
23
|
revisionId?: string;
|
|
24
24
|
version?: string;
|
|
25
|
-
type?: "
|
|
25
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
26
26
|
}, {
|
|
27
27
|
id?: string;
|
|
28
28
|
revisionId?: string;
|
|
29
29
|
version?: string;
|
|
30
|
-
type?: "
|
|
30
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
31
31
|
}>;
|
|
32
32
|
export declare const AddPackageReleaseSystemStatusParams: z.ZodObject<{
|
|
33
33
|
type: z.ZodNativeEnum<{
|
|
34
|
-
TEST_ONLY: "TEST_ONLY";
|
|
35
|
-
UNKNOWN: "UNKNOWN";
|
|
36
|
-
STEP: "STEP";
|
|
37
|
-
STEP_INPUT: "STEP_INPUT";
|
|
38
|
-
STEP_TEMPLATE: "STEP_TEMPLATE";
|
|
39
|
-
FLOW_TEMPLATE: "FLOW_TEMPLATE";
|
|
40
34
|
BOT_TEMPLATE: "BOT_TEMPLATE";
|
|
41
|
-
TICKET_INPUT: "TICKET_INPUT";
|
|
42
|
-
CONTENT_INPUT: "CONTENT_INPUT";
|
|
43
35
|
CONTENT: "CONTENT";
|
|
36
|
+
CONTENT_INPUT: "CONTENT_INPUT";
|
|
37
|
+
FLOW_TEMPLATE: "FLOW_TEMPLATE";
|
|
44
38
|
NPM_UNPACKED: "NPM_UNPACKED";
|
|
45
|
-
S3_BUCKET: "S3_BUCKET";
|
|
46
39
|
RWC_INPUT: "RWC_INPUT";
|
|
40
|
+
S3_BUCKET: "S3_BUCKET";
|
|
41
|
+
STEP: "STEP";
|
|
42
|
+
STEP_INPUT: "STEP_INPUT";
|
|
43
|
+
STEP_TEMPLATE: "STEP_TEMPLATE";
|
|
44
|
+
TEST_ONLY: "TEST_ONLY";
|
|
45
|
+
TICKET_INPUT: "TICKET_INPUT";
|
|
46
|
+
UNKNOWN: "UNKNOWN";
|
|
47
47
|
}>;
|
|
48
48
|
version: z.ZodOptional<z.ZodString>;
|
|
49
49
|
id: z.ZodString;
|
|
@@ -59,13 +59,13 @@ export declare const AddPackageReleaseSystemStatusParams: z.ZodObject<{
|
|
|
59
59
|
DEPRECATED: "DEPRECATED";
|
|
60
60
|
}>;
|
|
61
61
|
}, "strip", z.ZodTypeAny, {
|
|
62
|
-
type?: "
|
|
62
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
63
63
|
version?: string;
|
|
64
64
|
id?: string;
|
|
65
65
|
revisionId?: string;
|
|
66
66
|
status?: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
|
|
67
67
|
}, {
|
|
68
|
-
type?: "
|
|
68
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
69
69
|
version?: string;
|
|
70
70
|
id?: string;
|
|
71
71
|
revisionId?: string;
|
|
@@ -73,19 +73,19 @@ export declare const AddPackageReleaseSystemStatusParams: z.ZodObject<{
|
|
|
73
73
|
}>;
|
|
74
74
|
export declare const AddPackageReleaseReleaseStatusParams: z.ZodObject<{
|
|
75
75
|
type: z.ZodNativeEnum<{
|
|
76
|
-
TEST_ONLY: "TEST_ONLY";
|
|
77
|
-
UNKNOWN: "UNKNOWN";
|
|
78
|
-
STEP: "STEP";
|
|
79
|
-
STEP_INPUT: "STEP_INPUT";
|
|
80
|
-
STEP_TEMPLATE: "STEP_TEMPLATE";
|
|
81
|
-
FLOW_TEMPLATE: "FLOW_TEMPLATE";
|
|
82
76
|
BOT_TEMPLATE: "BOT_TEMPLATE";
|
|
83
|
-
TICKET_INPUT: "TICKET_INPUT";
|
|
84
|
-
CONTENT_INPUT: "CONTENT_INPUT";
|
|
85
77
|
CONTENT: "CONTENT";
|
|
78
|
+
CONTENT_INPUT: "CONTENT_INPUT";
|
|
79
|
+
FLOW_TEMPLATE: "FLOW_TEMPLATE";
|
|
86
80
|
NPM_UNPACKED: "NPM_UNPACKED";
|
|
87
|
-
S3_BUCKET: "S3_BUCKET";
|
|
88
81
|
RWC_INPUT: "RWC_INPUT";
|
|
82
|
+
S3_BUCKET: "S3_BUCKET";
|
|
83
|
+
STEP: "STEP";
|
|
84
|
+
STEP_INPUT: "STEP_INPUT";
|
|
85
|
+
STEP_TEMPLATE: "STEP_TEMPLATE";
|
|
86
|
+
TEST_ONLY: "TEST_ONLY";
|
|
87
|
+
TICKET_INPUT: "TICKET_INPUT";
|
|
88
|
+
UNKNOWN: "UNKNOWN";
|
|
89
89
|
}>;
|
|
90
90
|
version: z.ZodOptional<z.ZodString>;
|
|
91
91
|
id: z.ZodString;
|
|
@@ -106,14 +106,14 @@ export declare const AddPackageReleaseReleaseStatusParams: z.ZodObject<{
|
|
|
106
106
|
PDE: "PDE";
|
|
107
107
|
}>;
|
|
108
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
-
type?: "
|
|
109
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
110
110
|
version?: string;
|
|
111
111
|
id?: string;
|
|
112
112
|
revisionId?: string;
|
|
113
113
|
status?: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
|
|
114
114
|
level?: "USER" | "ACCOUNT" | "PDE";
|
|
115
115
|
}, {
|
|
116
|
-
type?: "
|
|
116
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
117
117
|
version?: string;
|
|
118
118
|
id?: string;
|
|
119
119
|
revisionId?: string;
|
|
@@ -164,16 +164,6 @@ export declare const GetPackagesParamsFilter: z.ZodObject<{
|
|
|
164
164
|
in?: any;
|
|
165
165
|
notIn?: any;
|
|
166
166
|
}>>>>;
|
|
167
|
-
servingType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
168
|
-
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
169
|
-
notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
170
|
-
}, "in" | "notIn">, "strip", z.ZodTypeAny, {
|
|
171
|
-
in?: any[];
|
|
172
|
-
notIn?: any[];
|
|
173
|
-
}, {
|
|
174
|
-
in?: any;
|
|
175
|
-
notIn?: any;
|
|
176
|
-
}>>>>;
|
|
177
167
|
statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
178
168
|
status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
179
169
|
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
@@ -252,10 +242,6 @@ export declare const GetPackagesParamsFilter: z.ZodObject<{
|
|
|
252
242
|
in?: any[];
|
|
253
243
|
notIn?: any[];
|
|
254
244
|
};
|
|
255
|
-
servingType?: {
|
|
256
|
-
in?: any[];
|
|
257
|
-
notIn?: any[];
|
|
258
|
-
};
|
|
259
245
|
statusDetailsSystem?: {
|
|
260
246
|
status?: {
|
|
261
247
|
in?: any[];
|
|
@@ -288,10 +274,6 @@ export declare const GetPackagesParamsFilter: z.ZodObject<{
|
|
|
288
274
|
in?: any;
|
|
289
275
|
notIn?: any;
|
|
290
276
|
};
|
|
291
|
-
servingType?: {
|
|
292
|
-
in?: any;
|
|
293
|
-
notIn?: any;
|
|
294
|
-
};
|
|
295
277
|
statusDetailsSystem?: {
|
|
296
278
|
status?: {
|
|
297
279
|
in?: any;
|
|
@@ -309,10 +291,15 @@ export declare const GetPackagesParamsFilter: z.ZodObject<{
|
|
|
309
291
|
};
|
|
310
292
|
};
|
|
311
293
|
}>;
|
|
294
|
+
export declare enum GetPackagesParamsOrderByEnum {
|
|
295
|
+
label = "label",
|
|
296
|
+
updatedAt = "updatedAt",
|
|
297
|
+
createdAt = "createdAt"
|
|
298
|
+
}
|
|
312
299
|
export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
313
300
|
take: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
|
|
314
301
|
skip: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
|
|
315
|
-
orderBy: z.ZodDefault<z.
|
|
302
|
+
orderBy: z.ZodDefault<z.ZodNativeEnum<z.EnumLike>>;
|
|
316
303
|
order: z.ZodDefault<z.ZodNativeEnum<{
|
|
317
304
|
asc: "asc";
|
|
318
305
|
desc: "desc";
|
|
@@ -361,16 +348,6 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
361
348
|
in?: any;
|
|
362
349
|
notIn?: any;
|
|
363
350
|
}>>>>;
|
|
364
|
-
servingType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
365
|
-
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
366
|
-
notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
367
|
-
}, "in" | "notIn">, "strip", z.ZodTypeAny, {
|
|
368
|
-
in?: any[];
|
|
369
|
-
notIn?: any[];
|
|
370
|
-
}, {
|
|
371
|
-
in?: any;
|
|
372
|
-
notIn?: any;
|
|
373
|
-
}>>>>;
|
|
374
351
|
statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
375
352
|
status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
376
353
|
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
@@ -449,10 +426,6 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
449
426
|
in?: any[];
|
|
450
427
|
notIn?: any[];
|
|
451
428
|
};
|
|
452
|
-
servingType?: {
|
|
453
|
-
in?: any[];
|
|
454
|
-
notIn?: any[];
|
|
455
|
-
};
|
|
456
429
|
statusDetailsSystem?: {
|
|
457
430
|
status?: {
|
|
458
431
|
in?: any[];
|
|
@@ -485,10 +458,6 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
485
458
|
in?: any;
|
|
486
459
|
notIn?: any;
|
|
487
460
|
};
|
|
488
|
-
servingType?: {
|
|
489
|
-
in?: any;
|
|
490
|
-
notIn?: any;
|
|
491
|
-
};
|
|
492
461
|
statusDetailsSystem?: {
|
|
493
462
|
status?: {
|
|
494
463
|
in?: any;
|
|
@@ -550,16 +519,6 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
550
519
|
in?: any;
|
|
551
520
|
notIn?: any;
|
|
552
521
|
}>>>>;
|
|
553
|
-
servingType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
554
|
-
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
555
|
-
notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
556
|
-
}, "in" | "notIn">, "strip", z.ZodTypeAny, {
|
|
557
|
-
in?: any[];
|
|
558
|
-
notIn?: any[];
|
|
559
|
-
}, {
|
|
560
|
-
in?: any;
|
|
561
|
-
notIn?: any;
|
|
562
|
-
}>>>>;
|
|
563
522
|
statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
564
523
|
status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
565
524
|
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
@@ -649,7 +608,7 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
649
608
|
}, "strip", z.ZodTypeAny, {
|
|
650
609
|
take?: number;
|
|
651
610
|
skip?: number;
|
|
652
|
-
orderBy?: string;
|
|
611
|
+
orderBy?: string | number;
|
|
653
612
|
order?: "asc" | "desc";
|
|
654
613
|
filter?: {
|
|
655
614
|
prerelease?: boolean;
|
|
@@ -667,10 +626,6 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
667
626
|
in?: any[];
|
|
668
627
|
notIn?: any[];
|
|
669
628
|
};
|
|
670
|
-
servingType?: {
|
|
671
|
-
in?: any[];
|
|
672
|
-
notIn?: any[];
|
|
673
|
-
};
|
|
674
629
|
statusDetailsSystem?: {
|
|
675
630
|
status?: {
|
|
676
631
|
in?: any[];
|
|
@@ -704,7 +659,7 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
704
659
|
}, {
|
|
705
660
|
take?: any;
|
|
706
661
|
skip?: any;
|
|
707
|
-
orderBy?: string;
|
|
662
|
+
orderBy?: string | number;
|
|
708
663
|
order?: "asc" | "desc";
|
|
709
664
|
filter?: {
|
|
710
665
|
prerelease?: any;
|
|
@@ -722,10 +677,6 @@ export declare const GetPackagesParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
|
722
677
|
in?: any;
|
|
723
678
|
notIn?: any;
|
|
724
679
|
};
|
|
725
|
-
servingType?: {
|
|
726
|
-
in?: any;
|
|
727
|
-
notIn?: any;
|
|
728
|
-
};
|
|
729
680
|
statusDetailsSystem?: {
|
|
730
681
|
status?: {
|
|
731
682
|
in?: any;
|
|
@@ -801,16 +752,6 @@ export declare const GetPackageParams: z.ZodOptional<z.ZodObject<Pick<{
|
|
|
801
752
|
in?: any;
|
|
802
753
|
notIn?: any;
|
|
803
754
|
}>>>>;
|
|
804
|
-
servingType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
805
|
-
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
806
|
-
notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
807
|
-
}, "in" | "notIn">, "strip", z.ZodTypeAny, {
|
|
808
|
-
in?: any[];
|
|
809
|
-
notIn?: any[];
|
|
810
|
-
}, {
|
|
811
|
-
in?: any;
|
|
812
|
-
notIn?: any;
|
|
813
|
-
}>>>>;
|
|
814
755
|
statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
815
756
|
status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
816
757
|
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
@@ -962,16 +903,6 @@ export declare const DeletePackageParams: z.ZodObject<{
|
|
|
962
903
|
in?: any;
|
|
963
904
|
notIn?: any;
|
|
964
905
|
}>>>>;
|
|
965
|
-
servingType: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
966
|
-
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
967
|
-
notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
968
|
-
}, "in" | "notIn">, "strip", z.ZodTypeAny, {
|
|
969
|
-
in?: any[];
|
|
970
|
-
notIn?: any[];
|
|
971
|
-
}, {
|
|
972
|
-
in?: any;
|
|
973
|
-
notIn?: any;
|
|
974
|
-
}>>>>;
|
|
975
906
|
statusDetailsSystem: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
976
907
|
status: z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
|
|
977
908
|
in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
|
|
@@ -1126,3 +1057,37 @@ export declare const DeletePackageParams: z.ZodObject<{
|
|
|
1126
1057
|
};
|
|
1127
1058
|
};
|
|
1128
1059
|
}>;
|
|
1060
|
+
export declare const PackageDependencyDeleteParams: z.ZodIntersection<z.ZodObject<Pick<{
|
|
1061
|
+
id: z.ZodString;
|
|
1062
|
+
revisionId: z.ZodOptional<z.ZodString>;
|
|
1063
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1064
|
+
type: z.ZodNativeEnum<{
|
|
1065
|
+
BOT_TEMPLATE: "BOT_TEMPLATE";
|
|
1066
|
+
CONTENT: "CONTENT";
|
|
1067
|
+
CONTENT_INPUT: "CONTENT_INPUT";
|
|
1068
|
+
FLOW_TEMPLATE: "FLOW_TEMPLATE";
|
|
1069
|
+
NPM_UNPACKED: "NPM_UNPACKED";
|
|
1070
|
+
RWC_INPUT: "RWC_INPUT";
|
|
1071
|
+
S3_BUCKET: "S3_BUCKET";
|
|
1072
|
+
STEP: "STEP";
|
|
1073
|
+
STEP_INPUT: "STEP_INPUT";
|
|
1074
|
+
STEP_TEMPLATE: "STEP_TEMPLATE";
|
|
1075
|
+
TEST_ONLY: "TEST_ONLY";
|
|
1076
|
+
TICKET_INPUT: "TICKET_INPUT";
|
|
1077
|
+
UNKNOWN: "UNKNOWN";
|
|
1078
|
+
}>;
|
|
1079
|
+
}, "type" | "id" | "revisionId">, "strip", z.ZodTypeAny, {
|
|
1080
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
1081
|
+
id?: string;
|
|
1082
|
+
revisionId?: string;
|
|
1083
|
+
}, {
|
|
1084
|
+
type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
|
|
1085
|
+
id?: string;
|
|
1086
|
+
revisionId?: string;
|
|
1087
|
+
}>, z.ZodObject<{
|
|
1088
|
+
dependencyId: z.ZodString;
|
|
1089
|
+
}, "strip", z.ZodTypeAny, {
|
|
1090
|
+
dependencyId?: string;
|
|
1091
|
+
}, {
|
|
1092
|
+
dependencyId?: string;
|
|
1093
|
+
}>>;
|