@omnicoreos/planka-mcp 0.2.0 → 0.3.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/.agents/plugins/marketplace.json +20 -0
- package/.claude-plugin/marketplace.json +26 -0
- package/.claude-plugin/plugin.json +45 -0
- package/.codex-plugin/mcp.json +16 -0
- package/.codex-plugin/plugin.json +27 -0
- package/.mcp.json +17 -0
- package/CHANGELOG.md +510 -0
- package/README.es.md +294 -55
- package/README.md +293 -55
- package/dist/cli/init.d.ts +101 -0
- package/dist/cli/init.d.ts.map +1 -0
- package/dist/cli/init.js +481 -0
- package/dist/cli/init.js.map +1 -0
- package/dist/client.d.ts +32 -4
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +106 -32
- package/dist/client.js.map +1 -1
- package/dist/config/policy.d.ts +82 -0
- package/dist/config/policy.d.ts.map +1 -0
- package/dist/config/policy.js +226 -0
- package/dist/config/policy.js.map +1 -0
- package/dist/errors.d.ts +5 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +62 -5
- package/dist/errors.js.map +1 -1
- package/dist/identity.generated.d.ts +2 -1
- package/dist/identity.generated.d.ts.map +1 -1
- package/dist/identity.generated.js +2 -1
- package/dist/identity.generated.js.map +1 -1
- package/dist/index.js +85 -10
- package/dist/index.js.map +1 -1
- package/dist/instructions.d.ts +21 -0
- package/dist/instructions.d.ts.map +1 -0
- package/dist/instructions.js +37 -0
- package/dist/instructions.js.map +1 -0
- package/dist/operations/actions.d.ts +654 -0
- package/dist/operations/actions.d.ts.map +1 -0
- package/dist/operations/actions.js +154 -0
- package/dist/operations/actions.js.map +1 -0
- package/dist/operations/archive.d.ts +28 -0
- package/dist/operations/archive.d.ts.map +1 -0
- package/dist/operations/archive.js +74 -0
- package/dist/operations/archive.js.map +1 -0
- package/dist/operations/attachments.d.ts +1 -1
- package/dist/operations/attachments.d.ts.map +1 -1
- package/dist/operations/attachments.js +3 -1
- package/dist/operations/attachments.js.map +1 -1
- package/dist/operations/board-id.d.ts +1 -1
- package/dist/operations/board-id.d.ts.map +1 -1
- package/dist/operations/board-id.js +13 -7
- package/dist/operations/board-id.js.map +1 -1
- package/dist/operations/boards.d.ts +96 -19
- package/dist/operations/boards.d.ts.map +1 -1
- package/dist/operations/boards.js +377 -93
- package/dist/operations/boards.js.map +1 -1
- package/dist/operations/card-brief.d.ts +91 -0
- package/dist/operations/card-brief.d.ts.map +1 -0
- package/dist/operations/card-brief.js +79 -0
- package/dist/operations/card-brief.js.map +1 -0
- package/dist/operations/cards.d.ts +34 -9
- package/dist/operations/cards.d.ts.map +1 -1
- package/dist/operations/cards.js +60 -14
- package/dist/operations/cards.js.map +1 -1
- package/dist/operations/comments.d.ts +61 -4
- package/dist/operations/comments.d.ts.map +1 -1
- package/dist/operations/comments.js +91 -8
- package/dist/operations/comments.js.map +1 -1
- package/dist/operations/duplicate.d.ts +16 -0
- package/dist/operations/duplicate.d.ts.map +1 -0
- package/dist/operations/duplicate.js +43 -0
- package/dist/operations/duplicate.js.map +1 -0
- package/dist/operations/labels.d.ts +1 -1
- package/dist/operations/labels.d.ts.map +1 -1
- package/dist/operations/labels.js +7 -4
- package/dist/operations/labels.js.map +1 -1
- package/dist/operations/lists.d.ts +63 -1
- package/dist/operations/lists.d.ts.map +1 -1
- package/dist/operations/lists.js +97 -2
- package/dist/operations/lists.js.map +1 -1
- package/dist/operations/members.d.ts +39 -0
- package/dist/operations/members.d.ts.map +1 -0
- package/dist/operations/members.js +107 -0
- package/dist/operations/members.js.map +1 -0
- package/dist/operations/projects.d.ts +16 -0
- package/dist/operations/projects.d.ts.map +1 -1
- package/dist/operations/projects.js +54 -9
- package/dist/operations/projects.js.map +1 -1
- package/dist/operations/tasks.d.ts +1 -1
- package/dist/operations/tasks.d.ts.map +1 -1
- package/dist/operations/tasks.js +5 -3
- package/dist/operations/tasks.js.map +1 -1
- package/dist/operations/users.d.ts +123 -0
- package/dist/operations/users.d.ts.map +1 -0
- package/dist/operations/users.js +180 -0
- package/dist/operations/users.js.map +1 -0
- package/dist/operations/verify.d.ts +84 -0
- package/dist/operations/verify.d.ts.map +1 -0
- package/dist/operations/verify.js +124 -0
- package/dist/operations/verify.js.map +1 -0
- package/dist/prompts.d.ts +48 -0
- package/dist/prompts.d.ts.map +1 -0
- package/dist/prompts.js +155 -0
- package/dist/prompts.js.map +1 -0
- package/dist/resources.d.ts +38 -0
- package/dist/resources.d.ts.map +1 -0
- package/dist/resources.js +127 -0
- package/dist/resources.js.map +1 -0
- package/dist/schemas/entities.d.ts +115 -24
- package/dist/schemas/entities.d.ts.map +1 -1
- package/dist/schemas/entities.js +48 -0
- package/dist/schemas/entities.js.map +1 -1
- package/dist/schemas/requests.d.ts +121 -46
- package/dist/schemas/requests.d.ts.map +1 -1
- package/dist/schemas/requests.js +57 -12
- package/dist/schemas/requests.js.map +1 -1
- package/dist/schemas/responses.d.ts +541 -186
- package/dist/schemas/responses.d.ts.map +1 -1
- package/dist/schemas/responses.js +13 -2
- package/dist/schemas/responses.js.map +1 -1
- package/dist/tools/activity.d.ts +150 -0
- package/dist/tools/activity.d.ts.map +1 -0
- package/dist/tools/activity.js +198 -0
- package/dist/tools/activity.js.map +1 -0
- package/dist/tools/annotations.d.ts +52 -0
- package/dist/tools/annotations.d.ts.map +1 -0
- package/dist/tools/annotations.js +214 -0
- package/dist/tools/annotations.js.map +1 -0
- package/dist/tools/attachments.d.ts +28 -4
- package/dist/tools/attachments.d.ts.map +1 -1
- package/dist/tools/attachments.js +53 -34
- package/dist/tools/attachments.js.map +1 -1
- package/dist/tools/card-ops.d.ts +232 -0
- package/dist/tools/card-ops.d.ts.map +1 -0
- package/dist/tools/card-ops.js +333 -0
- package/dist/tools/card-ops.js.map +1 -0
- package/dist/tools/cards.d.ts +90 -8
- package/dist/tools/cards.d.ts.map +1 -1
- package/dist/tools/cards.js +411 -128
- package/dist/tools/cards.js.map +1 -1
- package/dist/tools/comments.d.ts +226 -22
- package/dist/tools/comments.d.ts.map +1 -1
- package/dist/tools/comments.js +163 -134
- package/dist/tools/comments.js.map +1 -1
- package/dist/tools/dispatch.d.ts +47 -0
- package/dist/tools/dispatch.d.ts.map +1 -0
- package/dist/tools/dispatch.js +63 -0
- package/dist/tools/dispatch.js.map +1 -0
- package/dist/tools/guard.d.ts +9 -0
- package/dist/tools/guard.d.ts.map +1 -0
- package/dist/tools/guard.js +20 -0
- package/dist/tools/guard.js.map +1 -0
- package/dist/tools/index.d.ts +748 -450
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +136 -17
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/labels.d.ts +213 -18
- package/dist/tools/labels.d.ts.map +1 -1
- package/dist/tools/labels.js +218 -203
- package/dist/tools/labels.js.map +1 -1
- package/dist/tools/lists.d.ts +222 -15
- package/dist/tools/lists.d.ts.map +1 -1
- package/dist/tools/lists.js +175 -156
- package/dist/tools/lists.js.map +1 -1
- package/dist/tools/members.d.ts +128 -0
- package/dist/tools/members.d.ts.map +1 -0
- package/dist/tools/members.js +150 -0
- package/dist/tools/members.js.map +1 -0
- package/dist/tools/navigation.d.ts +22 -2
- package/dist/tools/navigation.d.ts.map +1 -1
- package/dist/tools/navigation.js +60 -15
- package/dist/tools/navigation.js.map +1 -1
- package/dist/tools/queries.d.ts +196 -166
- package/dist/tools/queries.d.ts.map +1 -1
- package/dist/tools/queries.js +125 -155
- package/dist/tools/queries.js.map +1 -1
- package/dist/tools/tasks.d.ts +26 -6
- package/dist/tools/tasks.d.ts.map +1 -1
- package/dist/tools/tasks.js +110 -55
- package/dist/tools/tasks.js.map +1 -1
- package/dist/tools/users.d.ts +130 -0
- package/dist/tools/users.d.ts.map +1 -0
- package/dist/tools/users.js +165 -0
- package/dist/tools/users.js.map +1 -0
- package/docs/planka-2x-gotchas.md +121 -5
- package/docs/tools.md +771 -187
- package/docs/troubleshooting.md +137 -5
- package/hooks/hooks.json +15 -0
- package/hooks/preflight.mjs +100 -0
- package/package.json +6 -1
- package/scripts/setup.sh +8 -26
- package/scripts/sync-identity.mjs +55 -1
- package/server.json +87 -6
- package/tests/smoke/planka-smoke.mjs +512 -72
- package/workflow/skills/planka-close-card/SKILL.md +18 -5
- package/workflow/skills/planka-orchestrator/SKILL.md +36 -7
|
@@ -121,37 +121,37 @@ export declare const BoardResponse: z.ZodObject<{
|
|
|
121
121
|
createdAt: z.ZodString;
|
|
122
122
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
123
123
|
}, "strip", z.ZodTypeAny, {
|
|
124
|
+
projectId: string;
|
|
124
125
|
id: string;
|
|
125
126
|
name: string;
|
|
126
127
|
createdAt: string;
|
|
127
|
-
projectId: string;
|
|
128
128
|
position: number;
|
|
129
129
|
updatedAt?: string | null | undefined;
|
|
130
130
|
}, {
|
|
131
|
+
projectId: string;
|
|
131
132
|
id: string;
|
|
132
133
|
name: string;
|
|
133
134
|
createdAt: string;
|
|
134
|
-
projectId: string;
|
|
135
135
|
position: number;
|
|
136
136
|
updatedAt?: string | null | undefined;
|
|
137
137
|
}>;
|
|
138
138
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
139
139
|
}, "strip", z.ZodTypeAny, {
|
|
140
140
|
item: {
|
|
141
|
+
projectId: string;
|
|
141
142
|
id: string;
|
|
142
143
|
name: string;
|
|
143
144
|
createdAt: string;
|
|
144
|
-
projectId: string;
|
|
145
145
|
position: number;
|
|
146
146
|
updatedAt?: string | null | undefined;
|
|
147
147
|
};
|
|
148
148
|
included?: Record<string, any> | undefined;
|
|
149
149
|
}, {
|
|
150
150
|
item: {
|
|
151
|
+
projectId: string;
|
|
151
152
|
id: string;
|
|
152
153
|
name: string;
|
|
153
154
|
createdAt: string;
|
|
154
|
-
projectId: string;
|
|
155
155
|
position: number;
|
|
156
156
|
updatedAt?: string | null | undefined;
|
|
157
157
|
};
|
|
@@ -166,37 +166,37 @@ export declare const BoardsResponse: z.ZodObject<{
|
|
|
166
166
|
createdAt: z.ZodString;
|
|
167
167
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
168
168
|
}, "strip", z.ZodTypeAny, {
|
|
169
|
+
projectId: string;
|
|
169
170
|
id: string;
|
|
170
171
|
name: string;
|
|
171
172
|
createdAt: string;
|
|
172
|
-
projectId: string;
|
|
173
173
|
position: number;
|
|
174
174
|
updatedAt?: string | null | undefined;
|
|
175
175
|
}, {
|
|
176
|
+
projectId: string;
|
|
176
177
|
id: string;
|
|
177
178
|
name: string;
|
|
178
179
|
createdAt: string;
|
|
179
|
-
projectId: string;
|
|
180
180
|
position: number;
|
|
181
181
|
updatedAt?: string | null | undefined;
|
|
182
182
|
}>, "many">;
|
|
183
183
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
184
184
|
}, "strip", z.ZodTypeAny, {
|
|
185
185
|
items: {
|
|
186
|
+
projectId: string;
|
|
186
187
|
id: string;
|
|
187
188
|
name: string;
|
|
188
189
|
createdAt: string;
|
|
189
|
-
projectId: string;
|
|
190
190
|
position: number;
|
|
191
191
|
updatedAt?: string | null | undefined;
|
|
192
192
|
}[];
|
|
193
193
|
included?: Record<string, any> | undefined;
|
|
194
194
|
}, {
|
|
195
195
|
items: {
|
|
196
|
+
projectId: string;
|
|
196
197
|
id: string;
|
|
197
198
|
name: string;
|
|
198
199
|
createdAt: string;
|
|
199
|
-
projectId: string;
|
|
200
200
|
position: number;
|
|
201
201
|
updatedAt?: string | null | undefined;
|
|
202
202
|
}[];
|
|
@@ -212,41 +212,41 @@ export declare const ListResponse: z.ZodObject<{
|
|
|
212
212
|
createdAt: z.ZodString;
|
|
213
213
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
214
214
|
}, "strip", z.ZodTypeAny, {
|
|
215
|
+
boardId: string;
|
|
215
216
|
id: string;
|
|
216
217
|
name: string | null;
|
|
217
218
|
createdAt: string;
|
|
218
219
|
position: number | null;
|
|
219
|
-
boardId: string;
|
|
220
220
|
type?: string | undefined;
|
|
221
221
|
updatedAt?: string | null | undefined;
|
|
222
222
|
}, {
|
|
223
|
+
boardId: string;
|
|
223
224
|
id: string;
|
|
224
225
|
name: string | null;
|
|
225
226
|
createdAt: string;
|
|
226
227
|
position: number | null;
|
|
227
|
-
boardId: string;
|
|
228
228
|
type?: string | undefined;
|
|
229
229
|
updatedAt?: string | null | undefined;
|
|
230
230
|
}>;
|
|
231
231
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
232
232
|
}, "strip", z.ZodTypeAny, {
|
|
233
233
|
item: {
|
|
234
|
+
boardId: string;
|
|
234
235
|
id: string;
|
|
235
236
|
name: string | null;
|
|
236
237
|
createdAt: string;
|
|
237
238
|
position: number | null;
|
|
238
|
-
boardId: string;
|
|
239
239
|
type?: string | undefined;
|
|
240
240
|
updatedAt?: string | null | undefined;
|
|
241
241
|
};
|
|
242
242
|
included?: Record<string, any> | undefined;
|
|
243
243
|
}, {
|
|
244
244
|
item: {
|
|
245
|
+
boardId: string;
|
|
245
246
|
id: string;
|
|
246
247
|
name: string | null;
|
|
247
248
|
createdAt: string;
|
|
248
249
|
position: number | null;
|
|
249
|
-
boardId: string;
|
|
250
250
|
type?: string | undefined;
|
|
251
251
|
updatedAt?: string | null | undefined;
|
|
252
252
|
};
|
|
@@ -262,41 +262,41 @@ export declare const ListsResponse: z.ZodObject<{
|
|
|
262
262
|
createdAt: z.ZodString;
|
|
263
263
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
264
264
|
}, "strip", z.ZodTypeAny, {
|
|
265
|
+
boardId: string;
|
|
265
266
|
id: string;
|
|
266
267
|
name: string | null;
|
|
267
268
|
createdAt: string;
|
|
268
269
|
position: number | null;
|
|
269
|
-
boardId: string;
|
|
270
270
|
type?: string | undefined;
|
|
271
271
|
updatedAt?: string | null | undefined;
|
|
272
272
|
}, {
|
|
273
|
+
boardId: string;
|
|
273
274
|
id: string;
|
|
274
275
|
name: string | null;
|
|
275
276
|
createdAt: string;
|
|
276
277
|
position: number | null;
|
|
277
|
-
boardId: string;
|
|
278
278
|
type?: string | undefined;
|
|
279
279
|
updatedAt?: string | null | undefined;
|
|
280
280
|
}>, "many">;
|
|
281
281
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
|
283
283
|
items: {
|
|
284
|
+
boardId: string;
|
|
284
285
|
id: string;
|
|
285
286
|
name: string | null;
|
|
286
287
|
createdAt: string;
|
|
287
288
|
position: number | null;
|
|
288
|
-
boardId: string;
|
|
289
289
|
type?: string | undefined;
|
|
290
290
|
updatedAt?: string | null | undefined;
|
|
291
291
|
}[];
|
|
292
292
|
included?: Record<string, any> | undefined;
|
|
293
293
|
}, {
|
|
294
294
|
items: {
|
|
295
|
+
boardId: string;
|
|
295
296
|
id: string;
|
|
296
297
|
name: string | null;
|
|
297
298
|
createdAt: string;
|
|
298
299
|
position: number | null;
|
|
299
|
-
boardId: string;
|
|
300
300
|
type?: string | undefined;
|
|
301
301
|
updatedAt?: string | null | undefined;
|
|
302
302
|
}[];
|
|
@@ -315,75 +315,116 @@ export declare const CardResponse: z.ZodObject<{
|
|
|
315
315
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
316
316
|
isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
317
317
|
isCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
318
|
+
isDueCompleted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
319
|
+
isClosed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
320
|
+
commentsTotal: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
318
321
|
createdAt: z.ZodString;
|
|
319
322
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
320
323
|
listChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
324
|
+
stopwatch: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
325
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
326
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
327
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
328
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
329
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
330
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
331
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
332
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
333
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
321
334
|
}, "strip", z.ZodTypeAny, {
|
|
335
|
+
listId: string;
|
|
336
|
+
boardId: string;
|
|
322
337
|
type: "project" | "story";
|
|
323
338
|
id: string;
|
|
324
339
|
name: string;
|
|
325
340
|
createdAt: string;
|
|
326
341
|
position: number;
|
|
327
|
-
boardId: string;
|
|
328
|
-
listId: string;
|
|
329
342
|
description?: string | null | undefined;
|
|
330
343
|
updatedAt?: string | null | undefined;
|
|
331
344
|
creatorUserId?: string | undefined;
|
|
332
345
|
dueDate?: string | null | undefined;
|
|
333
346
|
isDueDateCompleted?: boolean | undefined;
|
|
334
347
|
isCompleted?: boolean | undefined;
|
|
348
|
+
isDueCompleted?: boolean | null | undefined;
|
|
349
|
+
isClosed?: boolean | null | undefined;
|
|
350
|
+
commentsTotal?: number | null | undefined;
|
|
335
351
|
listChangedAt?: string | null | undefined;
|
|
352
|
+
stopwatch?: z.objectOutputType<{
|
|
353
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
354
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
355
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
336
356
|
}, {
|
|
357
|
+
listId: string;
|
|
358
|
+
boardId: string;
|
|
337
359
|
type: "project" | "story";
|
|
338
360
|
id: string;
|
|
339
361
|
name: string;
|
|
340
362
|
createdAt: string;
|
|
341
363
|
position: number;
|
|
342
|
-
boardId: string;
|
|
343
|
-
listId: string;
|
|
344
364
|
description?: string | null | undefined;
|
|
345
365
|
updatedAt?: string | null | undefined;
|
|
346
366
|
creatorUserId?: string | undefined;
|
|
347
367
|
dueDate?: string | null | undefined;
|
|
348
368
|
isDueDateCompleted?: boolean | undefined;
|
|
349
369
|
isCompleted?: boolean | undefined;
|
|
370
|
+
isDueCompleted?: boolean | null | undefined;
|
|
371
|
+
isClosed?: boolean | null | undefined;
|
|
372
|
+
commentsTotal?: number | null | undefined;
|
|
350
373
|
listChangedAt?: string | null | undefined;
|
|
374
|
+
stopwatch?: z.objectInputType<{
|
|
375
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
376
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
377
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
351
378
|
}>;
|
|
352
379
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
353
380
|
}, "strip", z.ZodTypeAny, {
|
|
354
381
|
item: {
|
|
382
|
+
listId: string;
|
|
383
|
+
boardId: string;
|
|
355
384
|
type: "project" | "story";
|
|
356
385
|
id: string;
|
|
357
386
|
name: string;
|
|
358
387
|
createdAt: string;
|
|
359
388
|
position: number;
|
|
360
|
-
boardId: string;
|
|
361
|
-
listId: string;
|
|
362
389
|
description?: string | null | undefined;
|
|
363
390
|
updatedAt?: string | null | undefined;
|
|
364
391
|
creatorUserId?: string | undefined;
|
|
365
392
|
dueDate?: string | null | undefined;
|
|
366
393
|
isDueDateCompleted?: boolean | undefined;
|
|
367
394
|
isCompleted?: boolean | undefined;
|
|
395
|
+
isDueCompleted?: boolean | null | undefined;
|
|
396
|
+
isClosed?: boolean | null | undefined;
|
|
397
|
+
commentsTotal?: number | null | undefined;
|
|
368
398
|
listChangedAt?: string | null | undefined;
|
|
399
|
+
stopwatch?: z.objectOutputType<{
|
|
400
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
401
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
402
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
369
403
|
};
|
|
370
404
|
included?: Record<string, any> | undefined;
|
|
371
405
|
}, {
|
|
372
406
|
item: {
|
|
407
|
+
listId: string;
|
|
408
|
+
boardId: string;
|
|
373
409
|
type: "project" | "story";
|
|
374
410
|
id: string;
|
|
375
411
|
name: string;
|
|
376
412
|
createdAt: string;
|
|
377
413
|
position: number;
|
|
378
|
-
boardId: string;
|
|
379
|
-
listId: string;
|
|
380
414
|
description?: string | null | undefined;
|
|
381
415
|
updatedAt?: string | null | undefined;
|
|
382
416
|
creatorUserId?: string | undefined;
|
|
383
417
|
dueDate?: string | null | undefined;
|
|
384
418
|
isDueDateCompleted?: boolean | undefined;
|
|
385
419
|
isCompleted?: boolean | undefined;
|
|
420
|
+
isDueCompleted?: boolean | null | undefined;
|
|
421
|
+
isClosed?: boolean | null | undefined;
|
|
422
|
+
commentsTotal?: number | null | undefined;
|
|
386
423
|
listChangedAt?: string | null | undefined;
|
|
424
|
+
stopwatch?: z.objectInputType<{
|
|
425
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
426
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
427
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
387
428
|
};
|
|
388
429
|
included?: Record<string, any> | undefined;
|
|
389
430
|
}>;
|
|
@@ -400,75 +441,116 @@ export declare const CardsResponse: z.ZodObject<{
|
|
|
400
441
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
401
442
|
isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
402
443
|
isCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
444
|
+
isDueCompleted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
445
|
+
isClosed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
446
|
+
commentsTotal: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
403
447
|
createdAt: z.ZodString;
|
|
404
448
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
405
449
|
listChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
450
|
+
stopwatch: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
451
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
452
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
453
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
454
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
455
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
456
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
457
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
458
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
459
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
406
460
|
}, "strip", z.ZodTypeAny, {
|
|
461
|
+
listId: string;
|
|
462
|
+
boardId: string;
|
|
407
463
|
type: "project" | "story";
|
|
408
464
|
id: string;
|
|
409
465
|
name: string;
|
|
410
466
|
createdAt: string;
|
|
411
467
|
position: number;
|
|
412
|
-
boardId: string;
|
|
413
|
-
listId: string;
|
|
414
468
|
description?: string | null | undefined;
|
|
415
469
|
updatedAt?: string | null | undefined;
|
|
416
470
|
creatorUserId?: string | undefined;
|
|
417
471
|
dueDate?: string | null | undefined;
|
|
418
472
|
isDueDateCompleted?: boolean | undefined;
|
|
419
473
|
isCompleted?: boolean | undefined;
|
|
474
|
+
isDueCompleted?: boolean | null | undefined;
|
|
475
|
+
isClosed?: boolean | null | undefined;
|
|
476
|
+
commentsTotal?: number | null | undefined;
|
|
420
477
|
listChangedAt?: string | null | undefined;
|
|
478
|
+
stopwatch?: z.objectOutputType<{
|
|
479
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
480
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
481
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
421
482
|
}, {
|
|
483
|
+
listId: string;
|
|
484
|
+
boardId: string;
|
|
422
485
|
type: "project" | "story";
|
|
423
486
|
id: string;
|
|
424
487
|
name: string;
|
|
425
488
|
createdAt: string;
|
|
426
489
|
position: number;
|
|
427
|
-
boardId: string;
|
|
428
|
-
listId: string;
|
|
429
490
|
description?: string | null | undefined;
|
|
430
491
|
updatedAt?: string | null | undefined;
|
|
431
492
|
creatorUserId?: string | undefined;
|
|
432
493
|
dueDate?: string | null | undefined;
|
|
433
494
|
isDueDateCompleted?: boolean | undefined;
|
|
434
495
|
isCompleted?: boolean | undefined;
|
|
496
|
+
isDueCompleted?: boolean | null | undefined;
|
|
497
|
+
isClosed?: boolean | null | undefined;
|
|
498
|
+
commentsTotal?: number | null | undefined;
|
|
435
499
|
listChangedAt?: string | null | undefined;
|
|
500
|
+
stopwatch?: z.objectInputType<{
|
|
501
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
502
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
503
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
436
504
|
}>, "many">;
|
|
437
505
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
438
506
|
}, "strip", z.ZodTypeAny, {
|
|
439
507
|
items: {
|
|
508
|
+
listId: string;
|
|
509
|
+
boardId: string;
|
|
440
510
|
type: "project" | "story";
|
|
441
511
|
id: string;
|
|
442
512
|
name: string;
|
|
443
513
|
createdAt: string;
|
|
444
514
|
position: number;
|
|
445
|
-
boardId: string;
|
|
446
|
-
listId: string;
|
|
447
515
|
description?: string | null | undefined;
|
|
448
516
|
updatedAt?: string | null | undefined;
|
|
449
517
|
creatorUserId?: string | undefined;
|
|
450
518
|
dueDate?: string | null | undefined;
|
|
451
519
|
isDueDateCompleted?: boolean | undefined;
|
|
452
520
|
isCompleted?: boolean | undefined;
|
|
521
|
+
isDueCompleted?: boolean | null | undefined;
|
|
522
|
+
isClosed?: boolean | null | undefined;
|
|
523
|
+
commentsTotal?: number | null | undefined;
|
|
453
524
|
listChangedAt?: string | null | undefined;
|
|
525
|
+
stopwatch?: z.objectOutputType<{
|
|
526
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
527
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
528
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
454
529
|
}[];
|
|
455
530
|
included?: Record<string, any> | undefined;
|
|
456
531
|
}, {
|
|
457
532
|
items: {
|
|
533
|
+
listId: string;
|
|
534
|
+
boardId: string;
|
|
458
535
|
type: "project" | "story";
|
|
459
536
|
id: string;
|
|
460
537
|
name: string;
|
|
461
538
|
createdAt: string;
|
|
462
539
|
position: number;
|
|
463
|
-
boardId: string;
|
|
464
|
-
listId: string;
|
|
465
540
|
description?: string | null | undefined;
|
|
466
541
|
updatedAt?: string | null | undefined;
|
|
467
542
|
creatorUserId?: string | undefined;
|
|
468
543
|
dueDate?: string | null | undefined;
|
|
469
544
|
isDueDateCompleted?: boolean | undefined;
|
|
470
545
|
isCompleted?: boolean | undefined;
|
|
546
|
+
isDueCompleted?: boolean | null | undefined;
|
|
547
|
+
isClosed?: boolean | null | undefined;
|
|
548
|
+
commentsTotal?: number | null | undefined;
|
|
471
549
|
listChangedAt?: string | null | undefined;
|
|
550
|
+
stopwatch?: z.objectInputType<{
|
|
551
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
552
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
553
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
472
554
|
}[];
|
|
473
555
|
included?: Record<string, any> | undefined;
|
|
474
556
|
}>;
|
|
@@ -482,41 +564,41 @@ export declare const TaskListResponse: z.ZodObject<{
|
|
|
482
564
|
createdAt: z.ZodString;
|
|
483
565
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
484
566
|
}, "strip", z.ZodTypeAny, {
|
|
567
|
+
cardId: string;
|
|
485
568
|
id: string;
|
|
486
569
|
name: string;
|
|
487
570
|
createdAt: string;
|
|
488
571
|
position: number;
|
|
489
|
-
cardId: string;
|
|
490
572
|
updatedAt?: string | null | undefined;
|
|
491
573
|
showOnFrontOfCard?: boolean | undefined;
|
|
492
574
|
}, {
|
|
575
|
+
cardId: string;
|
|
493
576
|
id: string;
|
|
494
577
|
name: string;
|
|
495
578
|
createdAt: string;
|
|
496
579
|
position: number;
|
|
497
|
-
cardId: string;
|
|
498
580
|
updatedAt?: string | null | undefined;
|
|
499
581
|
showOnFrontOfCard?: boolean | undefined;
|
|
500
582
|
}>;
|
|
501
583
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
502
584
|
}, "strip", z.ZodTypeAny, {
|
|
503
585
|
item: {
|
|
586
|
+
cardId: string;
|
|
504
587
|
id: string;
|
|
505
588
|
name: string;
|
|
506
589
|
createdAt: string;
|
|
507
590
|
position: number;
|
|
508
|
-
cardId: string;
|
|
509
591
|
updatedAt?: string | null | undefined;
|
|
510
592
|
showOnFrontOfCard?: boolean | undefined;
|
|
511
593
|
};
|
|
512
594
|
included?: Record<string, any> | undefined;
|
|
513
595
|
}, {
|
|
514
596
|
item: {
|
|
597
|
+
cardId: string;
|
|
515
598
|
id: string;
|
|
516
599
|
name: string;
|
|
517
600
|
createdAt: string;
|
|
518
601
|
position: number;
|
|
519
|
-
cardId: string;
|
|
520
602
|
updatedAt?: string | null | undefined;
|
|
521
603
|
showOnFrontOfCard?: boolean | undefined;
|
|
522
604
|
};
|
|
@@ -532,41 +614,41 @@ export declare const TaskListsResponse: z.ZodObject<{
|
|
|
532
614
|
createdAt: z.ZodString;
|
|
533
615
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
534
616
|
}, "strip", z.ZodTypeAny, {
|
|
617
|
+
cardId: string;
|
|
535
618
|
id: string;
|
|
536
619
|
name: string;
|
|
537
620
|
createdAt: string;
|
|
538
621
|
position: number;
|
|
539
|
-
cardId: string;
|
|
540
622
|
updatedAt?: string | null | undefined;
|
|
541
623
|
showOnFrontOfCard?: boolean | undefined;
|
|
542
624
|
}, {
|
|
625
|
+
cardId: string;
|
|
543
626
|
id: string;
|
|
544
627
|
name: string;
|
|
545
628
|
createdAt: string;
|
|
546
629
|
position: number;
|
|
547
|
-
cardId: string;
|
|
548
630
|
updatedAt?: string | null | undefined;
|
|
549
631
|
showOnFrontOfCard?: boolean | undefined;
|
|
550
632
|
}>, "many">;
|
|
551
633
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
552
634
|
}, "strip", z.ZodTypeAny, {
|
|
553
635
|
items: {
|
|
636
|
+
cardId: string;
|
|
554
637
|
id: string;
|
|
555
638
|
name: string;
|
|
556
639
|
createdAt: string;
|
|
557
640
|
position: number;
|
|
558
|
-
cardId: string;
|
|
559
641
|
updatedAt?: string | null | undefined;
|
|
560
642
|
showOnFrontOfCard?: boolean | undefined;
|
|
561
643
|
}[];
|
|
562
644
|
included?: Record<string, any> | undefined;
|
|
563
645
|
}, {
|
|
564
646
|
items: {
|
|
647
|
+
cardId: string;
|
|
565
648
|
id: string;
|
|
566
649
|
name: string;
|
|
567
650
|
createdAt: string;
|
|
568
651
|
position: number;
|
|
569
|
-
cardId: string;
|
|
570
652
|
updatedAt?: string | null | undefined;
|
|
571
653
|
showOnFrontOfCard?: boolean | undefined;
|
|
572
654
|
}[];
|
|
@@ -583,45 +665,45 @@ export declare const TaskResponse: z.ZodObject<{
|
|
|
583
665
|
createdAt: z.ZodString;
|
|
584
666
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
585
667
|
}, "strip", z.ZodTypeAny, {
|
|
668
|
+
taskListId: string;
|
|
586
669
|
id: string;
|
|
587
670
|
name: string;
|
|
588
671
|
createdAt: string;
|
|
589
672
|
position: number;
|
|
590
673
|
isCompleted: boolean;
|
|
591
|
-
taskListId: string;
|
|
592
674
|
updatedAt?: string | null | undefined;
|
|
593
675
|
assigneeUserId?: string | null | undefined;
|
|
594
676
|
}, {
|
|
677
|
+
taskListId: string;
|
|
595
678
|
id: string;
|
|
596
679
|
name: string;
|
|
597
680
|
createdAt: string;
|
|
598
681
|
position: number;
|
|
599
682
|
isCompleted: boolean;
|
|
600
|
-
taskListId: string;
|
|
601
683
|
updatedAt?: string | null | undefined;
|
|
602
684
|
assigneeUserId?: string | null | undefined;
|
|
603
685
|
}>;
|
|
604
686
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
605
687
|
}, "strip", z.ZodTypeAny, {
|
|
606
688
|
item: {
|
|
689
|
+
taskListId: string;
|
|
607
690
|
id: string;
|
|
608
691
|
name: string;
|
|
609
692
|
createdAt: string;
|
|
610
693
|
position: number;
|
|
611
694
|
isCompleted: boolean;
|
|
612
|
-
taskListId: string;
|
|
613
695
|
updatedAt?: string | null | undefined;
|
|
614
696
|
assigneeUserId?: string | null | undefined;
|
|
615
697
|
};
|
|
616
698
|
included?: Record<string, any> | undefined;
|
|
617
699
|
}, {
|
|
618
700
|
item: {
|
|
701
|
+
taskListId: string;
|
|
619
702
|
id: string;
|
|
620
703
|
name: string;
|
|
621
704
|
createdAt: string;
|
|
622
705
|
position: number;
|
|
623
706
|
isCompleted: boolean;
|
|
624
|
-
taskListId: string;
|
|
625
707
|
updatedAt?: string | null | undefined;
|
|
626
708
|
assigneeUserId?: string | null | undefined;
|
|
627
709
|
};
|
|
@@ -638,45 +720,45 @@ export declare const TasksResponse: z.ZodObject<{
|
|
|
638
720
|
createdAt: z.ZodString;
|
|
639
721
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
640
722
|
}, "strip", z.ZodTypeAny, {
|
|
723
|
+
taskListId: string;
|
|
641
724
|
id: string;
|
|
642
725
|
name: string;
|
|
643
726
|
createdAt: string;
|
|
644
727
|
position: number;
|
|
645
728
|
isCompleted: boolean;
|
|
646
|
-
taskListId: string;
|
|
647
729
|
updatedAt?: string | null | undefined;
|
|
648
730
|
assigneeUserId?: string | null | undefined;
|
|
649
731
|
}, {
|
|
732
|
+
taskListId: string;
|
|
650
733
|
id: string;
|
|
651
734
|
name: string;
|
|
652
735
|
createdAt: string;
|
|
653
736
|
position: number;
|
|
654
737
|
isCompleted: boolean;
|
|
655
|
-
taskListId: string;
|
|
656
738
|
updatedAt?: string | null | undefined;
|
|
657
739
|
assigneeUserId?: string | null | undefined;
|
|
658
740
|
}>, "many">;
|
|
659
741
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
660
742
|
}, "strip", z.ZodTypeAny, {
|
|
661
743
|
items: {
|
|
744
|
+
taskListId: string;
|
|
662
745
|
id: string;
|
|
663
746
|
name: string;
|
|
664
747
|
createdAt: string;
|
|
665
748
|
position: number;
|
|
666
749
|
isCompleted: boolean;
|
|
667
|
-
taskListId: string;
|
|
668
750
|
updatedAt?: string | null | undefined;
|
|
669
751
|
assigneeUserId?: string | null | undefined;
|
|
670
752
|
}[];
|
|
671
753
|
included?: Record<string, any> | undefined;
|
|
672
754
|
}, {
|
|
673
755
|
items: {
|
|
756
|
+
taskListId: string;
|
|
674
757
|
id: string;
|
|
675
758
|
name: string;
|
|
676
759
|
createdAt: string;
|
|
677
760
|
position: number;
|
|
678
761
|
isCompleted: boolean;
|
|
679
|
-
taskListId: string;
|
|
680
762
|
updatedAt?: string | null | undefined;
|
|
681
763
|
assigneeUserId?: string | null | undefined;
|
|
682
764
|
}[];
|
|
@@ -692,41 +774,41 @@ export declare const LabelResponse: z.ZodObject<{
|
|
|
692
774
|
createdAt: z.ZodString;
|
|
693
775
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
694
776
|
}, "strip", z.ZodTypeAny, {
|
|
777
|
+
boardId: string;
|
|
695
778
|
id: string;
|
|
696
779
|
name: string | null;
|
|
697
780
|
createdAt: string;
|
|
698
781
|
position: number;
|
|
699
|
-
boardId: string;
|
|
700
782
|
color: string;
|
|
701
783
|
updatedAt?: string | null | undefined;
|
|
702
784
|
}, {
|
|
785
|
+
boardId: string;
|
|
703
786
|
id: string;
|
|
704
787
|
name: string | null;
|
|
705
788
|
createdAt: string;
|
|
706
789
|
position: number;
|
|
707
|
-
boardId: string;
|
|
708
790
|
color: string;
|
|
709
791
|
updatedAt?: string | null | undefined;
|
|
710
792
|
}>;
|
|
711
793
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
712
794
|
}, "strip", z.ZodTypeAny, {
|
|
713
795
|
item: {
|
|
796
|
+
boardId: string;
|
|
714
797
|
id: string;
|
|
715
798
|
name: string | null;
|
|
716
799
|
createdAt: string;
|
|
717
800
|
position: number;
|
|
718
|
-
boardId: string;
|
|
719
801
|
color: string;
|
|
720
802
|
updatedAt?: string | null | undefined;
|
|
721
803
|
};
|
|
722
804
|
included?: Record<string, any> | undefined;
|
|
723
805
|
}, {
|
|
724
806
|
item: {
|
|
807
|
+
boardId: string;
|
|
725
808
|
id: string;
|
|
726
809
|
name: string | null;
|
|
727
810
|
createdAt: string;
|
|
728
811
|
position: number;
|
|
729
|
-
boardId: string;
|
|
730
812
|
color: string;
|
|
731
813
|
updatedAt?: string | null | undefined;
|
|
732
814
|
};
|
|
@@ -742,41 +824,41 @@ export declare const LabelsResponse: z.ZodObject<{
|
|
|
742
824
|
createdAt: z.ZodString;
|
|
743
825
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
744
826
|
}, "strip", z.ZodTypeAny, {
|
|
827
|
+
boardId: string;
|
|
745
828
|
id: string;
|
|
746
829
|
name: string | null;
|
|
747
830
|
createdAt: string;
|
|
748
831
|
position: number;
|
|
749
|
-
boardId: string;
|
|
750
832
|
color: string;
|
|
751
833
|
updatedAt?: string | null | undefined;
|
|
752
834
|
}, {
|
|
835
|
+
boardId: string;
|
|
753
836
|
id: string;
|
|
754
837
|
name: string | null;
|
|
755
838
|
createdAt: string;
|
|
756
839
|
position: number;
|
|
757
|
-
boardId: string;
|
|
758
840
|
color: string;
|
|
759
841
|
updatedAt?: string | null | undefined;
|
|
760
842
|
}>, "many">;
|
|
761
843
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
762
844
|
}, "strip", z.ZodTypeAny, {
|
|
763
845
|
items: {
|
|
846
|
+
boardId: string;
|
|
764
847
|
id: string;
|
|
765
848
|
name: string | null;
|
|
766
849
|
createdAt: string;
|
|
767
850
|
position: number;
|
|
768
|
-
boardId: string;
|
|
769
851
|
color: string;
|
|
770
852
|
updatedAt?: string | null | undefined;
|
|
771
853
|
}[];
|
|
772
854
|
included?: Record<string, any> | undefined;
|
|
773
855
|
}, {
|
|
774
856
|
items: {
|
|
857
|
+
boardId: string;
|
|
775
858
|
id: string;
|
|
776
859
|
name: string | null;
|
|
777
860
|
createdAt: string;
|
|
778
861
|
position: number;
|
|
779
|
-
boardId: string;
|
|
780
862
|
color: string;
|
|
781
863
|
updatedAt?: string | null | undefined;
|
|
782
864
|
}[];
|
|
@@ -791,37 +873,37 @@ export declare const CommentResponse: z.ZodObject<{
|
|
|
791
873
|
createdAt: z.ZodString;
|
|
792
874
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
793
875
|
}, "strip", z.ZodTypeAny, {
|
|
794
|
-
id: string;
|
|
795
|
-
createdAt: string;
|
|
796
876
|
cardId: string;
|
|
797
877
|
userId: string;
|
|
878
|
+
id: string;
|
|
879
|
+
createdAt: string;
|
|
798
880
|
text: string;
|
|
799
881
|
updatedAt?: string | null | undefined;
|
|
800
882
|
}, {
|
|
801
|
-
id: string;
|
|
802
|
-
createdAt: string;
|
|
803
883
|
cardId: string;
|
|
804
884
|
userId: string;
|
|
885
|
+
id: string;
|
|
886
|
+
createdAt: string;
|
|
805
887
|
text: string;
|
|
806
888
|
updatedAt?: string | null | undefined;
|
|
807
889
|
}>;
|
|
808
890
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
809
891
|
}, "strip", z.ZodTypeAny, {
|
|
810
892
|
item: {
|
|
811
|
-
id: string;
|
|
812
|
-
createdAt: string;
|
|
813
893
|
cardId: string;
|
|
814
894
|
userId: string;
|
|
895
|
+
id: string;
|
|
896
|
+
createdAt: string;
|
|
815
897
|
text: string;
|
|
816
898
|
updatedAt?: string | null | undefined;
|
|
817
899
|
};
|
|
818
900
|
included?: Record<string, any> | undefined;
|
|
819
901
|
}, {
|
|
820
902
|
item: {
|
|
821
|
-
id: string;
|
|
822
|
-
createdAt: string;
|
|
823
903
|
cardId: string;
|
|
824
904
|
userId: string;
|
|
905
|
+
id: string;
|
|
906
|
+
createdAt: string;
|
|
825
907
|
text: string;
|
|
826
908
|
updatedAt?: string | null | undefined;
|
|
827
909
|
};
|
|
@@ -836,37 +918,37 @@ export declare const CommentsResponse: z.ZodObject<{
|
|
|
836
918
|
createdAt: z.ZodString;
|
|
837
919
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
838
920
|
}, "strip", z.ZodTypeAny, {
|
|
839
|
-
id: string;
|
|
840
|
-
createdAt: string;
|
|
841
921
|
cardId: string;
|
|
842
922
|
userId: string;
|
|
923
|
+
id: string;
|
|
924
|
+
createdAt: string;
|
|
843
925
|
text: string;
|
|
844
926
|
updatedAt?: string | null | undefined;
|
|
845
927
|
}, {
|
|
846
|
-
id: string;
|
|
847
|
-
createdAt: string;
|
|
848
928
|
cardId: string;
|
|
849
929
|
userId: string;
|
|
930
|
+
id: string;
|
|
931
|
+
createdAt: string;
|
|
850
932
|
text: string;
|
|
851
933
|
updatedAt?: string | null | undefined;
|
|
852
934
|
}>, "many">;
|
|
853
935
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
854
936
|
}, "strip", z.ZodTypeAny, {
|
|
855
937
|
items: {
|
|
856
|
-
id: string;
|
|
857
|
-
createdAt: string;
|
|
858
938
|
cardId: string;
|
|
859
939
|
userId: string;
|
|
940
|
+
id: string;
|
|
941
|
+
createdAt: string;
|
|
860
942
|
text: string;
|
|
861
943
|
updatedAt?: string | null | undefined;
|
|
862
944
|
}[];
|
|
863
945
|
included?: Record<string, any> | undefined;
|
|
864
946
|
}, {
|
|
865
947
|
items: {
|
|
866
|
-
id: string;
|
|
867
|
-
createdAt: string;
|
|
868
948
|
cardId: string;
|
|
869
949
|
userId: string;
|
|
950
|
+
id: string;
|
|
951
|
+
createdAt: string;
|
|
870
952
|
text: string;
|
|
871
953
|
updatedAt?: string | null | undefined;
|
|
872
954
|
}[];
|
|
@@ -880,34 +962,34 @@ export declare const CardLabelResponse: z.ZodObject<{
|
|
|
880
962
|
createdAt: z.ZodString;
|
|
881
963
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
882
964
|
}, "strip", z.ZodTypeAny, {
|
|
883
|
-
id: string;
|
|
884
|
-
createdAt: string;
|
|
885
965
|
cardId: string;
|
|
886
966
|
labelId: string;
|
|
887
|
-
updatedAt?: string | null | undefined;
|
|
888
|
-
}, {
|
|
889
967
|
id: string;
|
|
890
968
|
createdAt: string;
|
|
969
|
+
updatedAt?: string | null | undefined;
|
|
970
|
+
}, {
|
|
891
971
|
cardId: string;
|
|
892
972
|
labelId: string;
|
|
973
|
+
id: string;
|
|
974
|
+
createdAt: string;
|
|
893
975
|
updatedAt?: string | null | undefined;
|
|
894
976
|
}>;
|
|
895
977
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
896
978
|
}, "strip", z.ZodTypeAny, {
|
|
897
979
|
item: {
|
|
898
|
-
id: string;
|
|
899
|
-
createdAt: string;
|
|
900
980
|
cardId: string;
|
|
901
981
|
labelId: string;
|
|
982
|
+
id: string;
|
|
983
|
+
createdAt: string;
|
|
902
984
|
updatedAt?: string | null | undefined;
|
|
903
985
|
};
|
|
904
986
|
included?: Record<string, any> | undefined;
|
|
905
987
|
}, {
|
|
906
988
|
item: {
|
|
907
|
-
id: string;
|
|
908
|
-
createdAt: string;
|
|
909
989
|
cardId: string;
|
|
910
990
|
labelId: string;
|
|
991
|
+
id: string;
|
|
992
|
+
createdAt: string;
|
|
911
993
|
updatedAt?: string | null | undefined;
|
|
912
994
|
};
|
|
913
995
|
included?: Record<string, any> | undefined;
|
|
@@ -966,10 +1048,10 @@ export declare const AttachmentResponse: z.ZodObject<{
|
|
|
966
1048
|
createdAt: z.ZodString;
|
|
967
1049
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
968
1050
|
}, "strip", z.ZodTypeAny, {
|
|
1051
|
+
cardId: string;
|
|
969
1052
|
id: string;
|
|
970
1053
|
name: string;
|
|
971
1054
|
createdAt: string;
|
|
972
|
-
cardId: string;
|
|
973
1055
|
type?: string | undefined;
|
|
974
1056
|
updatedAt?: string | null | undefined;
|
|
975
1057
|
creatorUserId?: string | undefined;
|
|
@@ -990,10 +1072,10 @@ export declare const AttachmentResponse: z.ZodObject<{
|
|
|
990
1072
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
991
1073
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
992
1074
|
}, {
|
|
1075
|
+
cardId: string;
|
|
993
1076
|
id: string;
|
|
994
1077
|
name: string;
|
|
995
1078
|
createdAt: string;
|
|
996
|
-
cardId: string;
|
|
997
1079
|
type?: string | undefined;
|
|
998
1080
|
updatedAt?: string | null | undefined;
|
|
999
1081
|
creatorUserId?: string | undefined;
|
|
@@ -1017,10 +1099,10 @@ export declare const AttachmentResponse: z.ZodObject<{
|
|
|
1017
1099
|
included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1018
1100
|
}, "strip", z.ZodTypeAny, {
|
|
1019
1101
|
item: {
|
|
1102
|
+
cardId: string;
|
|
1020
1103
|
id: string;
|
|
1021
1104
|
name: string;
|
|
1022
1105
|
createdAt: string;
|
|
1023
|
-
cardId: string;
|
|
1024
1106
|
type?: string | undefined;
|
|
1025
1107
|
updatedAt?: string | null | undefined;
|
|
1026
1108
|
creatorUserId?: string | undefined;
|
|
@@ -1044,10 +1126,10 @@ export declare const AttachmentResponse: z.ZodObject<{
|
|
|
1044
1126
|
included?: Record<string, any> | undefined;
|
|
1045
1127
|
}, {
|
|
1046
1128
|
item: {
|
|
1129
|
+
cardId: string;
|
|
1047
1130
|
id: string;
|
|
1048
1131
|
name: string;
|
|
1049
1132
|
createdAt: string;
|
|
1050
|
-
cardId: string;
|
|
1051
1133
|
type?: string | undefined;
|
|
1052
1134
|
updatedAt?: string | null | undefined;
|
|
1053
1135
|
creatorUserId?: string | undefined;
|
|
@@ -1087,19 +1169,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1087
1169
|
createdAt: z.ZodString;
|
|
1088
1170
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1089
1171
|
}, "strip", z.ZodTypeAny, {
|
|
1172
|
+
boardId: string;
|
|
1090
1173
|
id: string;
|
|
1091
1174
|
name: string | null;
|
|
1092
1175
|
createdAt: string;
|
|
1093
1176
|
position: number | null;
|
|
1094
|
-
boardId: string;
|
|
1095
1177
|
type?: string | undefined;
|
|
1096
1178
|
updatedAt?: string | null | undefined;
|
|
1097
1179
|
}, {
|
|
1180
|
+
boardId: string;
|
|
1098
1181
|
id: string;
|
|
1099
1182
|
name: string | null;
|
|
1100
1183
|
createdAt: string;
|
|
1101
1184
|
position: number | null;
|
|
1102
|
-
boardId: string;
|
|
1103
1185
|
type?: string | undefined;
|
|
1104
1186
|
updatedAt?: string | null | undefined;
|
|
1105
1187
|
}>, "many">>;
|
|
@@ -1115,39 +1197,66 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1115
1197
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1116
1198
|
isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
1117
1199
|
isCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
1200
|
+
isDueCompleted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1201
|
+
isClosed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1202
|
+
commentsTotal: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1118
1203
|
createdAt: z.ZodString;
|
|
1119
1204
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1120
1205
|
listChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1206
|
+
stopwatch: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1207
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1208
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1209
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1210
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1211
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1212
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1213
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1214
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1215
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1121
1216
|
}, "strip", z.ZodTypeAny, {
|
|
1217
|
+
listId: string;
|
|
1218
|
+
boardId: string;
|
|
1122
1219
|
type: "project" | "story";
|
|
1123
1220
|
id: string;
|
|
1124
1221
|
name: string;
|
|
1125
1222
|
createdAt: string;
|
|
1126
1223
|
position: number;
|
|
1127
|
-
boardId: string;
|
|
1128
|
-
listId: string;
|
|
1129
1224
|
description?: string | null | undefined;
|
|
1130
1225
|
updatedAt?: string | null | undefined;
|
|
1131
1226
|
creatorUserId?: string | undefined;
|
|
1132
1227
|
dueDate?: string | null | undefined;
|
|
1133
1228
|
isDueDateCompleted?: boolean | undefined;
|
|
1134
1229
|
isCompleted?: boolean | undefined;
|
|
1230
|
+
isDueCompleted?: boolean | null | undefined;
|
|
1231
|
+
isClosed?: boolean | null | undefined;
|
|
1232
|
+
commentsTotal?: number | null | undefined;
|
|
1135
1233
|
listChangedAt?: string | null | undefined;
|
|
1234
|
+
stopwatch?: z.objectOutputType<{
|
|
1235
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1236
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1237
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1136
1238
|
}, {
|
|
1239
|
+
listId: string;
|
|
1240
|
+
boardId: string;
|
|
1137
1241
|
type: "project" | "story";
|
|
1138
1242
|
id: string;
|
|
1139
1243
|
name: string;
|
|
1140
1244
|
createdAt: string;
|
|
1141
1245
|
position: number;
|
|
1142
|
-
boardId: string;
|
|
1143
|
-
listId: string;
|
|
1144
1246
|
description?: string | null | undefined;
|
|
1145
1247
|
updatedAt?: string | null | undefined;
|
|
1146
1248
|
creatorUserId?: string | undefined;
|
|
1147
1249
|
dueDate?: string | null | undefined;
|
|
1148
1250
|
isDueDateCompleted?: boolean | undefined;
|
|
1149
1251
|
isCompleted?: boolean | undefined;
|
|
1252
|
+
isDueCompleted?: boolean | null | undefined;
|
|
1253
|
+
isClosed?: boolean | null | undefined;
|
|
1254
|
+
commentsTotal?: number | null | undefined;
|
|
1150
1255
|
listChangedAt?: string | null | undefined;
|
|
1256
|
+
stopwatch?: z.objectInputType<{
|
|
1257
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1258
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1259
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1151
1260
|
}>, "many">>;
|
|
1152
1261
|
labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1153
1262
|
id: z.ZodString;
|
|
@@ -1158,19 +1267,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1158
1267
|
createdAt: z.ZodString;
|
|
1159
1268
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1160
1269
|
}, "strip", z.ZodTypeAny, {
|
|
1270
|
+
boardId: string;
|
|
1161
1271
|
id: string;
|
|
1162
1272
|
name: string | null;
|
|
1163
1273
|
createdAt: string;
|
|
1164
1274
|
position: number;
|
|
1165
|
-
boardId: string;
|
|
1166
1275
|
color: string;
|
|
1167
1276
|
updatedAt?: string | null | undefined;
|
|
1168
1277
|
}, {
|
|
1278
|
+
boardId: string;
|
|
1169
1279
|
id: string;
|
|
1170
1280
|
name: string | null;
|
|
1171
1281
|
createdAt: string;
|
|
1172
1282
|
position: number;
|
|
1173
|
-
boardId: string;
|
|
1174
1283
|
color: string;
|
|
1175
1284
|
updatedAt?: string | null | undefined;
|
|
1176
1285
|
}>, "many">>;
|
|
@@ -1181,18 +1290,31 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1181
1290
|
createdAt: z.ZodString;
|
|
1182
1291
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1183
1292
|
}, "strip", z.ZodTypeAny, {
|
|
1184
|
-
id: string;
|
|
1185
|
-
createdAt: string;
|
|
1186
1293
|
cardId: string;
|
|
1187
1294
|
labelId: string;
|
|
1188
|
-
updatedAt?: string | null | undefined;
|
|
1189
|
-
}, {
|
|
1190
1295
|
id: string;
|
|
1191
1296
|
createdAt: string;
|
|
1297
|
+
updatedAt?: string | null | undefined;
|
|
1298
|
+
}, {
|
|
1192
1299
|
cardId: string;
|
|
1193
1300
|
labelId: string;
|
|
1301
|
+
id: string;
|
|
1302
|
+
createdAt: string;
|
|
1194
1303
|
updatedAt?: string | null | undefined;
|
|
1195
1304
|
}>, "many">>;
|
|
1305
|
+
cardMemberships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1306
|
+
id: z.ZodString;
|
|
1307
|
+
cardId: z.ZodString;
|
|
1308
|
+
userId: z.ZodString;
|
|
1309
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1310
|
+
id: z.ZodString;
|
|
1311
|
+
cardId: z.ZodString;
|
|
1312
|
+
userId: z.ZodString;
|
|
1313
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1314
|
+
id: z.ZodString;
|
|
1315
|
+
cardId: z.ZodString;
|
|
1316
|
+
userId: z.ZodString;
|
|
1317
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1196
1318
|
taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1197
1319
|
id: z.ZodString;
|
|
1198
1320
|
cardId: z.ZodString;
|
|
@@ -1202,19 +1324,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1202
1324
|
createdAt: z.ZodString;
|
|
1203
1325
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1204
1326
|
}, "strip", z.ZodTypeAny, {
|
|
1327
|
+
cardId: string;
|
|
1205
1328
|
id: string;
|
|
1206
1329
|
name: string;
|
|
1207
1330
|
createdAt: string;
|
|
1208
1331
|
position: number;
|
|
1209
|
-
cardId: string;
|
|
1210
1332
|
updatedAt?: string | null | undefined;
|
|
1211
1333
|
showOnFrontOfCard?: boolean | undefined;
|
|
1212
1334
|
}, {
|
|
1335
|
+
cardId: string;
|
|
1213
1336
|
id: string;
|
|
1214
1337
|
name: string;
|
|
1215
1338
|
createdAt: string;
|
|
1216
1339
|
position: number;
|
|
1217
|
-
cardId: string;
|
|
1218
1340
|
updatedAt?: string | null | undefined;
|
|
1219
1341
|
showOnFrontOfCard?: boolean | undefined;
|
|
1220
1342
|
}>, "many">>;
|
|
@@ -1228,21 +1350,21 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1228
1350
|
createdAt: z.ZodString;
|
|
1229
1351
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1230
1352
|
}, "strip", z.ZodTypeAny, {
|
|
1353
|
+
taskListId: string;
|
|
1231
1354
|
id: string;
|
|
1232
1355
|
name: string;
|
|
1233
1356
|
createdAt: string;
|
|
1234
1357
|
position: number;
|
|
1235
1358
|
isCompleted: boolean;
|
|
1236
|
-
taskListId: string;
|
|
1237
1359
|
updatedAt?: string | null | undefined;
|
|
1238
1360
|
assigneeUserId?: string | null | undefined;
|
|
1239
1361
|
}, {
|
|
1362
|
+
taskListId: string;
|
|
1240
1363
|
id: string;
|
|
1241
1364
|
name: string;
|
|
1242
1365
|
createdAt: string;
|
|
1243
1366
|
position: number;
|
|
1244
1367
|
isCompleted: boolean;
|
|
1245
|
-
taskListId: string;
|
|
1246
1368
|
updatedAt?: string | null | undefined;
|
|
1247
1369
|
assigneeUserId?: string | null | undefined;
|
|
1248
1370
|
}>, "many">>;
|
|
@@ -1281,19 +1403,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1281
1403
|
createdAt: z.ZodString;
|
|
1282
1404
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1283
1405
|
}, "strip", z.ZodTypeAny, {
|
|
1406
|
+
boardId: string;
|
|
1284
1407
|
id: string;
|
|
1285
1408
|
name: string | null;
|
|
1286
1409
|
createdAt: string;
|
|
1287
1410
|
position: number | null;
|
|
1288
|
-
boardId: string;
|
|
1289
1411
|
type?: string | undefined;
|
|
1290
1412
|
updatedAt?: string | null | undefined;
|
|
1291
1413
|
}, {
|
|
1414
|
+
boardId: string;
|
|
1292
1415
|
id: string;
|
|
1293
1416
|
name: string | null;
|
|
1294
1417
|
createdAt: string;
|
|
1295
1418
|
position: number | null;
|
|
1296
|
-
boardId: string;
|
|
1297
1419
|
type?: string | undefined;
|
|
1298
1420
|
updatedAt?: string | null | undefined;
|
|
1299
1421
|
}>, "many">>;
|
|
@@ -1309,39 +1431,66 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1309
1431
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1310
1432
|
isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
1311
1433
|
isCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
1434
|
+
isDueCompleted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1435
|
+
isClosed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1436
|
+
commentsTotal: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1312
1437
|
createdAt: z.ZodString;
|
|
1313
1438
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1314
1439
|
listChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1440
|
+
stopwatch: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1441
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1442
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1443
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1444
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1445
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1446
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1447
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1448
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1449
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1315
1450
|
}, "strip", z.ZodTypeAny, {
|
|
1451
|
+
listId: string;
|
|
1452
|
+
boardId: string;
|
|
1316
1453
|
type: "project" | "story";
|
|
1317
1454
|
id: string;
|
|
1318
1455
|
name: string;
|
|
1319
1456
|
createdAt: string;
|
|
1320
1457
|
position: number;
|
|
1321
|
-
boardId: string;
|
|
1322
|
-
listId: string;
|
|
1323
1458
|
description?: string | null | undefined;
|
|
1324
1459
|
updatedAt?: string | null | undefined;
|
|
1325
1460
|
creatorUserId?: string | undefined;
|
|
1326
1461
|
dueDate?: string | null | undefined;
|
|
1327
1462
|
isDueDateCompleted?: boolean | undefined;
|
|
1328
1463
|
isCompleted?: boolean | undefined;
|
|
1464
|
+
isDueCompleted?: boolean | null | undefined;
|
|
1465
|
+
isClosed?: boolean | null | undefined;
|
|
1466
|
+
commentsTotal?: number | null | undefined;
|
|
1329
1467
|
listChangedAt?: string | null | undefined;
|
|
1468
|
+
stopwatch?: z.objectOutputType<{
|
|
1469
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1470
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1471
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1330
1472
|
}, {
|
|
1473
|
+
listId: string;
|
|
1474
|
+
boardId: string;
|
|
1331
1475
|
type: "project" | "story";
|
|
1332
1476
|
id: string;
|
|
1333
1477
|
name: string;
|
|
1334
1478
|
createdAt: string;
|
|
1335
1479
|
position: number;
|
|
1336
|
-
boardId: string;
|
|
1337
|
-
listId: string;
|
|
1338
1480
|
description?: string | null | undefined;
|
|
1339
1481
|
updatedAt?: string | null | undefined;
|
|
1340
1482
|
creatorUserId?: string | undefined;
|
|
1341
1483
|
dueDate?: string | null | undefined;
|
|
1342
1484
|
isDueDateCompleted?: boolean | undefined;
|
|
1343
1485
|
isCompleted?: boolean | undefined;
|
|
1486
|
+
isDueCompleted?: boolean | null | undefined;
|
|
1487
|
+
isClosed?: boolean | null | undefined;
|
|
1488
|
+
commentsTotal?: number | null | undefined;
|
|
1344
1489
|
listChangedAt?: string | null | undefined;
|
|
1490
|
+
stopwatch?: z.objectInputType<{
|
|
1491
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1492
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1493
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1345
1494
|
}>, "many">>;
|
|
1346
1495
|
labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1347
1496
|
id: z.ZodString;
|
|
@@ -1352,19 +1501,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1352
1501
|
createdAt: z.ZodString;
|
|
1353
1502
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1354
1503
|
}, "strip", z.ZodTypeAny, {
|
|
1504
|
+
boardId: string;
|
|
1355
1505
|
id: string;
|
|
1356
1506
|
name: string | null;
|
|
1357
1507
|
createdAt: string;
|
|
1358
1508
|
position: number;
|
|
1359
|
-
boardId: string;
|
|
1360
1509
|
color: string;
|
|
1361
1510
|
updatedAt?: string | null | undefined;
|
|
1362
1511
|
}, {
|
|
1512
|
+
boardId: string;
|
|
1363
1513
|
id: string;
|
|
1364
1514
|
name: string | null;
|
|
1365
1515
|
createdAt: string;
|
|
1366
1516
|
position: number;
|
|
1367
|
-
boardId: string;
|
|
1368
1517
|
color: string;
|
|
1369
1518
|
updatedAt?: string | null | undefined;
|
|
1370
1519
|
}>, "many">>;
|
|
@@ -1375,18 +1524,31 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1375
1524
|
createdAt: z.ZodString;
|
|
1376
1525
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1377
1526
|
}, "strip", z.ZodTypeAny, {
|
|
1378
|
-
id: string;
|
|
1379
|
-
createdAt: string;
|
|
1380
1527
|
cardId: string;
|
|
1381
1528
|
labelId: string;
|
|
1382
|
-
updatedAt?: string | null | undefined;
|
|
1383
|
-
}, {
|
|
1384
1529
|
id: string;
|
|
1385
1530
|
createdAt: string;
|
|
1531
|
+
updatedAt?: string | null | undefined;
|
|
1532
|
+
}, {
|
|
1386
1533
|
cardId: string;
|
|
1387
1534
|
labelId: string;
|
|
1535
|
+
id: string;
|
|
1536
|
+
createdAt: string;
|
|
1388
1537
|
updatedAt?: string | null | undefined;
|
|
1389
1538
|
}>, "many">>;
|
|
1539
|
+
cardMemberships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1540
|
+
id: z.ZodString;
|
|
1541
|
+
cardId: z.ZodString;
|
|
1542
|
+
userId: z.ZodString;
|
|
1543
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1544
|
+
id: z.ZodString;
|
|
1545
|
+
cardId: z.ZodString;
|
|
1546
|
+
userId: z.ZodString;
|
|
1547
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1548
|
+
id: z.ZodString;
|
|
1549
|
+
cardId: z.ZodString;
|
|
1550
|
+
userId: z.ZodString;
|
|
1551
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1390
1552
|
taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1391
1553
|
id: z.ZodString;
|
|
1392
1554
|
cardId: z.ZodString;
|
|
@@ -1396,19 +1558,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1396
1558
|
createdAt: z.ZodString;
|
|
1397
1559
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1398
1560
|
}, "strip", z.ZodTypeAny, {
|
|
1561
|
+
cardId: string;
|
|
1399
1562
|
id: string;
|
|
1400
1563
|
name: string;
|
|
1401
1564
|
createdAt: string;
|
|
1402
1565
|
position: number;
|
|
1403
|
-
cardId: string;
|
|
1404
1566
|
updatedAt?: string | null | undefined;
|
|
1405
1567
|
showOnFrontOfCard?: boolean | undefined;
|
|
1406
1568
|
}, {
|
|
1569
|
+
cardId: string;
|
|
1407
1570
|
id: string;
|
|
1408
1571
|
name: string;
|
|
1409
1572
|
createdAt: string;
|
|
1410
1573
|
position: number;
|
|
1411
|
-
cardId: string;
|
|
1412
1574
|
updatedAt?: string | null | undefined;
|
|
1413
1575
|
showOnFrontOfCard?: boolean | undefined;
|
|
1414
1576
|
}>, "many">>;
|
|
@@ -1422,21 +1584,21 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1422
1584
|
createdAt: z.ZodString;
|
|
1423
1585
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1424
1586
|
}, "strip", z.ZodTypeAny, {
|
|
1587
|
+
taskListId: string;
|
|
1425
1588
|
id: string;
|
|
1426
1589
|
name: string;
|
|
1427
1590
|
createdAt: string;
|
|
1428
1591
|
position: number;
|
|
1429
1592
|
isCompleted: boolean;
|
|
1430
|
-
taskListId: string;
|
|
1431
1593
|
updatedAt?: string | null | undefined;
|
|
1432
1594
|
assigneeUserId?: string | null | undefined;
|
|
1433
1595
|
}, {
|
|
1596
|
+
taskListId: string;
|
|
1434
1597
|
id: string;
|
|
1435
1598
|
name: string;
|
|
1436
1599
|
createdAt: string;
|
|
1437
1600
|
position: number;
|
|
1438
1601
|
isCompleted: boolean;
|
|
1439
|
-
taskListId: string;
|
|
1440
1602
|
updatedAt?: string | null | undefined;
|
|
1441
1603
|
assigneeUserId?: string | null | undefined;
|
|
1442
1604
|
}>, "many">>;
|
|
@@ -1475,19 +1637,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1475
1637
|
createdAt: z.ZodString;
|
|
1476
1638
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1477
1639
|
}, "strip", z.ZodTypeAny, {
|
|
1640
|
+
boardId: string;
|
|
1478
1641
|
id: string;
|
|
1479
1642
|
name: string | null;
|
|
1480
1643
|
createdAt: string;
|
|
1481
1644
|
position: number | null;
|
|
1482
|
-
boardId: string;
|
|
1483
1645
|
type?: string | undefined;
|
|
1484
1646
|
updatedAt?: string | null | undefined;
|
|
1485
1647
|
}, {
|
|
1648
|
+
boardId: string;
|
|
1486
1649
|
id: string;
|
|
1487
1650
|
name: string | null;
|
|
1488
1651
|
createdAt: string;
|
|
1489
1652
|
position: number | null;
|
|
1490
|
-
boardId: string;
|
|
1491
1653
|
type?: string | undefined;
|
|
1492
1654
|
updatedAt?: string | null | undefined;
|
|
1493
1655
|
}>, "many">>;
|
|
@@ -1503,39 +1665,66 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1503
1665
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1504
1666
|
isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
1505
1667
|
isCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
1668
|
+
isDueCompleted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1669
|
+
isClosed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1670
|
+
commentsTotal: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1506
1671
|
createdAt: z.ZodString;
|
|
1507
1672
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1508
1673
|
listChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1674
|
+
stopwatch: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1675
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1676
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1677
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1678
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1679
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1680
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1681
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1682
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1683
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1509
1684
|
}, "strip", z.ZodTypeAny, {
|
|
1685
|
+
listId: string;
|
|
1686
|
+
boardId: string;
|
|
1510
1687
|
type: "project" | "story";
|
|
1511
1688
|
id: string;
|
|
1512
1689
|
name: string;
|
|
1513
1690
|
createdAt: string;
|
|
1514
1691
|
position: number;
|
|
1515
|
-
boardId: string;
|
|
1516
|
-
listId: string;
|
|
1517
1692
|
description?: string | null | undefined;
|
|
1518
1693
|
updatedAt?: string | null | undefined;
|
|
1519
1694
|
creatorUserId?: string | undefined;
|
|
1520
1695
|
dueDate?: string | null | undefined;
|
|
1521
1696
|
isDueDateCompleted?: boolean | undefined;
|
|
1522
1697
|
isCompleted?: boolean | undefined;
|
|
1698
|
+
isDueCompleted?: boolean | null | undefined;
|
|
1699
|
+
isClosed?: boolean | null | undefined;
|
|
1700
|
+
commentsTotal?: number | null | undefined;
|
|
1523
1701
|
listChangedAt?: string | null | undefined;
|
|
1702
|
+
stopwatch?: z.objectOutputType<{
|
|
1703
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1704
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1705
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1524
1706
|
}, {
|
|
1707
|
+
listId: string;
|
|
1708
|
+
boardId: string;
|
|
1525
1709
|
type: "project" | "story";
|
|
1526
1710
|
id: string;
|
|
1527
1711
|
name: string;
|
|
1528
1712
|
createdAt: string;
|
|
1529
1713
|
position: number;
|
|
1530
|
-
boardId: string;
|
|
1531
|
-
listId: string;
|
|
1532
1714
|
description?: string | null | undefined;
|
|
1533
1715
|
updatedAt?: string | null | undefined;
|
|
1534
1716
|
creatorUserId?: string | undefined;
|
|
1535
1717
|
dueDate?: string | null | undefined;
|
|
1536
1718
|
isDueDateCompleted?: boolean | undefined;
|
|
1537
1719
|
isCompleted?: boolean | undefined;
|
|
1720
|
+
isDueCompleted?: boolean | null | undefined;
|
|
1721
|
+
isClosed?: boolean | null | undefined;
|
|
1722
|
+
commentsTotal?: number | null | undefined;
|
|
1538
1723
|
listChangedAt?: string | null | undefined;
|
|
1724
|
+
stopwatch?: z.objectInputType<{
|
|
1725
|
+
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1726
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1727
|
+
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1539
1728
|
}>, "many">>;
|
|
1540
1729
|
labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1541
1730
|
id: z.ZodString;
|
|
@@ -1546,19 +1735,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1546
1735
|
createdAt: z.ZodString;
|
|
1547
1736
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1548
1737
|
}, "strip", z.ZodTypeAny, {
|
|
1738
|
+
boardId: string;
|
|
1549
1739
|
id: string;
|
|
1550
1740
|
name: string | null;
|
|
1551
1741
|
createdAt: string;
|
|
1552
1742
|
position: number;
|
|
1553
|
-
boardId: string;
|
|
1554
1743
|
color: string;
|
|
1555
1744
|
updatedAt?: string | null | undefined;
|
|
1556
1745
|
}, {
|
|
1746
|
+
boardId: string;
|
|
1557
1747
|
id: string;
|
|
1558
1748
|
name: string | null;
|
|
1559
1749
|
createdAt: string;
|
|
1560
1750
|
position: number;
|
|
1561
|
-
boardId: string;
|
|
1562
1751
|
color: string;
|
|
1563
1752
|
updatedAt?: string | null | undefined;
|
|
1564
1753
|
}>, "many">>;
|
|
@@ -1569,18 +1758,31 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1569
1758
|
createdAt: z.ZodString;
|
|
1570
1759
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1571
1760
|
}, "strip", z.ZodTypeAny, {
|
|
1572
|
-
id: string;
|
|
1573
|
-
createdAt: string;
|
|
1574
1761
|
cardId: string;
|
|
1575
1762
|
labelId: string;
|
|
1576
|
-
updatedAt?: string | null | undefined;
|
|
1577
|
-
}, {
|
|
1578
1763
|
id: string;
|
|
1579
1764
|
createdAt: string;
|
|
1765
|
+
updatedAt?: string | null | undefined;
|
|
1766
|
+
}, {
|
|
1580
1767
|
cardId: string;
|
|
1581
1768
|
labelId: string;
|
|
1769
|
+
id: string;
|
|
1770
|
+
createdAt: string;
|
|
1582
1771
|
updatedAt?: string | null | undefined;
|
|
1583
1772
|
}>, "many">>;
|
|
1773
|
+
cardMemberships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1774
|
+
id: z.ZodString;
|
|
1775
|
+
cardId: z.ZodString;
|
|
1776
|
+
userId: z.ZodString;
|
|
1777
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1778
|
+
id: z.ZodString;
|
|
1779
|
+
cardId: z.ZodString;
|
|
1780
|
+
userId: z.ZodString;
|
|
1781
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1782
|
+
id: z.ZodString;
|
|
1783
|
+
cardId: z.ZodString;
|
|
1784
|
+
userId: z.ZodString;
|
|
1785
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1584
1786
|
taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1585
1787
|
id: z.ZodString;
|
|
1586
1788
|
cardId: z.ZodString;
|
|
@@ -1590,19 +1792,19 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1590
1792
|
createdAt: z.ZodString;
|
|
1591
1793
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1592
1794
|
}, "strip", z.ZodTypeAny, {
|
|
1795
|
+
cardId: string;
|
|
1593
1796
|
id: string;
|
|
1594
1797
|
name: string;
|
|
1595
1798
|
createdAt: string;
|
|
1596
1799
|
position: number;
|
|
1597
|
-
cardId: string;
|
|
1598
1800
|
updatedAt?: string | null | undefined;
|
|
1599
1801
|
showOnFrontOfCard?: boolean | undefined;
|
|
1600
1802
|
}, {
|
|
1803
|
+
cardId: string;
|
|
1601
1804
|
id: string;
|
|
1602
1805
|
name: string;
|
|
1603
1806
|
createdAt: string;
|
|
1604
1807
|
position: number;
|
|
1605
|
-
cardId: string;
|
|
1606
1808
|
updatedAt?: string | null | undefined;
|
|
1607
1809
|
showOnFrontOfCard?: boolean | undefined;
|
|
1608
1810
|
}>, "many">>;
|
|
@@ -1616,21 +1818,21 @@ export declare const BoardIncludedSchema: z.ZodObject<{
|
|
|
1616
1818
|
createdAt: z.ZodString;
|
|
1617
1819
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1618
1820
|
}, "strip", z.ZodTypeAny, {
|
|
1821
|
+
taskListId: string;
|
|
1619
1822
|
id: string;
|
|
1620
1823
|
name: string;
|
|
1621
1824
|
createdAt: string;
|
|
1622
1825
|
position: number;
|
|
1623
1826
|
isCompleted: boolean;
|
|
1624
|
-
taskListId: string;
|
|
1625
1827
|
updatedAt?: string | null | undefined;
|
|
1626
1828
|
assigneeUserId?: string | null | undefined;
|
|
1627
1829
|
}, {
|
|
1830
|
+
taskListId: string;
|
|
1628
1831
|
id: string;
|
|
1629
1832
|
name: string;
|
|
1630
1833
|
createdAt: string;
|
|
1631
1834
|
position: number;
|
|
1632
1835
|
isCompleted: boolean;
|
|
1633
|
-
taskListId: string;
|
|
1634
1836
|
updatedAt?: string | null | undefined;
|
|
1635
1837
|
assigneeUserId?: string | null | undefined;
|
|
1636
1838
|
}>, "many">>;
|
|
@@ -1670,19 +1872,19 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1670
1872
|
createdAt: z.ZodString;
|
|
1671
1873
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1672
1874
|
}, "strip", z.ZodTypeAny, {
|
|
1875
|
+
cardId: string;
|
|
1673
1876
|
id: string;
|
|
1674
1877
|
name: string;
|
|
1675
1878
|
createdAt: string;
|
|
1676
1879
|
position: number;
|
|
1677
|
-
cardId: string;
|
|
1678
1880
|
updatedAt?: string | null | undefined;
|
|
1679
1881
|
showOnFrontOfCard?: boolean | undefined;
|
|
1680
1882
|
}, {
|
|
1883
|
+
cardId: string;
|
|
1681
1884
|
id: string;
|
|
1682
1885
|
name: string;
|
|
1683
1886
|
createdAt: string;
|
|
1684
1887
|
position: number;
|
|
1685
|
-
cardId: string;
|
|
1686
1888
|
updatedAt?: string | null | undefined;
|
|
1687
1889
|
showOnFrontOfCard?: boolean | undefined;
|
|
1688
1890
|
}>, "many">>;
|
|
@@ -1696,21 +1898,21 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1696
1898
|
createdAt: z.ZodString;
|
|
1697
1899
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1698
1900
|
}, "strip", z.ZodTypeAny, {
|
|
1901
|
+
taskListId: string;
|
|
1699
1902
|
id: string;
|
|
1700
1903
|
name: string;
|
|
1701
1904
|
createdAt: string;
|
|
1702
1905
|
position: number;
|
|
1703
1906
|
isCompleted: boolean;
|
|
1704
|
-
taskListId: string;
|
|
1705
1907
|
updatedAt?: string | null | undefined;
|
|
1706
1908
|
assigneeUserId?: string | null | undefined;
|
|
1707
1909
|
}, {
|
|
1910
|
+
taskListId: string;
|
|
1708
1911
|
id: string;
|
|
1709
1912
|
name: string;
|
|
1710
1913
|
createdAt: string;
|
|
1711
1914
|
position: number;
|
|
1712
1915
|
isCompleted: boolean;
|
|
1713
|
-
taskListId: string;
|
|
1714
1916
|
updatedAt?: string | null | undefined;
|
|
1715
1917
|
assigneeUserId?: string | null | undefined;
|
|
1716
1918
|
}>, "many">>;
|
|
@@ -1722,17 +1924,17 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1722
1924
|
createdAt: z.ZodString;
|
|
1723
1925
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1724
1926
|
}, "strip", z.ZodTypeAny, {
|
|
1725
|
-
id: string;
|
|
1726
|
-
createdAt: string;
|
|
1727
1927
|
cardId: string;
|
|
1728
1928
|
userId: string;
|
|
1929
|
+
id: string;
|
|
1930
|
+
createdAt: string;
|
|
1729
1931
|
text: string;
|
|
1730
1932
|
updatedAt?: string | null | undefined;
|
|
1731
1933
|
}, {
|
|
1732
|
-
id: string;
|
|
1733
|
-
createdAt: string;
|
|
1734
1934
|
cardId: string;
|
|
1735
1935
|
userId: string;
|
|
1936
|
+
id: string;
|
|
1937
|
+
createdAt: string;
|
|
1736
1938
|
text: string;
|
|
1737
1939
|
updatedAt?: string | null | undefined;
|
|
1738
1940
|
}>, "many">>;
|
|
@@ -1745,19 +1947,19 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1745
1947
|
createdAt: z.ZodString;
|
|
1746
1948
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1747
1949
|
}, "strip", z.ZodTypeAny, {
|
|
1950
|
+
boardId: string;
|
|
1748
1951
|
id: string;
|
|
1749
1952
|
name: string | null;
|
|
1750
1953
|
createdAt: string;
|
|
1751
1954
|
position: number;
|
|
1752
|
-
boardId: string;
|
|
1753
1955
|
color: string;
|
|
1754
1956
|
updatedAt?: string | null | undefined;
|
|
1755
1957
|
}, {
|
|
1958
|
+
boardId: string;
|
|
1756
1959
|
id: string;
|
|
1757
1960
|
name: string | null;
|
|
1758
1961
|
createdAt: string;
|
|
1759
1962
|
position: number;
|
|
1760
|
-
boardId: string;
|
|
1761
1963
|
color: string;
|
|
1762
1964
|
updatedAt?: string | null | undefined;
|
|
1763
1965
|
}>, "many">>;
|
|
@@ -1768,18 +1970,31 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1768
1970
|
createdAt: z.ZodString;
|
|
1769
1971
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1770
1972
|
}, "strip", z.ZodTypeAny, {
|
|
1771
|
-
id: string;
|
|
1772
|
-
createdAt: string;
|
|
1773
1973
|
cardId: string;
|
|
1774
1974
|
labelId: string;
|
|
1775
|
-
updatedAt?: string | null | undefined;
|
|
1776
|
-
}, {
|
|
1777
1975
|
id: string;
|
|
1778
1976
|
createdAt: string;
|
|
1977
|
+
updatedAt?: string | null | undefined;
|
|
1978
|
+
}, {
|
|
1779
1979
|
cardId: string;
|
|
1780
1980
|
labelId: string;
|
|
1981
|
+
id: string;
|
|
1982
|
+
createdAt: string;
|
|
1781
1983
|
updatedAt?: string | null | undefined;
|
|
1782
1984
|
}>, "many">>;
|
|
1985
|
+
cardMemberships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1986
|
+
id: z.ZodString;
|
|
1987
|
+
cardId: z.ZodString;
|
|
1988
|
+
userId: z.ZodString;
|
|
1989
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1990
|
+
id: z.ZodString;
|
|
1991
|
+
cardId: z.ZodString;
|
|
1992
|
+
userId: z.ZodString;
|
|
1993
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1994
|
+
id: z.ZodString;
|
|
1995
|
+
cardId: z.ZodString;
|
|
1996
|
+
userId: z.ZodString;
|
|
1997
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1783
1998
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1784
1999
|
id: z.ZodString;
|
|
1785
2000
|
cardId: z.ZodString;
|
|
@@ -1833,10 +2048,10 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1833
2048
|
createdAt: z.ZodString;
|
|
1834
2049
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1835
2050
|
}, "strip", z.ZodTypeAny, {
|
|
2051
|
+
cardId: string;
|
|
1836
2052
|
id: string;
|
|
1837
2053
|
name: string;
|
|
1838
2054
|
createdAt: string;
|
|
1839
|
-
cardId: string;
|
|
1840
2055
|
type?: string | undefined;
|
|
1841
2056
|
updatedAt?: string | null | undefined;
|
|
1842
2057
|
creatorUserId?: string | undefined;
|
|
@@ -1857,10 +2072,10 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1857
2072
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1858
2073
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1859
2074
|
}, {
|
|
2075
|
+
cardId: string;
|
|
1860
2076
|
id: string;
|
|
1861
2077
|
name: string;
|
|
1862
2078
|
createdAt: string;
|
|
1863
|
-
cardId: string;
|
|
1864
2079
|
type?: string | undefined;
|
|
1865
2080
|
updatedAt?: string | null | undefined;
|
|
1866
2081
|
creatorUserId?: string | undefined;
|
|
@@ -1881,6 +2096,44 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1881
2096
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1882
2097
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1883
2098
|
}>, "many">>;
|
|
2099
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2100
|
+
id: z.ZodString;
|
|
2101
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2102
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2103
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2104
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2105
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2106
|
+
id: z.ZodString;
|
|
2107
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2108
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2109
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2110
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2111
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2112
|
+
id: z.ZodString;
|
|
2113
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2114
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2115
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2116
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2117
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2118
|
+
customFieldValues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2119
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2120
|
+
cardId: z.ZodString;
|
|
2121
|
+
customFieldId: z.ZodString;
|
|
2122
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2123
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2124
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2125
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2126
|
+
cardId: z.ZodString;
|
|
2127
|
+
customFieldId: z.ZodString;
|
|
2128
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2129
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2130
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2131
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
cardId: z.ZodString;
|
|
2133
|
+
customFieldId: z.ZodString;
|
|
2134
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2135
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2136
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1884
2137
|
users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1885
2138
|
id: z.ZodString;
|
|
1886
2139
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1916,19 +2169,19 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1916
2169
|
createdAt: z.ZodString;
|
|
1917
2170
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1918
2171
|
}, "strip", z.ZodTypeAny, {
|
|
2172
|
+
cardId: string;
|
|
1919
2173
|
id: string;
|
|
1920
2174
|
name: string;
|
|
1921
2175
|
createdAt: string;
|
|
1922
2176
|
position: number;
|
|
1923
|
-
cardId: string;
|
|
1924
2177
|
updatedAt?: string | null | undefined;
|
|
1925
2178
|
showOnFrontOfCard?: boolean | undefined;
|
|
1926
2179
|
}, {
|
|
2180
|
+
cardId: string;
|
|
1927
2181
|
id: string;
|
|
1928
2182
|
name: string;
|
|
1929
2183
|
createdAt: string;
|
|
1930
2184
|
position: number;
|
|
1931
|
-
cardId: string;
|
|
1932
2185
|
updatedAt?: string | null | undefined;
|
|
1933
2186
|
showOnFrontOfCard?: boolean | undefined;
|
|
1934
2187
|
}>, "many">>;
|
|
@@ -1942,21 +2195,21 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1942
2195
|
createdAt: z.ZodString;
|
|
1943
2196
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1944
2197
|
}, "strip", z.ZodTypeAny, {
|
|
2198
|
+
taskListId: string;
|
|
1945
2199
|
id: string;
|
|
1946
2200
|
name: string;
|
|
1947
2201
|
createdAt: string;
|
|
1948
2202
|
position: number;
|
|
1949
2203
|
isCompleted: boolean;
|
|
1950
|
-
taskListId: string;
|
|
1951
2204
|
updatedAt?: string | null | undefined;
|
|
1952
2205
|
assigneeUserId?: string | null | undefined;
|
|
1953
2206
|
}, {
|
|
2207
|
+
taskListId: string;
|
|
1954
2208
|
id: string;
|
|
1955
2209
|
name: string;
|
|
1956
2210
|
createdAt: string;
|
|
1957
2211
|
position: number;
|
|
1958
2212
|
isCompleted: boolean;
|
|
1959
|
-
taskListId: string;
|
|
1960
2213
|
updatedAt?: string | null | undefined;
|
|
1961
2214
|
assigneeUserId?: string | null | undefined;
|
|
1962
2215
|
}>, "many">>;
|
|
@@ -1968,17 +2221,17 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1968
2221
|
createdAt: z.ZodString;
|
|
1969
2222
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1970
2223
|
}, "strip", z.ZodTypeAny, {
|
|
1971
|
-
id: string;
|
|
1972
|
-
createdAt: string;
|
|
1973
2224
|
cardId: string;
|
|
1974
2225
|
userId: string;
|
|
2226
|
+
id: string;
|
|
2227
|
+
createdAt: string;
|
|
1975
2228
|
text: string;
|
|
1976
2229
|
updatedAt?: string | null | undefined;
|
|
1977
2230
|
}, {
|
|
1978
|
-
id: string;
|
|
1979
|
-
createdAt: string;
|
|
1980
2231
|
cardId: string;
|
|
1981
2232
|
userId: string;
|
|
2233
|
+
id: string;
|
|
2234
|
+
createdAt: string;
|
|
1982
2235
|
text: string;
|
|
1983
2236
|
updatedAt?: string | null | undefined;
|
|
1984
2237
|
}>, "many">>;
|
|
@@ -1991,19 +2244,19 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
1991
2244
|
createdAt: z.ZodString;
|
|
1992
2245
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1993
2246
|
}, "strip", z.ZodTypeAny, {
|
|
2247
|
+
boardId: string;
|
|
1994
2248
|
id: string;
|
|
1995
2249
|
name: string | null;
|
|
1996
2250
|
createdAt: string;
|
|
1997
2251
|
position: number;
|
|
1998
|
-
boardId: string;
|
|
1999
2252
|
color: string;
|
|
2000
2253
|
updatedAt?: string | null | undefined;
|
|
2001
2254
|
}, {
|
|
2255
|
+
boardId: string;
|
|
2002
2256
|
id: string;
|
|
2003
2257
|
name: string | null;
|
|
2004
2258
|
createdAt: string;
|
|
2005
2259
|
position: number;
|
|
2006
|
-
boardId: string;
|
|
2007
2260
|
color: string;
|
|
2008
2261
|
updatedAt?: string | null | undefined;
|
|
2009
2262
|
}>, "many">>;
|
|
@@ -2014,18 +2267,31 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2014
2267
|
createdAt: z.ZodString;
|
|
2015
2268
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2016
2269
|
}, "strip", z.ZodTypeAny, {
|
|
2017
|
-
id: string;
|
|
2018
|
-
createdAt: string;
|
|
2019
2270
|
cardId: string;
|
|
2020
2271
|
labelId: string;
|
|
2021
|
-
updatedAt?: string | null | undefined;
|
|
2022
|
-
}, {
|
|
2023
2272
|
id: string;
|
|
2024
2273
|
createdAt: string;
|
|
2274
|
+
updatedAt?: string | null | undefined;
|
|
2275
|
+
}, {
|
|
2025
2276
|
cardId: string;
|
|
2026
2277
|
labelId: string;
|
|
2278
|
+
id: string;
|
|
2279
|
+
createdAt: string;
|
|
2027
2280
|
updatedAt?: string | null | undefined;
|
|
2028
2281
|
}>, "many">>;
|
|
2282
|
+
cardMemberships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2283
|
+
id: z.ZodString;
|
|
2284
|
+
cardId: z.ZodString;
|
|
2285
|
+
userId: z.ZodString;
|
|
2286
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2287
|
+
id: z.ZodString;
|
|
2288
|
+
cardId: z.ZodString;
|
|
2289
|
+
userId: z.ZodString;
|
|
2290
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2291
|
+
id: z.ZodString;
|
|
2292
|
+
cardId: z.ZodString;
|
|
2293
|
+
userId: z.ZodString;
|
|
2294
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2029
2295
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2030
2296
|
id: z.ZodString;
|
|
2031
2297
|
cardId: z.ZodString;
|
|
@@ -2079,10 +2345,10 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2079
2345
|
createdAt: z.ZodString;
|
|
2080
2346
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2081
2347
|
}, "strip", z.ZodTypeAny, {
|
|
2348
|
+
cardId: string;
|
|
2082
2349
|
id: string;
|
|
2083
2350
|
name: string;
|
|
2084
2351
|
createdAt: string;
|
|
2085
|
-
cardId: string;
|
|
2086
2352
|
type?: string | undefined;
|
|
2087
2353
|
updatedAt?: string | null | undefined;
|
|
2088
2354
|
creatorUserId?: string | undefined;
|
|
@@ -2103,10 +2369,10 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2103
2369
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2104
2370
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2105
2371
|
}, {
|
|
2372
|
+
cardId: string;
|
|
2106
2373
|
id: string;
|
|
2107
2374
|
name: string;
|
|
2108
2375
|
createdAt: string;
|
|
2109
|
-
cardId: string;
|
|
2110
2376
|
type?: string | undefined;
|
|
2111
2377
|
updatedAt?: string | null | undefined;
|
|
2112
2378
|
creatorUserId?: string | undefined;
|
|
@@ -2127,6 +2393,44 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2127
2393
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2128
2394
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2129
2395
|
}>, "many">>;
|
|
2396
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2397
|
+
id: z.ZodString;
|
|
2398
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2399
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2400
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2401
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2402
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2403
|
+
id: z.ZodString;
|
|
2404
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2405
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2406
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2407
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2408
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2409
|
+
id: z.ZodString;
|
|
2410
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2411
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2412
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2413
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2414
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2415
|
+
customFieldValues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2416
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2417
|
+
cardId: z.ZodString;
|
|
2418
|
+
customFieldId: z.ZodString;
|
|
2419
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2420
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2421
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2422
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2423
|
+
cardId: z.ZodString;
|
|
2424
|
+
customFieldId: z.ZodString;
|
|
2425
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2426
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2427
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2428
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2429
|
+
cardId: z.ZodString;
|
|
2430
|
+
customFieldId: z.ZodString;
|
|
2431
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2432
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2433
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2130
2434
|
users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2131
2435
|
id: z.ZodString;
|
|
2132
2436
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2162,19 +2466,19 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2162
2466
|
createdAt: z.ZodString;
|
|
2163
2467
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2164
2468
|
}, "strip", z.ZodTypeAny, {
|
|
2469
|
+
cardId: string;
|
|
2165
2470
|
id: string;
|
|
2166
2471
|
name: string;
|
|
2167
2472
|
createdAt: string;
|
|
2168
2473
|
position: number;
|
|
2169
|
-
cardId: string;
|
|
2170
2474
|
updatedAt?: string | null | undefined;
|
|
2171
2475
|
showOnFrontOfCard?: boolean | undefined;
|
|
2172
2476
|
}, {
|
|
2477
|
+
cardId: string;
|
|
2173
2478
|
id: string;
|
|
2174
2479
|
name: string;
|
|
2175
2480
|
createdAt: string;
|
|
2176
2481
|
position: number;
|
|
2177
|
-
cardId: string;
|
|
2178
2482
|
updatedAt?: string | null | undefined;
|
|
2179
2483
|
showOnFrontOfCard?: boolean | undefined;
|
|
2180
2484
|
}>, "many">>;
|
|
@@ -2188,21 +2492,21 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2188
2492
|
createdAt: z.ZodString;
|
|
2189
2493
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2190
2494
|
}, "strip", z.ZodTypeAny, {
|
|
2495
|
+
taskListId: string;
|
|
2191
2496
|
id: string;
|
|
2192
2497
|
name: string;
|
|
2193
2498
|
createdAt: string;
|
|
2194
2499
|
position: number;
|
|
2195
2500
|
isCompleted: boolean;
|
|
2196
|
-
taskListId: string;
|
|
2197
2501
|
updatedAt?: string | null | undefined;
|
|
2198
2502
|
assigneeUserId?: string | null | undefined;
|
|
2199
2503
|
}, {
|
|
2504
|
+
taskListId: string;
|
|
2200
2505
|
id: string;
|
|
2201
2506
|
name: string;
|
|
2202
2507
|
createdAt: string;
|
|
2203
2508
|
position: number;
|
|
2204
2509
|
isCompleted: boolean;
|
|
2205
|
-
taskListId: string;
|
|
2206
2510
|
updatedAt?: string | null | undefined;
|
|
2207
2511
|
assigneeUserId?: string | null | undefined;
|
|
2208
2512
|
}>, "many">>;
|
|
@@ -2214,17 +2518,17 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2214
2518
|
createdAt: z.ZodString;
|
|
2215
2519
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2216
2520
|
}, "strip", z.ZodTypeAny, {
|
|
2217
|
-
id: string;
|
|
2218
|
-
createdAt: string;
|
|
2219
2521
|
cardId: string;
|
|
2220
2522
|
userId: string;
|
|
2523
|
+
id: string;
|
|
2524
|
+
createdAt: string;
|
|
2221
2525
|
text: string;
|
|
2222
2526
|
updatedAt?: string | null | undefined;
|
|
2223
2527
|
}, {
|
|
2224
|
-
id: string;
|
|
2225
|
-
createdAt: string;
|
|
2226
2528
|
cardId: string;
|
|
2227
2529
|
userId: string;
|
|
2530
|
+
id: string;
|
|
2531
|
+
createdAt: string;
|
|
2228
2532
|
text: string;
|
|
2229
2533
|
updatedAt?: string | null | undefined;
|
|
2230
2534
|
}>, "many">>;
|
|
@@ -2237,19 +2541,19 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2237
2541
|
createdAt: z.ZodString;
|
|
2238
2542
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2239
2543
|
}, "strip", z.ZodTypeAny, {
|
|
2544
|
+
boardId: string;
|
|
2240
2545
|
id: string;
|
|
2241
2546
|
name: string | null;
|
|
2242
2547
|
createdAt: string;
|
|
2243
2548
|
position: number;
|
|
2244
|
-
boardId: string;
|
|
2245
2549
|
color: string;
|
|
2246
2550
|
updatedAt?: string | null | undefined;
|
|
2247
2551
|
}, {
|
|
2552
|
+
boardId: string;
|
|
2248
2553
|
id: string;
|
|
2249
2554
|
name: string | null;
|
|
2250
2555
|
createdAt: string;
|
|
2251
2556
|
position: number;
|
|
2252
|
-
boardId: string;
|
|
2253
2557
|
color: string;
|
|
2254
2558
|
updatedAt?: string | null | undefined;
|
|
2255
2559
|
}>, "many">>;
|
|
@@ -2260,18 +2564,31 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2260
2564
|
createdAt: z.ZodString;
|
|
2261
2565
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2262
2566
|
}, "strip", z.ZodTypeAny, {
|
|
2263
|
-
id: string;
|
|
2264
|
-
createdAt: string;
|
|
2265
2567
|
cardId: string;
|
|
2266
2568
|
labelId: string;
|
|
2267
|
-
updatedAt?: string | null | undefined;
|
|
2268
|
-
}, {
|
|
2269
2569
|
id: string;
|
|
2270
2570
|
createdAt: string;
|
|
2571
|
+
updatedAt?: string | null | undefined;
|
|
2572
|
+
}, {
|
|
2271
2573
|
cardId: string;
|
|
2272
2574
|
labelId: string;
|
|
2575
|
+
id: string;
|
|
2576
|
+
createdAt: string;
|
|
2273
2577
|
updatedAt?: string | null | undefined;
|
|
2274
2578
|
}>, "many">>;
|
|
2579
|
+
cardMemberships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2580
|
+
id: z.ZodString;
|
|
2581
|
+
cardId: z.ZodString;
|
|
2582
|
+
userId: z.ZodString;
|
|
2583
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2584
|
+
id: z.ZodString;
|
|
2585
|
+
cardId: z.ZodString;
|
|
2586
|
+
userId: z.ZodString;
|
|
2587
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2588
|
+
id: z.ZodString;
|
|
2589
|
+
cardId: z.ZodString;
|
|
2590
|
+
userId: z.ZodString;
|
|
2591
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2275
2592
|
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2276
2593
|
id: z.ZodString;
|
|
2277
2594
|
cardId: z.ZodString;
|
|
@@ -2325,10 +2642,10 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2325
2642
|
createdAt: z.ZodString;
|
|
2326
2643
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2327
2644
|
}, "strip", z.ZodTypeAny, {
|
|
2645
|
+
cardId: string;
|
|
2328
2646
|
id: string;
|
|
2329
2647
|
name: string;
|
|
2330
2648
|
createdAt: string;
|
|
2331
|
-
cardId: string;
|
|
2332
2649
|
type?: string | undefined;
|
|
2333
2650
|
updatedAt?: string | null | undefined;
|
|
2334
2651
|
creatorUserId?: string | undefined;
|
|
@@ -2349,10 +2666,10 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2349
2666
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2350
2667
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2351
2668
|
}, {
|
|
2669
|
+
cardId: string;
|
|
2352
2670
|
id: string;
|
|
2353
2671
|
name: string;
|
|
2354
2672
|
createdAt: string;
|
|
2355
|
-
cardId: string;
|
|
2356
2673
|
type?: string | undefined;
|
|
2357
2674
|
updatedAt?: string | null | undefined;
|
|
2358
2675
|
creatorUserId?: string | undefined;
|
|
@@ -2373,6 +2690,44 @@ export declare const CardIncludedSchema: z.ZodObject<{
|
|
|
2373
2690
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2374
2691
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2375
2692
|
}>, "many">>;
|
|
2693
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2694
|
+
id: z.ZodString;
|
|
2695
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2696
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2697
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2698
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2699
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2700
|
+
id: z.ZodString;
|
|
2701
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2702
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2703
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2704
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2705
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2706
|
+
id: z.ZodString;
|
|
2707
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2708
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2709
|
+
baseCustomFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2710
|
+
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2711
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2712
|
+
customFieldValues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2713
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2714
|
+
cardId: z.ZodString;
|
|
2715
|
+
customFieldId: z.ZodString;
|
|
2716
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2717
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2718
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2719
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2720
|
+
cardId: z.ZodString;
|
|
2721
|
+
customFieldId: z.ZodString;
|
|
2722
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2723
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2724
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2725
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2726
|
+
cardId: z.ZodString;
|
|
2727
|
+
customFieldId: z.ZodString;
|
|
2728
|
+
customFieldGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2729
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2730
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
2376
2731
|
users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2377
2732
|
id: z.ZodString;
|
|
2378
2733
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -2487,17 +2842,17 @@ export declare const ProjectsIncludedSchema: z.ZodObject<{
|
|
|
2487
2842
|
createdAt: z.ZodString;
|
|
2488
2843
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2489
2844
|
}, "strip", z.ZodTypeAny, {
|
|
2845
|
+
projectId: string;
|
|
2490
2846
|
id: string;
|
|
2491
2847
|
name: string;
|
|
2492
2848
|
createdAt: string;
|
|
2493
|
-
projectId: string;
|
|
2494
2849
|
position: number;
|
|
2495
2850
|
updatedAt?: string | null | undefined;
|
|
2496
2851
|
}, {
|
|
2852
|
+
projectId: string;
|
|
2497
2853
|
id: string;
|
|
2498
2854
|
name: string;
|
|
2499
2855
|
createdAt: string;
|
|
2500
|
-
projectId: string;
|
|
2501
2856
|
position: number;
|
|
2502
2857
|
updatedAt?: string | null | undefined;
|
|
2503
2858
|
}>, "many">>;
|
|
@@ -2535,17 +2890,17 @@ export declare const ProjectsIncludedSchema: z.ZodObject<{
|
|
|
2535
2890
|
createdAt: z.ZodString;
|
|
2536
2891
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2537
2892
|
}, "strip", z.ZodTypeAny, {
|
|
2893
|
+
projectId: string;
|
|
2538
2894
|
id: string;
|
|
2539
2895
|
name: string;
|
|
2540
2896
|
createdAt: string;
|
|
2541
|
-
projectId: string;
|
|
2542
2897
|
position: number;
|
|
2543
2898
|
updatedAt?: string | null | undefined;
|
|
2544
2899
|
}, {
|
|
2900
|
+
projectId: string;
|
|
2545
2901
|
id: string;
|
|
2546
2902
|
name: string;
|
|
2547
2903
|
createdAt: string;
|
|
2548
|
-
projectId: string;
|
|
2549
2904
|
position: number;
|
|
2550
2905
|
updatedAt?: string | null | undefined;
|
|
2551
2906
|
}>, "many">>;
|
|
@@ -2583,17 +2938,17 @@ export declare const ProjectsIncludedSchema: z.ZodObject<{
|
|
|
2583
2938
|
createdAt: z.ZodString;
|
|
2584
2939
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2585
2940
|
}, "strip", z.ZodTypeAny, {
|
|
2941
|
+
projectId: string;
|
|
2586
2942
|
id: string;
|
|
2587
2943
|
name: string;
|
|
2588
2944
|
createdAt: string;
|
|
2589
|
-
projectId: string;
|
|
2590
2945
|
position: number;
|
|
2591
2946
|
updatedAt?: string | null | undefined;
|
|
2592
2947
|
}, {
|
|
2948
|
+
projectId: string;
|
|
2593
2949
|
id: string;
|
|
2594
2950
|
name: string;
|
|
2595
2951
|
createdAt: string;
|
|
2596
|
-
projectId: string;
|
|
2597
2952
|
position: number;
|
|
2598
2953
|
updatedAt?: string | null | undefined;
|
|
2599
2954
|
}>, "many">>;
|