@filcuk/planka-mcp 1.0.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.
Files changed (83) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +180 -0
  3. package/dist/client.d.ts +55 -0
  4. package/dist/client.d.ts.map +1 -0
  5. package/dist/client.js +193 -0
  6. package/dist/client.js.map +1 -0
  7. package/dist/errors.d.ts +39 -0
  8. package/dist/errors.d.ts.map +1 -0
  9. package/dist/errors.js +82 -0
  10. package/dist/errors.js.map +1 -0
  11. package/dist/index.d.ts +3 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +100 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/operations/boards.d.ts +39 -0
  16. package/dist/operations/boards.d.ts.map +1 -0
  17. package/dist/operations/boards.js +76 -0
  18. package/dist/operations/boards.js.map +1 -0
  19. package/dist/operations/cards.d.ts +35 -0
  20. package/dist/operations/cards.d.ts.map +1 -0
  21. package/dist/operations/cards.js +70 -0
  22. package/dist/operations/cards.js.map +1 -0
  23. package/dist/operations/comments.d.ts +20 -0
  24. package/dist/operations/comments.d.ts.map +1 -0
  25. package/dist/operations/comments.js +42 -0
  26. package/dist/operations/comments.js.map +1 -0
  27. package/dist/operations/labels.d.ts +32 -0
  28. package/dist/operations/labels.d.ts.map +1 -0
  29. package/dist/operations/labels.js +91 -0
  30. package/dist/operations/labels.js.map +1 -0
  31. package/dist/operations/lists.d.ts +15 -0
  32. package/dist/operations/lists.d.ts.map +1 -0
  33. package/dist/operations/lists.js +35 -0
  34. package/dist/operations/lists.js.map +1 -0
  35. package/dist/operations/projects.d.ts +23 -0
  36. package/dist/operations/projects.d.ts.map +1 -0
  37. package/dist/operations/projects.js +52 -0
  38. package/dist/operations/projects.js.map +1 -0
  39. package/dist/operations/tasks.d.ts +30 -0
  40. package/dist/operations/tasks.d.ts.map +1 -0
  41. package/dist/operations/tasks.js +102 -0
  42. package/dist/operations/tasks.js.map +1 -0
  43. package/dist/schemas/entities.d.ts +307 -0
  44. package/dist/schemas/entities.d.ts.map +1 -0
  45. package/dist/schemas/entities.js +168 -0
  46. package/dist/schemas/entities.js.map +1 -0
  47. package/dist/schemas/requests.d.ts +225 -0
  48. package/dist/schemas/requests.d.ts.map +1 -0
  49. package/dist/schemas/requests.js +87 -0
  50. package/dist/schemas/requests.js.map +1 -0
  51. package/dist/schemas/responses.d.ts +2161 -0
  52. package/dist/schemas/responses.d.ts.map +1 -0
  53. package/dist/schemas/responses.js +68 -0
  54. package/dist/schemas/responses.js.map +1 -0
  55. package/dist/tools/cards.d.ts +401 -0
  56. package/dist/tools/cards.d.ts.map +1 -0
  57. package/dist/tools/cards.js +367 -0
  58. package/dist/tools/cards.js.map +1 -0
  59. package/dist/tools/comments.d.ts +134 -0
  60. package/dist/tools/comments.d.ts.map +1 -0
  61. package/dist/tools/comments.js +109 -0
  62. package/dist/tools/comments.js.map +1 -0
  63. package/dist/tools/index.d.ts +790 -0
  64. package/dist/tools/index.d.ts.map +1 -0
  65. package/dist/tools/index.js +44 -0
  66. package/dist/tools/index.js.map +1 -0
  67. package/dist/tools/labels.d.ts +198 -0
  68. package/dist/tools/labels.d.ts.map +1 -0
  69. package/dist/tools/labels.js +265 -0
  70. package/dist/tools/labels.js.map +1 -0
  71. package/dist/tools/lists.d.ts +117 -0
  72. package/dist/tools/lists.d.ts.map +1 -0
  73. package/dist/tools/lists.js +178 -0
  74. package/dist/tools/lists.js.map +1 -0
  75. package/dist/tools/navigation.d.ts +106 -0
  76. package/dist/tools/navigation.d.ts.map +1 -0
  77. package/dist/tools/navigation.js +151 -0
  78. package/dist/tools/navigation.js.map +1 -0
  79. package/dist/tools/tasks.d.ts +223 -0
  80. package/dist/tools/tasks.d.ts.map +1 -0
  81. package/dist/tools/tasks.js +169 -0
  82. package/dist/tools/tasks.js.map +1 -0
  83. package/package.json +53 -0
