@omnicoreos/planka-mcp 0.2.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 +86 -0
- package/CONTRIBUTING.md +37 -0
- package/CREDITS.md +39 -0
- package/LICENSE +22 -0
- package/README.es.md +213 -0
- package/README.md +213 -0
- package/dist/client.d.ts +96 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +281 -0
- package/dist/client.js.map +1 -0
- package/dist/errors.d.ts +85 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +226 -0
- package/dist/errors.js.map +1 -0
- package/dist/identity.generated.d.ts +3 -0
- package/dist/identity.generated.d.ts.map +1 -0
- package/dist/identity.generated.js +4 -0
- package/dist/identity.generated.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +93 -0
- package/dist/index.js.map +1 -0
- package/dist/operations/attachments.d.ts +34 -0
- package/dist/operations/attachments.d.ts.map +1 -0
- package/dist/operations/attachments.js +89 -0
- package/dist/operations/attachments.js.map +1 -0
- package/dist/operations/board-id.d.ts +9 -0
- package/dist/operations/board-id.d.ts.map +1 -0
- package/dist/operations/board-id.js +86 -0
- package/dist/operations/board-id.js.map +1 -0
- package/dist/operations/boards.d.ts +143 -0
- package/dist/operations/boards.d.ts.map +1 -0
- package/dist/operations/boards.js +391 -0
- package/dist/operations/boards.js.map +1 -0
- package/dist/operations/cards.d.ts +36 -0
- package/dist/operations/cards.d.ts.map +1 -0
- package/dist/operations/cards.js +81 -0
- package/dist/operations/cards.js.map +1 -0
- package/dist/operations/comments.d.ts +28 -0
- package/dist/operations/comments.d.ts.map +1 -0
- package/dist/operations/comments.js +53 -0
- package/dist/operations/comments.js.map +1 -0
- package/dist/operations/labels.d.ts +60 -0
- package/dist/operations/labels.d.ts.map +1 -0
- package/dist/operations/labels.js +146 -0
- package/dist/operations/labels.js.map +1 -0
- package/dist/operations/lists.d.ts +15 -0
- package/dist/operations/lists.d.ts.map +1 -0
- package/dist/operations/lists.js +40 -0
- package/dist/operations/lists.js.map +1 -0
- package/dist/operations/projects.d.ts +24 -0
- package/dist/operations/projects.d.ts.map +1 -0
- package/dist/operations/projects.js +61 -0
- package/dist/operations/projects.js.map +1 -0
- package/dist/operations/tasks.d.ts +30 -0
- package/dist/operations/tasks.d.ts.map +1 -0
- package/dist/operations/tasks.js +111 -0
- package/dist/operations/tasks.js.map +1 -0
- package/dist/schemas/entities.d.ts +389 -0
- package/dist/schemas/entities.d.ts.map +1 -0
- package/dist/schemas/entities.js +202 -0
- package/dist/schemas/entities.js.map +1 -0
- package/dist/schemas/requests.d.ts +539 -0
- package/dist/schemas/requests.d.ts.map +1 -0
- package/dist/schemas/requests.js +187 -0
- package/dist/schemas/requests.js.map +1 -0
- package/dist/schemas/responses.d.ts +2626 -0
- package/dist/schemas/responses.d.ts.map +1 -0
- package/dist/schemas/responses.js +75 -0
- package/dist/schemas/responses.js.map +1 -0
- package/dist/tools/attachments.d.ts +270 -0
- package/dist/tools/attachments.d.ts.map +1 -0
- package/dist/tools/attachments.js +247 -0
- package/dist/tools/attachments.js.map +1 -0
- package/dist/tools/cards.d.ts +401 -0
- package/dist/tools/cards.d.ts.map +1 -0
- package/dist/tools/cards.js +368 -0
- package/dist/tools/cards.js.map +1 -0
- package/dist/tools/comments.d.ts +217 -0
- package/dist/tools/comments.d.ts.map +1 -0
- package/dist/tools/comments.js +208 -0
- package/dist/tools/comments.js.map +1 -0
- package/dist/tools/index.d.ts +1293 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +62 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/labels.d.ts +214 -0
- package/dist/tools/labels.d.ts.map +1 -0
- package/dist/tools/labels.js +302 -0
- package/dist/tools/labels.js.map +1 -0
- package/dist/tools/lists.d.ts +117 -0
- package/dist/tools/lists.d.ts.map +1 -0
- package/dist/tools/lists.js +178 -0
- package/dist/tools/lists.js.map +1 -0
- package/dist/tools/navigation.d.ts +106 -0
- package/dist/tools/navigation.d.ts.map +1 -0
- package/dist/tools/navigation.js +151 -0
- package/dist/tools/navigation.js.map +1 -0
- package/dist/tools/queries.d.ts +380 -0
- package/dist/tools/queries.d.ts.map +1 -0
- package/dist/tools/queries.js +256 -0
- package/dist/tools/queries.js.map +1 -0
- package/dist/tools/tasks.d.ts +223 -0
- package/dist/tools/tasks.d.ts.map +1 -0
- package/dist/tools/tasks.js +169 -0
- package/dist/tools/tasks.js.map +1 -0
- package/docs/planka-2x-gotchas.md +192 -0
- package/docs/tools.md +659 -0
- package/docs/troubleshooting.md +138 -0
- package/package.json +71 -0
- package/project.identity.json +7 -0
- package/scripts/bootstrap-board.mjs +160 -0
- package/scripts/lib/planka-api.mjs +244 -0
- package/scripts/lib/workflow-template.mjs +26 -0
- package/scripts/setup.mjs +236 -0
- package/scripts/setup.sh +48 -0
- package/scripts/sync-identity.mjs +57 -0
- package/server.json +43 -0
- package/tests/smoke/planka-smoke.mjs +920 -0
- package/workflow/README.md +232 -0
- package/workflow/board-template.md +115 -0
- package/workflow/skills/planka-close-card/SKILL.md +81 -0
- package/workflow/skills/planka-orchestrator/SKILL.md +126 -0
- package/workflow/worktrees/README.md +104 -0
- package/workflow/worktrees/wt.conf.example +24 -0
- package/workflow/worktrees/wt.sh +345 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Task (checklist item) operations for PLANKA 2.0 API.
|
|
3
|
+
*
|
|
4
|
+
* PLANKA 2.0 introduced task-lists (checklists) as containers for tasks.
|
|
5
|
+
* This module provides a convenience layer that auto-creates a default
|
|
6
|
+
* task-list when adding tasks to a card that doesn't have one.
|
|
7
|
+
*/
|
|
8
|
+
import { plankaClient } from "../client.js";
|
|
9
|
+
import { parseInput } from "../errors.js";
|
|
10
|
+
import { BatchCreateTasksSchema, CreateTaskListSchema, CreateTaskSchema, TaskIdSchema, TaskListIdSchema, UpdateTaskParamsSchema, } from "../schemas/requests.js";
|
|
11
|
+
import { TaskResponse, TaskListResponse } from "../schemas/responses.js";
|
|
12
|
+
import { getCard } from "./cards.js";
|
|
13
|
+
const DEFAULT_TASK_LIST_NAME = "Tasks";
|
|
14
|
+
/**
|
|
15
|
+
* Get or create a default task-list for a card.
|
|
16
|
+
* If the card has no task-lists, creates one called "Tasks".
|
|
17
|
+
*/
|
|
18
|
+
async function getOrCreateDefaultTaskList(input) {
|
|
19
|
+
const { cardId } = input;
|
|
20
|
+
// Fetch card to see existing task-lists
|
|
21
|
+
const cardDetails = await getCard({ cardId });
|
|
22
|
+
// Check if there's an existing task-list
|
|
23
|
+
if (cardDetails.taskLists && cardDetails.taskLists.length > 0) {
|
|
24
|
+
// Return the first task-list (sorted by position)
|
|
25
|
+
return cardDetails.taskLists.sort((a, b) => a.position - b.position)[0];
|
|
26
|
+
}
|
|
27
|
+
// Create a default task-list
|
|
28
|
+
const response = await plankaClient.post(`/api/cards/${cardId}/task-lists`, {
|
|
29
|
+
name: DEFAULT_TASK_LIST_NAME,
|
|
30
|
+
position: 65536,
|
|
31
|
+
});
|
|
32
|
+
const parsed = TaskListResponse.parse(response);
|
|
33
|
+
return parsed.item;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Create a task-list on a card.
|
|
37
|
+
*/
|
|
38
|
+
export async function createTaskList(input) {
|
|
39
|
+
const validated = parseInput(CreateTaskListSchema, input);
|
|
40
|
+
const response = await plankaClient.post(`/api/cards/${validated.cardId}/task-lists`, {
|
|
41
|
+
name: validated.name,
|
|
42
|
+
position: validated.position,
|
|
43
|
+
});
|
|
44
|
+
const parsed = TaskListResponse.parse(response);
|
|
45
|
+
return parsed.item;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Create a single task on a card.
|
|
49
|
+
* Automatically creates a default task-list if the card doesn't have one.
|
|
50
|
+
*/
|
|
51
|
+
export async function createTask(input) {
|
|
52
|
+
const validated = parseInput(CreateTaskSchema, input);
|
|
53
|
+
// Get or create a task-list for this card
|
|
54
|
+
const taskList = await getOrCreateDefaultTaskList({
|
|
55
|
+
cardId: validated.cardId,
|
|
56
|
+
});
|
|
57
|
+
const response = await plankaClient.post(`/api/task-lists/${taskList.id}/tasks`, {
|
|
58
|
+
name: validated.name,
|
|
59
|
+
position: validated.position,
|
|
60
|
+
});
|
|
61
|
+
const parsed = TaskResponse.parse(response);
|
|
62
|
+
return parsed.item;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Create multiple tasks on a card.
|
|
66
|
+
* Tasks are created in order with automatically calculated positions.
|
|
67
|
+
* Automatically creates a default task-list if the card doesn't have one.
|
|
68
|
+
*/
|
|
69
|
+
export async function createTasks(input) {
|
|
70
|
+
const validated = parseInput(BatchCreateTasksSchema, input);
|
|
71
|
+
// Get or create a task-list for this card
|
|
72
|
+
const taskList = await getOrCreateDefaultTaskList({
|
|
73
|
+
cardId: validated.cardId,
|
|
74
|
+
});
|
|
75
|
+
const tasks = [];
|
|
76
|
+
let position = 65536;
|
|
77
|
+
for (const taskInput of validated.tasks) {
|
|
78
|
+
const response = await plankaClient.post(`/api/task-lists/${taskList.id}/tasks`, {
|
|
79
|
+
name: taskInput.name,
|
|
80
|
+
position: taskInput.position ?? position,
|
|
81
|
+
});
|
|
82
|
+
const parsed = TaskResponse.parse(response);
|
|
83
|
+
tasks.push(parsed.item);
|
|
84
|
+
position += 65536;
|
|
85
|
+
}
|
|
86
|
+
return tasks;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Update a task's properties.
|
|
90
|
+
*/
|
|
91
|
+
export async function updateTask(input) {
|
|
92
|
+
const { taskId, ...updates } = parseInput(UpdateTaskParamsSchema, input);
|
|
93
|
+
const response = await plankaClient.patch(`/api/tasks/${taskId}`, updates);
|
|
94
|
+
const parsed = TaskResponse.parse(response);
|
|
95
|
+
return parsed.item;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Delete a task.
|
|
99
|
+
*/
|
|
100
|
+
export async function deleteTask(input) {
|
|
101
|
+
const { taskId } = parseInput(TaskIdSchema, input);
|
|
102
|
+
await plankaClient.delete(`/api/tasks/${taskId}`);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Delete a task-list and all its tasks.
|
|
106
|
+
*/
|
|
107
|
+
export async function deleteTaskList(input) {
|
|
108
|
+
const { taskListId } = parseInput(TaskListIdSchema, input);
|
|
109
|
+
await plankaClient.delete(`/api/task-lists/${taskListId}`);
|
|
110
|
+
}
|
|
111
|
+
//# sourceMappingURL=tasks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tasks.js","sourceRoot":"","sources":["../../src/operations/tasks.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core entity schemas for PLANKA 2.0
|
|
3
|
+
* All types are derived from these Zod schemas.
|
|
4
|
+
*/
|
|
5
|
+
import { z } from "zod";
|
|
6
|
+
export declare const CardTypeSchema: z.ZodEnum<["project", "story"]>;
|
|
7
|
+
export type CardType = z.infer<typeof CardTypeSchema>;
|
|
8
|
+
export declare const ListTypeSchema: z.ZodEnum<["active", "closed"]>;
|
|
9
|
+
export type ListType = z.infer<typeof ListTypeSchema>;
|
|
10
|
+
export declare const LabelColorSchema: z.ZodEnum<["muddy-grey", "autumn-leafs", "fresh-salad", "lilac-eyes", "silver-glint", "deep-ocean", "summer-sky", "grey-stone", "sugar-plum", "shady-rust", "wet-rock", "turquoise-sea", "lavender-fields", "french-coast", "sweet-lilac", "pirate-gold", "berry-red", "pumpkin-orange", "lagoon-blue", "pink-tulip", "light-mud", "orange-peel", "bright-moss", "antique-blue", "dark-granite", "lagune-blue", "sunny-grass", "morning-sky", "light-orange", "midnight-blue", "tank-green", "gun-metal", "wet-moss", "red-burgundy", "light-concrete", "apricot-red", "desert-sand", "navy-blue", "egg-yellow", "coral-green", "light-cocoa", "modern-green", "piggy-red"]>;
|
|
11
|
+
export type LabelColor = z.infer<typeof LabelColorSchema>;
|
|
12
|
+
export declare const UserSchema: z.ZodObject<{
|
|
13
|
+
id: z.ZodString;
|
|
14
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15
|
+
username: z.ZodOptional<z.ZodString>;
|
|
16
|
+
name: z.ZodString;
|
|
17
|
+
avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
createdAt: z.ZodString;
|
|
19
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
|
21
|
+
id: string;
|
|
22
|
+
name: string;
|
|
23
|
+
createdAt: string;
|
|
24
|
+
email?: string | undefined;
|
|
25
|
+
username?: string | undefined;
|
|
26
|
+
avatarUrl?: string | null | undefined;
|
|
27
|
+
updatedAt?: string | null | undefined;
|
|
28
|
+
}, {
|
|
29
|
+
id: string;
|
|
30
|
+
name: string;
|
|
31
|
+
createdAt: string;
|
|
32
|
+
email?: string | undefined;
|
|
33
|
+
username?: string | undefined;
|
|
34
|
+
avatarUrl?: string | null | undefined;
|
|
35
|
+
updatedAt?: string | null | undefined;
|
|
36
|
+
}>;
|
|
37
|
+
export type User = z.infer<typeof UserSchema>;
|
|
38
|
+
export declare const ProjectSchema: z.ZodObject<{
|
|
39
|
+
id: z.ZodString;
|
|
40
|
+
name: z.ZodString;
|
|
41
|
+
background: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
42
|
+
backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
43
|
+
createdAt: z.ZodString;
|
|
44
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
id: string;
|
|
47
|
+
name: string;
|
|
48
|
+
createdAt: string;
|
|
49
|
+
updatedAt?: string | null | undefined;
|
|
50
|
+
background?: string | null | undefined;
|
|
51
|
+
backgroundImage?: string | null | undefined;
|
|
52
|
+
}, {
|
|
53
|
+
id: string;
|
|
54
|
+
name: string;
|
|
55
|
+
createdAt: string;
|
|
56
|
+
updatedAt?: string | null | undefined;
|
|
57
|
+
background?: string | null | undefined;
|
|
58
|
+
backgroundImage?: string | null | undefined;
|
|
59
|
+
}>;
|
|
60
|
+
export type Project = z.infer<typeof ProjectSchema>;
|
|
61
|
+
export declare const BoardSchema: z.ZodObject<{
|
|
62
|
+
id: z.ZodString;
|
|
63
|
+
projectId: z.ZodString;
|
|
64
|
+
name: z.ZodString;
|
|
65
|
+
position: z.ZodNumber;
|
|
66
|
+
createdAt: z.ZodString;
|
|
67
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
68
|
+
}, "strip", z.ZodTypeAny, {
|
|
69
|
+
id: string;
|
|
70
|
+
name: string;
|
|
71
|
+
createdAt: string;
|
|
72
|
+
projectId: string;
|
|
73
|
+
position: number;
|
|
74
|
+
updatedAt?: string | null | undefined;
|
|
75
|
+
}, {
|
|
76
|
+
id: string;
|
|
77
|
+
name: string;
|
|
78
|
+
createdAt: string;
|
|
79
|
+
projectId: string;
|
|
80
|
+
position: number;
|
|
81
|
+
updatedAt?: string | null | undefined;
|
|
82
|
+
}>;
|
|
83
|
+
export type Board = z.infer<typeof BoardSchema>;
|
|
84
|
+
export declare const ListSchema: z.ZodObject<{
|
|
85
|
+
id: z.ZodString;
|
|
86
|
+
boardId: z.ZodString;
|
|
87
|
+
name: z.ZodNullable<z.ZodString>;
|
|
88
|
+
position: z.ZodNullable<z.ZodNumber>;
|
|
89
|
+
type: z.ZodOptional<z.ZodString>;
|
|
90
|
+
createdAt: z.ZodString;
|
|
91
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
92
|
+
}, "strip", z.ZodTypeAny, {
|
|
93
|
+
id: string;
|
|
94
|
+
name: string | null;
|
|
95
|
+
createdAt: string;
|
|
96
|
+
position: number | null;
|
|
97
|
+
boardId: string;
|
|
98
|
+
type?: string | undefined;
|
|
99
|
+
updatedAt?: string | null | undefined;
|
|
100
|
+
}, {
|
|
101
|
+
id: string;
|
|
102
|
+
name: string | null;
|
|
103
|
+
createdAt: string;
|
|
104
|
+
position: number | null;
|
|
105
|
+
boardId: string;
|
|
106
|
+
type?: string | undefined;
|
|
107
|
+
updatedAt?: string | null | undefined;
|
|
108
|
+
}>;
|
|
109
|
+
export type List = z.infer<typeof ListSchema>;
|
|
110
|
+
export declare const CardSchema: z.ZodObject<{
|
|
111
|
+
id: z.ZodString;
|
|
112
|
+
boardId: z.ZodString;
|
|
113
|
+
listId: z.ZodString;
|
|
114
|
+
creatorUserId: z.ZodOptional<z.ZodString>;
|
|
115
|
+
name: z.ZodString;
|
|
116
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
117
|
+
position: z.ZodNumber;
|
|
118
|
+
type: z.ZodEnum<["project", "story"]>;
|
|
119
|
+
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
120
|
+
isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
121
|
+
isCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
122
|
+
createdAt: z.ZodString;
|
|
123
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
124
|
+
/**
|
|
125
|
+
* When the card entered its current list. Planka uses it as half of the
|
|
126
|
+
* pagination cursor of GET /api/lists/:id/cards (`before[id]` +
|
|
127
|
+
* `before[listChangedAt]`), so it has to survive parsing even though it is
|
|
128
|
+
* never displayed.
|
|
129
|
+
*/
|
|
130
|
+
listChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
131
|
+
}, "strip", z.ZodTypeAny, {
|
|
132
|
+
type: "project" | "story";
|
|
133
|
+
id: string;
|
|
134
|
+
name: string;
|
|
135
|
+
createdAt: string;
|
|
136
|
+
position: number;
|
|
137
|
+
boardId: string;
|
|
138
|
+
listId: string;
|
|
139
|
+
description?: string | null | undefined;
|
|
140
|
+
updatedAt?: string | null | undefined;
|
|
141
|
+
creatorUserId?: string | undefined;
|
|
142
|
+
dueDate?: string | null | undefined;
|
|
143
|
+
isDueDateCompleted?: boolean | undefined;
|
|
144
|
+
isCompleted?: boolean | undefined;
|
|
145
|
+
listChangedAt?: string | null | undefined;
|
|
146
|
+
}, {
|
|
147
|
+
type: "project" | "story";
|
|
148
|
+
id: string;
|
|
149
|
+
name: string;
|
|
150
|
+
createdAt: string;
|
|
151
|
+
position: number;
|
|
152
|
+
boardId: string;
|
|
153
|
+
listId: string;
|
|
154
|
+
description?: string | null | undefined;
|
|
155
|
+
updatedAt?: string | null | undefined;
|
|
156
|
+
creatorUserId?: string | undefined;
|
|
157
|
+
dueDate?: string | null | undefined;
|
|
158
|
+
isDueDateCompleted?: boolean | undefined;
|
|
159
|
+
isCompleted?: boolean | undefined;
|
|
160
|
+
listChangedAt?: string | null | undefined;
|
|
161
|
+
}>;
|
|
162
|
+
export type Card = z.infer<typeof CardSchema>;
|
|
163
|
+
export declare const TaskListSchema: z.ZodObject<{
|
|
164
|
+
id: z.ZodString;
|
|
165
|
+
cardId: z.ZodString;
|
|
166
|
+
name: z.ZodString;
|
|
167
|
+
position: z.ZodNumber;
|
|
168
|
+
showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
|
|
169
|
+
createdAt: z.ZodString;
|
|
170
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
171
|
+
}, "strip", z.ZodTypeAny, {
|
|
172
|
+
id: string;
|
|
173
|
+
name: string;
|
|
174
|
+
createdAt: string;
|
|
175
|
+
position: number;
|
|
176
|
+
cardId: string;
|
|
177
|
+
updatedAt?: string | null | undefined;
|
|
178
|
+
showOnFrontOfCard?: boolean | undefined;
|
|
179
|
+
}, {
|
|
180
|
+
id: string;
|
|
181
|
+
name: string;
|
|
182
|
+
createdAt: string;
|
|
183
|
+
position: number;
|
|
184
|
+
cardId: string;
|
|
185
|
+
updatedAt?: string | null | undefined;
|
|
186
|
+
showOnFrontOfCard?: boolean | undefined;
|
|
187
|
+
}>;
|
|
188
|
+
export type TaskList = z.infer<typeof TaskListSchema>;
|
|
189
|
+
export declare const TaskSchema: z.ZodObject<{
|
|
190
|
+
id: z.ZodString;
|
|
191
|
+
taskListId: z.ZodString;
|
|
192
|
+
name: z.ZodString;
|
|
193
|
+
position: z.ZodNumber;
|
|
194
|
+
isCompleted: z.ZodBoolean;
|
|
195
|
+
assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
196
|
+
createdAt: z.ZodString;
|
|
197
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
198
|
+
}, "strip", z.ZodTypeAny, {
|
|
199
|
+
id: string;
|
|
200
|
+
name: string;
|
|
201
|
+
createdAt: string;
|
|
202
|
+
position: number;
|
|
203
|
+
isCompleted: boolean;
|
|
204
|
+
taskListId: string;
|
|
205
|
+
updatedAt?: string | null | undefined;
|
|
206
|
+
assigneeUserId?: string | null | undefined;
|
|
207
|
+
}, {
|
|
208
|
+
id: string;
|
|
209
|
+
name: string;
|
|
210
|
+
createdAt: string;
|
|
211
|
+
position: number;
|
|
212
|
+
isCompleted: boolean;
|
|
213
|
+
taskListId: string;
|
|
214
|
+
updatedAt?: string | null | undefined;
|
|
215
|
+
assigneeUserId?: string | null | undefined;
|
|
216
|
+
}>;
|
|
217
|
+
export type Task = z.infer<typeof TaskSchema>;
|
|
218
|
+
export declare const LabelSchema: z.ZodObject<{
|
|
219
|
+
id: z.ZodString;
|
|
220
|
+
boardId: z.ZodString;
|
|
221
|
+
name: z.ZodNullable<z.ZodString>;
|
|
222
|
+
color: z.ZodString;
|
|
223
|
+
position: z.ZodNumber;
|
|
224
|
+
createdAt: z.ZodString;
|
|
225
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
226
|
+
}, "strip", z.ZodTypeAny, {
|
|
227
|
+
id: string;
|
|
228
|
+
name: string | null;
|
|
229
|
+
createdAt: string;
|
|
230
|
+
position: number;
|
|
231
|
+
boardId: string;
|
|
232
|
+
color: string;
|
|
233
|
+
updatedAt?: string | null | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
id: string;
|
|
236
|
+
name: string | null;
|
|
237
|
+
createdAt: string;
|
|
238
|
+
position: number;
|
|
239
|
+
boardId: string;
|
|
240
|
+
color: string;
|
|
241
|
+
updatedAt?: string | null | undefined;
|
|
242
|
+
}>;
|
|
243
|
+
export type Label = z.infer<typeof LabelSchema>;
|
|
244
|
+
export declare const CardLabelSchema: z.ZodObject<{
|
|
245
|
+
id: z.ZodString;
|
|
246
|
+
cardId: z.ZodString;
|
|
247
|
+
labelId: z.ZodString;
|
|
248
|
+
createdAt: z.ZodString;
|
|
249
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
250
|
+
}, "strip", z.ZodTypeAny, {
|
|
251
|
+
id: string;
|
|
252
|
+
createdAt: string;
|
|
253
|
+
cardId: string;
|
|
254
|
+
labelId: string;
|
|
255
|
+
updatedAt?: string | null | undefined;
|
|
256
|
+
}, {
|
|
257
|
+
id: string;
|
|
258
|
+
createdAt: string;
|
|
259
|
+
cardId: string;
|
|
260
|
+
labelId: string;
|
|
261
|
+
updatedAt?: string | null | undefined;
|
|
262
|
+
}>;
|
|
263
|
+
export type CardLabel = z.infer<typeof CardLabelSchema>;
|
|
264
|
+
export declare const CommentSchema: z.ZodObject<{
|
|
265
|
+
id: z.ZodString;
|
|
266
|
+
cardId: z.ZodString;
|
|
267
|
+
userId: z.ZodString;
|
|
268
|
+
text: z.ZodString;
|
|
269
|
+
createdAt: z.ZodString;
|
|
270
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
271
|
+
}, "strip", z.ZodTypeAny, {
|
|
272
|
+
id: string;
|
|
273
|
+
createdAt: string;
|
|
274
|
+
cardId: string;
|
|
275
|
+
userId: string;
|
|
276
|
+
text: string;
|
|
277
|
+
updatedAt?: string | null | undefined;
|
|
278
|
+
}, {
|
|
279
|
+
id: string;
|
|
280
|
+
createdAt: string;
|
|
281
|
+
cardId: string;
|
|
282
|
+
userId: string;
|
|
283
|
+
text: string;
|
|
284
|
+
updatedAt?: string | null | undefined;
|
|
285
|
+
}>;
|
|
286
|
+
export type Comment = z.infer<typeof CommentSchema>;
|
|
287
|
+
export declare const AttachmentSchema: z.ZodObject<{
|
|
288
|
+
id: z.ZodString;
|
|
289
|
+
cardId: z.ZodString;
|
|
290
|
+
creatorUserId: z.ZodOptional<z.ZodString>;
|
|
291
|
+
name: z.ZodString;
|
|
292
|
+
type: z.ZodOptional<z.ZodString>;
|
|
293
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
294
|
+
url: z.ZodOptional<z.ZodString>;
|
|
295
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
296
|
+
mimeType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
297
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
298
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
299
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
300
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
301
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
302
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
303
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
304
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
305
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
306
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
307
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
308
|
+
url: z.ZodOptional<z.ZodString>;
|
|
309
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
310
|
+
mimeType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
311
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
312
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
313
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
314
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
315
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
316
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
317
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
318
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
319
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
320
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
321
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
322
|
+
url: z.ZodOptional<z.ZodString>;
|
|
323
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
324
|
+
mimeType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
325
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
326
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
327
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
328
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
329
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
330
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
331
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
332
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
333
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
334
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
335
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
336
|
+
url: z.ZodOptional<z.ZodString>;
|
|
337
|
+
createdAt: z.ZodString;
|
|
338
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339
|
+
}, "strip", z.ZodTypeAny, {
|
|
340
|
+
id: string;
|
|
341
|
+
name: string;
|
|
342
|
+
createdAt: string;
|
|
343
|
+
cardId: string;
|
|
344
|
+
type?: string | undefined;
|
|
345
|
+
updatedAt?: string | null | undefined;
|
|
346
|
+
creatorUserId?: string | undefined;
|
|
347
|
+
url?: string | undefined;
|
|
348
|
+
data?: z.objectOutputType<{
|
|
349
|
+
url: z.ZodOptional<z.ZodString>;
|
|
350
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
351
|
+
mimeType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
352
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
353
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
354
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
355
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
356
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
357
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
358
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
359
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
360
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
361
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
362
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
363
|
+
}, {
|
|
364
|
+
id: string;
|
|
365
|
+
name: string;
|
|
366
|
+
createdAt: string;
|
|
367
|
+
cardId: string;
|
|
368
|
+
type?: string | undefined;
|
|
369
|
+
updatedAt?: string | null | undefined;
|
|
370
|
+
creatorUserId?: string | undefined;
|
|
371
|
+
url?: string | undefined;
|
|
372
|
+
data?: z.objectInputType<{
|
|
373
|
+
url: z.ZodOptional<z.ZodString>;
|
|
374
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
375
|
+
mimeType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
376
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
377
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
378
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
379
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
380
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
383
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
384
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
385
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
386
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
387
|
+
}>;
|
|
388
|
+
export type Attachment = z.infer<typeof AttachmentSchema>;
|
|
389
|
+
//# sourceMappingURL=entities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../src/schemas/entities.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,cAAc,iCAA+B,CAAC;AAC3D,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,cAAc,iCAA+B,CAAC;AAC3D,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAGtD,eAAO,MAAM,gBAAgB,8oBA4C3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAG1D,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;EAQrB,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAG9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;EAOxB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAGpD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;EAOtB,CAAC;AACH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAGhD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;EAUrB,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAG9C,eAAO,MAAM,UAAU;;;;;;;;;;;;;;IAcrB;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEH,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAG9C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;EAQzB,CAAC;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAGtD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;EASrB,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAS9C,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;EAQtB,CAAC;AACH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAGhD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;EAM1B,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAGxD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;EAOxB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAKpD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0B3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|