@zapier/zapier-sdk 0.12.1 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +137 -76
- package/dist/api/schemas.d.ts +10 -865
- package/dist/api/schemas.d.ts.map +1 -1
- package/dist/api/schemas.js +0 -6
- package/dist/index.cjs +42 -31
- package/dist/index.d.mts +69 -427
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +42 -31
- package/dist/plugins/apps/schemas.d.ts +9 -1
- package/dist/plugins/apps/schemas.d.ts.map +1 -1
- package/dist/plugins/findFirstAuthentication/schemas.js +1 -1
- package/dist/plugins/findUniqueAuthentication/schemas.js +1 -1
- package/dist/plugins/getApp/schemas.js +1 -1
- package/dist/plugins/getAuthentication/index.test.js +1 -1
- package/dist/plugins/listActions/index.d.ts +1 -0
- package/dist/plugins/listActions/index.d.ts.map +1 -1
- package/dist/plugins/listActions/schemas.d.ts +3 -0
- package/dist/plugins/listActions/schemas.d.ts.map +1 -1
- package/dist/plugins/listActions/schemas.js +2 -1
- package/dist/plugins/listApps/index.d.ts +1 -0
- package/dist/plugins/listApps/index.d.ts.map +1 -1
- package/dist/plugins/listApps/schemas.d.ts +3 -0
- package/dist/plugins/listApps/schemas.d.ts.map +1 -1
- package/dist/plugins/listApps/schemas.js +1 -0
- package/dist/plugins/listAuthentications/index.d.ts +1 -0
- package/dist/plugins/listAuthentications/index.d.ts.map +1 -1
- package/dist/plugins/listAuthentications/schemas.d.ts +3 -0
- package/dist/plugins/listAuthentications/schemas.d.ts.map +1 -1
- package/dist/plugins/listAuthentications/schemas.js +2 -1
- package/dist/plugins/listInputFieldChoices/index.d.ts +1 -0
- package/dist/plugins/listInputFieldChoices/index.d.ts.map +1 -1
- package/dist/plugins/listInputFieldChoices/schemas.d.ts +3 -0
- package/dist/plugins/listInputFieldChoices/schemas.d.ts.map +1 -1
- package/dist/plugins/listInputFieldChoices/schemas.js +1 -0
- package/dist/plugins/listInputFields/index.d.ts +1 -0
- package/dist/plugins/listInputFields/index.d.ts.map +1 -1
- package/dist/plugins/listInputFields/schemas.d.ts +3 -0
- package/dist/plugins/listInputFields/schemas.d.ts.map +1 -1
- package/dist/plugins/listInputFields/schemas.js +1 -0
- package/dist/plugins/runAction/index.d.ts +1 -0
- package/dist/plugins/runAction/index.d.ts.map +1 -1
- package/dist/plugins/runAction/schemas.d.ts +3 -0
- package/dist/plugins/runAction/schemas.d.ts.map +1 -1
- package/dist/plugins/runAction/schemas.js +1 -0
- package/dist/schemas/Action.d.ts +4 -206
- package/dist/schemas/Action.d.ts.map +1 -1
- package/dist/schemas/Action.js +3 -2
- package/dist/schemas/App.d.ts.map +1 -1
- package/dist/schemas/App.js +1 -0
- package/dist/schemas/Auth.d.ts +10 -10
- package/dist/schemas/Auth.js +1 -1
- package/dist/types/properties.d.ts.map +1 -1
- package/dist/types/properties.js +4 -1
- package/dist/utils/domain-utils.d.ts +2 -2
- package/dist/utils/domain-utils.d.ts.map +1 -1
- package/dist/utils/domain-utils.js +19 -8
- package/dist/utils/schema-utils.d.ts +1 -0
- package/dist/utils/schema-utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/schemas.ts +0 -6
- package/src/index.ts +1 -0
- package/src/plugins/apps/schemas.ts +7 -1
- package/src/plugins/findFirstAuthentication/schemas.ts +1 -1
- package/src/plugins/findUniqueAuthentication/schemas.ts +1 -1
- package/src/plugins/getApp/schemas.ts +1 -1
- package/src/plugins/getAuthentication/index.test.ts +1 -1
- package/src/plugins/listActions/index.ts +1 -0
- package/src/plugins/listActions/schemas.ts +2 -1
- package/src/plugins/listApps/index.ts +4 -1
- package/src/plugins/listApps/schemas.ts +1 -0
- package/src/plugins/listAuthentications/index.ts +1 -0
- package/src/plugins/listAuthentications/schemas.ts +2 -1
- package/src/plugins/listInputFieldChoices/index.ts +1 -0
- package/src/plugins/listInputFieldChoices/schemas.ts +1 -0
- package/src/plugins/listInputFields/index.ts +1 -0
- package/src/plugins/listInputFields/schemas.ts +1 -0
- package/src/plugins/runAction/index.ts +4 -1
- package/src/plugins/runAction/schemas.ts +1 -0
- package/src/schemas/Action.ts +3 -2
- package/src/schemas/App.ts +1 -0
- package/src/schemas/Auth.ts +1 -1
- package/src/types/properties.ts +4 -1
- package/src/utils/domain-utils.ts +22 -9
- package/src/utils/schema-utils.ts +1 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/api/schemas.d.ts
CHANGED
|
@@ -143,231 +143,28 @@ export declare const ActionSchema: z.ZodObject<{
|
|
|
143
143
|
type: z.ZodEnum<["filter", "read", "read_bulk", "run", "search", "search_and_write", "search_or_write", "write"]>;
|
|
144
144
|
key: z.ZodString;
|
|
145
145
|
name: z.ZodString;
|
|
146
|
-
noun: z.ZodOptional<z.ZodString>;
|
|
147
146
|
description: z.ZodString;
|
|
148
|
-
description_html: z.ZodOptional<z.ZodString>;
|
|
149
147
|
is_important: z.ZodOptional<z.ZodBoolean>;
|
|
150
148
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
151
|
-
needs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
152
|
-
key: z.ZodString;
|
|
153
|
-
alters_custom_fields: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
154
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
155
|
-
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
156
|
-
key: z.ZodOptional<z.ZodString>;
|
|
157
|
-
label: z.ZodOptional<z.ZodString>;
|
|
158
|
-
sample: z.ZodOptional<z.ZodString>;
|
|
159
|
-
value: z.ZodOptional<z.ZodString>;
|
|
160
|
-
}, "strip", z.ZodTypeAny, {
|
|
161
|
-
value?: string | undefined;
|
|
162
|
-
key?: string | undefined;
|
|
163
|
-
label?: string | undefined;
|
|
164
|
-
sample?: string | undefined;
|
|
165
|
-
}, {
|
|
166
|
-
value?: string | undefined;
|
|
167
|
-
key?: string | undefined;
|
|
168
|
-
label?: string | undefined;
|
|
169
|
-
sample?: string | undefined;
|
|
170
|
-
}>, "many">>;
|
|
171
|
-
computed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
172
|
-
custom_field: z.ZodOptional<z.ZodBoolean>;
|
|
173
|
-
default: z.ZodOptional<z.ZodString>;
|
|
174
|
-
depends_on: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
175
|
-
format: z.ZodOptional<z.ZodLiteral<"SELECT">>;
|
|
176
|
-
from_search: z.ZodOptional<z.ZodBoolean>;
|
|
177
|
-
from_write: z.ZodOptional<z.ZodBoolean>;
|
|
178
|
-
help_text: z.ZodOptional<z.ZodString>;
|
|
179
|
-
help_text_html: z.ZodOptional<z.ZodString>;
|
|
180
|
-
input_format: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
181
|
-
label: z.ZodOptional<z.ZodString>;
|
|
182
|
-
language: z.ZodOptional<z.ZodString>;
|
|
183
|
-
parent_key: z.ZodOptional<z.ZodString>;
|
|
184
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
185
|
-
prefill: z.ZodOptional<z.ZodString>;
|
|
186
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
187
|
-
searchfill: z.ZodOptional<z.ZodString>;
|
|
188
|
-
send_in_json: z.ZodOptional<z.ZodBoolean>;
|
|
189
|
-
regex: z.ZodOptional<z.ZodString>;
|
|
190
|
-
type: z.ZodOptional<z.ZodEnum<["integer", "string", "text", "datetime", "boolean", "file", "decimal", "copy", "password", "dict", "code", "filter", "json"]>>;
|
|
191
|
-
list: z.ZodOptional<z.ZodBoolean>;
|
|
192
|
-
}, "strip", z.ZodTypeAny, {
|
|
193
|
-
key: string;
|
|
194
|
-
default?: string | undefined;
|
|
195
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
196
|
-
label?: string | undefined;
|
|
197
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
198
|
-
capabilities?: string[] | undefined;
|
|
199
|
-
choices?: {
|
|
200
|
-
value?: string | undefined;
|
|
201
|
-
key?: string | undefined;
|
|
202
|
-
label?: string | undefined;
|
|
203
|
-
sample?: string | undefined;
|
|
204
|
-
}[] | undefined;
|
|
205
|
-
computed?: boolean | null | undefined;
|
|
206
|
-
custom_field?: boolean | undefined;
|
|
207
|
-
depends_on?: string[] | undefined;
|
|
208
|
-
format?: "SELECT" | undefined;
|
|
209
|
-
from_search?: boolean | undefined;
|
|
210
|
-
from_write?: boolean | undefined;
|
|
211
|
-
help_text?: string | undefined;
|
|
212
|
-
help_text_html?: string | undefined;
|
|
213
|
-
input_format?: string[] | undefined;
|
|
214
|
-
language?: string | undefined;
|
|
215
|
-
parent_key?: string | undefined;
|
|
216
|
-
placeholder?: string | undefined;
|
|
217
|
-
prefill?: string | undefined;
|
|
218
|
-
required?: boolean | undefined;
|
|
219
|
-
searchfill?: string | undefined;
|
|
220
|
-
send_in_json?: boolean | undefined;
|
|
221
|
-
regex?: string | undefined;
|
|
222
|
-
list?: boolean | undefined;
|
|
223
|
-
}, {
|
|
224
|
-
key: string;
|
|
225
|
-
default?: string | undefined;
|
|
226
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
227
|
-
label?: string | undefined;
|
|
228
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
229
|
-
capabilities?: string[] | undefined;
|
|
230
|
-
choices?: {
|
|
231
|
-
value?: string | undefined;
|
|
232
|
-
key?: string | undefined;
|
|
233
|
-
label?: string | undefined;
|
|
234
|
-
sample?: string | undefined;
|
|
235
|
-
}[] | undefined;
|
|
236
|
-
computed?: boolean | null | undefined;
|
|
237
|
-
custom_field?: boolean | undefined;
|
|
238
|
-
depends_on?: string[] | undefined;
|
|
239
|
-
format?: "SELECT" | undefined;
|
|
240
|
-
from_search?: boolean | undefined;
|
|
241
|
-
from_write?: boolean | undefined;
|
|
242
|
-
help_text?: string | undefined;
|
|
243
|
-
help_text_html?: string | undefined;
|
|
244
|
-
input_format?: string[] | undefined;
|
|
245
|
-
language?: string | undefined;
|
|
246
|
-
parent_key?: string | undefined;
|
|
247
|
-
placeholder?: string | undefined;
|
|
248
|
-
prefill?: string | undefined;
|
|
249
|
-
required?: boolean | undefined;
|
|
250
|
-
searchfill?: string | undefined;
|
|
251
|
-
send_in_json?: boolean | undefined;
|
|
252
|
-
regex?: string | undefined;
|
|
253
|
-
list?: boolean | undefined;
|
|
254
|
-
}>, "many">>;
|
|
255
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
256
149
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
257
|
-
links: z.ZodOptional<z.ZodObject<{
|
|
258
|
-
action_url: z.ZodOptional<z.ZodString>;
|
|
259
|
-
}, "strip", z.ZodTypeAny, {
|
|
260
|
-
action_url?: string | undefined;
|
|
261
|
-
}, {
|
|
262
|
-
action_url?: string | undefined;
|
|
263
|
-
}>>;
|
|
264
|
-
permissions: z.ZodOptional<z.ZodObject<{
|
|
265
|
-
can_use: z.ZodOptional<z.ZodBoolean>;
|
|
266
|
-
}, "strip", z.ZodTypeAny, {
|
|
267
|
-
can_use?: boolean | undefined;
|
|
268
|
-
}, {
|
|
269
|
-
can_use?: boolean | undefined;
|
|
270
|
-
}>>;
|
|
271
150
|
}, "strip", z.ZodTypeAny, {
|
|
272
151
|
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
273
152
|
key: string;
|
|
274
153
|
name: string;
|
|
275
154
|
description: string;
|
|
276
155
|
id?: string | undefined;
|
|
277
|
-
noun?: string | undefined;
|
|
278
|
-
description_html?: string | undefined;
|
|
279
156
|
is_important?: boolean | undefined;
|
|
280
157
|
is_hidden?: boolean | undefined;
|
|
281
|
-
needs?: {
|
|
282
|
-
key: string;
|
|
283
|
-
default?: string | undefined;
|
|
284
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
285
|
-
label?: string | undefined;
|
|
286
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
287
|
-
capabilities?: string[] | undefined;
|
|
288
|
-
choices?: {
|
|
289
|
-
value?: string | undefined;
|
|
290
|
-
key?: string | undefined;
|
|
291
|
-
label?: string | undefined;
|
|
292
|
-
sample?: string | undefined;
|
|
293
|
-
}[] | undefined;
|
|
294
|
-
computed?: boolean | null | undefined;
|
|
295
|
-
custom_field?: boolean | undefined;
|
|
296
|
-
depends_on?: string[] | undefined;
|
|
297
|
-
format?: "SELECT" | undefined;
|
|
298
|
-
from_search?: boolean | undefined;
|
|
299
|
-
from_write?: boolean | undefined;
|
|
300
|
-
help_text?: string | undefined;
|
|
301
|
-
help_text_html?: string | undefined;
|
|
302
|
-
input_format?: string[] | undefined;
|
|
303
|
-
language?: string | undefined;
|
|
304
|
-
parent_key?: string | undefined;
|
|
305
|
-
placeholder?: string | undefined;
|
|
306
|
-
prefill?: string | undefined;
|
|
307
|
-
required?: boolean | undefined;
|
|
308
|
-
searchfill?: string | undefined;
|
|
309
|
-
send_in_json?: boolean | undefined;
|
|
310
|
-
regex?: string | undefined;
|
|
311
|
-
list?: boolean | undefined;
|
|
312
|
-
}[] | undefined;
|
|
313
|
-
meta?: string | undefined;
|
|
314
158
|
selected_api?: string | undefined;
|
|
315
|
-
links?: {
|
|
316
|
-
action_url?: string | undefined;
|
|
317
|
-
} | undefined;
|
|
318
|
-
permissions?: {
|
|
319
|
-
can_use?: boolean | undefined;
|
|
320
|
-
} | undefined;
|
|
321
159
|
}, {
|
|
322
160
|
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
323
161
|
key: string;
|
|
324
162
|
name: string;
|
|
325
163
|
description: string;
|
|
326
164
|
id?: string | undefined;
|
|
327
|
-
noun?: string | undefined;
|
|
328
|
-
description_html?: string | undefined;
|
|
329
165
|
is_important?: boolean | undefined;
|
|
330
166
|
is_hidden?: boolean | undefined;
|
|
331
|
-
needs?: {
|
|
332
|
-
key: string;
|
|
333
|
-
default?: string | undefined;
|
|
334
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
335
|
-
label?: string | undefined;
|
|
336
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
337
|
-
capabilities?: string[] | undefined;
|
|
338
|
-
choices?: {
|
|
339
|
-
value?: string | undefined;
|
|
340
|
-
key?: string | undefined;
|
|
341
|
-
label?: string | undefined;
|
|
342
|
-
sample?: string | undefined;
|
|
343
|
-
}[] | undefined;
|
|
344
|
-
computed?: boolean | null | undefined;
|
|
345
|
-
custom_field?: boolean | undefined;
|
|
346
|
-
depends_on?: string[] | undefined;
|
|
347
|
-
format?: "SELECT" | undefined;
|
|
348
|
-
from_search?: boolean | undefined;
|
|
349
|
-
from_write?: boolean | undefined;
|
|
350
|
-
help_text?: string | undefined;
|
|
351
|
-
help_text_html?: string | undefined;
|
|
352
|
-
input_format?: string[] | undefined;
|
|
353
|
-
language?: string | undefined;
|
|
354
|
-
parent_key?: string | undefined;
|
|
355
|
-
placeholder?: string | undefined;
|
|
356
|
-
prefill?: string | undefined;
|
|
357
|
-
required?: boolean | undefined;
|
|
358
|
-
searchfill?: string | undefined;
|
|
359
|
-
send_in_json?: boolean | undefined;
|
|
360
|
-
regex?: string | undefined;
|
|
361
|
-
list?: boolean | undefined;
|
|
362
|
-
}[] | undefined;
|
|
363
|
-
meta?: string | undefined;
|
|
364
167
|
selected_api?: string | undefined;
|
|
365
|
-
links?: {
|
|
366
|
-
action_url?: string | undefined;
|
|
367
|
-
} | undefined;
|
|
368
|
-
permissions?: {
|
|
369
|
-
can_use?: boolean | undefined;
|
|
370
|
-
} | undefined;
|
|
371
168
|
}>;
|
|
372
169
|
export declare const ChoiceSchema: z.ZodObject<{
|
|
373
170
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -525,7 +322,6 @@ export declare const AuthenticationSchema: z.ZodObject<{
|
|
|
525
322
|
shared_with_all: boolean;
|
|
526
323
|
url?: string | undefined;
|
|
527
324
|
label?: string | null | undefined;
|
|
528
|
-
permissions?: Record<string, boolean> | undefined;
|
|
529
325
|
lastchanged?: string | undefined;
|
|
530
326
|
customuser_id?: number | undefined;
|
|
531
327
|
destination_selected_api?: string | null | undefined;
|
|
@@ -536,6 +332,7 @@ export declare const AuthenticationSchema: z.ZodObject<{
|
|
|
536
332
|
title?: string | null | undefined;
|
|
537
333
|
groups?: string | undefined;
|
|
538
334
|
members?: string | undefined;
|
|
335
|
+
permissions?: Record<string, boolean> | undefined;
|
|
539
336
|
}, {
|
|
540
337
|
id: number;
|
|
541
338
|
date: string;
|
|
@@ -546,7 +343,6 @@ export declare const AuthenticationSchema: z.ZodObject<{
|
|
|
546
343
|
shared_with_all: boolean;
|
|
547
344
|
url?: string | undefined;
|
|
548
345
|
label?: string | null | undefined;
|
|
549
|
-
permissions?: Record<string, boolean> | undefined;
|
|
550
346
|
lastchanged?: string | undefined;
|
|
551
347
|
customuser_id?: number | undefined;
|
|
552
348
|
destination_selected_api?: string | null | undefined;
|
|
@@ -557,6 +353,7 @@ export declare const AuthenticationSchema: z.ZodObject<{
|
|
|
557
353
|
title?: string | null | undefined;
|
|
558
354
|
groups?: string | undefined;
|
|
559
355
|
members?: string | undefined;
|
|
356
|
+
permissions?: Record<string, boolean> | undefined;
|
|
560
357
|
}>;
|
|
561
358
|
export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
562
359
|
count: z.ZodNumber;
|
|
@@ -593,7 +390,6 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
593
390
|
shared_with_all: boolean;
|
|
594
391
|
url?: string | undefined;
|
|
595
392
|
label?: string | null | undefined;
|
|
596
|
-
permissions?: Record<string, boolean> | undefined;
|
|
597
393
|
lastchanged?: string | undefined;
|
|
598
394
|
customuser_id?: number | undefined;
|
|
599
395
|
destination_selected_api?: string | null | undefined;
|
|
@@ -604,6 +400,7 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
604
400
|
title?: string | null | undefined;
|
|
605
401
|
groups?: string | undefined;
|
|
606
402
|
members?: string | undefined;
|
|
403
|
+
permissions?: Record<string, boolean> | undefined;
|
|
607
404
|
}, {
|
|
608
405
|
id: number;
|
|
609
406
|
date: string;
|
|
@@ -614,7 +411,6 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
614
411
|
shared_with_all: boolean;
|
|
615
412
|
url?: string | undefined;
|
|
616
413
|
label?: string | null | undefined;
|
|
617
|
-
permissions?: Record<string, boolean> | undefined;
|
|
618
414
|
lastchanged?: string | undefined;
|
|
619
415
|
customuser_id?: number | undefined;
|
|
620
416
|
destination_selected_api?: string | null | undefined;
|
|
@@ -625,6 +421,7 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
625
421
|
title?: string | null | undefined;
|
|
626
422
|
groups?: string | undefined;
|
|
627
423
|
members?: string | undefined;
|
|
424
|
+
permissions?: Record<string, boolean> | undefined;
|
|
628
425
|
}>, "many">;
|
|
629
426
|
}, "strip", z.ZodTypeAny, {
|
|
630
427
|
count: number;
|
|
@@ -638,7 +435,6 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
638
435
|
shared_with_all: boolean;
|
|
639
436
|
url?: string | undefined;
|
|
640
437
|
label?: string | null | undefined;
|
|
641
|
-
permissions?: Record<string, boolean> | undefined;
|
|
642
438
|
lastchanged?: string | undefined;
|
|
643
439
|
customuser_id?: number | undefined;
|
|
644
440
|
destination_selected_api?: string | null | undefined;
|
|
@@ -649,6 +445,7 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
649
445
|
title?: string | null | undefined;
|
|
650
446
|
groups?: string | undefined;
|
|
651
447
|
members?: string | undefined;
|
|
448
|
+
permissions?: Record<string, boolean> | undefined;
|
|
652
449
|
}[];
|
|
653
450
|
next?: string | null | undefined;
|
|
654
451
|
previous?: string | null | undefined;
|
|
@@ -664,7 +461,6 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
664
461
|
shared_with_all: boolean;
|
|
665
462
|
url?: string | undefined;
|
|
666
463
|
label?: string | null | undefined;
|
|
667
|
-
permissions?: Record<string, boolean> | undefined;
|
|
668
464
|
lastchanged?: string | undefined;
|
|
669
465
|
customuser_id?: number | undefined;
|
|
670
466
|
destination_selected_api?: string | null | undefined;
|
|
@@ -675,6 +471,7 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
675
471
|
title?: string | null | undefined;
|
|
676
472
|
groups?: string | undefined;
|
|
677
473
|
members?: string | undefined;
|
|
474
|
+
permissions?: Record<string, boolean> | undefined;
|
|
678
475
|
}[];
|
|
679
476
|
next?: string | null | undefined;
|
|
680
477
|
previous?: string | null | undefined;
|
|
@@ -1258,231 +1055,28 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1258
1055
|
type: z.ZodEnum<["filter", "read", "read_bulk", "run", "search", "search_and_write", "search_or_write", "write"]>;
|
|
1259
1056
|
key: z.ZodString;
|
|
1260
1057
|
name: z.ZodString;
|
|
1261
|
-
noun: z.ZodOptional<z.ZodString>;
|
|
1262
1058
|
description: z.ZodString;
|
|
1263
|
-
description_html: z.ZodOptional<z.ZodString>;
|
|
1264
1059
|
is_important: z.ZodOptional<z.ZodBoolean>;
|
|
1265
1060
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1266
|
-
needs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1267
|
-
key: z.ZodString;
|
|
1268
|
-
alters_custom_fields: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1269
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1270
|
-
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1271
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1272
|
-
label: z.ZodOptional<z.ZodString>;
|
|
1273
|
-
sample: z.ZodOptional<z.ZodString>;
|
|
1274
|
-
value: z.ZodOptional<z.ZodString>;
|
|
1275
|
-
}, "strip", z.ZodTypeAny, {
|
|
1276
|
-
value?: string | undefined;
|
|
1277
|
-
key?: string | undefined;
|
|
1278
|
-
label?: string | undefined;
|
|
1279
|
-
sample?: string | undefined;
|
|
1280
|
-
}, {
|
|
1281
|
-
value?: string | undefined;
|
|
1282
|
-
key?: string | undefined;
|
|
1283
|
-
label?: string | undefined;
|
|
1284
|
-
sample?: string | undefined;
|
|
1285
|
-
}>, "many">>;
|
|
1286
|
-
computed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1287
|
-
custom_field: z.ZodOptional<z.ZodBoolean>;
|
|
1288
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1289
|
-
depends_on: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1290
|
-
format: z.ZodOptional<z.ZodLiteral<"SELECT">>;
|
|
1291
|
-
from_search: z.ZodOptional<z.ZodBoolean>;
|
|
1292
|
-
from_write: z.ZodOptional<z.ZodBoolean>;
|
|
1293
|
-
help_text: z.ZodOptional<z.ZodString>;
|
|
1294
|
-
help_text_html: z.ZodOptional<z.ZodString>;
|
|
1295
|
-
input_format: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1296
|
-
label: z.ZodOptional<z.ZodString>;
|
|
1297
|
-
language: z.ZodOptional<z.ZodString>;
|
|
1298
|
-
parent_key: z.ZodOptional<z.ZodString>;
|
|
1299
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1300
|
-
prefill: z.ZodOptional<z.ZodString>;
|
|
1301
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
1302
|
-
searchfill: z.ZodOptional<z.ZodString>;
|
|
1303
|
-
send_in_json: z.ZodOptional<z.ZodBoolean>;
|
|
1304
|
-
regex: z.ZodOptional<z.ZodString>;
|
|
1305
|
-
type: z.ZodOptional<z.ZodEnum<["integer", "string", "text", "datetime", "boolean", "file", "decimal", "copy", "password", "dict", "code", "filter", "json"]>>;
|
|
1306
|
-
list: z.ZodOptional<z.ZodBoolean>;
|
|
1307
|
-
}, "strip", z.ZodTypeAny, {
|
|
1308
|
-
key: string;
|
|
1309
|
-
default?: string | undefined;
|
|
1310
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1311
|
-
label?: string | undefined;
|
|
1312
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1313
|
-
capabilities?: string[] | undefined;
|
|
1314
|
-
choices?: {
|
|
1315
|
-
value?: string | undefined;
|
|
1316
|
-
key?: string | undefined;
|
|
1317
|
-
label?: string | undefined;
|
|
1318
|
-
sample?: string | undefined;
|
|
1319
|
-
}[] | undefined;
|
|
1320
|
-
computed?: boolean | null | undefined;
|
|
1321
|
-
custom_field?: boolean | undefined;
|
|
1322
|
-
depends_on?: string[] | undefined;
|
|
1323
|
-
format?: "SELECT" | undefined;
|
|
1324
|
-
from_search?: boolean | undefined;
|
|
1325
|
-
from_write?: boolean | undefined;
|
|
1326
|
-
help_text?: string | undefined;
|
|
1327
|
-
help_text_html?: string | undefined;
|
|
1328
|
-
input_format?: string[] | undefined;
|
|
1329
|
-
language?: string | undefined;
|
|
1330
|
-
parent_key?: string | undefined;
|
|
1331
|
-
placeholder?: string | undefined;
|
|
1332
|
-
prefill?: string | undefined;
|
|
1333
|
-
required?: boolean | undefined;
|
|
1334
|
-
searchfill?: string | undefined;
|
|
1335
|
-
send_in_json?: boolean | undefined;
|
|
1336
|
-
regex?: string | undefined;
|
|
1337
|
-
list?: boolean | undefined;
|
|
1338
|
-
}, {
|
|
1339
|
-
key: string;
|
|
1340
|
-
default?: string | undefined;
|
|
1341
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1342
|
-
label?: string | undefined;
|
|
1343
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1344
|
-
capabilities?: string[] | undefined;
|
|
1345
|
-
choices?: {
|
|
1346
|
-
value?: string | undefined;
|
|
1347
|
-
key?: string | undefined;
|
|
1348
|
-
label?: string | undefined;
|
|
1349
|
-
sample?: string | undefined;
|
|
1350
|
-
}[] | undefined;
|
|
1351
|
-
computed?: boolean | null | undefined;
|
|
1352
|
-
custom_field?: boolean | undefined;
|
|
1353
|
-
depends_on?: string[] | undefined;
|
|
1354
|
-
format?: "SELECT" | undefined;
|
|
1355
|
-
from_search?: boolean | undefined;
|
|
1356
|
-
from_write?: boolean | undefined;
|
|
1357
|
-
help_text?: string | undefined;
|
|
1358
|
-
help_text_html?: string | undefined;
|
|
1359
|
-
input_format?: string[] | undefined;
|
|
1360
|
-
language?: string | undefined;
|
|
1361
|
-
parent_key?: string | undefined;
|
|
1362
|
-
placeholder?: string | undefined;
|
|
1363
|
-
prefill?: string | undefined;
|
|
1364
|
-
required?: boolean | undefined;
|
|
1365
|
-
searchfill?: string | undefined;
|
|
1366
|
-
send_in_json?: boolean | undefined;
|
|
1367
|
-
regex?: string | undefined;
|
|
1368
|
-
list?: boolean | undefined;
|
|
1369
|
-
}>, "many">>;
|
|
1370
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
1371
1061
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
1372
|
-
links: z.ZodOptional<z.ZodObject<{
|
|
1373
|
-
action_url: z.ZodOptional<z.ZodString>;
|
|
1374
|
-
}, "strip", z.ZodTypeAny, {
|
|
1375
|
-
action_url?: string | undefined;
|
|
1376
|
-
}, {
|
|
1377
|
-
action_url?: string | undefined;
|
|
1378
|
-
}>>;
|
|
1379
|
-
permissions: z.ZodOptional<z.ZodObject<{
|
|
1380
|
-
can_use: z.ZodOptional<z.ZodBoolean>;
|
|
1381
|
-
}, "strip", z.ZodTypeAny, {
|
|
1382
|
-
can_use?: boolean | undefined;
|
|
1383
|
-
}, {
|
|
1384
|
-
can_use?: boolean | undefined;
|
|
1385
|
-
}>>;
|
|
1386
1062
|
}, "strip", z.ZodTypeAny, {
|
|
1387
1063
|
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
1388
1064
|
key: string;
|
|
1389
1065
|
name: string;
|
|
1390
1066
|
description: string;
|
|
1391
1067
|
id?: string | undefined;
|
|
1392
|
-
noun?: string | undefined;
|
|
1393
|
-
description_html?: string | undefined;
|
|
1394
1068
|
is_important?: boolean | undefined;
|
|
1395
1069
|
is_hidden?: boolean | undefined;
|
|
1396
|
-
needs?: {
|
|
1397
|
-
key: string;
|
|
1398
|
-
default?: string | undefined;
|
|
1399
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1400
|
-
label?: string | undefined;
|
|
1401
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1402
|
-
capabilities?: string[] | undefined;
|
|
1403
|
-
choices?: {
|
|
1404
|
-
value?: string | undefined;
|
|
1405
|
-
key?: string | undefined;
|
|
1406
|
-
label?: string | undefined;
|
|
1407
|
-
sample?: string | undefined;
|
|
1408
|
-
}[] | undefined;
|
|
1409
|
-
computed?: boolean | null | undefined;
|
|
1410
|
-
custom_field?: boolean | undefined;
|
|
1411
|
-
depends_on?: string[] | undefined;
|
|
1412
|
-
format?: "SELECT" | undefined;
|
|
1413
|
-
from_search?: boolean | undefined;
|
|
1414
|
-
from_write?: boolean | undefined;
|
|
1415
|
-
help_text?: string | undefined;
|
|
1416
|
-
help_text_html?: string | undefined;
|
|
1417
|
-
input_format?: string[] | undefined;
|
|
1418
|
-
language?: string | undefined;
|
|
1419
|
-
parent_key?: string | undefined;
|
|
1420
|
-
placeholder?: string | undefined;
|
|
1421
|
-
prefill?: string | undefined;
|
|
1422
|
-
required?: boolean | undefined;
|
|
1423
|
-
searchfill?: string | undefined;
|
|
1424
|
-
send_in_json?: boolean | undefined;
|
|
1425
|
-
regex?: string | undefined;
|
|
1426
|
-
list?: boolean | undefined;
|
|
1427
|
-
}[] | undefined;
|
|
1428
|
-
meta?: string | undefined;
|
|
1429
1070
|
selected_api?: string | undefined;
|
|
1430
|
-
links?: {
|
|
1431
|
-
action_url?: string | undefined;
|
|
1432
|
-
} | undefined;
|
|
1433
|
-
permissions?: {
|
|
1434
|
-
can_use?: boolean | undefined;
|
|
1435
|
-
} | undefined;
|
|
1436
1071
|
}, {
|
|
1437
1072
|
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
1438
1073
|
key: string;
|
|
1439
1074
|
name: string;
|
|
1440
1075
|
description: string;
|
|
1441
1076
|
id?: string | undefined;
|
|
1442
|
-
noun?: string | undefined;
|
|
1443
|
-
description_html?: string | undefined;
|
|
1444
1077
|
is_important?: boolean | undefined;
|
|
1445
1078
|
is_hidden?: boolean | undefined;
|
|
1446
|
-
needs?: {
|
|
1447
|
-
key: string;
|
|
1448
|
-
default?: string | undefined;
|
|
1449
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1450
|
-
label?: string | undefined;
|
|
1451
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1452
|
-
capabilities?: string[] | undefined;
|
|
1453
|
-
choices?: {
|
|
1454
|
-
value?: string | undefined;
|
|
1455
|
-
key?: string | undefined;
|
|
1456
|
-
label?: string | undefined;
|
|
1457
|
-
sample?: string | undefined;
|
|
1458
|
-
}[] | undefined;
|
|
1459
|
-
computed?: boolean | null | undefined;
|
|
1460
|
-
custom_field?: boolean | undefined;
|
|
1461
|
-
depends_on?: string[] | undefined;
|
|
1462
|
-
format?: "SELECT" | undefined;
|
|
1463
|
-
from_search?: boolean | undefined;
|
|
1464
|
-
from_write?: boolean | undefined;
|
|
1465
|
-
help_text?: string | undefined;
|
|
1466
|
-
help_text_html?: string | undefined;
|
|
1467
|
-
input_format?: string[] | undefined;
|
|
1468
|
-
language?: string | undefined;
|
|
1469
|
-
parent_key?: string | undefined;
|
|
1470
|
-
placeholder?: string | undefined;
|
|
1471
|
-
prefill?: string | undefined;
|
|
1472
|
-
required?: boolean | undefined;
|
|
1473
|
-
searchfill?: string | undefined;
|
|
1474
|
-
send_in_json?: boolean | undefined;
|
|
1475
|
-
regex?: string | undefined;
|
|
1476
|
-
list?: boolean | undefined;
|
|
1477
|
-
}[] | undefined;
|
|
1478
|
-
meta?: string | undefined;
|
|
1479
1079
|
selected_api?: string | undefined;
|
|
1480
|
-
links?: {
|
|
1481
|
-
action_url?: string | undefined;
|
|
1482
|
-
} | undefined;
|
|
1483
|
-
permissions?: {
|
|
1484
|
-
can_use?: boolean | undefined;
|
|
1485
|
-
} | undefined;
|
|
1486
1080
|
}>, "many">>;
|
|
1487
1081
|
is_deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1488
1082
|
is_private_only: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1516,50 +1110,9 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1516
1110
|
name: string;
|
|
1517
1111
|
description: string;
|
|
1518
1112
|
id?: string | undefined;
|
|
1519
|
-
noun?: string | undefined;
|
|
1520
|
-
description_html?: string | undefined;
|
|
1521
1113
|
is_important?: boolean | undefined;
|
|
1522
1114
|
is_hidden?: boolean | undefined;
|
|
1523
|
-
needs?: {
|
|
1524
|
-
key: string;
|
|
1525
|
-
default?: string | undefined;
|
|
1526
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1527
|
-
label?: string | undefined;
|
|
1528
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1529
|
-
capabilities?: string[] | undefined;
|
|
1530
|
-
choices?: {
|
|
1531
|
-
value?: string | undefined;
|
|
1532
|
-
key?: string | undefined;
|
|
1533
|
-
label?: string | undefined;
|
|
1534
|
-
sample?: string | undefined;
|
|
1535
|
-
}[] | undefined;
|
|
1536
|
-
computed?: boolean | null | undefined;
|
|
1537
|
-
custom_field?: boolean | undefined;
|
|
1538
|
-
depends_on?: string[] | undefined;
|
|
1539
|
-
format?: "SELECT" | undefined;
|
|
1540
|
-
from_search?: boolean | undefined;
|
|
1541
|
-
from_write?: boolean | undefined;
|
|
1542
|
-
help_text?: string | undefined;
|
|
1543
|
-
help_text_html?: string | undefined;
|
|
1544
|
-
input_format?: string[] | undefined;
|
|
1545
|
-
language?: string | undefined;
|
|
1546
|
-
parent_key?: string | undefined;
|
|
1547
|
-
placeholder?: string | undefined;
|
|
1548
|
-
prefill?: string | undefined;
|
|
1549
|
-
required?: boolean | undefined;
|
|
1550
|
-
searchfill?: string | undefined;
|
|
1551
|
-
send_in_json?: boolean | undefined;
|
|
1552
|
-
regex?: string | undefined;
|
|
1553
|
-
list?: boolean | undefined;
|
|
1554
|
-
}[] | undefined;
|
|
1555
|
-
meta?: string | undefined;
|
|
1556
1115
|
selected_api?: string | undefined;
|
|
1557
|
-
links?: {
|
|
1558
|
-
action_url?: string | undefined;
|
|
1559
|
-
} | undefined;
|
|
1560
|
-
permissions?: {
|
|
1561
|
-
can_use?: boolean | undefined;
|
|
1562
|
-
} | undefined;
|
|
1563
1116
|
}[] | undefined;
|
|
1564
1117
|
is_deprecated?: boolean | undefined;
|
|
1565
1118
|
is_private_only?: boolean | undefined;
|
|
@@ -1585,50 +1138,9 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1585
1138
|
name: string;
|
|
1586
1139
|
description: string;
|
|
1587
1140
|
id?: string | undefined;
|
|
1588
|
-
noun?: string | undefined;
|
|
1589
|
-
description_html?: string | undefined;
|
|
1590
1141
|
is_important?: boolean | undefined;
|
|
1591
1142
|
is_hidden?: boolean | undefined;
|
|
1592
|
-
needs?: {
|
|
1593
|
-
key: string;
|
|
1594
|
-
default?: string | undefined;
|
|
1595
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1596
|
-
label?: string | undefined;
|
|
1597
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1598
|
-
capabilities?: string[] | undefined;
|
|
1599
|
-
choices?: {
|
|
1600
|
-
value?: string | undefined;
|
|
1601
|
-
key?: string | undefined;
|
|
1602
|
-
label?: string | undefined;
|
|
1603
|
-
sample?: string | undefined;
|
|
1604
|
-
}[] | undefined;
|
|
1605
|
-
computed?: boolean | null | undefined;
|
|
1606
|
-
custom_field?: boolean | undefined;
|
|
1607
|
-
depends_on?: string[] | undefined;
|
|
1608
|
-
format?: "SELECT" | undefined;
|
|
1609
|
-
from_search?: boolean | undefined;
|
|
1610
|
-
from_write?: boolean | undefined;
|
|
1611
|
-
help_text?: string | undefined;
|
|
1612
|
-
help_text_html?: string | undefined;
|
|
1613
|
-
input_format?: string[] | undefined;
|
|
1614
|
-
language?: string | undefined;
|
|
1615
|
-
parent_key?: string | undefined;
|
|
1616
|
-
placeholder?: string | undefined;
|
|
1617
|
-
prefill?: string | undefined;
|
|
1618
|
-
required?: boolean | undefined;
|
|
1619
|
-
searchfill?: string | undefined;
|
|
1620
|
-
send_in_json?: boolean | undefined;
|
|
1621
|
-
regex?: string | undefined;
|
|
1622
|
-
list?: boolean | undefined;
|
|
1623
|
-
}[] | undefined;
|
|
1624
|
-
meta?: string | undefined;
|
|
1625
1143
|
selected_api?: string | undefined;
|
|
1626
|
-
links?: {
|
|
1627
|
-
action_url?: string | undefined;
|
|
1628
|
-
} | undefined;
|
|
1629
|
-
permissions?: {
|
|
1630
|
-
can_use?: boolean | undefined;
|
|
1631
|
-
} | undefined;
|
|
1632
1144
|
}[] | undefined;
|
|
1633
1145
|
is_deprecated?: boolean | undefined;
|
|
1634
1146
|
is_private_only?: boolean | undefined;
|
|
@@ -1650,231 +1162,28 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1650
1162
|
type: z.ZodEnum<["filter", "read", "read_bulk", "run", "search", "search_and_write", "search_or_write", "write"]>;
|
|
1651
1163
|
key: z.ZodString;
|
|
1652
1164
|
name: z.ZodString;
|
|
1653
|
-
noun: z.ZodOptional<z.ZodString>;
|
|
1654
1165
|
description: z.ZodString;
|
|
1655
|
-
description_html: z.ZodOptional<z.ZodString>;
|
|
1656
1166
|
is_important: z.ZodOptional<z.ZodBoolean>;
|
|
1657
1167
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1658
|
-
needs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1659
|
-
key: z.ZodString;
|
|
1660
|
-
alters_custom_fields: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1661
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1662
|
-
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1663
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1664
|
-
label: z.ZodOptional<z.ZodString>;
|
|
1665
|
-
sample: z.ZodOptional<z.ZodString>;
|
|
1666
|
-
value: z.ZodOptional<z.ZodString>;
|
|
1667
|
-
}, "strip", z.ZodTypeAny, {
|
|
1668
|
-
value?: string | undefined;
|
|
1669
|
-
key?: string | undefined;
|
|
1670
|
-
label?: string | undefined;
|
|
1671
|
-
sample?: string | undefined;
|
|
1672
|
-
}, {
|
|
1673
|
-
value?: string | undefined;
|
|
1674
|
-
key?: string | undefined;
|
|
1675
|
-
label?: string | undefined;
|
|
1676
|
-
sample?: string | undefined;
|
|
1677
|
-
}>, "many">>;
|
|
1678
|
-
computed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1679
|
-
custom_field: z.ZodOptional<z.ZodBoolean>;
|
|
1680
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1681
|
-
depends_on: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1682
|
-
format: z.ZodOptional<z.ZodLiteral<"SELECT">>;
|
|
1683
|
-
from_search: z.ZodOptional<z.ZodBoolean>;
|
|
1684
|
-
from_write: z.ZodOptional<z.ZodBoolean>;
|
|
1685
|
-
help_text: z.ZodOptional<z.ZodString>;
|
|
1686
|
-
help_text_html: z.ZodOptional<z.ZodString>;
|
|
1687
|
-
input_format: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1688
|
-
label: z.ZodOptional<z.ZodString>;
|
|
1689
|
-
language: z.ZodOptional<z.ZodString>;
|
|
1690
|
-
parent_key: z.ZodOptional<z.ZodString>;
|
|
1691
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1692
|
-
prefill: z.ZodOptional<z.ZodString>;
|
|
1693
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
1694
|
-
searchfill: z.ZodOptional<z.ZodString>;
|
|
1695
|
-
send_in_json: z.ZodOptional<z.ZodBoolean>;
|
|
1696
|
-
regex: z.ZodOptional<z.ZodString>;
|
|
1697
|
-
type: z.ZodOptional<z.ZodEnum<["integer", "string", "text", "datetime", "boolean", "file", "decimal", "copy", "password", "dict", "code", "filter", "json"]>>;
|
|
1698
|
-
list: z.ZodOptional<z.ZodBoolean>;
|
|
1699
|
-
}, "strip", z.ZodTypeAny, {
|
|
1700
|
-
key: string;
|
|
1701
|
-
default?: string | undefined;
|
|
1702
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1703
|
-
label?: string | undefined;
|
|
1704
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1705
|
-
capabilities?: string[] | undefined;
|
|
1706
|
-
choices?: {
|
|
1707
|
-
value?: string | undefined;
|
|
1708
|
-
key?: string | undefined;
|
|
1709
|
-
label?: string | undefined;
|
|
1710
|
-
sample?: string | undefined;
|
|
1711
|
-
}[] | undefined;
|
|
1712
|
-
computed?: boolean | null | undefined;
|
|
1713
|
-
custom_field?: boolean | undefined;
|
|
1714
|
-
depends_on?: string[] | undefined;
|
|
1715
|
-
format?: "SELECT" | undefined;
|
|
1716
|
-
from_search?: boolean | undefined;
|
|
1717
|
-
from_write?: boolean | undefined;
|
|
1718
|
-
help_text?: string | undefined;
|
|
1719
|
-
help_text_html?: string | undefined;
|
|
1720
|
-
input_format?: string[] | undefined;
|
|
1721
|
-
language?: string | undefined;
|
|
1722
|
-
parent_key?: string | undefined;
|
|
1723
|
-
placeholder?: string | undefined;
|
|
1724
|
-
prefill?: string | undefined;
|
|
1725
|
-
required?: boolean | undefined;
|
|
1726
|
-
searchfill?: string | undefined;
|
|
1727
|
-
send_in_json?: boolean | undefined;
|
|
1728
|
-
regex?: string | undefined;
|
|
1729
|
-
list?: boolean | undefined;
|
|
1730
|
-
}, {
|
|
1731
|
-
key: string;
|
|
1732
|
-
default?: string | undefined;
|
|
1733
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1734
|
-
label?: string | undefined;
|
|
1735
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1736
|
-
capabilities?: string[] | undefined;
|
|
1737
|
-
choices?: {
|
|
1738
|
-
value?: string | undefined;
|
|
1739
|
-
key?: string | undefined;
|
|
1740
|
-
label?: string | undefined;
|
|
1741
|
-
sample?: string | undefined;
|
|
1742
|
-
}[] | undefined;
|
|
1743
|
-
computed?: boolean | null | undefined;
|
|
1744
|
-
custom_field?: boolean | undefined;
|
|
1745
|
-
depends_on?: string[] | undefined;
|
|
1746
|
-
format?: "SELECT" | undefined;
|
|
1747
|
-
from_search?: boolean | undefined;
|
|
1748
|
-
from_write?: boolean | undefined;
|
|
1749
|
-
help_text?: string | undefined;
|
|
1750
|
-
help_text_html?: string | undefined;
|
|
1751
|
-
input_format?: string[] | undefined;
|
|
1752
|
-
language?: string | undefined;
|
|
1753
|
-
parent_key?: string | undefined;
|
|
1754
|
-
placeholder?: string | undefined;
|
|
1755
|
-
prefill?: string | undefined;
|
|
1756
|
-
required?: boolean | undefined;
|
|
1757
|
-
searchfill?: string | undefined;
|
|
1758
|
-
send_in_json?: boolean | undefined;
|
|
1759
|
-
regex?: string | undefined;
|
|
1760
|
-
list?: boolean | undefined;
|
|
1761
|
-
}>, "many">>;
|
|
1762
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
1763
1168
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
1764
|
-
links: z.ZodOptional<z.ZodObject<{
|
|
1765
|
-
action_url: z.ZodOptional<z.ZodString>;
|
|
1766
|
-
}, "strip", z.ZodTypeAny, {
|
|
1767
|
-
action_url?: string | undefined;
|
|
1768
|
-
}, {
|
|
1769
|
-
action_url?: string | undefined;
|
|
1770
|
-
}>>;
|
|
1771
|
-
permissions: z.ZodOptional<z.ZodObject<{
|
|
1772
|
-
can_use: z.ZodOptional<z.ZodBoolean>;
|
|
1773
|
-
}, "strip", z.ZodTypeAny, {
|
|
1774
|
-
can_use?: boolean | undefined;
|
|
1775
|
-
}, {
|
|
1776
|
-
can_use?: boolean | undefined;
|
|
1777
|
-
}>>;
|
|
1778
1169
|
}, "strip", z.ZodTypeAny, {
|
|
1779
1170
|
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
1780
1171
|
key: string;
|
|
1781
1172
|
name: string;
|
|
1782
1173
|
description: string;
|
|
1783
1174
|
id?: string | undefined;
|
|
1784
|
-
noun?: string | undefined;
|
|
1785
|
-
description_html?: string | undefined;
|
|
1786
1175
|
is_important?: boolean | undefined;
|
|
1787
1176
|
is_hidden?: boolean | undefined;
|
|
1788
|
-
needs?: {
|
|
1789
|
-
key: string;
|
|
1790
|
-
default?: string | undefined;
|
|
1791
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1792
|
-
label?: string | undefined;
|
|
1793
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1794
|
-
capabilities?: string[] | undefined;
|
|
1795
|
-
choices?: {
|
|
1796
|
-
value?: string | undefined;
|
|
1797
|
-
key?: string | undefined;
|
|
1798
|
-
label?: string | undefined;
|
|
1799
|
-
sample?: string | undefined;
|
|
1800
|
-
}[] | undefined;
|
|
1801
|
-
computed?: boolean | null | undefined;
|
|
1802
|
-
custom_field?: boolean | undefined;
|
|
1803
|
-
depends_on?: string[] | undefined;
|
|
1804
|
-
format?: "SELECT" | undefined;
|
|
1805
|
-
from_search?: boolean | undefined;
|
|
1806
|
-
from_write?: boolean | undefined;
|
|
1807
|
-
help_text?: string | undefined;
|
|
1808
|
-
help_text_html?: string | undefined;
|
|
1809
|
-
input_format?: string[] | undefined;
|
|
1810
|
-
language?: string | undefined;
|
|
1811
|
-
parent_key?: string | undefined;
|
|
1812
|
-
placeholder?: string | undefined;
|
|
1813
|
-
prefill?: string | undefined;
|
|
1814
|
-
required?: boolean | undefined;
|
|
1815
|
-
searchfill?: string | undefined;
|
|
1816
|
-
send_in_json?: boolean | undefined;
|
|
1817
|
-
regex?: string | undefined;
|
|
1818
|
-
list?: boolean | undefined;
|
|
1819
|
-
}[] | undefined;
|
|
1820
|
-
meta?: string | undefined;
|
|
1821
1177
|
selected_api?: string | undefined;
|
|
1822
|
-
links?: {
|
|
1823
|
-
action_url?: string | undefined;
|
|
1824
|
-
} | undefined;
|
|
1825
|
-
permissions?: {
|
|
1826
|
-
can_use?: boolean | undefined;
|
|
1827
|
-
} | undefined;
|
|
1828
1178
|
}, {
|
|
1829
1179
|
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
1830
1180
|
key: string;
|
|
1831
1181
|
name: string;
|
|
1832
1182
|
description: string;
|
|
1833
1183
|
id?: string | undefined;
|
|
1834
|
-
noun?: string | undefined;
|
|
1835
|
-
description_html?: string | undefined;
|
|
1836
1184
|
is_important?: boolean | undefined;
|
|
1837
1185
|
is_hidden?: boolean | undefined;
|
|
1838
|
-
needs?: {
|
|
1839
|
-
key: string;
|
|
1840
|
-
default?: string | undefined;
|
|
1841
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1842
|
-
label?: string | undefined;
|
|
1843
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1844
|
-
capabilities?: string[] | undefined;
|
|
1845
|
-
choices?: {
|
|
1846
|
-
value?: string | undefined;
|
|
1847
|
-
key?: string | undefined;
|
|
1848
|
-
label?: string | undefined;
|
|
1849
|
-
sample?: string | undefined;
|
|
1850
|
-
}[] | undefined;
|
|
1851
|
-
computed?: boolean | null | undefined;
|
|
1852
|
-
custom_field?: boolean | undefined;
|
|
1853
|
-
depends_on?: string[] | undefined;
|
|
1854
|
-
format?: "SELECT" | undefined;
|
|
1855
|
-
from_search?: boolean | undefined;
|
|
1856
|
-
from_write?: boolean | undefined;
|
|
1857
|
-
help_text?: string | undefined;
|
|
1858
|
-
help_text_html?: string | undefined;
|
|
1859
|
-
input_format?: string[] | undefined;
|
|
1860
|
-
language?: string | undefined;
|
|
1861
|
-
parent_key?: string | undefined;
|
|
1862
|
-
placeholder?: string | undefined;
|
|
1863
|
-
prefill?: string | undefined;
|
|
1864
|
-
required?: boolean | undefined;
|
|
1865
|
-
searchfill?: string | undefined;
|
|
1866
|
-
send_in_json?: boolean | undefined;
|
|
1867
|
-
regex?: string | undefined;
|
|
1868
|
-
list?: boolean | undefined;
|
|
1869
|
-
}[] | undefined;
|
|
1870
|
-
meta?: string | undefined;
|
|
1871
1186
|
selected_api?: string | undefined;
|
|
1872
|
-
links?: {
|
|
1873
|
-
action_url?: string | undefined;
|
|
1874
|
-
} | undefined;
|
|
1875
|
-
permissions?: {
|
|
1876
|
-
can_use?: boolean | undefined;
|
|
1877
|
-
} | undefined;
|
|
1878
1187
|
}>, "many">>;
|
|
1879
1188
|
is_deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1880
1189
|
is_private_only: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1908,50 +1217,9 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1908
1217
|
name: string;
|
|
1909
1218
|
description: string;
|
|
1910
1219
|
id?: string | undefined;
|
|
1911
|
-
noun?: string | undefined;
|
|
1912
|
-
description_html?: string | undefined;
|
|
1913
1220
|
is_important?: boolean | undefined;
|
|
1914
1221
|
is_hidden?: boolean | undefined;
|
|
1915
|
-
needs?: {
|
|
1916
|
-
key: string;
|
|
1917
|
-
default?: string | undefined;
|
|
1918
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1919
|
-
label?: string | undefined;
|
|
1920
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1921
|
-
capabilities?: string[] | undefined;
|
|
1922
|
-
choices?: {
|
|
1923
|
-
value?: string | undefined;
|
|
1924
|
-
key?: string | undefined;
|
|
1925
|
-
label?: string | undefined;
|
|
1926
|
-
sample?: string | undefined;
|
|
1927
|
-
}[] | undefined;
|
|
1928
|
-
computed?: boolean | null | undefined;
|
|
1929
|
-
custom_field?: boolean | undefined;
|
|
1930
|
-
depends_on?: string[] | undefined;
|
|
1931
|
-
format?: "SELECT" | undefined;
|
|
1932
|
-
from_search?: boolean | undefined;
|
|
1933
|
-
from_write?: boolean | undefined;
|
|
1934
|
-
help_text?: string | undefined;
|
|
1935
|
-
help_text_html?: string | undefined;
|
|
1936
|
-
input_format?: string[] | undefined;
|
|
1937
|
-
language?: string | undefined;
|
|
1938
|
-
parent_key?: string | undefined;
|
|
1939
|
-
placeholder?: string | undefined;
|
|
1940
|
-
prefill?: string | undefined;
|
|
1941
|
-
required?: boolean | undefined;
|
|
1942
|
-
searchfill?: string | undefined;
|
|
1943
|
-
send_in_json?: boolean | undefined;
|
|
1944
|
-
regex?: string | undefined;
|
|
1945
|
-
list?: boolean | undefined;
|
|
1946
|
-
}[] | undefined;
|
|
1947
|
-
meta?: string | undefined;
|
|
1948
1222
|
selected_api?: string | undefined;
|
|
1949
|
-
links?: {
|
|
1950
|
-
action_url?: string | undefined;
|
|
1951
|
-
} | undefined;
|
|
1952
|
-
permissions?: {
|
|
1953
|
-
can_use?: boolean | undefined;
|
|
1954
|
-
} | undefined;
|
|
1955
1223
|
}[] | undefined;
|
|
1956
1224
|
is_deprecated?: boolean | undefined;
|
|
1957
1225
|
is_private_only?: boolean | undefined;
|
|
@@ -1977,50 +1245,9 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1977
1245
|
name: string;
|
|
1978
1246
|
description: string;
|
|
1979
1247
|
id?: string | undefined;
|
|
1980
|
-
noun?: string | undefined;
|
|
1981
|
-
description_html?: string | undefined;
|
|
1982
1248
|
is_important?: boolean | undefined;
|
|
1983
1249
|
is_hidden?: boolean | undefined;
|
|
1984
|
-
needs?: {
|
|
1985
|
-
key: string;
|
|
1986
|
-
default?: string | undefined;
|
|
1987
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1988
|
-
label?: string | undefined;
|
|
1989
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1990
|
-
capabilities?: string[] | undefined;
|
|
1991
|
-
choices?: {
|
|
1992
|
-
value?: string | undefined;
|
|
1993
|
-
key?: string | undefined;
|
|
1994
|
-
label?: string | undefined;
|
|
1995
|
-
sample?: string | undefined;
|
|
1996
|
-
}[] | undefined;
|
|
1997
|
-
computed?: boolean | null | undefined;
|
|
1998
|
-
custom_field?: boolean | undefined;
|
|
1999
|
-
depends_on?: string[] | undefined;
|
|
2000
|
-
format?: "SELECT" | undefined;
|
|
2001
|
-
from_search?: boolean | undefined;
|
|
2002
|
-
from_write?: boolean | undefined;
|
|
2003
|
-
help_text?: string | undefined;
|
|
2004
|
-
help_text_html?: string | undefined;
|
|
2005
|
-
input_format?: string[] | undefined;
|
|
2006
|
-
language?: string | undefined;
|
|
2007
|
-
parent_key?: string | undefined;
|
|
2008
|
-
placeholder?: string | undefined;
|
|
2009
|
-
prefill?: string | undefined;
|
|
2010
|
-
required?: boolean | undefined;
|
|
2011
|
-
searchfill?: string | undefined;
|
|
2012
|
-
send_in_json?: boolean | undefined;
|
|
2013
|
-
regex?: string | undefined;
|
|
2014
|
-
list?: boolean | undefined;
|
|
2015
|
-
}[] | undefined;
|
|
2016
|
-
meta?: string | undefined;
|
|
2017
1250
|
selected_api?: string | undefined;
|
|
2018
|
-
links?: {
|
|
2019
|
-
action_url?: string | undefined;
|
|
2020
|
-
} | undefined;
|
|
2021
|
-
permissions?: {
|
|
2022
|
-
can_use?: boolean | undefined;
|
|
2023
|
-
} | undefined;
|
|
2024
1251
|
}[] | undefined;
|
|
2025
1252
|
is_deprecated?: boolean | undefined;
|
|
2026
1253
|
is_private_only?: boolean | undefined;
|
|
@@ -2049,50 +1276,9 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
2049
1276
|
name: string;
|
|
2050
1277
|
description: string;
|
|
2051
1278
|
id?: string | undefined;
|
|
2052
|
-
noun?: string | undefined;
|
|
2053
|
-
description_html?: string | undefined;
|
|
2054
1279
|
is_important?: boolean | undefined;
|
|
2055
1280
|
is_hidden?: boolean | undefined;
|
|
2056
|
-
needs?: {
|
|
2057
|
-
key: string;
|
|
2058
|
-
default?: string | undefined;
|
|
2059
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
2060
|
-
label?: string | undefined;
|
|
2061
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
2062
|
-
capabilities?: string[] | undefined;
|
|
2063
|
-
choices?: {
|
|
2064
|
-
value?: string | undefined;
|
|
2065
|
-
key?: string | undefined;
|
|
2066
|
-
label?: string | undefined;
|
|
2067
|
-
sample?: string | undefined;
|
|
2068
|
-
}[] | undefined;
|
|
2069
|
-
computed?: boolean | null | undefined;
|
|
2070
|
-
custom_field?: boolean | undefined;
|
|
2071
|
-
depends_on?: string[] | undefined;
|
|
2072
|
-
format?: "SELECT" | undefined;
|
|
2073
|
-
from_search?: boolean | undefined;
|
|
2074
|
-
from_write?: boolean | undefined;
|
|
2075
|
-
help_text?: string | undefined;
|
|
2076
|
-
help_text_html?: string | undefined;
|
|
2077
|
-
input_format?: string[] | undefined;
|
|
2078
|
-
language?: string | undefined;
|
|
2079
|
-
parent_key?: string | undefined;
|
|
2080
|
-
placeholder?: string | undefined;
|
|
2081
|
-
prefill?: string | undefined;
|
|
2082
|
-
required?: boolean | undefined;
|
|
2083
|
-
searchfill?: string | undefined;
|
|
2084
|
-
send_in_json?: boolean | undefined;
|
|
2085
|
-
regex?: string | undefined;
|
|
2086
|
-
list?: boolean | undefined;
|
|
2087
|
-
}[] | undefined;
|
|
2088
|
-
meta?: string | undefined;
|
|
2089
1281
|
selected_api?: string | undefined;
|
|
2090
|
-
links?: {
|
|
2091
|
-
action_url?: string | undefined;
|
|
2092
|
-
} | undefined;
|
|
2093
|
-
permissions?: {
|
|
2094
|
-
can_use?: boolean | undefined;
|
|
2095
|
-
} | undefined;
|
|
2096
1282
|
}[] | undefined;
|
|
2097
1283
|
is_deprecated?: boolean | undefined;
|
|
2098
1284
|
is_private_only?: boolean | undefined;
|
|
@@ -2123,50 +1309,9 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
2123
1309
|
name: string;
|
|
2124
1310
|
description: string;
|
|
2125
1311
|
id?: string | undefined;
|
|
2126
|
-
noun?: string | undefined;
|
|
2127
|
-
description_html?: string | undefined;
|
|
2128
1312
|
is_important?: boolean | undefined;
|
|
2129
1313
|
is_hidden?: boolean | undefined;
|
|
2130
|
-
needs?: {
|
|
2131
|
-
key: string;
|
|
2132
|
-
default?: string | undefined;
|
|
2133
|
-
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
2134
|
-
label?: string | undefined;
|
|
2135
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
2136
|
-
capabilities?: string[] | undefined;
|
|
2137
|
-
choices?: {
|
|
2138
|
-
value?: string | undefined;
|
|
2139
|
-
key?: string | undefined;
|
|
2140
|
-
label?: string | undefined;
|
|
2141
|
-
sample?: string | undefined;
|
|
2142
|
-
}[] | undefined;
|
|
2143
|
-
computed?: boolean | null | undefined;
|
|
2144
|
-
custom_field?: boolean | undefined;
|
|
2145
|
-
depends_on?: string[] | undefined;
|
|
2146
|
-
format?: "SELECT" | undefined;
|
|
2147
|
-
from_search?: boolean | undefined;
|
|
2148
|
-
from_write?: boolean | undefined;
|
|
2149
|
-
help_text?: string | undefined;
|
|
2150
|
-
help_text_html?: string | undefined;
|
|
2151
|
-
input_format?: string[] | undefined;
|
|
2152
|
-
language?: string | undefined;
|
|
2153
|
-
parent_key?: string | undefined;
|
|
2154
|
-
placeholder?: string | undefined;
|
|
2155
|
-
prefill?: string | undefined;
|
|
2156
|
-
required?: boolean | undefined;
|
|
2157
|
-
searchfill?: string | undefined;
|
|
2158
|
-
send_in_json?: boolean | undefined;
|
|
2159
|
-
regex?: string | undefined;
|
|
2160
|
-
list?: boolean | undefined;
|
|
2161
|
-
}[] | undefined;
|
|
2162
|
-
meta?: string | undefined;
|
|
2163
1314
|
selected_api?: string | undefined;
|
|
2164
|
-
links?: {
|
|
2165
|
-
action_url?: string | undefined;
|
|
2166
|
-
} | undefined;
|
|
2167
|
-
permissions?: {
|
|
2168
|
-
can_use?: boolean | undefined;
|
|
2169
|
-
} | undefined;
|
|
2170
1315
|
}[] | undefined;
|
|
2171
1316
|
is_deprecated?: boolean | undefined;
|
|
2172
1317
|
is_private_only?: boolean | undefined;
|
|
@@ -2757,6 +1902,8 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
2757
1902
|
label?: string | undefined;
|
|
2758
1903
|
sample?: string | undefined;
|
|
2759
1904
|
}[] | undefined;
|
|
1905
|
+
errors?: string[] | undefined;
|
|
1906
|
+
next_page?: number | undefined;
|
|
2760
1907
|
meta?: {
|
|
2761
1908
|
page?: string | null | undefined;
|
|
2762
1909
|
} | undefined;
|
|
@@ -2764,8 +1911,6 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
2764
1911
|
next?: string | null | undefined;
|
|
2765
1912
|
prev?: string | null | undefined;
|
|
2766
1913
|
} | undefined;
|
|
2767
|
-
errors?: string[] | undefined;
|
|
2768
|
-
next_page?: number | undefined;
|
|
2769
1914
|
}, {
|
|
2770
1915
|
success: boolean;
|
|
2771
1916
|
choices?: {
|
|
@@ -2774,6 +1919,8 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
2774
1919
|
label?: string | undefined;
|
|
2775
1920
|
sample?: string | undefined;
|
|
2776
1921
|
}[] | undefined;
|
|
1922
|
+
errors?: string[] | undefined;
|
|
1923
|
+
next_page?: number | undefined;
|
|
2777
1924
|
meta?: {
|
|
2778
1925
|
page?: string | null | undefined;
|
|
2779
1926
|
} | undefined;
|
|
@@ -2781,7 +1928,5 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
2781
1928
|
next?: string | null | undefined;
|
|
2782
1929
|
prev?: string | null | undefined;
|
|
2783
1930
|
} | undefined;
|
|
2784
|
-
errors?: string[] | undefined;
|
|
2785
|
-
next_page?: number | undefined;
|
|
2786
1931
|
}>;
|
|
2787
1932
|
//# sourceMappingURL=schemas.d.ts.map
|