@or-sdk/library-types-v2 6.0.21 → 7.0.0-tryboundletypes-20240228130752

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/library-types-v2",
3
- "version": "6.0.21",
3
+ "version": "7.0.0-tryboundletypes-20240228130752",
4
4
  "description": "Request/response v2 types for the OR SDK",
5
5
  "files": [
6
6
  "./dist",
@@ -16,15 +16,16 @@
16
16
  "keywords": [],
17
17
  "author": "bohdan.cherniavskyi@onereach.com",
18
18
  "license": "UNLICENSED",
19
- "dependencies": {},
20
- "devDependencies": {
19
+ "dependencies": {
21
20
  "nestjs-zod": "3.0.0",
22
- "zod": "3.22.4",
23
- "@or-sdk/library-prisma": "6.0.13"
21
+ "zod": "3.22.4"
22
+ },
23
+ "devDependencies": {
24
+ "@or-sdk/library-prisma": "6.0.18"
24
25
  },
25
26
  "scripts": {
26
27
  "build:nest": "npx ts-node ./esbuild.nest.ts",
27
- "build:browser": "npx ts-node ./esbuild.browser.ts",
28
+ "build:browser": "npx ts-node ./esbuild.browser.ts && npx dts-bundle-generator --external-inlines=@or-sdk/library-prisma -o ./dist/types/index.d.ts src/index.ts",
28
29
  "lint": "npx eslint . --ext .ts --config .eslintrc --fix"
29
30
  }
30
31
  }
@@ -1,13 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const CreatedBy: z.ZodUnion<[z.ZodObject<Pick<{
3
- id: z.ZodNumber;
4
- accountId: z.ZodString;
5
- userId: z.ZodString;
6
- createdAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
7
- }, "accountId" | "userId">, "strip", z.ZodTypeAny, {
8
- accountId?: string;
9
- userId?: string;
10
- }, {
11
- accountId?: string;
12
- userId?: string;
13
- }>, z.ZodNullable<z.ZodAny>]>;
@@ -1,68 +0,0 @@
1
- import { Prisma } from '@or-sdk/library-prisma';
2
- import { z } from 'zod';
3
- export declare const ListView: z.ZodObject<{
4
- items: z.ZodArray<z.ZodAny, "many">;
5
- total: z.ZodNumber;
6
- cursor: z.ZodObject<{
7
- skip: z.ZodNumber;
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">>;
22
- }, "strip", z.ZodTypeAny, {
23
- items?: any[];
24
- total?: number;
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">;
31
- }, {
32
- items?: any[];
33
- total?: number;
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">;
40
- }>;
41
- export declare enum OrderByEnum {
42
- createdAt = "createdAt",
43
- updatedAt = "updatedAt",
44
- label = "label"
45
- }
46
- export declare const PaginationParamsFunc: ({ orderByEnum, orderByDefault, orderDefault, }: {
47
- orderByEnum?: z.EnumLike;
48
- orderByDefault?: string;
49
- orderDefault?: Prisma.SortOrder;
50
- }) => z.ZodObject<{
51
- orderBy: z.ZodDefault<z.ZodNativeEnum<z.EnumLike>>;
52
- order: z.ZodDefault<z.ZodNativeEnum<{
53
- asc: "asc";
54
- desc: "desc";
55
- }>>;
56
- skip: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
57
- take: z.ZodDefault<z.ZodEffects<z.ZodAny, number, any>>;
58
- }, "strip", z.ZodTypeAny, {
59
- orderBy?: string | number;
60
- order?: "asc" | "desc";
61
- skip?: number;
62
- take?: number;
63
- }, {
64
- orderBy?: string | number;
65
- order?: "asc" | "desc";
66
- skip?: any;
67
- take?: any;
68
- }>;
@@ -1,352 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const PackageMeta: z.ZodObject<{
3
- categories: z.ZodArray<z.ZodString, "many">;
4
- description: z.ZodString;
5
- version: z.ZodString;
6
- id: z.ZodString;
7
- label: z.ZodString;
8
- icon: z.ZodOptional<z.ZodString>;
9
- iconType: z.ZodOptional<z.ZodString>;
10
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11
- shape: z.ZodOptional<z.ZodString>;
12
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
14
- categories: z.ZodArray<z.ZodString, "many">;
15
- description: z.ZodString;
16
- version: z.ZodString;
17
- id: z.ZodString;
18
- label: z.ZodString;
19
- icon: z.ZodOptional<z.ZodString>;
20
- iconType: z.ZodOptional<z.ZodString>;
21
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22
- shape: z.ZodOptional<z.ZodString>;
23
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
24
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
25
- categories: z.ZodArray<z.ZodString, "many">;
26
- description: z.ZodString;
27
- version: z.ZodString;
28
- id: z.ZodString;
29
- label: z.ZodString;
30
- icon: z.ZodOptional<z.ZodString>;
31
- iconType: z.ZodOptional<z.ZodString>;
32
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
33
- shape: z.ZodOptional<z.ZodString>;
34
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
35
- }, z.ZodTypeAny, "passthrough">>;
36
- export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
37
- type: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum>;
38
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39
- version: z.ZodString;
40
- id: z.ZodString;
41
- label: z.ZodString;
42
- revisionId: z.ZodString;
43
- membersAccountIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
44
- membersUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45
- releaseNotesMarkdown: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
46
- schemaType: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageSchemaTypeEnum>;
47
- data: z.ZodNullable<z.ZodOptional<z.ZodAny>>;
48
- meta: z.ZodObject<{
49
- categories: z.ZodArray<z.ZodString, "many">;
50
- description: z.ZodString;
51
- version: z.ZodString;
52
- id: z.ZodString;
53
- label: z.ZodString;
54
- icon: z.ZodOptional<z.ZodString>;
55
- iconType: z.ZodOptional<z.ZodString>;
56
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
57
- shape: z.ZodOptional<z.ZodString>;
58
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
59
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
60
- categories: z.ZodArray<z.ZodString, "many">;
61
- description: z.ZodString;
62
- version: z.ZodString;
63
- id: z.ZodString;
64
- label: z.ZodString;
65
- icon: z.ZodOptional<z.ZodString>;
66
- iconType: z.ZodOptional<z.ZodString>;
67
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
68
- shape: z.ZodOptional<z.ZodString>;
69
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
70
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
71
- categories: z.ZodArray<z.ZodString, "many">;
72
- description: z.ZodString;
73
- version: z.ZodString;
74
- id: z.ZodString;
75
- label: z.ZodString;
76
- icon: z.ZodOptional<z.ZodString>;
77
- iconType: z.ZodOptional<z.ZodString>;
78
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
79
- shape: z.ZodOptional<z.ZodString>;
80
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
81
- }, z.ZodTypeAny, "passthrough">>;
82
- fileNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
83
- categories: z.ZodArray<z.ZodString, "many">;
84
- statusDetailsSystem: z.ZodOptional<z.ZodObject<Pick<{
85
- id: z.ZodNumber;
86
- status: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum>;
87
- packageReleaseRevisionId: z.ZodString;
88
- createdById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
89
- modifiedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
90
- createdAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
91
- updatedAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
92
- }, "status">, "strip", z.ZodTypeAny, {
93
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
94
- }, {
95
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
96
- }>>;
97
- statusDetailsRelease: z.ZodObject<Pick<{
98
- id: z.ZodNumber;
99
- status: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum>;
100
- level: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsLevelEnum>;
101
- packageReleaseRevisionId: z.ZodString;
102
- createdById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
103
- modifiedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
104
- createdAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
105
- updatedAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
106
- }, "status" | "level">, "strip", z.ZodTypeAny, {
107
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
108
- level?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsLevelEnum;
109
- }, {
110
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
111
- level?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsLevelEnum;
112
- }>;
113
- }, "strip", z.ZodTypeAny, {
114
- type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
115
- description?: string;
116
- version?: string;
117
- id?: string;
118
- label?: string;
119
- revisionId?: string;
120
- membersAccountIds?: string[];
121
- membersUserIds?: string[];
122
- releaseNotesMarkdown?: string;
123
- schemaType?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageSchemaTypeEnum;
124
- data?: any;
125
- meta?: z.objectOutputType<{
126
- categories: z.ZodArray<z.ZodString, "many">;
127
- description: z.ZodString;
128
- version: z.ZodString;
129
- id: z.ZodString;
130
- label: z.ZodString;
131
- icon: z.ZodOptional<z.ZodString>;
132
- iconType: z.ZodOptional<z.ZodString>;
133
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
134
- shape: z.ZodOptional<z.ZodString>;
135
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
136
- }, z.ZodTypeAny, "passthrough">;
137
- fileNames?: string[];
138
- categories?: string[];
139
- statusDetailsSystem?: {
140
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
141
- };
142
- statusDetailsRelease?: {
143
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
144
- level?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsLevelEnum;
145
- };
146
- }, {
147
- type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
148
- description?: string;
149
- version?: string;
150
- id?: string;
151
- label?: string;
152
- revisionId?: string;
153
- membersAccountIds?: string[];
154
- membersUserIds?: string[];
155
- releaseNotesMarkdown?: string;
156
- schemaType?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageSchemaTypeEnum;
157
- data?: any;
158
- meta?: z.objectInputType<{
159
- categories: z.ZodArray<z.ZodString, "many">;
160
- description: z.ZodString;
161
- version: z.ZodString;
162
- id: z.ZodString;
163
- label: z.ZodString;
164
- icon: z.ZodOptional<z.ZodString>;
165
- iconType: z.ZodOptional<z.ZodString>;
166
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
167
- shape: z.ZodOptional<z.ZodString>;
168
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
169
- }, z.ZodTypeAny, "passthrough">;
170
- fileNames?: string[];
171
- categories?: string[];
172
- statusDetailsSystem?: {
173
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
174
- };
175
- statusDetailsRelease?: {
176
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
177
- level?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsLevelEnum;
178
- };
179
- }>, {
180
- type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
181
- description?: string;
182
- version?: string;
183
- id?: string;
184
- label?: string;
185
- revisionId?: string;
186
- membersAccountIds?: string[];
187
- membersUserIds?: string[];
188
- releaseNotesMarkdown?: string;
189
- schemaType?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageSchemaTypeEnum;
190
- data?: any;
191
- meta?: z.objectOutputType<{
192
- categories: z.ZodArray<z.ZodString, "many">;
193
- description: z.ZodString;
194
- version: z.ZodString;
195
- id: z.ZodString;
196
- label: z.ZodString;
197
- icon: z.ZodOptional<z.ZodString>;
198
- iconType: z.ZodOptional<z.ZodString>;
199
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
200
- shape: z.ZodOptional<z.ZodString>;
201
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
202
- }, z.ZodTypeAny, "passthrough">;
203
- fileNames?: string[];
204
- categories?: string[];
205
- statusDetailsSystem?: {
206
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
207
- };
208
- statusDetailsRelease?: {
209
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
210
- level?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsLevelEnum;
211
- };
212
- }, {
213
- type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
214
- description?: string;
215
- version?: string;
216
- id?: string;
217
- label?: string;
218
- revisionId?: string;
219
- membersAccountIds?: string[];
220
- membersUserIds?: string[];
221
- releaseNotesMarkdown?: string;
222
- schemaType?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageSchemaTypeEnum;
223
- data?: any;
224
- meta?: z.objectInputType<{
225
- categories: z.ZodArray<z.ZodString, "many">;
226
- description: z.ZodString;
227
- version: z.ZodString;
228
- id: z.ZodString;
229
- label: z.ZodString;
230
- icon: z.ZodOptional<z.ZodString>;
231
- iconType: z.ZodOptional<z.ZodString>;
232
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
233
- shape: z.ZodOptional<z.ZodString>;
234
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
235
- }, z.ZodTypeAny, "passthrough">;
236
- fileNames?: string[];
237
- categories?: string[];
238
- statusDetailsSystem?: {
239
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
240
- };
241
- statusDetailsRelease?: {
242
- status?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsStatusEnum;
243
- level?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageStatusDetailsLevelEnum;
244
- };
245
- }>;
246
- export declare const UpdatePackageByRevisionBody: z.ZodObject<{
247
- categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
248
- description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
249
- label: z.ZodOptional<z.ZodString>;
250
- membersAccountIds: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
251
- membersUserIds: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
252
- meta: z.ZodOptional<z.ZodObject<{
253
- categories: z.ZodArray<z.ZodString, "many">;
254
- description: z.ZodString;
255
- version: z.ZodString;
256
- id: z.ZodString;
257
- label: z.ZodString;
258
- icon: z.ZodOptional<z.ZodString>;
259
- iconType: z.ZodOptional<z.ZodString>;
260
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
261
- shape: z.ZodOptional<z.ZodString>;
262
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
263
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
264
- categories: z.ZodArray<z.ZodString, "many">;
265
- description: z.ZodString;
266
- version: z.ZodString;
267
- id: z.ZodString;
268
- label: z.ZodString;
269
- icon: z.ZodOptional<z.ZodString>;
270
- iconType: z.ZodOptional<z.ZodString>;
271
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
272
- shape: z.ZodOptional<z.ZodString>;
273
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
274
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
275
- categories: z.ZodArray<z.ZodString, "many">;
276
- description: z.ZodString;
277
- version: z.ZodString;
278
- id: z.ZodString;
279
- label: z.ZodString;
280
- icon: z.ZodOptional<z.ZodString>;
281
- iconType: z.ZodOptional<z.ZodString>;
282
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
283
- shape: z.ZodOptional<z.ZodString>;
284
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
285
- }, z.ZodTypeAny, "passthrough">>>;
286
- releaseNotesMarkdown: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>;
287
- }, "strip", z.ZodTypeAny, {
288
- categories?: string[];
289
- description?: string;
290
- label?: string;
291
- membersAccountIds?: string[];
292
- membersUserIds?: string[];
293
- meta?: z.objectOutputType<{
294
- categories: z.ZodArray<z.ZodString, "many">;
295
- description: z.ZodString;
296
- version: z.ZodString;
297
- id: z.ZodString;
298
- label: z.ZodString;
299
- icon: z.ZodOptional<z.ZodString>;
300
- iconType: z.ZodOptional<z.ZodString>;
301
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
302
- shape: z.ZodOptional<z.ZodString>;
303
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
304
- }, z.ZodTypeAny, "passthrough">;
305
- releaseNotesMarkdown?: string;
306
- }, {
307
- categories?: string[];
308
- description?: string;
309
- label?: string;
310
- membersAccountIds?: string[];
311
- membersUserIds?: string[];
312
- meta?: z.objectInputType<{
313
- categories: z.ZodArray<z.ZodString, "many">;
314
- description: z.ZodString;
315
- version: z.ZodString;
316
- id: z.ZodString;
317
- label: z.ZodString;
318
- icon: z.ZodOptional<z.ZodString>;
319
- iconType: z.ZodOptional<z.ZodString>;
320
- recommendedSteps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
321
- shape: z.ZodOptional<z.ZodString>;
322
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
323
- }, z.ZodTypeAny, "passthrough">;
324
- releaseNotesMarkdown?: string;
325
- }>;
326
- export declare const AddPackageDependenciesBody: z.ZodObject<{
327
- type: z.ZodNativeEnum<{
328
- BOT_TEMPLATE: "BOT_TEMPLATE";
329
- CONTENT: "CONTENT";
330
- CONTENT_INPUT: "CONTENT_INPUT";
331
- FLOW_TEMPLATE: "FLOW_TEMPLATE";
332
- NPM_UNPACKED: "NPM_UNPACKED";
333
- RWC_INPUT: "RWC_INPUT";
334
- S3_BUCKET: "S3_BUCKET";
335
- STEP: "STEP";
336
- STEP_INPUT: "STEP_INPUT";
337
- STEP_TEMPLATE: "STEP_TEMPLATE";
338
- TEST_ONLY: "TEST_ONLY";
339
- TICKET_INPUT: "TICKET_INPUT";
340
- UNKNOWN: "UNKNOWN";
341
- }>;
342
- value: z.ZodString;
343
- id: z.ZodOptional<z.ZodString>;
344
- }, "strip", z.ZodTypeAny, {
345
- type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
346
- value?: string;
347
- id?: string;
348
- }, {
349
- type?: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
350
- value?: string;
351
- id?: string;
352
- }>;
@@ -1,3 +0,0 @@
1
- export * from './body';
2
- export * from './response';
3
- export * from './params';