@chykalophia/clickup-mcp-server 3.4.0 → 4.1.2
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/build/clickup-client/attachments-enhanced.js +4 -1
- package/build/clickup-client/attachments-enhanced.js.map +1 -1
- package/build/clickup-client/auth.js.map +1 -1
- package/build/clickup-client/chat-enhanced.js +3 -1
- package/build/clickup-client/chat-enhanced.js.map +1 -1
- package/build/clickup-client/checklists.js.map +1 -1
- package/build/clickup-client/comments-enhanced.js +4 -3
- package/build/clickup-client/comments-enhanced.js.map +1 -1
- package/build/clickup-client/comments.js +2 -1
- package/build/clickup-client/comments.js.map +1 -1
- package/build/clickup-client/custom-fields-enhanced.js +7 -7
- package/build/clickup-client/custom-fields-enhanced.js.map +1 -1
- package/build/clickup-client/dependencies-enhanced.js.map +1 -1
- package/build/clickup-client/docs-enhanced.d.ts +1 -1
- package/build/clickup-client/docs-enhanced.js +35 -7
- package/build/clickup-client/docs-enhanced.js.map +1 -1
- package/build/clickup-client/docs.js +6 -6
- package/build/clickup-client/docs.js.map +1 -1
- package/build/clickup-client/folders.js.map +1 -1
- package/build/clickup-client/goals-enhanced.js.map +1 -1
- package/build/clickup-client/index.js +2 -2
- package/build/clickup-client/index.js.map +1 -1
- package/build/clickup-client/lists.js.map +1 -1
- package/build/clickup-client/secure-client.js +7 -6
- package/build/clickup-client/secure-client.js.map +1 -1
- package/build/clickup-client/tasks.d.ts +41 -0
- package/build/clickup-client/tasks.js +128 -2
- package/build/clickup-client/tasks.js.map +1 -1
- package/build/clickup-client/time-tracking-enhanced.js +2 -6
- package/build/clickup-client/time-tracking-enhanced.js.map +1 -1
- package/build/clickup-client/views-enhanced.js.map +1 -1
- package/build/clickup-client/webhooks-enhanced.js +4 -3
- package/build/clickup-client/webhooks-enhanced.js.map +1 -1
- package/build/index-efficiency-simple.js +81 -50
- package/build/index-efficiency-simple.js.map +1 -1
- package/build/index-enhanced.js +1 -0
- package/build/index-enhanced.js.map +1 -1
- package/build/index.js +1 -0
- package/build/index.js.map +1 -1
- package/build/resources/checklist-resources.js +1 -0
- package/build/resources/checklist-resources.js.map +1 -1
- package/build/resources/comment-resources.js +1 -0
- package/build/resources/comment-resources.js.map +1 -1
- package/build/resources/doc-resources.js +1 -0
- package/build/resources/doc-resources.js.map +1 -1
- package/build/resources/folder-resources.js +1 -0
- package/build/resources/folder-resources.js.map +1 -1
- package/build/resources/list-resources.js +1 -0
- package/build/resources/list-resources.js.map +1 -1
- package/build/resources/space-resources.js +1 -0
- package/build/resources/space-resources.js.map +1 -1
- package/build/resources/task-resources.js +1 -0
- package/build/resources/task-resources.js.map +1 -1
- package/build/schemas/attachments-schemas.js +16 -10
- package/build/schemas/attachments-schemas.js.map +1 -1
- package/build/schemas/chat-schemas.d.ts +7 -7
- package/build/schemas/chat-schemas.js +22 -6
- package/build/schemas/chat-schemas.js.map +1 -1
- package/build/schemas/custom-field-schemas.d.ts +80 -80
- package/build/schemas/custom-field-schemas.js +27 -11
- package/build/schemas/custom-field-schemas.js.map +1 -1
- package/build/schemas/dependencies-schemas.d.ts +11 -11
- package/build/schemas/dependencies-schemas.js +14 -11
- package/build/schemas/dependencies-schemas.js.map +1 -1
- package/build/schemas/document-schemas.d.ts +14 -14
- package/build/schemas/document-schemas.js +38 -14
- package/build/schemas/document-schemas.js.map +1 -1
- package/build/schemas/goals-schemas.d.ts +50 -50
- package/build/schemas/goals-schemas.js +4 -1
- package/build/schemas/goals-schemas.js.map +1 -1
- package/build/schemas/task-schemas.d.ts +382 -0
- package/build/schemas/task-schemas.js +115 -0
- package/build/schemas/task-schemas.js.map +1 -0
- package/build/schemas/time-tracking-schemas.d.ts +20 -20
- package/build/schemas/time-tracking-schemas.js +11 -10
- package/build/schemas/time-tracking-schemas.js.map +1 -1
- package/build/schemas/views-schemas.d.ts +2 -2
- package/build/schemas/views-schemas.js +9 -9
- package/build/schemas/views-schemas.js.map +1 -1
- package/build/schemas/webhook-schemas.js +3 -3
- package/build/schemas/webhook-schemas.js.map +1 -1
- package/build/tools/attachments-tools-setup.js +146 -65
- package/build/tools/attachments-tools-setup.js.map +1 -1
- package/build/tools/chat-tools.js +233 -106
- package/build/tools/chat-tools.js.map +1 -1
- package/build/tools/checklist-tools.js +13 -5
- package/build/tools/checklist-tools.js.map +1 -1
- package/build/tools/comment-tools.js +35 -14
- package/build/tools/comment-tools.js.map +1 -1
- package/build/tools/custom-field-tools.js +192 -67
- package/build/tools/custom-field-tools.js.map +1 -1
- package/build/tools/dependencies-tools-setup.js +133 -58
- package/build/tools/dependencies-tools-setup.js.map +1 -1
- package/build/tools/doc-tools-enhanced.js +153 -45
- package/build/tools/doc-tools-enhanced.js.map +1 -1
- package/build/tools/doc-tools.js +4 -1
- package/build/tools/doc-tools.js.map +1 -1
- package/build/tools/goals-tools.js +113 -41
- package/build/tools/goals-tools.js.map +1 -1
- package/build/tools/helper-tools.js +131 -53
- package/build/tools/helper-tools.js.map +1 -1
- package/build/tools/space-tools.js.map +1 -1
- package/build/tools/task-tools.js +501 -21
- package/build/tools/task-tools.js.map +1 -1
- package/build/tools/test-task-update.d.ts +2 -0
- package/build/tools/test-task-update.js +124 -0
- package/build/tools/test-task-update.js.map +1 -0
- package/build/tools/time-tracking-tools.js +105 -36
- package/build/tools/time-tracking-tools.js.map +1 -1
- package/build/tools/views-tools-setup.js +124 -61
- package/build/tools/views-tools-setup.js.map +1 -1
- package/build/tools/webhook-tools-setup.js +175 -72
- package/build/tools/webhook-tools-setup.js.map +1 -1
- package/build/tools/webhook-tools.js +51 -18
- package/build/tools/webhook-tools.js.map +1 -1
- package/build/utils/clickup-comment-formatter.js +55 -25
- package/build/utils/clickup-comment-formatter.js.map +1 -1
- package/build/utils/context-aware-suggestions.js +42 -22
- package/build/utils/context-aware-suggestions.js.map +1 -1
- package/build/utils/error-handling.js +29 -13
- package/build/utils/error-handling.js.map +1 -1
- package/build/utils/markdown-styling.js.map +1 -1
- package/build/utils/markdown.d.ts +5 -4
- package/build/utils/markdown.js +24 -19
- package/build/utils/markdown.js.map +1 -1
- package/build/utils/security.d.ts +76 -0
- package/build/utils/security.js +280 -25
- package/build/utils/security.js.map +1 -1
- package/build/utils/tool-efficiency.js +21 -12
- package/build/utils/tool-efficiency.js.map +1 -1
- package/package.json +5 -5
- package/LICENSE +0 -21
- package/README.md +0 -510
|
@@ -151,8 +151,8 @@ export declare const ProgressFieldConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
151
151
|
unit: string;
|
|
152
152
|
default?: number | undefined;
|
|
153
153
|
}, {
|
|
154
|
-
start?: number | undefined;
|
|
155
154
|
default?: number | undefined;
|
|
155
|
+
start?: number | undefined;
|
|
156
156
|
end?: number | undefined;
|
|
157
157
|
unit?: string | undefined;
|
|
158
158
|
}>, {
|
|
@@ -161,8 +161,8 @@ export declare const ProgressFieldConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
161
161
|
unit: string;
|
|
162
162
|
default?: number | undefined;
|
|
163
163
|
}, {
|
|
164
|
-
start?: number | undefined;
|
|
165
164
|
default?: number | undefined;
|
|
165
|
+
start?: number | undefined;
|
|
166
166
|
end?: number | undefined;
|
|
167
167
|
unit?: string | undefined;
|
|
168
168
|
}>;
|
|
@@ -190,8 +190,8 @@ export declare const CreateTextFieldSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
190
190
|
placeholder?: string | undefined;
|
|
191
191
|
}>>;
|
|
192
192
|
}>, "strip", z.ZodTypeAny, {
|
|
193
|
-
type: "text";
|
|
194
193
|
name: string;
|
|
194
|
+
type: "text";
|
|
195
195
|
required: boolean;
|
|
196
196
|
hide_from_guests: boolean;
|
|
197
197
|
type_config?: {
|
|
@@ -199,8 +199,8 @@ export declare const CreateTextFieldSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
199
199
|
placeholder?: string | undefined;
|
|
200
200
|
} | undefined;
|
|
201
201
|
}, {
|
|
202
|
-
type: "text";
|
|
203
202
|
name: string;
|
|
203
|
+
type: "text";
|
|
204
204
|
required?: boolean | undefined;
|
|
205
205
|
hide_from_guests?: boolean | undefined;
|
|
206
206
|
type_config?: {
|
|
@@ -225,8 +225,8 @@ export declare const CreateTextareaFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
225
225
|
placeholder?: string | undefined;
|
|
226
226
|
}>>;
|
|
227
227
|
}>, "strip", z.ZodTypeAny, {
|
|
228
|
-
type: "textarea";
|
|
229
228
|
name: string;
|
|
229
|
+
type: "textarea";
|
|
230
230
|
required: boolean;
|
|
231
231
|
hide_from_guests: boolean;
|
|
232
232
|
type_config?: {
|
|
@@ -234,8 +234,8 @@ export declare const CreateTextareaFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
234
234
|
placeholder?: string | undefined;
|
|
235
235
|
} | undefined;
|
|
236
236
|
}, {
|
|
237
|
-
type: "textarea";
|
|
238
237
|
name: string;
|
|
238
|
+
type: "textarea";
|
|
239
239
|
required?: boolean | undefined;
|
|
240
240
|
hide_from_guests?: boolean | undefined;
|
|
241
241
|
type_config?: {
|
|
@@ -260,8 +260,8 @@ export declare const CreateNumberFieldSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
260
260
|
precision?: number | undefined;
|
|
261
261
|
}>>;
|
|
262
262
|
}>, "strip", z.ZodTypeAny, {
|
|
263
|
-
type: "number";
|
|
264
263
|
name: string;
|
|
264
|
+
type: "number";
|
|
265
265
|
required: boolean;
|
|
266
266
|
hide_from_guests: boolean;
|
|
267
267
|
type_config?: {
|
|
@@ -269,8 +269,8 @@ export declare const CreateNumberFieldSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
269
269
|
default?: number | undefined;
|
|
270
270
|
} | undefined;
|
|
271
271
|
}, {
|
|
272
|
-
type: "number";
|
|
273
272
|
name: string;
|
|
273
|
+
type: "number";
|
|
274
274
|
required?: boolean | undefined;
|
|
275
275
|
hide_from_guests?: boolean | undefined;
|
|
276
276
|
type_config?: {
|
|
@@ -298,8 +298,8 @@ export declare const CreateCurrencyFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
298
298
|
currency_type?: string | undefined;
|
|
299
299
|
}>>;
|
|
300
300
|
}>, "strip", z.ZodTypeAny, {
|
|
301
|
-
type: "currency";
|
|
302
301
|
name: string;
|
|
302
|
+
type: "currency";
|
|
303
303
|
required: boolean;
|
|
304
304
|
hide_from_guests: boolean;
|
|
305
305
|
type_config?: {
|
|
@@ -308,8 +308,8 @@ export declare const CreateCurrencyFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
308
308
|
default?: number | undefined;
|
|
309
309
|
} | undefined;
|
|
310
310
|
}, {
|
|
311
|
-
type: "currency";
|
|
312
311
|
name: string;
|
|
312
|
+
type: "currency";
|
|
313
313
|
required?: boolean | undefined;
|
|
314
314
|
hide_from_guests?: boolean | undefined;
|
|
315
315
|
type_config?: {
|
|
@@ -335,8 +335,8 @@ export declare const CreateDateFieldSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
335
335
|
include_time?: boolean | undefined;
|
|
336
336
|
}>>;
|
|
337
337
|
}>, "strip", z.ZodTypeAny, {
|
|
338
|
-
type: "date";
|
|
339
338
|
name: string;
|
|
339
|
+
type: "date";
|
|
340
340
|
required: boolean;
|
|
341
341
|
hide_from_guests: boolean;
|
|
342
342
|
type_config?: {
|
|
@@ -344,8 +344,8 @@ export declare const CreateDateFieldSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
344
344
|
default?: number | undefined;
|
|
345
345
|
} | undefined;
|
|
346
346
|
}, {
|
|
347
|
-
type: "date";
|
|
348
347
|
name: string;
|
|
348
|
+
type: "date";
|
|
349
349
|
required?: boolean | undefined;
|
|
350
350
|
hide_from_guests?: boolean | undefined;
|
|
351
351
|
type_config?: {
|
|
@@ -390,8 +390,8 @@ export declare const CreateDropdownFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
390
390
|
default?: number | undefined;
|
|
391
391
|
}>;
|
|
392
392
|
}>, "strip", z.ZodTypeAny, {
|
|
393
|
-
type: "drop_down";
|
|
394
393
|
name: string;
|
|
394
|
+
type: "drop_down";
|
|
395
395
|
required: boolean;
|
|
396
396
|
hide_from_guests: boolean;
|
|
397
397
|
type_config: {
|
|
@@ -403,8 +403,8 @@ export declare const CreateDropdownFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
403
403
|
default?: number | undefined;
|
|
404
404
|
};
|
|
405
405
|
}, {
|
|
406
|
-
type: "drop_down";
|
|
407
406
|
name: string;
|
|
407
|
+
type: "drop_down";
|
|
408
408
|
type_config: {
|
|
409
409
|
options: {
|
|
410
410
|
name: string;
|
|
@@ -450,8 +450,8 @@ export declare const CreateLabelsFieldSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
450
450
|
}[];
|
|
451
451
|
}>;
|
|
452
452
|
}>, "strip", z.ZodTypeAny, {
|
|
453
|
-
type: "labels";
|
|
454
453
|
name: string;
|
|
454
|
+
type: "labels";
|
|
455
455
|
required: boolean;
|
|
456
456
|
hide_from_guests: boolean;
|
|
457
457
|
type_config: {
|
|
@@ -462,8 +462,8 @@ export declare const CreateLabelsFieldSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
462
462
|
}[];
|
|
463
463
|
};
|
|
464
464
|
}, {
|
|
465
|
-
type: "labels";
|
|
466
465
|
name: string;
|
|
466
|
+
type: "labels";
|
|
467
467
|
type_config: {
|
|
468
468
|
options: {
|
|
469
469
|
name: string;
|
|
@@ -488,16 +488,16 @@ export declare const CreateCheckboxFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
488
488
|
default?: boolean | undefined;
|
|
489
489
|
}>>;
|
|
490
490
|
}>, "strip", z.ZodTypeAny, {
|
|
491
|
-
type: "checkbox";
|
|
492
491
|
name: string;
|
|
492
|
+
type: "checkbox";
|
|
493
493
|
required: boolean;
|
|
494
494
|
hide_from_guests: boolean;
|
|
495
495
|
type_config?: {
|
|
496
496
|
default: boolean;
|
|
497
497
|
} | undefined;
|
|
498
498
|
}, {
|
|
499
|
-
type: "checkbox";
|
|
500
499
|
name: string;
|
|
500
|
+
type: "checkbox";
|
|
501
501
|
required?: boolean | undefined;
|
|
502
502
|
hide_from_guests?: boolean | undefined;
|
|
503
503
|
type_config?: {
|
|
@@ -521,8 +521,8 @@ export declare const CreateURLFieldSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
521
521
|
placeholder?: string | undefined;
|
|
522
522
|
}>>;
|
|
523
523
|
}>, "strip", z.ZodTypeAny, {
|
|
524
|
-
type: "url";
|
|
525
524
|
name: string;
|
|
525
|
+
type: "url";
|
|
526
526
|
required: boolean;
|
|
527
527
|
hide_from_guests: boolean;
|
|
528
528
|
type_config?: {
|
|
@@ -530,8 +530,8 @@ export declare const CreateURLFieldSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
530
530
|
placeholder?: string | undefined;
|
|
531
531
|
} | undefined;
|
|
532
532
|
}, {
|
|
533
|
-
type: "url";
|
|
534
533
|
name: string;
|
|
534
|
+
type: "url";
|
|
535
535
|
required?: boolean | undefined;
|
|
536
536
|
hide_from_guests?: boolean | undefined;
|
|
537
537
|
type_config?: {
|
|
@@ -556,8 +556,8 @@ export declare const CreateEmailFieldSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
556
556
|
placeholder?: string | undefined;
|
|
557
557
|
}>>;
|
|
558
558
|
}>, "strip", z.ZodTypeAny, {
|
|
559
|
-
type: "email";
|
|
560
559
|
name: string;
|
|
560
|
+
type: "email";
|
|
561
561
|
required: boolean;
|
|
562
562
|
hide_from_guests: boolean;
|
|
563
563
|
type_config?: {
|
|
@@ -565,8 +565,8 @@ export declare const CreateEmailFieldSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
565
565
|
placeholder?: string | undefined;
|
|
566
566
|
} | undefined;
|
|
567
567
|
}, {
|
|
568
|
-
type: "email";
|
|
569
568
|
name: string;
|
|
569
|
+
type: "email";
|
|
570
570
|
required?: boolean | undefined;
|
|
571
571
|
hide_from_guests?: boolean | undefined;
|
|
572
572
|
type_config?: {
|
|
@@ -591,8 +591,8 @@ export declare const CreatePhoneFieldSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
591
591
|
placeholder?: string | undefined;
|
|
592
592
|
}>>;
|
|
593
593
|
}>, "strip", z.ZodTypeAny, {
|
|
594
|
-
type: "phone";
|
|
595
594
|
name: string;
|
|
595
|
+
type: "phone";
|
|
596
596
|
required: boolean;
|
|
597
597
|
hide_from_guests: boolean;
|
|
598
598
|
type_config?: {
|
|
@@ -600,8 +600,8 @@ export declare const CreatePhoneFieldSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
600
600
|
placeholder?: string | undefined;
|
|
601
601
|
} | undefined;
|
|
602
602
|
}, {
|
|
603
|
-
type: "phone";
|
|
604
603
|
name: string;
|
|
604
|
+
type: "phone";
|
|
605
605
|
required?: boolean | undefined;
|
|
606
606
|
hide_from_guests?: boolean | undefined;
|
|
607
607
|
type_config?: {
|
|
@@ -626,8 +626,8 @@ export declare const CreateRatingFieldSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
626
626
|
count?: number | undefined;
|
|
627
627
|
}>>;
|
|
628
628
|
}>, "strip", z.ZodTypeAny, {
|
|
629
|
-
type: "rating";
|
|
630
629
|
name: string;
|
|
630
|
+
type: "rating";
|
|
631
631
|
required: boolean;
|
|
632
632
|
hide_from_guests: boolean;
|
|
633
633
|
type_config?: {
|
|
@@ -635,8 +635,8 @@ export declare const CreateRatingFieldSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
635
635
|
count: number;
|
|
636
636
|
} | undefined;
|
|
637
637
|
}, {
|
|
638
|
-
type: "rating";
|
|
639
638
|
name: string;
|
|
639
|
+
type: "rating";
|
|
640
640
|
required?: boolean | undefined;
|
|
641
641
|
hide_from_guests?: boolean | undefined;
|
|
642
642
|
type_config?: {
|
|
@@ -661,8 +661,8 @@ export declare const CreateProgressFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
661
661
|
unit: string;
|
|
662
662
|
default?: number | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
start?: number | undefined;
|
|
665
664
|
default?: number | undefined;
|
|
665
|
+
start?: number | undefined;
|
|
666
666
|
end?: number | undefined;
|
|
667
667
|
unit?: string | undefined;
|
|
668
668
|
}>, {
|
|
@@ -671,14 +671,14 @@ export declare const CreateProgressFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
671
671
|
unit: string;
|
|
672
672
|
default?: number | undefined;
|
|
673
673
|
}, {
|
|
674
|
-
start?: number | undefined;
|
|
675
674
|
default?: number | undefined;
|
|
675
|
+
start?: number | undefined;
|
|
676
676
|
end?: number | undefined;
|
|
677
677
|
unit?: string | undefined;
|
|
678
678
|
}>>;
|
|
679
679
|
}>, "strip", z.ZodTypeAny, {
|
|
680
|
-
type: "progress";
|
|
681
680
|
name: string;
|
|
681
|
+
type: "progress";
|
|
682
682
|
required: boolean;
|
|
683
683
|
hide_from_guests: boolean;
|
|
684
684
|
type_config?: {
|
|
@@ -688,13 +688,13 @@ export declare const CreateProgressFieldSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
688
688
|
default?: number | undefined;
|
|
689
689
|
} | undefined;
|
|
690
690
|
}, {
|
|
691
|
-
type: "progress";
|
|
692
691
|
name: string;
|
|
692
|
+
type: "progress";
|
|
693
693
|
required?: boolean | undefined;
|
|
694
694
|
hide_from_guests?: boolean | undefined;
|
|
695
695
|
type_config?: {
|
|
696
|
-
start?: number | undefined;
|
|
697
696
|
default?: number | undefined;
|
|
697
|
+
start?: number | undefined;
|
|
698
698
|
end?: number | undefined;
|
|
699
699
|
unit?: string | undefined;
|
|
700
700
|
} | undefined;
|
|
@@ -713,16 +713,16 @@ export declare const CreateTaskRelationshipFieldSchema: z.ZodObject<z.objectUtil
|
|
|
713
713
|
multiple?: boolean | undefined;
|
|
714
714
|
}>>;
|
|
715
715
|
}>, "strip", z.ZodTypeAny, {
|
|
716
|
-
type: "task_relationship";
|
|
717
716
|
name: string;
|
|
717
|
+
type: "task_relationship";
|
|
718
718
|
required: boolean;
|
|
719
719
|
hide_from_guests: boolean;
|
|
720
720
|
type_config?: {
|
|
721
721
|
multiple: boolean;
|
|
722
722
|
} | undefined;
|
|
723
723
|
}, {
|
|
724
|
-
type: "task_relationship";
|
|
725
724
|
name: string;
|
|
725
|
+
type: "task_relationship";
|
|
726
726
|
required?: boolean | undefined;
|
|
727
727
|
hide_from_guests?: boolean | undefined;
|
|
728
728
|
type_config?: {
|
|
@@ -746,8 +746,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
746
746
|
placeholder?: string | undefined;
|
|
747
747
|
}>>;
|
|
748
748
|
}>, "strip", z.ZodTypeAny, {
|
|
749
|
-
type: "text";
|
|
750
749
|
name: string;
|
|
750
|
+
type: "text";
|
|
751
751
|
required: boolean;
|
|
752
752
|
hide_from_guests: boolean;
|
|
753
753
|
type_config?: {
|
|
@@ -755,8 +755,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
755
755
|
placeholder?: string | undefined;
|
|
756
756
|
} | undefined;
|
|
757
757
|
}, {
|
|
758
|
-
type: "text";
|
|
759
758
|
name: string;
|
|
759
|
+
type: "text";
|
|
760
760
|
required?: boolean | undefined;
|
|
761
761
|
hide_from_guests?: boolean | undefined;
|
|
762
762
|
type_config?: {
|
|
@@ -780,8 +780,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
780
780
|
placeholder?: string | undefined;
|
|
781
781
|
}>>;
|
|
782
782
|
}>, "strip", z.ZodTypeAny, {
|
|
783
|
-
type: "textarea";
|
|
784
783
|
name: string;
|
|
784
|
+
type: "textarea";
|
|
785
785
|
required: boolean;
|
|
786
786
|
hide_from_guests: boolean;
|
|
787
787
|
type_config?: {
|
|
@@ -789,8 +789,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
789
789
|
placeholder?: string | undefined;
|
|
790
790
|
} | undefined;
|
|
791
791
|
}, {
|
|
792
|
-
type: "textarea";
|
|
793
792
|
name: string;
|
|
793
|
+
type: "textarea";
|
|
794
794
|
required?: boolean | undefined;
|
|
795
795
|
hide_from_guests?: boolean | undefined;
|
|
796
796
|
type_config?: {
|
|
@@ -814,8 +814,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
814
814
|
precision?: number | undefined;
|
|
815
815
|
}>>;
|
|
816
816
|
}>, "strip", z.ZodTypeAny, {
|
|
817
|
-
type: "number";
|
|
818
817
|
name: string;
|
|
818
|
+
type: "number";
|
|
819
819
|
required: boolean;
|
|
820
820
|
hide_from_guests: boolean;
|
|
821
821
|
type_config?: {
|
|
@@ -823,8 +823,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
823
823
|
default?: number | undefined;
|
|
824
824
|
} | undefined;
|
|
825
825
|
}, {
|
|
826
|
-
type: "number";
|
|
827
826
|
name: string;
|
|
827
|
+
type: "number";
|
|
828
828
|
required?: boolean | undefined;
|
|
829
829
|
hide_from_guests?: boolean | undefined;
|
|
830
830
|
type_config?: {
|
|
@@ -851,8 +851,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
851
851
|
currency_type?: string | undefined;
|
|
852
852
|
}>>;
|
|
853
853
|
}>, "strip", z.ZodTypeAny, {
|
|
854
|
-
type: "currency";
|
|
855
854
|
name: string;
|
|
855
|
+
type: "currency";
|
|
856
856
|
required: boolean;
|
|
857
857
|
hide_from_guests: boolean;
|
|
858
858
|
type_config?: {
|
|
@@ -861,8 +861,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
861
861
|
default?: number | undefined;
|
|
862
862
|
} | undefined;
|
|
863
863
|
}, {
|
|
864
|
-
type: "currency";
|
|
865
864
|
name: string;
|
|
865
|
+
type: "currency";
|
|
866
866
|
required?: boolean | undefined;
|
|
867
867
|
hide_from_guests?: boolean | undefined;
|
|
868
868
|
type_config?: {
|
|
@@ -887,8 +887,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
887
887
|
include_time?: boolean | undefined;
|
|
888
888
|
}>>;
|
|
889
889
|
}>, "strip", z.ZodTypeAny, {
|
|
890
|
-
type: "date";
|
|
891
890
|
name: string;
|
|
891
|
+
type: "date";
|
|
892
892
|
required: boolean;
|
|
893
893
|
hide_from_guests: boolean;
|
|
894
894
|
type_config?: {
|
|
@@ -896,8 +896,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
896
896
|
default?: number | undefined;
|
|
897
897
|
} | undefined;
|
|
898
898
|
}, {
|
|
899
|
-
type: "date";
|
|
900
899
|
name: string;
|
|
900
|
+
type: "date";
|
|
901
901
|
required?: boolean | undefined;
|
|
902
902
|
hide_from_guests?: boolean | undefined;
|
|
903
903
|
type_config?: {
|
|
@@ -941,8 +941,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
941
941
|
default?: number | undefined;
|
|
942
942
|
}>;
|
|
943
943
|
}>, "strip", z.ZodTypeAny, {
|
|
944
|
-
type: "drop_down";
|
|
945
944
|
name: string;
|
|
945
|
+
type: "drop_down";
|
|
946
946
|
required: boolean;
|
|
947
947
|
hide_from_guests: boolean;
|
|
948
948
|
type_config: {
|
|
@@ -954,8 +954,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
954
954
|
default?: number | undefined;
|
|
955
955
|
};
|
|
956
956
|
}, {
|
|
957
|
-
type: "drop_down";
|
|
958
957
|
name: string;
|
|
958
|
+
type: "drop_down";
|
|
959
959
|
type_config: {
|
|
960
960
|
options: {
|
|
961
961
|
name: string;
|
|
@@ -1000,8 +1000,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1000
1000
|
}[];
|
|
1001
1001
|
}>;
|
|
1002
1002
|
}>, "strip", z.ZodTypeAny, {
|
|
1003
|
-
type: "labels";
|
|
1004
1003
|
name: string;
|
|
1004
|
+
type: "labels";
|
|
1005
1005
|
required: boolean;
|
|
1006
1006
|
hide_from_guests: boolean;
|
|
1007
1007
|
type_config: {
|
|
@@ -1012,8 +1012,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1012
1012
|
}[];
|
|
1013
1013
|
};
|
|
1014
1014
|
}, {
|
|
1015
|
-
type: "labels";
|
|
1016
1015
|
name: string;
|
|
1016
|
+
type: "labels";
|
|
1017
1017
|
type_config: {
|
|
1018
1018
|
options: {
|
|
1019
1019
|
name: string;
|
|
@@ -1037,16 +1037,16 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1037
1037
|
default?: boolean | undefined;
|
|
1038
1038
|
}>>;
|
|
1039
1039
|
}>, "strip", z.ZodTypeAny, {
|
|
1040
|
-
type: "checkbox";
|
|
1041
1040
|
name: string;
|
|
1041
|
+
type: "checkbox";
|
|
1042
1042
|
required: boolean;
|
|
1043
1043
|
hide_from_guests: boolean;
|
|
1044
1044
|
type_config?: {
|
|
1045
1045
|
default: boolean;
|
|
1046
1046
|
} | undefined;
|
|
1047
1047
|
}, {
|
|
1048
|
-
type: "checkbox";
|
|
1049
1048
|
name: string;
|
|
1049
|
+
type: "checkbox";
|
|
1050
1050
|
required?: boolean | undefined;
|
|
1051
1051
|
hide_from_guests?: boolean | undefined;
|
|
1052
1052
|
type_config?: {
|
|
@@ -1069,8 +1069,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1069
1069
|
placeholder?: string | undefined;
|
|
1070
1070
|
}>>;
|
|
1071
1071
|
}>, "strip", z.ZodTypeAny, {
|
|
1072
|
-
type: "url";
|
|
1073
1072
|
name: string;
|
|
1073
|
+
type: "url";
|
|
1074
1074
|
required: boolean;
|
|
1075
1075
|
hide_from_guests: boolean;
|
|
1076
1076
|
type_config?: {
|
|
@@ -1078,8 +1078,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1078
1078
|
placeholder?: string | undefined;
|
|
1079
1079
|
} | undefined;
|
|
1080
1080
|
}, {
|
|
1081
|
-
type: "url";
|
|
1082
1081
|
name: string;
|
|
1082
|
+
type: "url";
|
|
1083
1083
|
required?: boolean | undefined;
|
|
1084
1084
|
hide_from_guests?: boolean | undefined;
|
|
1085
1085
|
type_config?: {
|
|
@@ -1103,8 +1103,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1103
1103
|
placeholder?: string | undefined;
|
|
1104
1104
|
}>>;
|
|
1105
1105
|
}>, "strip", z.ZodTypeAny, {
|
|
1106
|
-
type: "email";
|
|
1107
1106
|
name: string;
|
|
1107
|
+
type: "email";
|
|
1108
1108
|
required: boolean;
|
|
1109
1109
|
hide_from_guests: boolean;
|
|
1110
1110
|
type_config?: {
|
|
@@ -1112,8 +1112,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1112
1112
|
placeholder?: string | undefined;
|
|
1113
1113
|
} | undefined;
|
|
1114
1114
|
}, {
|
|
1115
|
-
type: "email";
|
|
1116
1115
|
name: string;
|
|
1116
|
+
type: "email";
|
|
1117
1117
|
required?: boolean | undefined;
|
|
1118
1118
|
hide_from_guests?: boolean | undefined;
|
|
1119
1119
|
type_config?: {
|
|
@@ -1137,8 +1137,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1137
1137
|
placeholder?: string | undefined;
|
|
1138
1138
|
}>>;
|
|
1139
1139
|
}>, "strip", z.ZodTypeAny, {
|
|
1140
|
-
type: "phone";
|
|
1141
1140
|
name: string;
|
|
1141
|
+
type: "phone";
|
|
1142
1142
|
required: boolean;
|
|
1143
1143
|
hide_from_guests: boolean;
|
|
1144
1144
|
type_config?: {
|
|
@@ -1146,8 +1146,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1146
1146
|
placeholder?: string | undefined;
|
|
1147
1147
|
} | undefined;
|
|
1148
1148
|
}, {
|
|
1149
|
-
type: "phone";
|
|
1150
1149
|
name: string;
|
|
1150
|
+
type: "phone";
|
|
1151
1151
|
required?: boolean | undefined;
|
|
1152
1152
|
hide_from_guests?: boolean | undefined;
|
|
1153
1153
|
type_config?: {
|
|
@@ -1171,8 +1171,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1171
1171
|
count?: number | undefined;
|
|
1172
1172
|
}>>;
|
|
1173
1173
|
}>, "strip", z.ZodTypeAny, {
|
|
1174
|
-
type: "rating";
|
|
1175
1174
|
name: string;
|
|
1175
|
+
type: "rating";
|
|
1176
1176
|
required: boolean;
|
|
1177
1177
|
hide_from_guests: boolean;
|
|
1178
1178
|
type_config?: {
|
|
@@ -1180,8 +1180,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1180
1180
|
count: number;
|
|
1181
1181
|
} | undefined;
|
|
1182
1182
|
}, {
|
|
1183
|
-
type: "rating";
|
|
1184
1183
|
name: string;
|
|
1184
|
+
type: "rating";
|
|
1185
1185
|
required?: boolean | undefined;
|
|
1186
1186
|
hide_from_guests?: boolean | undefined;
|
|
1187
1187
|
type_config?: {
|
|
@@ -1205,8 +1205,8 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1205
1205
|
unit: string;
|
|
1206
1206
|
default?: number | undefined;
|
|
1207
1207
|
}, {
|
|
1208
|
-
start?: number | undefined;
|
|
1209
1208
|
default?: number | undefined;
|
|
1209
|
+
start?: number | undefined;
|
|
1210
1210
|
end?: number | undefined;
|
|
1211
1211
|
unit?: string | undefined;
|
|
1212
1212
|
}>, {
|
|
@@ -1215,14 +1215,14 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1215
1215
|
unit: string;
|
|
1216
1216
|
default?: number | undefined;
|
|
1217
1217
|
}, {
|
|
1218
|
-
start?: number | undefined;
|
|
1219
1218
|
default?: number | undefined;
|
|
1219
|
+
start?: number | undefined;
|
|
1220
1220
|
end?: number | undefined;
|
|
1221
1221
|
unit?: string | undefined;
|
|
1222
1222
|
}>>;
|
|
1223
1223
|
}>, "strip", z.ZodTypeAny, {
|
|
1224
|
-
type: "progress";
|
|
1225
1224
|
name: string;
|
|
1225
|
+
type: "progress";
|
|
1226
1226
|
required: boolean;
|
|
1227
1227
|
hide_from_guests: boolean;
|
|
1228
1228
|
type_config?: {
|
|
@@ -1232,13 +1232,13 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1232
1232
|
default?: number | undefined;
|
|
1233
1233
|
} | undefined;
|
|
1234
1234
|
}, {
|
|
1235
|
-
type: "progress";
|
|
1236
1235
|
name: string;
|
|
1236
|
+
type: "progress";
|
|
1237
1237
|
required?: boolean | undefined;
|
|
1238
1238
|
hide_from_guests?: boolean | undefined;
|
|
1239
1239
|
type_config?: {
|
|
1240
|
-
start?: number | undefined;
|
|
1241
1240
|
default?: number | undefined;
|
|
1241
|
+
start?: number | undefined;
|
|
1242
1242
|
end?: number | undefined;
|
|
1243
1243
|
unit?: string | undefined;
|
|
1244
1244
|
} | undefined;
|
|
@@ -1256,16 +1256,16 @@ export declare const CreateCustomFieldSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1256
1256
|
multiple?: boolean | undefined;
|
|
1257
1257
|
}>>;
|
|
1258
1258
|
}>, "strip", z.ZodTypeAny, {
|
|
1259
|
-
type: "task_relationship";
|
|
1260
1259
|
name: string;
|
|
1260
|
+
type: "task_relationship";
|
|
1261
1261
|
required: boolean;
|
|
1262
1262
|
hide_from_guests: boolean;
|
|
1263
1263
|
type_config?: {
|
|
1264
1264
|
multiple: boolean;
|
|
1265
1265
|
} | undefined;
|
|
1266
1266
|
}, {
|
|
1267
|
-
type: "task_relationship";
|
|
1268
1267
|
name: string;
|
|
1268
|
+
type: "task_relationship";
|
|
1269
1269
|
required?: boolean | undefined;
|
|
1270
1270
|
hide_from_guests?: boolean | undefined;
|
|
1271
1271
|
type_config?: {
|
|
@@ -1353,16 +1353,16 @@ export declare const CreateListCustomFieldSchema: z.ZodObject<{
|
|
|
1353
1353
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1354
1354
|
hide_from_guests: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1355
1355
|
}, "strip", z.ZodTypeAny, {
|
|
1356
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1357
|
-
list_id: string;
|
|
1358
1356
|
name: string;
|
|
1357
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1358
|
+
list_id: string;
|
|
1359
1359
|
required: boolean;
|
|
1360
1360
|
hide_from_guests: boolean;
|
|
1361
1361
|
type_config?: Record<string, any> | undefined;
|
|
1362
1362
|
}, {
|
|
1363
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1364
|
-
list_id: string;
|
|
1365
1363
|
name: string;
|
|
1364
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1365
|
+
list_id: string;
|
|
1366
1366
|
required?: boolean | undefined;
|
|
1367
1367
|
hide_from_guests?: boolean | undefined;
|
|
1368
1368
|
type_config?: Record<string, any> | undefined;
|
|
@@ -1375,15 +1375,15 @@ export declare const CreateFolderCustomFieldSchema: z.ZodObject<{
|
|
|
1375
1375
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1376
1376
|
hide_from_guests: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1377
1377
|
}, "strip", z.ZodTypeAny, {
|
|
1378
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1379
1378
|
name: string;
|
|
1379
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1380
1380
|
folder_id: string;
|
|
1381
1381
|
required: boolean;
|
|
1382
1382
|
hide_from_guests: boolean;
|
|
1383
1383
|
type_config?: Record<string, any> | undefined;
|
|
1384
1384
|
}, {
|
|
1385
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1386
1385
|
name: string;
|
|
1386
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1387
1387
|
folder_id: string;
|
|
1388
1388
|
required?: boolean | undefined;
|
|
1389
1389
|
hide_from_guests?: boolean | undefined;
|
|
@@ -1397,15 +1397,15 @@ export declare const CreateSpaceCustomFieldSchema: z.ZodObject<{
|
|
|
1397
1397
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1398
1398
|
hide_from_guests: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1399
1399
|
}, "strip", z.ZodTypeAny, {
|
|
1400
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1401
1400
|
name: string;
|
|
1401
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1402
1402
|
space_id: string;
|
|
1403
1403
|
required: boolean;
|
|
1404
1404
|
hide_from_guests: boolean;
|
|
1405
1405
|
type_config?: Record<string, any> | undefined;
|
|
1406
1406
|
}, {
|
|
1407
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1408
1407
|
name: string;
|
|
1408
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1409
1409
|
space_id: string;
|
|
1410
1410
|
required?: boolean | undefined;
|
|
1411
1411
|
hide_from_guests?: boolean | undefined;
|
|
@@ -1499,16 +1499,16 @@ export declare const CustomFieldToolSchemas: {
|
|
|
1499
1499
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1500
1500
|
hide_from_guests: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1501
1501
|
}, "strip", z.ZodTypeAny, {
|
|
1502
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1503
|
-
list_id: string;
|
|
1504
1502
|
name: string;
|
|
1503
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1504
|
+
list_id: string;
|
|
1505
1505
|
required: boolean;
|
|
1506
1506
|
hide_from_guests: boolean;
|
|
1507
1507
|
type_config?: Record<string, any> | undefined;
|
|
1508
1508
|
}, {
|
|
1509
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1510
|
-
list_id: string;
|
|
1511
1509
|
name: string;
|
|
1510
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1511
|
+
list_id: string;
|
|
1512
1512
|
required?: boolean | undefined;
|
|
1513
1513
|
hide_from_guests?: boolean | undefined;
|
|
1514
1514
|
type_config?: Record<string, any> | undefined;
|
|
@@ -1521,15 +1521,15 @@ export declare const CustomFieldToolSchemas: {
|
|
|
1521
1521
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1522
1522
|
hide_from_guests: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1523
1523
|
}, "strip", z.ZodTypeAny, {
|
|
1524
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1525
1524
|
name: string;
|
|
1525
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1526
1526
|
folder_id: string;
|
|
1527
1527
|
required: boolean;
|
|
1528
1528
|
hide_from_guests: boolean;
|
|
1529
1529
|
type_config?: Record<string, any> | undefined;
|
|
1530
1530
|
}, {
|
|
1531
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1532
1531
|
name: string;
|
|
1532
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1533
1533
|
folder_id: string;
|
|
1534
1534
|
required?: boolean | undefined;
|
|
1535
1535
|
hide_from_guests?: boolean | undefined;
|
|
@@ -1543,15 +1543,15 @@ export declare const CustomFieldToolSchemas: {
|
|
|
1543
1543
|
required: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1544
1544
|
hide_from_guests: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1545
1545
|
}, "strip", z.ZodTypeAny, {
|
|
1546
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1547
1546
|
name: string;
|
|
1547
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1548
1548
|
space_id: string;
|
|
1549
1549
|
required: boolean;
|
|
1550
1550
|
hide_from_guests: boolean;
|
|
1551
1551
|
type_config?: Record<string, any> | undefined;
|
|
1552
1552
|
}, {
|
|
1553
|
-
type: "number" | "url" | "progress" | "textarea" | "text" | "date" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1554
1553
|
name: string;
|
|
1554
|
+
type: "number" | "url" | "progress" | "textarea" | "date" | "text" | "currency" | "drop_down" | "labels" | "checkbox" | "email" | "phone" | "rating" | "task_relationship";
|
|
1555
1555
|
space_id: string;
|
|
1556
1556
|
required?: boolean | undefined;
|
|
1557
1557
|
hide_from_guests?: boolean | undefined;
|