@chykalophia/clickup-mcp-server 5.0.2 → 5.0.3
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/tasks.js +19 -0
- package/build/clickup-client/tasks.js.map +1 -1
- package/build/schemas/chat-schemas.d.ts +2 -2
- package/build/schemas/goals-schemas.d.ts +14 -14
- package/build/schemas/time-tracking-schemas.d.ts +28 -28
- package/build/schemas/views-schemas.d.ts +26 -26
- package/package.json +1 -1
|
@@ -79,6 +79,25 @@ export class TasksClient {
|
|
|
79
79
|
}
|
|
80
80
|
// Note: ClickUp API doesn't accept text_content on update, it generates it
|
|
81
81
|
}
|
|
82
|
+
// ClickUp's Update Task endpoint takes assignees as a `{add, rem}` delta
|
|
83
|
+
// envelope, NOT a flat array like Create Task does. Sending a flat array
|
|
84
|
+
// returns HTTP 200 but silently routes the IDs into the watcher list
|
|
85
|
+
// instead of assigning them. Translate the desired-set input into a delta
|
|
86
|
+
// by diffing against current state.
|
|
87
|
+
if (params.assignees !== undefined) {
|
|
88
|
+
const current = await this.getTask(taskId);
|
|
89
|
+
const currentIds = (current.assignees ?? []).map(a => a.id);
|
|
90
|
+
const desiredIds = params.assignees;
|
|
91
|
+
const add = desiredIds.filter(id => !currentIds.includes(id));
|
|
92
|
+
const rem = currentIds.filter(id => !desiredIds.includes(id));
|
|
93
|
+
if (add.length === 0 && rem.length === 0) {
|
|
94
|
+
// Idempotent no-op — don't send an empty envelope.
|
|
95
|
+
delete processedParams.assignees;
|
|
96
|
+
}
|
|
97
|
+
else {
|
|
98
|
+
processedParams.assignees = { add, rem };
|
|
99
|
+
}
|
|
100
|
+
}
|
|
82
101
|
const result = await this.client.put(`/task/${taskId}`, processedParams);
|
|
83
102
|
return processClickUpResponse(result);
|
|
84
103
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tasks.js","sourceRoot":"","sources":["../../src/clickup-client/tasks.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"tasks.js","sourceRoot":"","sources":["../../src/clickup-client/tasks.ts"],"names":[],"mappings":"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"}
|
|
@@ -254,8 +254,8 @@ export declare const ChatChannelSchema: z.ZodObject<{
|
|
|
254
254
|
unread_count: z.ZodOptional<z.ZodNumber>;
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
256
|
type: "private" | "public" | "direct";
|
|
257
|
-
id: string;
|
|
258
257
|
name: string;
|
|
258
|
+
id: string;
|
|
259
259
|
workspace_id: string;
|
|
260
260
|
date_created: string;
|
|
261
261
|
date_updated: string;
|
|
@@ -268,8 +268,8 @@ export declare const ChatChannelSchema: z.ZodObject<{
|
|
|
268
268
|
unread_count?: number | undefined;
|
|
269
269
|
}, {
|
|
270
270
|
type: "private" | "public" | "direct";
|
|
271
|
-
id: string;
|
|
272
271
|
name: string;
|
|
272
|
+
id: string;
|
|
273
273
|
workspace_id: string;
|
|
274
274
|
date_created: string;
|
|
275
275
|
date_updated: string;
|
|
@@ -14,16 +14,16 @@ export declare const CreateGoalSchema: z.ZodObject<{
|
|
|
14
14
|
color: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
color: string;
|
|
17
|
-
team_id: string;
|
|
18
17
|
name: string;
|
|
19
18
|
due_date: number;
|
|
19
|
+
team_id: string;
|
|
20
20
|
multiple_owners: boolean;
|
|
21
21
|
owners: number[];
|
|
22
22
|
description?: string | undefined;
|
|
23
23
|
}, {
|
|
24
|
-
team_id: string;
|
|
25
24
|
name: string;
|
|
26
25
|
due_date: number;
|
|
26
|
+
team_id: string;
|
|
27
27
|
owners: number[];
|
|
28
28
|
color?: string | undefined;
|
|
29
29
|
description?: string | undefined;
|
|
@@ -406,8 +406,8 @@ export declare const GoalTargetResponseSchema: z.ZodObject<{
|
|
|
406
406
|
percent_completed: z.ZodNumber;
|
|
407
407
|
}, "strip", z.ZodTypeAny, {
|
|
408
408
|
type: "number" | "boolean" | "task" | "list" | "currency";
|
|
409
|
-
id: string;
|
|
410
409
|
name: string;
|
|
410
|
+
id: string;
|
|
411
411
|
date_created: string;
|
|
412
412
|
unit: string | null;
|
|
413
413
|
completed: boolean;
|
|
@@ -421,8 +421,8 @@ export declare const GoalTargetResponseSchema: z.ZodObject<{
|
|
|
421
421
|
creator: number;
|
|
422
422
|
}, {
|
|
423
423
|
type: "number" | "boolean" | "task" | "list" | "currency";
|
|
424
|
-
id: string;
|
|
425
424
|
name: string;
|
|
425
|
+
id: string;
|
|
426
426
|
date_created: string;
|
|
427
427
|
unit: string | null;
|
|
428
428
|
completed: boolean;
|
|
@@ -511,8 +511,8 @@ export declare const GoalResponseSchema: z.ZodObject<{
|
|
|
511
511
|
percent_completed: z.ZodNumber;
|
|
512
512
|
}, "strip", z.ZodTypeAny, {
|
|
513
513
|
type: "number" | "boolean" | "task" | "list" | "currency";
|
|
514
|
-
id: string;
|
|
515
514
|
name: string;
|
|
515
|
+
id: string;
|
|
516
516
|
date_created: string;
|
|
517
517
|
unit: string | null;
|
|
518
518
|
completed: boolean;
|
|
@@ -526,8 +526,8 @@ export declare const GoalResponseSchema: z.ZodObject<{
|
|
|
526
526
|
creator: number;
|
|
527
527
|
}, {
|
|
528
528
|
type: "number" | "boolean" | "task" | "list" | "currency";
|
|
529
|
-
id: string;
|
|
530
529
|
name: string;
|
|
530
|
+
id: string;
|
|
531
531
|
date_created: string;
|
|
532
532
|
unit: string | null;
|
|
533
533
|
completed: boolean;
|
|
@@ -544,12 +544,12 @@ export declare const GoalResponseSchema: z.ZodObject<{
|
|
|
544
544
|
pretty_url: z.ZodString;
|
|
545
545
|
}, "strip", z.ZodTypeAny, {
|
|
546
546
|
color: string;
|
|
547
|
-
team_id: string;
|
|
548
|
-
id: string;
|
|
549
547
|
name: string;
|
|
550
548
|
description: string;
|
|
551
549
|
due_date: string;
|
|
552
550
|
start_date: string | null;
|
|
551
|
+
team_id: string;
|
|
552
|
+
id: string;
|
|
553
553
|
archived: boolean;
|
|
554
554
|
date_created: string;
|
|
555
555
|
private: boolean;
|
|
@@ -576,8 +576,8 @@ export declare const GoalResponseSchema: z.ZodObject<{
|
|
|
576
576
|
}[];
|
|
577
577
|
key_results: {
|
|
578
578
|
type: "number" | "boolean" | "task" | "list" | "currency";
|
|
579
|
-
id: string;
|
|
580
579
|
name: string;
|
|
580
|
+
id: string;
|
|
581
581
|
date_created: string;
|
|
582
582
|
unit: string | null;
|
|
583
583
|
completed: boolean;
|
|
@@ -593,12 +593,12 @@ export declare const GoalResponseSchema: z.ZodObject<{
|
|
|
593
593
|
pretty_url: string;
|
|
594
594
|
}, {
|
|
595
595
|
color: string;
|
|
596
|
-
team_id: string;
|
|
597
|
-
id: string;
|
|
598
596
|
name: string;
|
|
599
597
|
description: string;
|
|
600
598
|
due_date: string;
|
|
601
599
|
start_date: string | null;
|
|
600
|
+
team_id: string;
|
|
601
|
+
id: string;
|
|
602
602
|
archived: boolean;
|
|
603
603
|
date_created: string;
|
|
604
604
|
private: boolean;
|
|
@@ -625,8 +625,8 @@ export declare const GoalResponseSchema: z.ZodObject<{
|
|
|
625
625
|
}[];
|
|
626
626
|
key_results: {
|
|
627
627
|
type: "number" | "boolean" | "task" | "list" | "currency";
|
|
628
|
-
id: string;
|
|
629
628
|
name: string;
|
|
629
|
+
id: string;
|
|
630
630
|
date_created: string;
|
|
631
631
|
unit: string | null;
|
|
632
632
|
completed: boolean;
|
|
@@ -693,16 +693,16 @@ export declare const GoalsToolSchemas: {
|
|
|
693
693
|
color: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
694
694
|
}, "strip", z.ZodTypeAny, {
|
|
695
695
|
color: string;
|
|
696
|
-
team_id: string;
|
|
697
696
|
name: string;
|
|
698
697
|
due_date: number;
|
|
698
|
+
team_id: string;
|
|
699
699
|
multiple_owners: boolean;
|
|
700
700
|
owners: number[];
|
|
701
701
|
description?: string | undefined;
|
|
702
702
|
}, {
|
|
703
|
-
team_id: string;
|
|
704
703
|
name: string;
|
|
705
704
|
due_date: number;
|
|
705
|
+
team_id: string;
|
|
706
706
|
owners: number[];
|
|
707
707
|
color?: string | undefined;
|
|
708
708
|
description?: string | undefined;
|
|
@@ -44,8 +44,8 @@ export declare const CreateTimeEntrySchema: z.ZodObject<{
|
|
|
44
44
|
creator?: number | undefined;
|
|
45
45
|
}>, "many">>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
team_id: string;
|
|
48
47
|
description: string;
|
|
48
|
+
team_id: string;
|
|
49
49
|
start: number;
|
|
50
50
|
billable: boolean;
|
|
51
51
|
task_id?: string | undefined;
|
|
@@ -58,8 +58,8 @@ export declare const CreateTimeEntrySchema: z.ZodObject<{
|
|
|
58
58
|
assignee?: number | undefined;
|
|
59
59
|
end?: number | undefined;
|
|
60
60
|
}, {
|
|
61
|
-
team_id: string;
|
|
62
61
|
description: string;
|
|
62
|
+
team_id: string;
|
|
63
63
|
start: number;
|
|
64
64
|
task_id?: string | undefined;
|
|
65
65
|
tags?: {
|
|
@@ -99,8 +99,8 @@ export declare const UpdateTimeEntrySchema: z.ZodObject<{
|
|
|
99
99
|
}, "strip", z.ZodTypeAny, {
|
|
100
100
|
team_id: string;
|
|
101
101
|
timer_id: string;
|
|
102
|
-
task_id?: string | undefined;
|
|
103
102
|
description?: string | undefined;
|
|
103
|
+
task_id?: string | undefined;
|
|
104
104
|
tags?: {
|
|
105
105
|
name: string;
|
|
106
106
|
tag_fg?: string | undefined;
|
|
@@ -113,8 +113,8 @@ export declare const UpdateTimeEntrySchema: z.ZodObject<{
|
|
|
113
113
|
}, {
|
|
114
114
|
team_id: string;
|
|
115
115
|
timer_id: string;
|
|
116
|
-
task_id?: string | undefined;
|
|
117
116
|
description?: string | undefined;
|
|
117
|
+
task_id?: string | undefined;
|
|
118
118
|
tags?: {
|
|
119
119
|
name: string;
|
|
120
120
|
tag_fg?: string | undefined;
|
|
@@ -150,8 +150,8 @@ export declare const GetTimeEntriesSchema: z.ZodObject<{
|
|
|
150
150
|
team_id: string;
|
|
151
151
|
include_task_tags: boolean;
|
|
152
152
|
include_location_names: boolean;
|
|
153
|
-
task_id?: string | undefined;
|
|
154
153
|
start_date?: number | undefined;
|
|
154
|
+
task_id?: string | undefined;
|
|
155
155
|
list_id?: string | undefined;
|
|
156
156
|
space_id?: string | undefined;
|
|
157
157
|
assignee?: number | undefined;
|
|
@@ -159,8 +159,8 @@ export declare const GetTimeEntriesSchema: z.ZodObject<{
|
|
|
159
159
|
end_date?: number | undefined;
|
|
160
160
|
}, {
|
|
161
161
|
team_id: string;
|
|
162
|
-
task_id?: string | undefined;
|
|
163
162
|
start_date?: number | undefined;
|
|
163
|
+
task_id?: string | undefined;
|
|
164
164
|
list_id?: string | undefined;
|
|
165
165
|
space_id?: string | undefined;
|
|
166
166
|
assignee?: number | undefined;
|
|
@@ -218,8 +218,8 @@ export declare const GetTimeSummarySchema: z.ZodObject<{
|
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
team_id: string;
|
|
220
220
|
billable_only: boolean;
|
|
221
|
-
task_id?: string | undefined;
|
|
222
221
|
start_date?: number | undefined;
|
|
222
|
+
task_id?: string | undefined;
|
|
223
223
|
list_id?: string | undefined;
|
|
224
224
|
space_id?: string | undefined;
|
|
225
225
|
assignee?: number | undefined;
|
|
@@ -227,8 +227,8 @@ export declare const GetTimeSummarySchema: z.ZodObject<{
|
|
|
227
227
|
end_date?: number | undefined;
|
|
228
228
|
}, {
|
|
229
229
|
team_id: string;
|
|
230
|
-
task_id?: string | undefined;
|
|
231
230
|
start_date?: number | undefined;
|
|
231
|
+
task_id?: string | undefined;
|
|
232
232
|
list_id?: string | undefined;
|
|
233
233
|
space_id?: string | undefined;
|
|
234
234
|
assignee?: number | undefined;
|
|
@@ -277,8 +277,8 @@ export declare const TimeEntryResponseSchema: z.ZodObject<{
|
|
|
277
277
|
color: string;
|
|
278
278
|
orderindex: number;
|
|
279
279
|
};
|
|
280
|
-
id: string;
|
|
281
280
|
name: string;
|
|
281
|
+
id: string;
|
|
282
282
|
custom_type: string | null;
|
|
283
283
|
}, {
|
|
284
284
|
status: {
|
|
@@ -287,8 +287,8 @@ export declare const TimeEntryResponseSchema: z.ZodObject<{
|
|
|
287
287
|
color: string;
|
|
288
288
|
orderindex: number;
|
|
289
289
|
};
|
|
290
|
-
id: string;
|
|
291
290
|
name: string;
|
|
291
|
+
id: string;
|
|
292
292
|
custom_type: string | null;
|
|
293
293
|
}>>;
|
|
294
294
|
wid: z.ZodString;
|
|
@@ -348,6 +348,7 @@ export declare const TimeEntryResponseSchema: z.ZodObject<{
|
|
|
348
348
|
initials: string;
|
|
349
349
|
profilePicture: string;
|
|
350
350
|
};
|
|
351
|
+
description: string;
|
|
351
352
|
id: string;
|
|
352
353
|
task: {
|
|
353
354
|
status: {
|
|
@@ -356,11 +357,10 @@ export declare const TimeEntryResponseSchema: z.ZodObject<{
|
|
|
356
357
|
color: string;
|
|
357
358
|
orderindex: number;
|
|
358
359
|
};
|
|
359
|
-
id: string;
|
|
360
360
|
name: string;
|
|
361
|
+
id: string;
|
|
361
362
|
custom_type: string | null;
|
|
362
363
|
} | null;
|
|
363
|
-
description: string;
|
|
364
364
|
tags: {
|
|
365
365
|
name: string;
|
|
366
366
|
tag_fg?: string | undefined;
|
|
@@ -383,6 +383,7 @@ export declare const TimeEntryResponseSchema: z.ZodObject<{
|
|
|
383
383
|
initials: string;
|
|
384
384
|
profilePicture: string;
|
|
385
385
|
};
|
|
386
|
+
description: string;
|
|
386
387
|
id: string;
|
|
387
388
|
task: {
|
|
388
389
|
status: {
|
|
@@ -391,11 +392,10 @@ export declare const TimeEntryResponseSchema: z.ZodObject<{
|
|
|
391
392
|
color: string;
|
|
392
393
|
orderindex: number;
|
|
393
394
|
};
|
|
394
|
-
id: string;
|
|
395
395
|
name: string;
|
|
396
|
+
id: string;
|
|
396
397
|
custom_type: string | null;
|
|
397
398
|
} | null;
|
|
398
|
-
description: string;
|
|
399
399
|
tags: {
|
|
400
400
|
name: string;
|
|
401
401
|
tag_fg?: string | undefined;
|
|
@@ -414,11 +414,11 @@ export declare const RunningTimerResponseSchema: z.ZodObject<{
|
|
|
414
414
|
id: z.ZodString;
|
|
415
415
|
name: z.ZodString;
|
|
416
416
|
}, "strip", z.ZodTypeAny, {
|
|
417
|
-
id: string;
|
|
418
417
|
name: string;
|
|
419
|
-
}, {
|
|
420
418
|
id: string;
|
|
419
|
+
}, {
|
|
421
420
|
name: string;
|
|
421
|
+
id: string;
|
|
422
422
|
}>>;
|
|
423
423
|
user: z.ZodObject<{
|
|
424
424
|
id: z.ZodNumber;
|
|
@@ -458,12 +458,12 @@ export declare const RunningTimerResponseSchema: z.ZodObject<{
|
|
|
458
458
|
email: string;
|
|
459
459
|
username: string;
|
|
460
460
|
};
|
|
461
|
+
description: string;
|
|
461
462
|
id: string;
|
|
462
463
|
task: {
|
|
463
|
-
id: string;
|
|
464
464
|
name: string;
|
|
465
|
+
id: string;
|
|
465
466
|
} | null;
|
|
466
|
-
description: string;
|
|
467
467
|
tags: {
|
|
468
468
|
name: string;
|
|
469
469
|
tag_fg?: string | undefined;
|
|
@@ -478,12 +478,12 @@ export declare const RunningTimerResponseSchema: z.ZodObject<{
|
|
|
478
478
|
email: string;
|
|
479
479
|
username: string;
|
|
480
480
|
};
|
|
481
|
+
description: string;
|
|
481
482
|
id: string;
|
|
482
483
|
task: {
|
|
483
|
-
id: string;
|
|
484
484
|
name: string;
|
|
485
|
+
id: string;
|
|
485
486
|
} | null;
|
|
486
|
-
description: string;
|
|
487
487
|
tags: {
|
|
488
488
|
name: string;
|
|
489
489
|
tag_fg?: string | undefined;
|
|
@@ -535,8 +535,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
535
535
|
creator?: number | undefined;
|
|
536
536
|
}>, "many">>;
|
|
537
537
|
}, "strip", z.ZodTypeAny, {
|
|
538
|
-
team_id: string;
|
|
539
538
|
description: string;
|
|
539
|
+
team_id: string;
|
|
540
540
|
start: number;
|
|
541
541
|
billable: boolean;
|
|
542
542
|
task_id?: string | undefined;
|
|
@@ -549,8 +549,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
549
549
|
assignee?: number | undefined;
|
|
550
550
|
end?: number | undefined;
|
|
551
551
|
}, {
|
|
552
|
-
team_id: string;
|
|
553
552
|
description: string;
|
|
553
|
+
team_id: string;
|
|
554
554
|
start: number;
|
|
555
555
|
task_id?: string | undefined;
|
|
556
556
|
tags?: {
|
|
@@ -590,8 +590,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
590
590
|
}, "strip", z.ZodTypeAny, {
|
|
591
591
|
team_id: string;
|
|
592
592
|
timer_id: string;
|
|
593
|
-
task_id?: string | undefined;
|
|
594
593
|
description?: string | undefined;
|
|
594
|
+
task_id?: string | undefined;
|
|
595
595
|
tags?: {
|
|
596
596
|
name: string;
|
|
597
597
|
tag_fg?: string | undefined;
|
|
@@ -604,8 +604,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
604
604
|
}, {
|
|
605
605
|
team_id: string;
|
|
606
606
|
timer_id: string;
|
|
607
|
-
task_id?: string | undefined;
|
|
608
607
|
description?: string | undefined;
|
|
608
|
+
task_id?: string | undefined;
|
|
609
609
|
tags?: {
|
|
610
610
|
name: string;
|
|
611
611
|
tag_fg?: string | undefined;
|
|
@@ -641,8 +641,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
641
641
|
team_id: string;
|
|
642
642
|
include_task_tags: boolean;
|
|
643
643
|
include_location_names: boolean;
|
|
644
|
-
task_id?: string | undefined;
|
|
645
644
|
start_date?: number | undefined;
|
|
645
|
+
task_id?: string | undefined;
|
|
646
646
|
list_id?: string | undefined;
|
|
647
647
|
space_id?: string | undefined;
|
|
648
648
|
assignee?: number | undefined;
|
|
@@ -650,8 +650,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
650
650
|
end_date?: number | undefined;
|
|
651
651
|
}, {
|
|
652
652
|
team_id: string;
|
|
653
|
-
task_id?: string | undefined;
|
|
654
653
|
start_date?: number | undefined;
|
|
654
|
+
task_id?: string | undefined;
|
|
655
655
|
list_id?: string | undefined;
|
|
656
656
|
space_id?: string | undefined;
|
|
657
657
|
assignee?: number | undefined;
|
|
@@ -709,8 +709,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
709
709
|
}, "strip", z.ZodTypeAny, {
|
|
710
710
|
team_id: string;
|
|
711
711
|
billable_only: boolean;
|
|
712
|
-
task_id?: string | undefined;
|
|
713
712
|
start_date?: number | undefined;
|
|
713
|
+
task_id?: string | undefined;
|
|
714
714
|
list_id?: string | undefined;
|
|
715
715
|
space_id?: string | undefined;
|
|
716
716
|
assignee?: number | undefined;
|
|
@@ -718,8 +718,8 @@ export declare const TimeTrackingToolSchemas: {
|
|
|
718
718
|
end_date?: number | undefined;
|
|
719
719
|
}, {
|
|
720
720
|
team_id: string;
|
|
721
|
-
task_id?: string | undefined;
|
|
722
721
|
start_date?: number | undefined;
|
|
722
|
+
task_id?: string | undefined;
|
|
723
723
|
list_id?: string | undefined;
|
|
724
724
|
space_id?: string | undefined;
|
|
725
725
|
assignee?: number | undefined;
|
|
@@ -48,13 +48,13 @@ export declare const BoardViewSettingsSchema: z.ZodObject<{
|
|
|
48
48
|
color: z.ZodOptional<z.ZodString>;
|
|
49
49
|
orderindex: z.ZodOptional<z.ZodNumber>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
id: string;
|
|
52
51
|
name: string;
|
|
52
|
+
id: string;
|
|
53
53
|
color?: string | undefined;
|
|
54
54
|
orderindex?: number | undefined;
|
|
55
55
|
}, {
|
|
56
|
-
id: string;
|
|
57
56
|
name: string;
|
|
57
|
+
id: string;
|
|
58
58
|
color?: string | undefined;
|
|
59
59
|
orderindex?: number | undefined;
|
|
60
60
|
}>, "many">>;
|
|
@@ -72,8 +72,8 @@ export declare const BoardViewSettingsSchema: z.ZodObject<{
|
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
73
|
card_size: "small" | "medium" | "large";
|
|
74
74
|
columns?: {
|
|
75
|
-
id: string;
|
|
76
75
|
name: string;
|
|
76
|
+
id: string;
|
|
77
77
|
color?: string | undefined;
|
|
78
78
|
orderindex?: number | undefined;
|
|
79
79
|
}[] | undefined;
|
|
@@ -83,8 +83,8 @@ export declare const BoardViewSettingsSchema: z.ZodObject<{
|
|
|
83
83
|
} | undefined;
|
|
84
84
|
}, {
|
|
85
85
|
columns?: {
|
|
86
|
-
id: string;
|
|
87
86
|
name: string;
|
|
87
|
+
id: string;
|
|
88
88
|
color?: string | undefined;
|
|
89
89
|
orderindex?: number | undefined;
|
|
90
90
|
}[] | undefined;
|
|
@@ -171,13 +171,13 @@ export declare const ViewSettingsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
171
171
|
color: z.ZodOptional<z.ZodString>;
|
|
172
172
|
orderindex: z.ZodOptional<z.ZodNumber>;
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
|
-
id: string;
|
|
175
174
|
name: string;
|
|
175
|
+
id: string;
|
|
176
176
|
color?: string | undefined;
|
|
177
177
|
orderindex?: number | undefined;
|
|
178
178
|
}, {
|
|
179
|
-
id: string;
|
|
180
179
|
name: string;
|
|
180
|
+
id: string;
|
|
181
181
|
color?: string | undefined;
|
|
182
182
|
orderindex?: number | undefined;
|
|
183
183
|
}>, "many">>;
|
|
@@ -195,8 +195,8 @@ export declare const ViewSettingsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
195
195
|
}, "strip", z.ZodTypeAny, {
|
|
196
196
|
card_size: "small" | "medium" | "large";
|
|
197
197
|
columns?: {
|
|
198
|
-
id: string;
|
|
199
198
|
name: string;
|
|
199
|
+
id: string;
|
|
200
200
|
color?: string | undefined;
|
|
201
201
|
orderindex?: number | undefined;
|
|
202
202
|
}[] | undefined;
|
|
@@ -206,8 +206,8 @@ export declare const ViewSettingsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
206
206
|
} | undefined;
|
|
207
207
|
}, {
|
|
208
208
|
columns?: {
|
|
209
|
-
id: string;
|
|
210
209
|
name: string;
|
|
210
|
+
id: string;
|
|
211
211
|
color?: string | undefined;
|
|
212
212
|
orderindex?: number | undefined;
|
|
213
213
|
}[] | undefined;
|
|
@@ -336,13 +336,13 @@ export declare const CreateViewSchema: z.ZodObject<{
|
|
|
336
336
|
color: z.ZodOptional<z.ZodString>;
|
|
337
337
|
orderindex: z.ZodOptional<z.ZodNumber>;
|
|
338
338
|
}, "strip", z.ZodTypeAny, {
|
|
339
|
-
id: string;
|
|
340
339
|
name: string;
|
|
340
|
+
id: string;
|
|
341
341
|
color?: string | undefined;
|
|
342
342
|
orderindex?: number | undefined;
|
|
343
343
|
}, {
|
|
344
|
-
id: string;
|
|
345
344
|
name: string;
|
|
345
|
+
id: string;
|
|
346
346
|
color?: string | undefined;
|
|
347
347
|
orderindex?: number | undefined;
|
|
348
348
|
}>, "many">>;
|
|
@@ -360,8 +360,8 @@ export declare const CreateViewSchema: z.ZodObject<{
|
|
|
360
360
|
}, "strip", z.ZodTypeAny, {
|
|
361
361
|
card_size: "small" | "medium" | "large";
|
|
362
362
|
columns?: {
|
|
363
|
-
id: string;
|
|
364
363
|
name: string;
|
|
364
|
+
id: string;
|
|
365
365
|
color?: string | undefined;
|
|
366
366
|
orderindex?: number | undefined;
|
|
367
367
|
}[] | undefined;
|
|
@@ -371,8 +371,8 @@ export declare const CreateViewSchema: z.ZodObject<{
|
|
|
371
371
|
} | undefined;
|
|
372
372
|
}, {
|
|
373
373
|
columns?: {
|
|
374
|
-
id: string;
|
|
375
374
|
name: string;
|
|
375
|
+
id: string;
|
|
376
376
|
color?: string | undefined;
|
|
377
377
|
orderindex?: number | undefined;
|
|
378
378
|
}[] | undefined;
|
|
@@ -475,8 +475,8 @@ export declare const CreateViewSchema: z.ZodObject<{
|
|
|
475
475
|
settings?: {
|
|
476
476
|
card_size: "small" | "medium" | "large";
|
|
477
477
|
columns?: {
|
|
478
|
-
id: string;
|
|
479
478
|
name: string;
|
|
479
|
+
id: string;
|
|
480
480
|
color?: string | undefined;
|
|
481
481
|
orderindex?: number | undefined;
|
|
482
482
|
}[] | undefined;
|
|
@@ -528,8 +528,8 @@ export declare const CreateViewSchema: z.ZodObject<{
|
|
|
528
528
|
}[] | undefined;
|
|
529
529
|
settings?: {
|
|
530
530
|
columns?: {
|
|
531
|
-
id: string;
|
|
532
531
|
name: string;
|
|
532
|
+
id: string;
|
|
533
533
|
color?: string | undefined;
|
|
534
534
|
orderindex?: number | undefined;
|
|
535
535
|
}[] | undefined;
|
|
@@ -609,13 +609,13 @@ export declare const UpdateViewSchema: z.ZodObject<{
|
|
|
609
609
|
color: z.ZodOptional<z.ZodString>;
|
|
610
610
|
orderindex: z.ZodOptional<z.ZodNumber>;
|
|
611
611
|
}, "strip", z.ZodTypeAny, {
|
|
612
|
-
id: string;
|
|
613
612
|
name: string;
|
|
613
|
+
id: string;
|
|
614
614
|
color?: string | undefined;
|
|
615
615
|
orderindex?: number | undefined;
|
|
616
616
|
}, {
|
|
617
|
-
id: string;
|
|
618
617
|
name: string;
|
|
618
|
+
id: string;
|
|
619
619
|
color?: string | undefined;
|
|
620
620
|
orderindex?: number | undefined;
|
|
621
621
|
}>, "many">>;
|
|
@@ -633,8 +633,8 @@ export declare const UpdateViewSchema: z.ZodObject<{
|
|
|
633
633
|
}, "strip", z.ZodTypeAny, {
|
|
634
634
|
card_size: "small" | "medium" | "large";
|
|
635
635
|
columns?: {
|
|
636
|
-
id: string;
|
|
637
636
|
name: string;
|
|
637
|
+
id: string;
|
|
638
638
|
color?: string | undefined;
|
|
639
639
|
orderindex?: number | undefined;
|
|
640
640
|
}[] | undefined;
|
|
@@ -644,8 +644,8 @@ export declare const UpdateViewSchema: z.ZodObject<{
|
|
|
644
644
|
} | undefined;
|
|
645
645
|
}, {
|
|
646
646
|
columns?: {
|
|
647
|
-
id: string;
|
|
648
647
|
name: string;
|
|
648
|
+
id: string;
|
|
649
649
|
color?: string | undefined;
|
|
650
650
|
orderindex?: number | undefined;
|
|
651
651
|
}[] | undefined;
|
|
@@ -746,8 +746,8 @@ export declare const UpdateViewSchema: z.ZodObject<{
|
|
|
746
746
|
settings?: {
|
|
747
747
|
card_size: "small" | "medium" | "large";
|
|
748
748
|
columns?: {
|
|
749
|
-
id: string;
|
|
750
749
|
name: string;
|
|
750
|
+
id: string;
|
|
751
751
|
color?: string | undefined;
|
|
752
752
|
orderindex?: number | undefined;
|
|
753
753
|
}[] | undefined;
|
|
@@ -797,8 +797,8 @@ export declare const UpdateViewSchema: z.ZodObject<{
|
|
|
797
797
|
}[] | undefined;
|
|
798
798
|
settings?: {
|
|
799
799
|
columns?: {
|
|
800
|
-
id: string;
|
|
801
800
|
name: string;
|
|
801
|
+
id: string;
|
|
802
802
|
color?: string | undefined;
|
|
803
803
|
orderindex?: number | undefined;
|
|
804
804
|
}[] | undefined;
|
|
@@ -943,13 +943,13 @@ export declare const UpdateViewSettingsSchema: z.ZodObject<{
|
|
|
943
943
|
color: z.ZodOptional<z.ZodString>;
|
|
944
944
|
orderindex: z.ZodOptional<z.ZodNumber>;
|
|
945
945
|
}, "strip", z.ZodTypeAny, {
|
|
946
|
-
id: string;
|
|
947
946
|
name: string;
|
|
947
|
+
id: string;
|
|
948
948
|
color?: string | undefined;
|
|
949
949
|
orderindex?: number | undefined;
|
|
950
950
|
}, {
|
|
951
|
-
id: string;
|
|
952
951
|
name: string;
|
|
952
|
+
id: string;
|
|
953
953
|
color?: string | undefined;
|
|
954
954
|
orderindex?: number | undefined;
|
|
955
955
|
}>, "many">>;
|
|
@@ -967,8 +967,8 @@ export declare const UpdateViewSettingsSchema: z.ZodObject<{
|
|
|
967
967
|
}, "strip", z.ZodTypeAny, {
|
|
968
968
|
card_size: "small" | "medium" | "large";
|
|
969
969
|
columns?: {
|
|
970
|
-
id: string;
|
|
971
970
|
name: string;
|
|
971
|
+
id: string;
|
|
972
972
|
color?: string | undefined;
|
|
973
973
|
orderindex?: number | undefined;
|
|
974
974
|
}[] | undefined;
|
|
@@ -978,8 +978,8 @@ export declare const UpdateViewSettingsSchema: z.ZodObject<{
|
|
|
978
978
|
} | undefined;
|
|
979
979
|
}, {
|
|
980
980
|
columns?: {
|
|
981
|
-
id: string;
|
|
982
981
|
name: string;
|
|
982
|
+
id: string;
|
|
983
983
|
color?: string | undefined;
|
|
984
984
|
orderindex?: number | undefined;
|
|
985
985
|
}[] | undefined;
|
|
@@ -1061,8 +1061,8 @@ export declare const UpdateViewSettingsSchema: z.ZodObject<{
|
|
|
1061
1061
|
settings: {
|
|
1062
1062
|
card_size: "small" | "medium" | "large";
|
|
1063
1063
|
columns?: {
|
|
1064
|
-
id: string;
|
|
1065
1064
|
name: string;
|
|
1065
|
+
id: string;
|
|
1066
1066
|
color?: string | undefined;
|
|
1067
1067
|
orderindex?: number | undefined;
|
|
1068
1068
|
}[] | undefined;
|
|
@@ -1094,8 +1094,8 @@ export declare const UpdateViewSettingsSchema: z.ZodObject<{
|
|
|
1094
1094
|
view_id: string;
|
|
1095
1095
|
settings: {
|
|
1096
1096
|
columns?: {
|
|
1097
|
-
id: string;
|
|
1098
1097
|
name: string;
|
|
1098
|
+
id: string;
|
|
1099
1099
|
color?: string | undefined;
|
|
1100
1100
|
orderindex?: number | undefined;
|
|
1101
1101
|
}[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chykalophia/clickup-mcp-server",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "An intelligent Model Context Protocol server for ClickUp API integration with 177+ tools, AI-powered efficiency optimization, smart tool suggestions, and context-aware workflow recommendations",
|
|
5
5
|
"main": "build/index-enhanced.js",
|
|
6
6
|
"bin": {
|