@@ -0,0 +1,2161 @@
1
+ /**
2
+ * API response schemas for PLANKA.
3
+ */
4
+ import { z } from "zod";
5
+ export declare const SingleItemResponse: <T extends z.ZodTypeAny>(itemSchema: T) => z.ZodObject<{
6
+ item: T;
7
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
8
+ }, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
9
+ item: T;
10
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11
+ }>, any> extends infer T_1 ? { [k in keyof T_1]: T_1[k]; } : never, z.baseObjectInputType<{
12
+ item: T;
13
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
14
+ }> extends infer T_2 ? { [k_1 in keyof T_2]: T_2[k_1]; } : never>;
15
+ export declare const MultiItemResponse: <T extends z.ZodTypeAny>(itemSchema: T) => z.ZodObject<{
16
+ items: z.ZodArray<T, "many">;
17
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
18
+ }, "strip", z.ZodTypeAny, {
19
+ items: T["_output"][];
20
+ included?: Record<string, any> | undefined;
21
+ }, {
22
+ items: T["_input"][];
23
+ included?: Record<string, any> | undefined;
24
+ }>;
25
+ export declare const ProjectResponse: z.ZodObject<{
26
+ item: z.ZodObject<{
27
+ id: z.ZodString;
28
+ name: z.ZodString;
29
+ background: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30
+ backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31
+ createdAt: z.ZodString;
32
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
+ }, "strip", z.ZodTypeAny, {
34
+ id: string;
35
+ name: string;
36
+ createdAt: string;
37
+ updatedAt?: string | null | undefined;
38
+ background?: string | null | undefined;
39
+ backgroundImage?: string | null | undefined;
40
+ }, {
41
+ id: string;
42
+ name: string;
43
+ createdAt: string;
44
+ updatedAt?: string | null | undefined;
45
+ background?: string | null | undefined;
46
+ backgroundImage?: string | null | undefined;
47
+ }>;
48
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
49
+ }, "strip", z.ZodTypeAny, {
50
+ item: {
51
+ id: string;
52
+ name: string;
53
+ createdAt: string;
54
+ updatedAt?: string | null | undefined;
55
+ background?: string | null | undefined;
56
+ backgroundImage?: string | null | undefined;
57
+ };
58
+ included?: Record<string, any> | undefined;
59
+ }, {
60
+ item: {
61
+ id: string;
62
+ name: string;
63
+ createdAt: string;
64
+ updatedAt?: string | null | undefined;
65
+ background?: string | null | undefined;
66
+ backgroundImage?: string | null | undefined;
67
+ };
68
+ included?: Record<string, any> | undefined;
69
+ }>;
70
+ export declare const ProjectsResponse: z.ZodObject<{
71
+ items: z.ZodArray<z.ZodObject<{
72
+ id: z.ZodString;
73
+ name: z.ZodString;
74
+ background: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75
+ backgroundImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76
+ createdAt: z.ZodString;
77
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
78
+ }, "strip", z.ZodTypeAny, {
79
+ id: string;
80
+ name: string;
81
+ createdAt: string;
82
+ updatedAt?: string | null | undefined;
83
+ background?: string | null | undefined;
84
+ backgroundImage?: string | null | undefined;
85
+ }, {
86
+ id: string;
87
+ name: string;
88
+ createdAt: string;
89
+ updatedAt?: string | null | undefined;
90
+ background?: string | null | undefined;
91
+ backgroundImage?: string | null | undefined;
92
+ }>, "many">;
93
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
94
+ }, "strip", z.ZodTypeAny, {
95
+ items: {
96
+ id: string;
97
+ name: string;
98
+ createdAt: string;
99
+ updatedAt?: string | null | undefined;
100
+ background?: string | null | undefined;
101
+ backgroundImage?: string | null | undefined;
102
+ }[];
103
+ included?: Record<string, any> | undefined;
104
+ }, {
105
+ items: {
106
+ id: string;
107
+ name: string;
108
+ createdAt: string;
109
+ updatedAt?: string | null | undefined;
110
+ background?: string | null | undefined;
111
+ backgroundImage?: string | null | undefined;
112
+ }[];
113
+ included?: Record<string, any> | undefined;
114
+ }>;
115
+ export declare const BoardResponse: z.ZodObject<{
116
+ item: z.ZodObject<{
117
+ id: z.ZodString;
118
+ projectId: z.ZodString;
119
+ name: z.ZodString;
120
+ position: z.ZodNumber;
121
+ createdAt: z.ZodString;
122
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
123
+ }, "strip", z.ZodTypeAny, {
124
+ id: string;
125
+ name: string;
126
+ createdAt: string;
127
+ projectId: string;
128
+ position: number;
129
+ updatedAt?: string | null | undefined;
130
+ }, {
131
+ id: string;
132
+ name: string;
133
+ createdAt: string;
134
+ projectId: string;
135
+ position: number;
136
+ updatedAt?: string | null | undefined;
137
+ }>;
138
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
139
+ }, "strip", z.ZodTypeAny, {
140
+ item: {
141
+ id: string;
142
+ name: string;
143
+ createdAt: string;
144
+ projectId: string;
145
+ position: number;
146
+ updatedAt?: string | null | undefined;
147
+ };
148
+ included?: Record<string, any> | undefined;
149
+ }, {
150
+ item: {
151
+ id: string;
152
+ name: string;
153
+ createdAt: string;
154
+ projectId: string;
155
+ position: number;
156
+ updatedAt?: string | null | undefined;
157
+ };
158
+ included?: Record<string, any> | undefined;
159
+ }>;
160
+ export declare const BoardsResponse: z.ZodObject<{
161
+ items: z.ZodArray<z.ZodObject<{
162
+ id: z.ZodString;
163
+ projectId: z.ZodString;
164
+ name: z.ZodString;
165
+ position: z.ZodNumber;
166
+ createdAt: z.ZodString;
167
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
168
+ }, "strip", z.ZodTypeAny, {
169
+ id: string;
170
+ name: string;
171
+ createdAt: string;
172
+ projectId: string;
173
+ position: number;
174
+ updatedAt?: string | null | undefined;
175
+ }, {
176
+ id: string;
177
+ name: string;
178
+ createdAt: string;
179
+ projectId: string;
180
+ position: number;
181
+ updatedAt?: string | null | undefined;
182
+ }>, "many">;
183
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
184
+ }, "strip", z.ZodTypeAny, {
185
+ items: {
186
+ id: string;
187
+ name: string;
188
+ createdAt: string;
189
+ projectId: string;
190
+ position: number;
191
+ updatedAt?: string | null | undefined;
192
+ }[];
193
+ included?: Record<string, any> | undefined;
194
+ }, {
195
+ items: {
196
+ id: string;
197
+ name: string;
198
+ createdAt: string;
199
+ projectId: string;
200
+ position: number;
201
+ updatedAt?: string | null | undefined;
202
+ }[];
203
+ included?: Record<string, any> | undefined;
204
+ }>;
205
+ export declare const ListResponse: z.ZodObject<{
206
+ item: z.ZodObject<{
207
+ id: z.ZodString;
208
+ boardId: z.ZodString;
209
+ type: z.ZodEnum<["active", "closed", "archive", "trash"]>;
210
+ name: z.ZodNullable<z.ZodString>;
211
+ position: z.ZodNullable<z.ZodNumber>;
212
+ color: z.ZodOptional<z.ZodNullable<z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>>>;
213
+ createdAt: z.ZodString;
214
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
215
+ }, "strip", z.ZodTypeAny, {
216
+ type: "active" | "closed" | "archive" | "trash";
217
+ id: string;
218
+ name: string | null;
219
+ createdAt: string;
220
+ position: number | null;
221
+ boardId: string;
222
+ updatedAt?: string | null | undefined;
223
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
224
+ }, {
225
+ type: "active" | "closed" | "archive" | "trash";
226
+ id: string;
227
+ name: string | null;
228
+ createdAt: string;
229
+ position: number | null;
230
+ boardId: string;
231
+ updatedAt?: string | null | undefined;
232
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
233
+ }>;
234
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
235
+ }, "strip", z.ZodTypeAny, {
236
+ item: {
237
+ type: "active" | "closed" | "archive" | "trash";
238
+ id: string;
239
+ name: string | null;
240
+ createdAt: string;
241
+ position: number | null;
242
+ boardId: string;
243
+ updatedAt?: string | null | undefined;
244
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
245
+ };
246
+ included?: Record<string, any> | undefined;
247
+ }, {
248
+ item: {
249
+ type: "active" | "closed" | "archive" | "trash";
250
+ id: string;
251
+ name: string | null;
252
+ createdAt: string;
253
+ position: number | null;
254
+ boardId: string;
255
+ updatedAt?: string | null | undefined;
256
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
257
+ };
258
+ included?: Record<string, any> | undefined;
259
+ }>;
260
+ export declare const ListsResponse: z.ZodObject<{
261
+ items: z.ZodArray<z.ZodObject<{
262
+ id: z.ZodString;
263
+ boardId: z.ZodString;
264
+ type: z.ZodEnum<["active", "closed", "archive", "trash"]>;
265
+ name: z.ZodNullable<z.ZodString>;
266
+ position: z.ZodNullable<z.ZodNumber>;
267
+ color: z.ZodOptional<z.ZodNullable<z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>>>;
268
+ createdAt: z.ZodString;
269
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
270
+ }, "strip", z.ZodTypeAny, {
271
+ type: "active" | "closed" | "archive" | "trash";
272
+ id: string;
273
+ name: string | null;
274
+ createdAt: string;
275
+ position: number | null;
276
+ boardId: string;
277
+ updatedAt?: string | null | undefined;
278
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
279
+ }, {
280
+ type: "active" | "closed" | "archive" | "trash";
281
+ id: string;
282
+ name: string | null;
283
+ createdAt: string;
284
+ position: number | null;
285
+ boardId: string;
286
+ updatedAt?: string | null | undefined;
287
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
288
+ }>, "many">;
289
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
290
+ }, "strip", z.ZodTypeAny, {
291
+ items: {
292
+ type: "active" | "closed" | "archive" | "trash";
293
+ id: string;
294
+ name: string | null;
295
+ createdAt: string;
296
+ position: number | null;
297
+ boardId: string;
298
+ updatedAt?: string | null | undefined;
299
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
300
+ }[];
301
+ included?: Record<string, any> | undefined;
302
+ }, {
303
+ items: {
304
+ type: "active" | "closed" | "archive" | "trash";
305
+ id: string;
306
+ name: string | null;
307
+ createdAt: string;
308
+ position: number | null;
309
+ boardId: string;
310
+ updatedAt?: string | null | undefined;
311
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
312
+ }[];
313
+ included?: Record<string, any> | undefined;
314
+ }>;
315
+ export declare const CardResponse: z.ZodObject<{
316
+ item: z.ZodObject<{
317
+ id: z.ZodString;
318
+ boardId: z.ZodString;
319
+ listId: z.ZodString;
320
+ creatorUserId: z.ZodOptional<z.ZodString>;
321
+ name: z.ZodString;
322
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
323
+ position: z.ZodNumber;
324
+ type: z.ZodEnum<["project", "story"]>;
325
+ dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
326
+ isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
327
+ isCompleted: z.ZodOptional<z.ZodBoolean>;
328
+ createdAt: z.ZodString;
329
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
330
+ }, "strip", z.ZodTypeAny, {
331
+ type: "project" | "story";
332
+ id: string;
333
+ name: string;
334
+ createdAt: string;
335
+ position: number;
336
+ boardId: string;
337
+ listId: string;
338
+ updatedAt?: string | null | undefined;
339
+ creatorUserId?: string | undefined;
340
+ description?: string | null | undefined;
341
+ dueDate?: string | null | undefined;
342
+ isDueDateCompleted?: boolean | undefined;
343
+ isCompleted?: boolean | undefined;
344
+ }, {
345
+ type: "project" | "story";
346
+ id: string;
347
+ name: string;
348
+ createdAt: string;
349
+ position: number;
350
+ boardId: string;
351
+ listId: string;
352
+ updatedAt?: string | null | undefined;
353
+ creatorUserId?: string | undefined;
354
+ description?: string | null | undefined;
355
+ dueDate?: string | null | undefined;
356
+ isDueDateCompleted?: boolean | undefined;
357
+ isCompleted?: boolean | undefined;
358
+ }>;
359
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ item: {
362
+ type: "project" | "story";
363
+ id: string;
364
+ name: string;
365
+ createdAt: string;
366
+ position: number;
367
+ boardId: string;
368
+ listId: string;
369
+ updatedAt?: string | null | undefined;
370
+ creatorUserId?: string | undefined;
371
+ description?: string | null | undefined;
372
+ dueDate?: string | null | undefined;
373
+ isDueDateCompleted?: boolean | undefined;
374
+ isCompleted?: boolean | undefined;
375
+ };
376
+ included?: Record<string, any> | undefined;
377
+ }, {
378
+ item: {
379
+ type: "project" | "story";
380
+ id: string;
381
+ name: string;
382
+ createdAt: string;
383
+ position: number;
384
+ boardId: string;
385
+ listId: string;
386
+ updatedAt?: string | null | undefined;
387
+ creatorUserId?: string | undefined;
388
+ description?: string | null | undefined;
389
+ dueDate?: string | null | undefined;
390
+ isDueDateCompleted?: boolean | undefined;
391
+ isCompleted?: boolean | undefined;
392
+ };
393
+ included?: Record<string, any> | undefined;
394
+ }>;
395
+ export declare const CardsResponse: z.ZodObject<{
396
+ items: z.ZodArray<z.ZodObject<{
397
+ id: z.ZodString;
398
+ boardId: z.ZodString;
399
+ listId: z.ZodString;
400
+ creatorUserId: z.ZodOptional<z.ZodString>;
401
+ name: z.ZodString;
402
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
403
+ position: z.ZodNumber;
404
+ type: z.ZodEnum<["project", "story"]>;
405
+ dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
406
+ isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
407
+ isCompleted: z.ZodOptional<z.ZodBoolean>;
408
+ createdAt: z.ZodString;
409
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
410
+ }, "strip", z.ZodTypeAny, {
411
+ type: "project" | "story";
412
+ id: string;
413
+ name: string;
414
+ createdAt: string;
415
+ position: number;
416
+ boardId: string;
417
+ listId: string;
418
+ updatedAt?: string | null | undefined;
419
+ creatorUserId?: string | undefined;
420
+ description?: string | null | undefined;
421
+ dueDate?: string | null | undefined;
422
+ isDueDateCompleted?: boolean | undefined;
423
+ isCompleted?: boolean | undefined;
424
+ }, {
425
+ type: "project" | "story";
426
+ id: string;
427
+ name: string;
428
+ createdAt: string;
429
+ position: number;
430
+ boardId: string;
431
+ listId: string;
432
+ updatedAt?: string | null | undefined;
433
+ creatorUserId?: string | undefined;
434
+ description?: string | null | undefined;
435
+ dueDate?: string | null | undefined;
436
+ isDueDateCompleted?: boolean | undefined;
437
+ isCompleted?: boolean | undefined;
438
+ }>, "many">;
439
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
440
+ }, "strip", z.ZodTypeAny, {
441
+ items: {
442
+ type: "project" | "story";
443
+ id: string;
444
+ name: string;
445
+ createdAt: string;
446
+ position: number;
447
+ boardId: string;
448
+ listId: string;
449
+ updatedAt?: string | null | undefined;
450
+ creatorUserId?: string | undefined;
451
+ description?: string | null | undefined;
452
+ dueDate?: string | null | undefined;
453
+ isDueDateCompleted?: boolean | undefined;
454
+ isCompleted?: boolean | undefined;
455
+ }[];
456
+ included?: Record<string, any> | undefined;
457
+ }, {
458
+ items: {
459
+ type: "project" | "story";
460
+ id: string;
461
+ name: string;
462
+ createdAt: string;
463
+ position: number;
464
+ boardId: string;
465
+ listId: string;
466
+ updatedAt?: string | null | undefined;
467
+ creatorUserId?: string | undefined;
468
+ description?: string | null | undefined;
469
+ dueDate?: string | null | undefined;
470
+ isDueDateCompleted?: boolean | undefined;
471
+ isCompleted?: boolean | undefined;
472
+ }[];
473
+ included?: Record<string, any> | undefined;
474
+ }>;
475
+ export declare const TaskListResponse: z.ZodObject<{
476
+ item: z.ZodObject<{
477
+ id: z.ZodString;
478
+ cardId: z.ZodString;
479
+ name: z.ZodString;
480
+ position: z.ZodNumber;
481
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
482
+ createdAt: z.ZodString;
483
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
484
+ }, "strip", z.ZodTypeAny, {
485
+ id: string;
486
+ name: string;
487
+ createdAt: string;
488
+ position: number;
489
+ cardId: string;
490
+ updatedAt?: string | null | undefined;
491
+ showOnFrontOfCard?: boolean | undefined;
492
+ }, {
493
+ id: string;
494
+ name: string;
495
+ createdAt: string;
496
+ position: number;
497
+ cardId: string;
498
+ updatedAt?: string | null | undefined;
499
+ showOnFrontOfCard?: boolean | undefined;
500
+ }>;
501
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
502
+ }, "strip", z.ZodTypeAny, {
503
+ item: {
504
+ id: string;
505
+ name: string;
506
+ createdAt: string;
507
+ position: number;
508
+ cardId: string;
509
+ updatedAt?: string | null | undefined;
510
+ showOnFrontOfCard?: boolean | undefined;
511
+ };
512
+ included?: Record<string, any> | undefined;
513
+ }, {
514
+ item: {
515
+ id: string;
516
+ name: string;
517
+ createdAt: string;
518
+ position: number;
519
+ cardId: string;
520
+ updatedAt?: string | null | undefined;
521
+ showOnFrontOfCard?: boolean | undefined;
522
+ };
523
+ included?: Record<string, any> | undefined;
524
+ }>;
525
+ export declare const TaskListsResponse: z.ZodObject<{
526
+ items: z.ZodArray<z.ZodObject<{
527
+ id: z.ZodString;
528
+ cardId: z.ZodString;
529
+ name: z.ZodString;
530
+ position: z.ZodNumber;
531
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
532
+ createdAt: z.ZodString;
533
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
534
+ }, "strip", z.ZodTypeAny, {
535
+ id: string;
536
+ name: string;
537
+ createdAt: string;
538
+ position: number;
539
+ cardId: string;
540
+ updatedAt?: string | null | undefined;
541
+ showOnFrontOfCard?: boolean | undefined;
542
+ }, {
543
+ id: string;
544
+ name: string;
545
+ createdAt: string;
546
+ position: number;
547
+ cardId: string;
548
+ updatedAt?: string | null | undefined;
549
+ showOnFrontOfCard?: boolean | undefined;
550
+ }>, "many">;
551
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
552
+ }, "strip", z.ZodTypeAny, {
553
+ items: {
554
+ id: string;
555
+ name: string;
556
+ createdAt: string;
557
+ position: number;
558
+ cardId: string;
559
+ updatedAt?: string | null | undefined;
560
+ showOnFrontOfCard?: boolean | undefined;
561
+ }[];
562
+ included?: Record<string, any> | undefined;
563
+ }, {
564
+ items: {
565
+ id: string;
566
+ name: string;
567
+ createdAt: string;
568
+ position: number;
569
+ cardId: string;
570
+ updatedAt?: string | null | undefined;
571
+ showOnFrontOfCard?: boolean | undefined;
572
+ }[];
573
+ included?: Record<string, any> | undefined;
574
+ }>;
575
+ export declare const TaskResponse: z.ZodObject<{
576
+ item: z.ZodObject<{
577
+ id: z.ZodString;
578
+ taskListId: z.ZodString;
579
+ name: z.ZodString;
580
+ position: z.ZodNumber;
581
+ isCompleted: z.ZodBoolean;
582
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
583
+ createdAt: z.ZodString;
584
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
585
+ }, "strip", z.ZodTypeAny, {
586
+ id: string;
587
+ name: string;
588
+ createdAt: string;
589
+ position: number;
590
+ isCompleted: boolean;
591
+ taskListId: string;
592
+ updatedAt?: string | null | undefined;
593
+ assigneeUserId?: string | null | undefined;
594
+ }, {
595
+ id: string;
596
+ name: string;
597
+ createdAt: string;
598
+ position: number;
599
+ isCompleted: boolean;
600
+ taskListId: string;
601
+ updatedAt?: string | null | undefined;
602
+ assigneeUserId?: string | null | undefined;
603
+ }>;
604
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
605
+ }, "strip", z.ZodTypeAny, {
606
+ item: {
607
+ id: string;
608
+ name: string;
609
+ createdAt: string;
610
+ position: number;
611
+ isCompleted: boolean;
612
+ taskListId: string;
613
+ updatedAt?: string | null | undefined;
614
+ assigneeUserId?: string | null | undefined;
615
+ };
616
+ included?: Record<string, any> | undefined;
617
+ }, {
618
+ item: {
619
+ id: string;
620
+ name: string;
621
+ createdAt: string;
622
+ position: number;
623
+ isCompleted: boolean;
624
+ taskListId: string;
625
+ updatedAt?: string | null | undefined;
626
+ assigneeUserId?: string | null | undefined;
627
+ };
628
+ included?: Record<string, any> | undefined;
629
+ }>;
630
+ export declare const TasksResponse: z.ZodObject<{
631
+ items: z.ZodArray<z.ZodObject<{
632
+ id: z.ZodString;
633
+ taskListId: z.ZodString;
634
+ name: z.ZodString;
635
+ position: z.ZodNumber;
636
+ isCompleted: z.ZodBoolean;
637
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
638
+ createdAt: z.ZodString;
639
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
640
+ }, "strip", z.ZodTypeAny, {
641
+ id: string;
642
+ name: string;
643
+ createdAt: string;
644
+ position: number;
645
+ isCompleted: boolean;
646
+ taskListId: string;
647
+ updatedAt?: string | null | undefined;
648
+ assigneeUserId?: string | null | undefined;
649
+ }, {
650
+ id: string;
651
+ name: string;
652
+ createdAt: string;
653
+ position: number;
654
+ isCompleted: boolean;
655
+ taskListId: string;
656
+ updatedAt?: string | null | undefined;
657
+ assigneeUserId?: string | null | undefined;
658
+ }>, "many">;
659
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
660
+ }, "strip", z.ZodTypeAny, {
661
+ items: {
662
+ id: string;
663
+ name: string;
664
+ createdAt: string;
665
+ position: number;
666
+ isCompleted: boolean;
667
+ taskListId: string;
668
+ updatedAt?: string | null | undefined;
669
+ assigneeUserId?: string | null | undefined;
670
+ }[];
671
+ included?: Record<string, any> | undefined;
672
+ }, {
673
+ items: {
674
+ id: string;
675
+ name: string;
676
+ createdAt: string;
677
+ position: number;
678
+ isCompleted: boolean;
679
+ taskListId: string;
680
+ updatedAt?: string | null | undefined;
681
+ assigneeUserId?: string | null | undefined;
682
+ }[];
683
+ included?: Record<string, any> | undefined;
684
+ }>;
685
+ export declare const LabelResponse: z.ZodObject<{
686
+ item: z.ZodObject<{
687
+ id: z.ZodString;
688
+ boardId: z.ZodString;
689
+ name: z.ZodNullable<z.ZodString>;
690
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
691
+ position: z.ZodNumber;
692
+ createdAt: z.ZodString;
693
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
694
+ }, "strip", z.ZodTypeAny, {
695
+ id: string;
696
+ name: string | null;
697
+ createdAt: string;
698
+ position: number;
699
+ boardId: string;
700
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
701
+ updatedAt?: string | null | undefined;
702
+ }, {
703
+ id: string;
704
+ name: string | null;
705
+ createdAt: string;
706
+ position: number;
707
+ boardId: string;
708
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
709
+ updatedAt?: string | null | undefined;
710
+ }>;
711
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
712
+ }, "strip", z.ZodTypeAny, {
713
+ item: {
714
+ id: string;
715
+ name: string | null;
716
+ createdAt: string;
717
+ position: number;
718
+ boardId: string;
719
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
720
+ updatedAt?: string | null | undefined;
721
+ };
722
+ included?: Record<string, any> | undefined;
723
+ }, {
724
+ item: {
725
+ id: string;
726
+ name: string | null;
727
+ createdAt: string;
728
+ position: number;
729
+ boardId: string;
730
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
731
+ updatedAt?: string | null | undefined;
732
+ };
733
+ included?: Record<string, any> | undefined;
734
+ }>;
735
+ export declare const LabelsResponse: z.ZodObject<{
736
+ items: z.ZodArray<z.ZodObject<{
737
+ id: z.ZodString;
738
+ boardId: z.ZodString;
739
+ name: z.ZodNullable<z.ZodString>;
740
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
741
+ position: z.ZodNumber;
742
+ createdAt: z.ZodString;
743
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
744
+ }, "strip", z.ZodTypeAny, {
745
+ id: string;
746
+ name: string | null;
747
+ createdAt: string;
748
+ position: number;
749
+ boardId: string;
750
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
751
+ updatedAt?: string | null | undefined;
752
+ }, {
753
+ id: string;
754
+ name: string | null;
755
+ createdAt: string;
756
+ position: number;
757
+ boardId: string;
758
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
759
+ updatedAt?: string | null | undefined;
760
+ }>, "many">;
761
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
762
+ }, "strip", z.ZodTypeAny, {
763
+ items: {
764
+ id: string;
765
+ name: string | null;
766
+ createdAt: string;
767
+ position: number;
768
+ boardId: string;
769
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
770
+ updatedAt?: string | null | undefined;
771
+ }[];
772
+ included?: Record<string, any> | undefined;
773
+ }, {
774
+ items: {
775
+ id: string;
776
+ name: string | null;
777
+ createdAt: string;
778
+ position: number;
779
+ boardId: string;
780
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
781
+ updatedAt?: string | null | undefined;
782
+ }[];
783
+ included?: Record<string, any> | undefined;
784
+ }>;
785
+ export declare const CommentResponse: z.ZodObject<{
786
+ item: z.ZodObject<{
787
+ id: z.ZodString;
788
+ cardId: z.ZodString;
789
+ userId: z.ZodString;
790
+ text: z.ZodString;
791
+ createdAt: z.ZodString;
792
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
793
+ }, "strip", z.ZodTypeAny, {
794
+ id: string;
795
+ createdAt: string;
796
+ cardId: string;
797
+ userId: string;
798
+ text: string;
799
+ updatedAt?: string | null | undefined;
800
+ }, {
801
+ id: string;
802
+ createdAt: string;
803
+ cardId: string;
804
+ userId: string;
805
+ text: string;
806
+ updatedAt?: string | null | undefined;
807
+ }>;
808
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
809
+ }, "strip", z.ZodTypeAny, {
810
+ item: {
811
+ id: string;
812
+ createdAt: string;
813
+ cardId: string;
814
+ userId: string;
815
+ text: string;
816
+ updatedAt?: string | null | undefined;
817
+ };
818
+ included?: Record<string, any> | undefined;
819
+ }, {
820
+ item: {
821
+ id: string;
822
+ createdAt: string;
823
+ cardId: string;
824
+ userId: string;
825
+ text: string;
826
+ updatedAt?: string | null | undefined;
827
+ };
828
+ included?: Record<string, any> | undefined;
829
+ }>;
830
+ export declare const CommentsResponse: z.ZodObject<{
831
+ items: z.ZodArray<z.ZodObject<{
832
+ id: z.ZodString;
833
+ cardId: z.ZodString;
834
+ userId: z.ZodString;
835
+ text: z.ZodString;
836
+ createdAt: z.ZodString;
837
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
838
+ }, "strip", z.ZodTypeAny, {
839
+ id: string;
840
+ createdAt: string;
841
+ cardId: string;
842
+ userId: string;
843
+ text: string;
844
+ updatedAt?: string | null | undefined;
845
+ }, {
846
+ id: string;
847
+ createdAt: string;
848
+ cardId: string;
849
+ userId: string;
850
+ text: string;
851
+ updatedAt?: string | null | undefined;
852
+ }>, "many">;
853
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ items: {
856
+ id: string;
857
+ createdAt: string;
858
+ cardId: string;
859
+ userId: string;
860
+ text: string;
861
+ updatedAt?: string | null | undefined;
862
+ }[];
863
+ included?: Record<string, any> | undefined;
864
+ }, {
865
+ items: {
866
+ id: string;
867
+ createdAt: string;
868
+ cardId: string;
869
+ userId: string;
870
+ text: string;
871
+ updatedAt?: string | null | undefined;
872
+ }[];
873
+ included?: Record<string, any> | undefined;
874
+ }>;
875
+ export declare const CardLabelResponse: z.ZodObject<{
876
+ item: z.ZodObject<{
877
+ id: z.ZodString;
878
+ cardId: z.ZodString;
879
+ labelId: z.ZodString;
880
+ createdAt: z.ZodString;
881
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
882
+ }, "strip", z.ZodTypeAny, {
883
+ id: string;
884
+ createdAt: string;
885
+ cardId: string;
886
+ labelId: string;
887
+ updatedAt?: string | null | undefined;
888
+ }, {
889
+ id: string;
890
+ createdAt: string;
891
+ cardId: string;
892
+ labelId: string;
893
+ updatedAt?: string | null | undefined;
894
+ }>;
895
+ included: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
896
+ }, "strip", z.ZodTypeAny, {
897
+ item: {
898
+ id: string;
899
+ createdAt: string;
900
+ cardId: string;
901
+ labelId: string;
902
+ updatedAt?: string | null | undefined;
903
+ };
904
+ included?: Record<string, any> | undefined;
905
+ }, {
906
+ item: {
907
+ id: string;
908
+ createdAt: string;
909
+ cardId: string;
910
+ labelId: string;
911
+ updatedAt?: string | null | undefined;
912
+ };
913
+ included?: Record<string, any> | undefined;
914
+ }>;
915
+ export declare const AuthResponse: z.ZodObject<{
916
+ item: z.ZodString;
917
+ }, "strip", z.ZodTypeAny, {
918
+ item: string;
919
+ }, {
920
+ item: string;
921
+ }>;
922
+ export declare const BoardIncludedSchema: z.ZodObject<{
923
+ lists: z.ZodOptional<z.ZodArray<z.ZodObject<{
924
+ id: z.ZodString;
925
+ boardId: z.ZodString;
926
+ type: z.ZodEnum<["active", "closed", "archive", "trash"]>;
927
+ name: z.ZodNullable<z.ZodString>;
928
+ position: z.ZodNullable<z.ZodNumber>;
929
+ color: z.ZodOptional<z.ZodNullable<z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>>>;
930
+ createdAt: z.ZodString;
931
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
932
+ }, "strip", z.ZodTypeAny, {
933
+ type: "active" | "closed" | "archive" | "trash";
934
+ id: string;
935
+ name: string | null;
936
+ createdAt: string;
937
+ position: number | null;
938
+ boardId: string;
939
+ updatedAt?: string | null | undefined;
940
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
941
+ }, {
942
+ type: "active" | "closed" | "archive" | "trash";
943
+ id: string;
944
+ name: string | null;
945
+ createdAt: string;
946
+ position: number | null;
947
+ boardId: string;
948
+ updatedAt?: string | null | undefined;
949
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
950
+ }>, "many">>;
951
+ cards: z.ZodOptional<z.ZodArray<z.ZodObject<{
952
+ id: z.ZodString;
953
+ boardId: z.ZodString;
954
+ listId: z.ZodString;
955
+ creatorUserId: z.ZodOptional<z.ZodString>;
956
+ name: z.ZodString;
957
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
958
+ position: z.ZodNumber;
959
+ type: z.ZodEnum<["project", "story"]>;
960
+ dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
961
+ isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
962
+ isCompleted: z.ZodOptional<z.ZodBoolean>;
963
+ createdAt: z.ZodString;
964
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
965
+ }, "strip", z.ZodTypeAny, {
966
+ type: "project" | "story";
967
+ id: string;
968
+ name: string;
969
+ createdAt: string;
970
+ position: number;
971
+ boardId: string;
972
+ listId: string;
973
+ updatedAt?: string | null | undefined;
974
+ creatorUserId?: string | undefined;
975
+ description?: string | null | undefined;
976
+ dueDate?: string | null | undefined;
977
+ isDueDateCompleted?: boolean | undefined;
978
+ isCompleted?: boolean | undefined;
979
+ }, {
980
+ type: "project" | "story";
981
+ id: string;
982
+ name: string;
983
+ createdAt: string;
984
+ position: number;
985
+ boardId: string;
986
+ listId: string;
987
+ updatedAt?: string | null | undefined;
988
+ creatorUserId?: string | undefined;
989
+ description?: string | null | undefined;
990
+ dueDate?: string | null | undefined;
991
+ isDueDateCompleted?: boolean | undefined;
992
+ isCompleted?: boolean | undefined;
993
+ }>, "many">>;
994
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
995
+ id: z.ZodString;
996
+ boardId: z.ZodString;
997
+ name: z.ZodNullable<z.ZodString>;
998
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
999
+ position: z.ZodNumber;
1000
+ createdAt: z.ZodString;
1001
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1002
+ }, "strip", z.ZodTypeAny, {
1003
+ id: string;
1004
+ name: string | null;
1005
+ createdAt: string;
1006
+ position: number;
1007
+ boardId: string;
1008
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1009
+ updatedAt?: string | null | undefined;
1010
+ }, {
1011
+ id: string;
1012
+ name: string | null;
1013
+ createdAt: string;
1014
+ position: number;
1015
+ boardId: string;
1016
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1017
+ updatedAt?: string | null | undefined;
1018
+ }>, "many">>;
1019
+ cardLabels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1020
+ id: z.ZodString;
1021
+ cardId: z.ZodString;
1022
+ labelId: z.ZodString;
1023
+ createdAt: z.ZodString;
1024
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1025
+ }, "strip", z.ZodTypeAny, {
1026
+ id: string;
1027
+ createdAt: string;
1028
+ cardId: string;
1029
+ labelId: string;
1030
+ updatedAt?: string | null | undefined;
1031
+ }, {
1032
+ id: string;
1033
+ createdAt: string;
1034
+ cardId: string;
1035
+ labelId: string;
1036
+ updatedAt?: string | null | undefined;
1037
+ }>, "many">>;
1038
+ taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1039
+ id: z.ZodString;
1040
+ cardId: z.ZodString;
1041
+ name: z.ZodString;
1042
+ position: z.ZodNumber;
1043
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
1044
+ createdAt: z.ZodString;
1045
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1046
+ }, "strip", z.ZodTypeAny, {
1047
+ id: string;
1048
+ name: string;
1049
+ createdAt: string;
1050
+ position: number;
1051
+ cardId: string;
1052
+ updatedAt?: string | null | undefined;
1053
+ showOnFrontOfCard?: boolean | undefined;
1054
+ }, {
1055
+ id: string;
1056
+ name: string;
1057
+ createdAt: string;
1058
+ position: number;
1059
+ cardId: string;
1060
+ updatedAt?: string | null | undefined;
1061
+ showOnFrontOfCard?: boolean | undefined;
1062
+ }>, "many">>;
1063
+ tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1064
+ id: z.ZodString;
1065
+ taskListId: z.ZodString;
1066
+ name: z.ZodString;
1067
+ position: z.ZodNumber;
1068
+ isCompleted: z.ZodBoolean;
1069
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1070
+ createdAt: z.ZodString;
1071
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1072
+ }, "strip", z.ZodTypeAny, {
1073
+ id: string;
1074
+ name: string;
1075
+ createdAt: string;
1076
+ position: number;
1077
+ isCompleted: boolean;
1078
+ taskListId: string;
1079
+ updatedAt?: string | null | undefined;
1080
+ assigneeUserId?: string | null | undefined;
1081
+ }, {
1082
+ id: string;
1083
+ name: string;
1084
+ createdAt: string;
1085
+ position: number;
1086
+ isCompleted: boolean;
1087
+ taskListId: string;
1088
+ updatedAt?: string | null | undefined;
1089
+ assigneeUserId?: string | null | undefined;
1090
+ }>, "many">>;
1091
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
1092
+ id: z.ZodString;
1093
+ email: z.ZodOptional<z.ZodString>;
1094
+ username: z.ZodOptional<z.ZodString>;
1095
+ name: z.ZodString;
1096
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1097
+ createdAt: z.ZodString;
1098
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1099
+ }, "strip", z.ZodTypeAny, {
1100
+ id: string;
1101
+ name: string;
1102
+ createdAt: string;
1103
+ email?: string | undefined;
1104
+ username?: string | undefined;
1105
+ avatarUrl?: string | null | undefined;
1106
+ updatedAt?: string | null | undefined;
1107
+ }, {
1108
+ id: string;
1109
+ name: string;
1110
+ createdAt: string;
1111
+ email?: string | undefined;
1112
+ username?: string | undefined;
1113
+ avatarUrl?: string | null | undefined;
1114
+ updatedAt?: string | null | undefined;
1115
+ }>, "many">>;
1116
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1117
+ lists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1118
+ id: z.ZodString;
1119
+ boardId: z.ZodString;
1120
+ type: z.ZodEnum<["active", "closed", "archive", "trash"]>;
1121
+ name: z.ZodNullable<z.ZodString>;
1122
+ position: z.ZodNullable<z.ZodNumber>;
1123
+ color: z.ZodOptional<z.ZodNullable<z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>>>;
1124
+ createdAt: z.ZodString;
1125
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1126
+ }, "strip", z.ZodTypeAny, {
1127
+ type: "active" | "closed" | "archive" | "trash";
1128
+ id: string;
1129
+ name: string | null;
1130
+ createdAt: string;
1131
+ position: number | null;
1132
+ boardId: string;
1133
+ updatedAt?: string | null | undefined;
1134
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
1135
+ }, {
1136
+ type: "active" | "closed" | "archive" | "trash";
1137
+ id: string;
1138
+ name: string | null;
1139
+ createdAt: string;
1140
+ position: number | null;
1141
+ boardId: string;
1142
+ updatedAt?: string | null | undefined;
1143
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
1144
+ }>, "many">>;
1145
+ cards: z.ZodOptional<z.ZodArray<z.ZodObject<{
1146
+ id: z.ZodString;
1147
+ boardId: z.ZodString;
1148
+ listId: z.ZodString;
1149
+ creatorUserId: z.ZodOptional<z.ZodString>;
1150
+ name: z.ZodString;
1151
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1152
+ position: z.ZodNumber;
1153
+ type: z.ZodEnum<["project", "story"]>;
1154
+ dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1155
+ isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
1156
+ isCompleted: z.ZodOptional<z.ZodBoolean>;
1157
+ createdAt: z.ZodString;
1158
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1159
+ }, "strip", z.ZodTypeAny, {
1160
+ type: "project" | "story";
1161
+ id: string;
1162
+ name: string;
1163
+ createdAt: string;
1164
+ position: number;
1165
+ boardId: string;
1166
+ listId: string;
1167
+ updatedAt?: string | null | undefined;
1168
+ creatorUserId?: string | undefined;
1169
+ description?: string | null | undefined;
1170
+ dueDate?: string | null | undefined;
1171
+ isDueDateCompleted?: boolean | undefined;
1172
+ isCompleted?: boolean | undefined;
1173
+ }, {
1174
+ type: "project" | "story";
1175
+ id: string;
1176
+ name: string;
1177
+ createdAt: string;
1178
+ position: number;
1179
+ boardId: string;
1180
+ listId: string;
1181
+ updatedAt?: string | null | undefined;
1182
+ creatorUserId?: string | undefined;
1183
+ description?: string | null | undefined;
1184
+ dueDate?: string | null | undefined;
1185
+ isDueDateCompleted?: boolean | undefined;
1186
+ isCompleted?: boolean | undefined;
1187
+ }>, "many">>;
1188
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1189
+ id: z.ZodString;
1190
+ boardId: z.ZodString;
1191
+ name: z.ZodNullable<z.ZodString>;
1192
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
1193
+ position: z.ZodNumber;
1194
+ createdAt: z.ZodString;
1195
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1196
+ }, "strip", z.ZodTypeAny, {
1197
+ id: string;
1198
+ name: string | null;
1199
+ createdAt: string;
1200
+ position: number;
1201
+ boardId: string;
1202
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1203
+ updatedAt?: string | null | undefined;
1204
+ }, {
1205
+ id: string;
1206
+ name: string | null;
1207
+ createdAt: string;
1208
+ position: number;
1209
+ boardId: string;
1210
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1211
+ updatedAt?: string | null | undefined;
1212
+ }>, "many">>;
1213
+ cardLabels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1214
+ id: z.ZodString;
1215
+ cardId: z.ZodString;
1216
+ labelId: z.ZodString;
1217
+ createdAt: z.ZodString;
1218
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1219
+ }, "strip", z.ZodTypeAny, {
1220
+ id: string;
1221
+ createdAt: string;
1222
+ cardId: string;
1223
+ labelId: string;
1224
+ updatedAt?: string | null | undefined;
1225
+ }, {
1226
+ id: string;
1227
+ createdAt: string;
1228
+ cardId: string;
1229
+ labelId: string;
1230
+ updatedAt?: string | null | undefined;
1231
+ }>, "many">>;
1232
+ taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1233
+ id: z.ZodString;
1234
+ cardId: z.ZodString;
1235
+ name: z.ZodString;
1236
+ position: z.ZodNumber;
1237
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
1238
+ createdAt: z.ZodString;
1239
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1240
+ }, "strip", z.ZodTypeAny, {
1241
+ id: string;
1242
+ name: string;
1243
+ createdAt: string;
1244
+ position: number;
1245
+ cardId: string;
1246
+ updatedAt?: string | null | undefined;
1247
+ showOnFrontOfCard?: boolean | undefined;
1248
+ }, {
1249
+ id: string;
1250
+ name: string;
1251
+ createdAt: string;
1252
+ position: number;
1253
+ cardId: string;
1254
+ updatedAt?: string | null | undefined;
1255
+ showOnFrontOfCard?: boolean | undefined;
1256
+ }>, "many">>;
1257
+ tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1258
+ id: z.ZodString;
1259
+ taskListId: z.ZodString;
1260
+ name: z.ZodString;
1261
+ position: z.ZodNumber;
1262
+ isCompleted: z.ZodBoolean;
1263
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1264
+ createdAt: z.ZodString;
1265
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1266
+ }, "strip", z.ZodTypeAny, {
1267
+ id: string;
1268
+ name: string;
1269
+ createdAt: string;
1270
+ position: number;
1271
+ isCompleted: boolean;
1272
+ taskListId: string;
1273
+ updatedAt?: string | null | undefined;
1274
+ assigneeUserId?: string | null | undefined;
1275
+ }, {
1276
+ id: string;
1277
+ name: string;
1278
+ createdAt: string;
1279
+ position: number;
1280
+ isCompleted: boolean;
1281
+ taskListId: string;
1282
+ updatedAt?: string | null | undefined;
1283
+ assigneeUserId?: string | null | undefined;
1284
+ }>, "many">>;
1285
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
1286
+ id: z.ZodString;
1287
+ email: z.ZodOptional<z.ZodString>;
1288
+ username: z.ZodOptional<z.ZodString>;
1289
+ name: z.ZodString;
1290
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1291
+ createdAt: z.ZodString;
1292
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1293
+ }, "strip", z.ZodTypeAny, {
1294
+ id: string;
1295
+ name: string;
1296
+ createdAt: string;
1297
+ email?: string | undefined;
1298
+ username?: string | undefined;
1299
+ avatarUrl?: string | null | undefined;
1300
+ updatedAt?: string | null | undefined;
1301
+ }, {
1302
+ id: string;
1303
+ name: string;
1304
+ createdAt: string;
1305
+ email?: string | undefined;
1306
+ username?: string | undefined;
1307
+ avatarUrl?: string | null | undefined;
1308
+ updatedAt?: string | null | undefined;
1309
+ }>, "many">>;
1310
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1311
+ lists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1312
+ id: z.ZodString;
1313
+ boardId: z.ZodString;
1314
+ type: z.ZodEnum<["active", "closed", "archive", "trash"]>;
1315
+ name: z.ZodNullable<z.ZodString>;
1316
+ position: z.ZodNullable<z.ZodNumber>;
1317
+ color: z.ZodOptional<z.ZodNullable<z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>>>;
1318
+ createdAt: z.ZodString;
1319
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1320
+ }, "strip", z.ZodTypeAny, {
1321
+ type: "active" | "closed" | "archive" | "trash";
1322
+ id: string;
1323
+ name: string | null;
1324
+ createdAt: string;
1325
+ position: number | null;
1326
+ boardId: string;
1327
+ updatedAt?: string | null | undefined;
1328
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
1329
+ }, {
1330
+ type: "active" | "closed" | "archive" | "trash";
1331
+ id: string;
1332
+ name: string | null;
1333
+ createdAt: string;
1334
+ position: number | null;
1335
+ boardId: string;
1336
+ updatedAt?: string | null | undefined;
1337
+ color?: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold" | null | undefined;
1338
+ }>, "many">>;
1339
+ cards: z.ZodOptional<z.ZodArray<z.ZodObject<{
1340
+ id: z.ZodString;
1341
+ boardId: z.ZodString;
1342
+ listId: z.ZodString;
1343
+ creatorUserId: z.ZodOptional<z.ZodString>;
1344
+ name: z.ZodString;
1345
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1346
+ position: z.ZodNumber;
1347
+ type: z.ZodEnum<["project", "story"]>;
1348
+ dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1349
+ isDueDateCompleted: z.ZodOptional<z.ZodBoolean>;
1350
+ isCompleted: z.ZodOptional<z.ZodBoolean>;
1351
+ createdAt: z.ZodString;
1352
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1353
+ }, "strip", z.ZodTypeAny, {
1354
+ type: "project" | "story";
1355
+ id: string;
1356
+ name: string;
1357
+ createdAt: string;
1358
+ position: number;
1359
+ boardId: string;
1360
+ listId: string;
1361
+ updatedAt?: string | null | undefined;
1362
+ creatorUserId?: string | undefined;
1363
+ description?: string | null | undefined;
1364
+ dueDate?: string | null | undefined;
1365
+ isDueDateCompleted?: boolean | undefined;
1366
+ isCompleted?: boolean | undefined;
1367
+ }, {
1368
+ type: "project" | "story";
1369
+ id: string;
1370
+ name: string;
1371
+ createdAt: string;
1372
+ position: number;
1373
+ boardId: string;
1374
+ listId: string;
1375
+ updatedAt?: string | null | undefined;
1376
+ creatorUserId?: string | undefined;
1377
+ description?: string | null | undefined;
1378
+ dueDate?: string | null | undefined;
1379
+ isDueDateCompleted?: boolean | undefined;
1380
+ isCompleted?: boolean | undefined;
1381
+ }>, "many">>;
1382
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1383
+ id: z.ZodString;
1384
+ boardId: z.ZodString;
1385
+ name: z.ZodNullable<z.ZodString>;
1386
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
1387
+ position: z.ZodNumber;
1388
+ createdAt: z.ZodString;
1389
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1390
+ }, "strip", z.ZodTypeAny, {
1391
+ id: string;
1392
+ name: string | null;
1393
+ createdAt: string;
1394
+ position: number;
1395
+ boardId: string;
1396
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1397
+ updatedAt?: string | null | undefined;
1398
+ }, {
1399
+ id: string;
1400
+ name: string | null;
1401
+ createdAt: string;
1402
+ position: number;
1403
+ boardId: string;
1404
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1405
+ updatedAt?: string | null | undefined;
1406
+ }>, "many">>;
1407
+ cardLabels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1408
+ id: z.ZodString;
1409
+ cardId: z.ZodString;
1410
+ labelId: z.ZodString;
1411
+ createdAt: z.ZodString;
1412
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1413
+ }, "strip", z.ZodTypeAny, {
1414
+ id: string;
1415
+ createdAt: string;
1416
+ cardId: string;
1417
+ labelId: string;
1418
+ updatedAt?: string | null | undefined;
1419
+ }, {
1420
+ id: string;
1421
+ createdAt: string;
1422
+ cardId: string;
1423
+ labelId: string;
1424
+ updatedAt?: string | null | undefined;
1425
+ }>, "many">>;
1426
+ taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1427
+ id: z.ZodString;
1428
+ cardId: z.ZodString;
1429
+ name: z.ZodString;
1430
+ position: z.ZodNumber;
1431
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
1432
+ createdAt: z.ZodString;
1433
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1434
+ }, "strip", z.ZodTypeAny, {
1435
+ id: string;
1436
+ name: string;
1437
+ createdAt: string;
1438
+ position: number;
1439
+ cardId: string;
1440
+ updatedAt?: string | null | undefined;
1441
+ showOnFrontOfCard?: boolean | undefined;
1442
+ }, {
1443
+ id: string;
1444
+ name: string;
1445
+ createdAt: string;
1446
+ position: number;
1447
+ cardId: string;
1448
+ updatedAt?: string | null | undefined;
1449
+ showOnFrontOfCard?: boolean | undefined;
1450
+ }>, "many">>;
1451
+ tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1452
+ id: z.ZodString;
1453
+ taskListId: z.ZodString;
1454
+ name: z.ZodString;
1455
+ position: z.ZodNumber;
1456
+ isCompleted: z.ZodBoolean;
1457
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1458
+ createdAt: z.ZodString;
1459
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1460
+ }, "strip", z.ZodTypeAny, {
1461
+ id: string;
1462
+ name: string;
1463
+ createdAt: string;
1464
+ position: number;
1465
+ isCompleted: boolean;
1466
+ taskListId: string;
1467
+ updatedAt?: string | null | undefined;
1468
+ assigneeUserId?: string | null | undefined;
1469
+ }, {
1470
+ id: string;
1471
+ name: string;
1472
+ createdAt: string;
1473
+ position: number;
1474
+ isCompleted: boolean;
1475
+ taskListId: string;
1476
+ updatedAt?: string | null | undefined;
1477
+ assigneeUserId?: string | null | undefined;
1478
+ }>, "many">>;
1479
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
1480
+ id: z.ZodString;
1481
+ email: z.ZodOptional<z.ZodString>;
1482
+ username: z.ZodOptional<z.ZodString>;
1483
+ name: z.ZodString;
1484
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1485
+ createdAt: z.ZodString;
1486
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1487
+ }, "strip", z.ZodTypeAny, {
1488
+ id: string;
1489
+ name: string;
1490
+ createdAt: string;
1491
+ email?: string | undefined;
1492
+ username?: string | undefined;
1493
+ avatarUrl?: string | null | undefined;
1494
+ updatedAt?: string | null | undefined;
1495
+ }, {
1496
+ id: string;
1497
+ name: string;
1498
+ createdAt: string;
1499
+ email?: string | undefined;
1500
+ username?: string | undefined;
1501
+ avatarUrl?: string | null | undefined;
1502
+ updatedAt?: string | null | undefined;
1503
+ }>, "many">>;
1504
+ }, z.ZodTypeAny, "passthrough">>;
1505
+ export declare const CardIncludedSchema: z.ZodObject<{
1506
+ taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1507
+ id: z.ZodString;
1508
+ cardId: z.ZodString;
1509
+ name: z.ZodString;
1510
+ position: z.ZodNumber;
1511
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
1512
+ createdAt: z.ZodString;
1513
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1514
+ }, "strip", z.ZodTypeAny, {
1515
+ id: string;
1516
+ name: string;
1517
+ createdAt: string;
1518
+ position: number;
1519
+ cardId: string;
1520
+ updatedAt?: string | null | undefined;
1521
+ showOnFrontOfCard?: boolean | undefined;
1522
+ }, {
1523
+ id: string;
1524
+ name: string;
1525
+ createdAt: string;
1526
+ position: number;
1527
+ cardId: string;
1528
+ updatedAt?: string | null | undefined;
1529
+ showOnFrontOfCard?: boolean | undefined;
1530
+ }>, "many">>;
1531
+ tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1532
+ id: z.ZodString;
1533
+ taskListId: z.ZodString;
1534
+ name: z.ZodString;
1535
+ position: z.ZodNumber;
1536
+ isCompleted: z.ZodBoolean;
1537
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1538
+ createdAt: z.ZodString;
1539
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1540
+ }, "strip", z.ZodTypeAny, {
1541
+ id: string;
1542
+ name: string;
1543
+ createdAt: string;
1544
+ position: number;
1545
+ isCompleted: boolean;
1546
+ taskListId: string;
1547
+ updatedAt?: string | null | undefined;
1548
+ assigneeUserId?: string | null | undefined;
1549
+ }, {
1550
+ id: string;
1551
+ name: string;
1552
+ createdAt: string;
1553
+ position: number;
1554
+ isCompleted: boolean;
1555
+ taskListId: string;
1556
+ updatedAt?: string | null | undefined;
1557
+ assigneeUserId?: string | null | undefined;
1558
+ }>, "many">>;
1559
+ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1560
+ id: z.ZodString;
1561
+ cardId: z.ZodString;
1562
+ userId: z.ZodString;
1563
+ text: z.ZodString;
1564
+ createdAt: z.ZodString;
1565
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1566
+ }, "strip", z.ZodTypeAny, {
1567
+ id: string;
1568
+ createdAt: string;
1569
+ cardId: string;
1570
+ userId: string;
1571
+ text: string;
1572
+ updatedAt?: string | null | undefined;
1573
+ }, {
1574
+ id: string;
1575
+ createdAt: string;
1576
+ cardId: string;
1577
+ userId: string;
1578
+ text: string;
1579
+ updatedAt?: string | null | undefined;
1580
+ }>, "many">>;
1581
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1582
+ id: z.ZodString;
1583
+ boardId: z.ZodString;
1584
+ name: z.ZodNullable<z.ZodString>;
1585
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
1586
+ position: z.ZodNumber;
1587
+ createdAt: z.ZodString;
1588
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1589
+ }, "strip", z.ZodTypeAny, {
1590
+ id: string;
1591
+ name: string | null;
1592
+ createdAt: string;
1593
+ position: number;
1594
+ boardId: string;
1595
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1596
+ updatedAt?: string | null | undefined;
1597
+ }, {
1598
+ id: string;
1599
+ name: string | null;
1600
+ createdAt: string;
1601
+ position: number;
1602
+ boardId: string;
1603
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1604
+ updatedAt?: string | null | undefined;
1605
+ }>, "many">>;
1606
+ cardLabels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1607
+ id: z.ZodString;
1608
+ cardId: z.ZodString;
1609
+ labelId: z.ZodString;
1610
+ createdAt: z.ZodString;
1611
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1612
+ }, "strip", z.ZodTypeAny, {
1613
+ id: string;
1614
+ createdAt: string;
1615
+ cardId: string;
1616
+ labelId: string;
1617
+ updatedAt?: string | null | undefined;
1618
+ }, {
1619
+ id: string;
1620
+ createdAt: string;
1621
+ cardId: string;
1622
+ labelId: string;
1623
+ updatedAt?: string | null | undefined;
1624
+ }>, "many">>;
1625
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1626
+ id: z.ZodString;
1627
+ cardId: z.ZodString;
1628
+ creatorUserId: z.ZodOptional<z.ZodString>;
1629
+ name: z.ZodString;
1630
+ url: z.ZodOptional<z.ZodString>;
1631
+ createdAt: z.ZodString;
1632
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1633
+ }, "strip", z.ZodTypeAny, {
1634
+ id: string;
1635
+ name: string;
1636
+ createdAt: string;
1637
+ cardId: string;
1638
+ updatedAt?: string | null | undefined;
1639
+ creatorUserId?: string | undefined;
1640
+ url?: string | undefined;
1641
+ }, {
1642
+ id: string;
1643
+ name: string;
1644
+ createdAt: string;
1645
+ cardId: string;
1646
+ updatedAt?: string | null | undefined;
1647
+ creatorUserId?: string | undefined;
1648
+ url?: string | undefined;
1649
+ }>, "many">>;
1650
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
1651
+ id: z.ZodString;
1652
+ email: z.ZodOptional<z.ZodString>;
1653
+ username: z.ZodOptional<z.ZodString>;
1654
+ name: z.ZodString;
1655
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1656
+ createdAt: z.ZodString;
1657
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1658
+ }, "strip", z.ZodTypeAny, {
1659
+ id: string;
1660
+ name: string;
1661
+ createdAt: string;
1662
+ email?: string | undefined;
1663
+ username?: string | undefined;
1664
+ avatarUrl?: string | null | undefined;
1665
+ updatedAt?: string | null | undefined;
1666
+ }, {
1667
+ id: string;
1668
+ name: string;
1669
+ createdAt: string;
1670
+ email?: string | undefined;
1671
+ username?: string | undefined;
1672
+ avatarUrl?: string | null | undefined;
1673
+ updatedAt?: string | null | undefined;
1674
+ }>, "many">>;
1675
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1676
+ taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1677
+ id: z.ZodString;
1678
+ cardId: z.ZodString;
1679
+ name: z.ZodString;
1680
+ position: z.ZodNumber;
1681
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
1682
+ createdAt: z.ZodString;
1683
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1684
+ }, "strip", z.ZodTypeAny, {
1685
+ id: string;
1686
+ name: string;
1687
+ createdAt: string;
1688
+ position: number;
1689
+ cardId: string;
1690
+ updatedAt?: string | null | undefined;
1691
+ showOnFrontOfCard?: boolean | undefined;
1692
+ }, {
1693
+ id: string;
1694
+ name: string;
1695
+ createdAt: string;
1696
+ position: number;
1697
+ cardId: string;
1698
+ updatedAt?: string | null | undefined;
1699
+ showOnFrontOfCard?: boolean | undefined;
1700
+ }>, "many">>;
1701
+ tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1702
+ id: z.ZodString;
1703
+ taskListId: z.ZodString;
1704
+ name: z.ZodString;
1705
+ position: z.ZodNumber;
1706
+ isCompleted: z.ZodBoolean;
1707
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1708
+ createdAt: z.ZodString;
1709
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1710
+ }, "strip", z.ZodTypeAny, {
1711
+ id: string;
1712
+ name: string;
1713
+ createdAt: string;
1714
+ position: number;
1715
+ isCompleted: boolean;
1716
+ taskListId: string;
1717
+ updatedAt?: string | null | undefined;
1718
+ assigneeUserId?: string | null | undefined;
1719
+ }, {
1720
+ id: string;
1721
+ name: string;
1722
+ createdAt: string;
1723
+ position: number;
1724
+ isCompleted: boolean;
1725
+ taskListId: string;
1726
+ updatedAt?: string | null | undefined;
1727
+ assigneeUserId?: string | null | undefined;
1728
+ }>, "many">>;
1729
+ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1730
+ id: z.ZodString;
1731
+ cardId: z.ZodString;
1732
+ userId: z.ZodString;
1733
+ text: z.ZodString;
1734
+ createdAt: z.ZodString;
1735
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1736
+ }, "strip", z.ZodTypeAny, {
1737
+ id: string;
1738
+ createdAt: string;
1739
+ cardId: string;
1740
+ userId: string;
1741
+ text: string;
1742
+ updatedAt?: string | null | undefined;
1743
+ }, {
1744
+ id: string;
1745
+ createdAt: string;
1746
+ cardId: string;
1747
+ userId: string;
1748
+ text: string;
1749
+ updatedAt?: string | null | undefined;
1750
+ }>, "many">>;
1751
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1752
+ id: z.ZodString;
1753
+ boardId: z.ZodString;
1754
+ name: z.ZodNullable<z.ZodString>;
1755
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
1756
+ position: z.ZodNumber;
1757
+ createdAt: z.ZodString;
1758
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1759
+ }, "strip", z.ZodTypeAny, {
1760
+ id: string;
1761
+ name: string | null;
1762
+ createdAt: string;
1763
+ position: number;
1764
+ boardId: string;
1765
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1766
+ updatedAt?: string | null | undefined;
1767
+ }, {
1768
+ id: string;
1769
+ name: string | null;
1770
+ createdAt: string;
1771
+ position: number;
1772
+ boardId: string;
1773
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1774
+ updatedAt?: string | null | undefined;
1775
+ }>, "many">>;
1776
+ cardLabels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1777
+ id: z.ZodString;
1778
+ cardId: z.ZodString;
1779
+ labelId: z.ZodString;
1780
+ createdAt: z.ZodString;
1781
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1782
+ }, "strip", z.ZodTypeAny, {
1783
+ id: string;
1784
+ createdAt: string;
1785
+ cardId: string;
1786
+ labelId: string;
1787
+ updatedAt?: string | null | undefined;
1788
+ }, {
1789
+ id: string;
1790
+ createdAt: string;
1791
+ cardId: string;
1792
+ labelId: string;
1793
+ updatedAt?: string | null | undefined;
1794
+ }>, "many">>;
1795
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1796
+ id: z.ZodString;
1797
+ cardId: z.ZodString;
1798
+ creatorUserId: z.ZodOptional<z.ZodString>;
1799
+ name: z.ZodString;
1800
+ url: z.ZodOptional<z.ZodString>;
1801
+ createdAt: z.ZodString;
1802
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1803
+ }, "strip", z.ZodTypeAny, {
1804
+ id: string;
1805
+ name: string;
1806
+ createdAt: string;
1807
+ cardId: string;
1808
+ updatedAt?: string | null | undefined;
1809
+ creatorUserId?: string | undefined;
1810
+ url?: string | undefined;
1811
+ }, {
1812
+ id: string;
1813
+ name: string;
1814
+ createdAt: string;
1815
+ cardId: string;
1816
+ updatedAt?: string | null | undefined;
1817
+ creatorUserId?: string | undefined;
1818
+ url?: string | undefined;
1819
+ }>, "many">>;
1820
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
1821
+ id: z.ZodString;
1822
+ email: z.ZodOptional<z.ZodString>;
1823
+ username: z.ZodOptional<z.ZodString>;
1824
+ name: z.ZodString;
1825
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1826
+ createdAt: z.ZodString;
1827
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1828
+ }, "strip", z.ZodTypeAny, {
1829
+ id: string;
1830
+ name: string;
1831
+ createdAt: string;
1832
+ email?: string | undefined;
1833
+ username?: string | undefined;
1834
+ avatarUrl?: string | null | undefined;
1835
+ updatedAt?: string | null | undefined;
1836
+ }, {
1837
+ id: string;
1838
+ name: string;
1839
+ createdAt: string;
1840
+ email?: string | undefined;
1841
+ username?: string | undefined;
1842
+ avatarUrl?: string | null | undefined;
1843
+ updatedAt?: string | null | undefined;
1844
+ }>, "many">>;
1845
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1846
+ taskLists: z.ZodOptional<z.ZodArray<z.ZodObject<{
1847
+ id: z.ZodString;
1848
+ cardId: z.ZodString;
1849
+ name: z.ZodString;
1850
+ position: z.ZodNumber;
1851
+ showOnFrontOfCard: z.ZodOptional<z.ZodBoolean>;
1852
+ createdAt: z.ZodString;
1853
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1854
+ }, "strip", z.ZodTypeAny, {
1855
+ id: string;
1856
+ name: string;
1857
+ createdAt: string;
1858
+ position: number;
1859
+ cardId: string;
1860
+ updatedAt?: string | null | undefined;
1861
+ showOnFrontOfCard?: boolean | undefined;
1862
+ }, {
1863
+ id: string;
1864
+ name: string;
1865
+ createdAt: string;
1866
+ position: number;
1867
+ cardId: string;
1868
+ updatedAt?: string | null | undefined;
1869
+ showOnFrontOfCard?: boolean | undefined;
1870
+ }>, "many">>;
1871
+ tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
1872
+ id: z.ZodString;
1873
+ taskListId: z.ZodString;
1874
+ name: z.ZodString;
1875
+ position: z.ZodNumber;
1876
+ isCompleted: z.ZodBoolean;
1877
+ assigneeUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1878
+ createdAt: z.ZodString;
1879
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1880
+ }, "strip", z.ZodTypeAny, {
1881
+ id: string;
1882
+ name: string;
1883
+ createdAt: string;
1884
+ position: number;
1885
+ isCompleted: boolean;
1886
+ taskListId: string;
1887
+ updatedAt?: string | null | undefined;
1888
+ assigneeUserId?: string | null | undefined;
1889
+ }, {
1890
+ id: string;
1891
+ name: string;
1892
+ createdAt: string;
1893
+ position: number;
1894
+ isCompleted: boolean;
1895
+ taskListId: string;
1896
+ updatedAt?: string | null | undefined;
1897
+ assigneeUserId?: string | null | undefined;
1898
+ }>, "many">>;
1899
+ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1900
+ id: z.ZodString;
1901
+ cardId: z.ZodString;
1902
+ userId: z.ZodString;
1903
+ text: z.ZodString;
1904
+ createdAt: z.ZodString;
1905
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1906
+ }, "strip", z.ZodTypeAny, {
1907
+ id: string;
1908
+ createdAt: string;
1909
+ cardId: string;
1910
+ userId: string;
1911
+ text: string;
1912
+ updatedAt?: string | null | undefined;
1913
+ }, {
1914
+ id: string;
1915
+ createdAt: string;
1916
+ cardId: string;
1917
+ userId: string;
1918
+ text: string;
1919
+ updatedAt?: string | null | undefined;
1920
+ }>, "many">>;
1921
+ labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1922
+ id: z.ZodString;
1923
+ boardId: z.ZodString;
1924
+ name: z.ZodNullable<z.ZodString>;
1925
+ color: z.ZodEnum<["muddy-grey", "autumn-leafs", "morning-sky", "antique-blue", "egg-yellow", "desert-sand", "dark-granite", "fresh-salad", "lagoon-blue", "midnight-blue", "light-orange", "pumpkin-orange", "light-concrete", "sunny-grass", "navy-blue", "lilac-eyes", "apricot-red", "orange-peel", "silver-glint", "bright-moss", "deep-ocean", "summer-sky", "berry-red", "light-cocoa", "grey-stone", "tank-green", "coral-green", "sugar-plum", "pink-tulip", "shady-rust", "wet-rock", "wet-moss", "turquoise-sea", "lavender-fields", "piggy-red", "light-mud", "gun-metal", "modern-green", "french-coast", "sweet-lilac", "red-burgundy", "pirate-gold"]>;
1926
+ position: z.ZodNumber;
1927
+ createdAt: z.ZodString;
1928
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1929
+ }, "strip", z.ZodTypeAny, {
1930
+ id: string;
1931
+ name: string | null;
1932
+ createdAt: string;
1933
+ position: number;
1934
+ boardId: string;
1935
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1936
+ updatedAt?: string | null | undefined;
1937
+ }, {
1938
+ id: string;
1939
+ name: string | null;
1940
+ createdAt: string;
1941
+ position: number;
1942
+ boardId: string;
1943
+ color: "muddy-grey" | "autumn-leafs" | "morning-sky" | "antique-blue" | "egg-yellow" | "desert-sand" | "dark-granite" | "fresh-salad" | "lagoon-blue" | "midnight-blue" | "light-orange" | "pumpkin-orange" | "light-concrete" | "sunny-grass" | "navy-blue" | "lilac-eyes" | "apricot-red" | "orange-peel" | "silver-glint" | "bright-moss" | "deep-ocean" | "summer-sky" | "berry-red" | "light-cocoa" | "grey-stone" | "tank-green" | "coral-green" | "sugar-plum" | "pink-tulip" | "shady-rust" | "wet-rock" | "wet-moss" | "turquoise-sea" | "lavender-fields" | "piggy-red" | "light-mud" | "gun-metal" | "modern-green" | "french-coast" | "sweet-lilac" | "red-burgundy" | "pirate-gold";
1944
+ updatedAt?: string | null | undefined;
1945
+ }>, "many">>;
1946
+ cardLabels: z.ZodOptional<z.ZodArray<z.ZodObject<{
1947
+ id: z.ZodString;
1948
+ cardId: z.ZodString;
1949
+ labelId: z.ZodString;
1950
+ createdAt: z.ZodString;
1951
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1952
+ }, "strip", z.ZodTypeAny, {
1953
+ id: string;
1954
+ createdAt: string;
1955
+ cardId: string;
1956
+ labelId: string;
1957
+ updatedAt?: string | null | undefined;
1958
+ }, {
1959
+ id: string;
1960
+ createdAt: string;
1961
+ cardId: string;
1962
+ labelId: string;
1963
+ updatedAt?: string | null | undefined;
1964
+ }>, "many">>;
1965
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1966
+ id: z.ZodString;
1967
+ cardId: z.ZodString;
1968
+ creatorUserId: z.ZodOptional<z.ZodString>;
1969
+ name: z.ZodString;
1970
+ url: z.ZodOptional<z.ZodString>;
1971
+ createdAt: z.ZodString;
1972
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1973
+ }, "strip", z.ZodTypeAny, {
1974
+ id: string;
1975
+ name: string;
1976
+ createdAt: string;
1977
+ cardId: string;
1978
+ updatedAt?: string | null | undefined;
1979
+ creatorUserId?: string | undefined;
1980
+ url?: string | undefined;
1981
+ }, {
1982
+ id: string;
1983
+ name: string;
1984
+ createdAt: string;
1985
+ cardId: string;
1986
+ updatedAt?: string | null | undefined;
1987
+ creatorUserId?: string | undefined;
1988
+ url?: string | undefined;
1989
+ }>, "many">>;
1990
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
1991
+ id: z.ZodString;
1992
+ email: z.ZodOptional<z.ZodString>;
1993
+ username: z.ZodOptional<z.ZodString>;
1994
+ name: z.ZodString;
1995
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1996
+ createdAt: z.ZodString;
1997
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1998
+ }, "strip", z.ZodTypeAny, {
1999
+ id: string;
2000
+ name: string;
2001
+ createdAt: string;
2002
+ email?: string | undefined;
2003
+ username?: string | undefined;
2004
+ avatarUrl?: string | null | undefined;
2005
+ updatedAt?: string | null | undefined;
2006
+ }, {
2007
+ id: string;
2008
+ name: string;
2009
+ createdAt: string;
2010
+ email?: string | undefined;
2011
+ username?: string | undefined;
2012
+ avatarUrl?: string | null | undefined;
2013
+ updatedAt?: string | null | undefined;
2014
+ }>, "many">>;
2015
+ }, z.ZodTypeAny, "passthrough">>;
2016
+ export declare const ProjectsIncludedSchema: z.ZodObject<{
2017
+ boards: z.ZodOptional<z.ZodArray<z.ZodObject<{
2018
+ id: z.ZodString;
2019
+ projectId: z.ZodString;
2020
+ name: z.ZodString;
2021
+ position: z.ZodNumber;
2022
+ createdAt: z.ZodString;
2023
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2024
+ }, "strip", z.ZodTypeAny, {
2025
+ id: string;
2026
+ name: string;
2027
+ createdAt: string;
2028
+ projectId: string;
2029
+ position: number;
2030
+ updatedAt?: string | null | undefined;
2031
+ }, {
2032
+ id: string;
2033
+ name: string;
2034
+ createdAt: string;
2035
+ projectId: string;
2036
+ position: number;
2037
+ updatedAt?: string | null | undefined;
2038
+ }>, "many">>;
2039
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
2040
+ id: z.ZodString;
2041
+ email: z.ZodOptional<z.ZodString>;
2042
+ username: z.ZodOptional<z.ZodString>;
2043
+ name: z.ZodString;
2044
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2045
+ createdAt: z.ZodString;
2046
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2047
+ }, "strip", z.ZodTypeAny, {
2048
+ id: string;
2049
+ name: string;
2050
+ createdAt: string;
2051
+ email?: string | undefined;
2052
+ username?: string | undefined;
2053
+ avatarUrl?: string | null | undefined;
2054
+ updatedAt?: string | null | undefined;
2055
+ }, {
2056
+ id: string;
2057
+ name: string;
2058
+ createdAt: string;
2059
+ email?: string | undefined;
2060
+ username?: string | undefined;
2061
+ avatarUrl?: string | null | undefined;
2062
+ updatedAt?: string | null | undefined;
2063
+ }>, "many">>;
2064
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2065
+ boards: z.ZodOptional<z.ZodArray<z.ZodObject<{
2066
+ id: z.ZodString;
2067
+ projectId: z.ZodString;
2068
+ name: z.ZodString;
2069
+ position: z.ZodNumber;
2070
+ createdAt: z.ZodString;
2071
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2072
+ }, "strip", z.ZodTypeAny, {
2073
+ id: string;
2074
+ name: string;
2075
+ createdAt: string;
2076
+ projectId: string;
2077
+ position: number;
2078
+ updatedAt?: string | null | undefined;
2079
+ }, {
2080
+ id: string;
2081
+ name: string;
2082
+ createdAt: string;
2083
+ projectId: string;
2084
+ position: number;
2085
+ updatedAt?: string | null | undefined;
2086
+ }>, "many">>;
2087
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
2088
+ id: z.ZodString;
2089
+ email: z.ZodOptional<z.ZodString>;
2090
+ username: z.ZodOptional<z.ZodString>;
2091
+ name: z.ZodString;
2092
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2093
+ createdAt: z.ZodString;
2094
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2095
+ }, "strip", z.ZodTypeAny, {
2096
+ id: string;
2097
+ name: string;
2098
+ createdAt: string;
2099
+ email?: string | undefined;
2100
+ username?: string | undefined;
2101
+ avatarUrl?: string | null | undefined;
2102
+ updatedAt?: string | null | undefined;
2103
+ }, {
2104
+ id: string;
2105
+ name: string;
2106
+ createdAt: string;
2107
+ email?: string | undefined;
2108
+ username?: string | undefined;
2109
+ avatarUrl?: string | null | undefined;
2110
+ updatedAt?: string | null | undefined;
2111
+ }>, "many">>;
2112
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2113
+ boards: z.ZodOptional<z.ZodArray<z.ZodObject<{
2114
+ id: z.ZodString;
2115
+ projectId: z.ZodString;
2116
+ name: z.ZodString;
2117
+ position: z.ZodNumber;
2118
+ createdAt: z.ZodString;
2119
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2120
+ }, "strip", z.ZodTypeAny, {
2121
+ id: string;
2122
+ name: string;
2123
+ createdAt: string;
2124
+ projectId: string;
2125
+ position: number;
2126
+ updatedAt?: string | null | undefined;
2127
+ }, {
2128
+ id: string;
2129
+ name: string;
2130
+ createdAt: string;
2131
+ projectId: string;
2132
+ position: number;
2133
+ updatedAt?: string | null | undefined;
2134
+ }>, "many">>;
2135
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
2136
+ id: z.ZodString;
2137
+ email: z.ZodOptional<z.ZodString>;
2138
+ username: z.ZodOptional<z.ZodString>;
2139
+ name: z.ZodString;
2140
+ avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2141
+ createdAt: z.ZodString;
2142
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2143
+ }, "strip", z.ZodTypeAny, {
2144
+ id: string;
2145
+ name: string;
2146
+ createdAt: string;
2147
+ email?: string | undefined;
2148
+ username?: string | undefined;
2149
+ avatarUrl?: string | null | undefined;
2150
+ updatedAt?: string | null | undefined;
2151
+ }, {
2152
+ id: string;
2153
+ name: string;
2154
+ createdAt: string;
2155
+ email?: string | undefined;
2156
+ username?: string | undefined;
2157
+ avatarUrl?: string | null | undefined;
2158
+ updatedAt?: string | null | undefined;
2159
+ }>, "many">>;
2160
+ }, z.ZodTypeAny, "passthrough">>;
2161
+ //# sourceMappingURL=responses.d.ts.map