@chykalophia/clickup-mcp-server 5.0.0 → 5.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/clickup-client/tasks.d.ts +31 -0
- package/build/clickup-client/tasks.js +47 -1
- package/build/clickup-client/tasks.js.map +1 -1
- package/build/schemas/chat-schemas.d.ts +10 -10
- package/build/schemas/goals-schemas.d.ts +26 -26
- package/build/schemas/response-schemas.d.ts +530 -0
- package/build/schemas/response-schemas.js +41 -0
- package/build/schemas/response-schemas.js.map +1 -1
- package/build/schemas/time-tracking-schemas.d.ts +10 -10
- package/build/tools/comment-tools.js +39 -6
- package/build/tools/comment-tools.js.map +1 -1
- package/build/tools/task-tools.js +52 -0
- package/build/tools/task-tools.js.map +1 -1
- package/build/utils/clickup-comment-formatter.d.ts +12 -1
- package/build/utils/clickup-comment-formatter.js +14 -15
- package/build/utils/clickup-comment-formatter.js.map +1 -1
- package/package.json +3 -3
|
@@ -86,6 +86,536 @@ export declare const GoalTargetResponseSchema: z.ZodObject<{
|
|
|
86
86
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
87
87
|
target: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
88
88
|
}, z.ZodTypeAny, "passthrough">>;
|
|
89
|
+
/** Response shape for GET /task/{task_id}/time_in_status */
|
|
90
|
+
export declare const TaskTimeInStatusResponseSchema: z.ZodObject<{
|
|
91
|
+
current_status: z.ZodOptional<z.ZodObject<{
|
|
92
|
+
status: z.ZodOptional<z.ZodString>;
|
|
93
|
+
color: z.ZodOptional<z.ZodString>;
|
|
94
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
95
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
96
|
+
since: z.ZodOptional<z.ZodString>;
|
|
97
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
98
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
99
|
+
since: z.ZodOptional<z.ZodString>;
|
|
100
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
101
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
102
|
+
since: z.ZodOptional<z.ZodString>;
|
|
103
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
104
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
105
|
+
status: z.ZodOptional<z.ZodString>;
|
|
106
|
+
color: z.ZodOptional<z.ZodString>;
|
|
107
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
108
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
109
|
+
since: z.ZodOptional<z.ZodString>;
|
|
110
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
111
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
112
|
+
since: z.ZodOptional<z.ZodString>;
|
|
113
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
114
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
115
|
+
since: z.ZodOptional<z.ZodString>;
|
|
116
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
117
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
118
|
+
status: z.ZodOptional<z.ZodString>;
|
|
119
|
+
color: z.ZodOptional<z.ZodString>;
|
|
120
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
121
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
122
|
+
since: z.ZodOptional<z.ZodString>;
|
|
123
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
124
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
125
|
+
since: z.ZodOptional<z.ZodString>;
|
|
126
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
127
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
128
|
+
since: z.ZodOptional<z.ZodString>;
|
|
129
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
130
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
131
|
+
status_history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
132
|
+
status: z.ZodOptional<z.ZodString>;
|
|
133
|
+
color: z.ZodOptional<z.ZodString>;
|
|
134
|
+
type: z.ZodOptional<z.ZodString>;
|
|
135
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
136
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
137
|
+
since: z.ZodOptional<z.ZodString>;
|
|
138
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
139
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
140
|
+
since: z.ZodOptional<z.ZodString>;
|
|
141
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
142
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
143
|
+
since: z.ZodOptional<z.ZodString>;
|
|
144
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
145
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
146
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
147
|
+
status: z.ZodOptional<z.ZodString>;
|
|
148
|
+
color: z.ZodOptional<z.ZodString>;
|
|
149
|
+
type: z.ZodOptional<z.ZodString>;
|
|
150
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
151
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
152
|
+
since: z.ZodOptional<z.ZodString>;
|
|
153
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
154
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
155
|
+
since: z.ZodOptional<z.ZodString>;
|
|
156
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
157
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
158
|
+
since: z.ZodOptional<z.ZodString>;
|
|
159
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
160
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
161
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
162
|
+
status: z.ZodOptional<z.ZodString>;
|
|
163
|
+
color: z.ZodOptional<z.ZodString>;
|
|
164
|
+
type: z.ZodOptional<z.ZodString>;
|
|
165
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
166
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
167
|
+
since: z.ZodOptional<z.ZodString>;
|
|
168
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
169
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
170
|
+
since: z.ZodOptional<z.ZodString>;
|
|
171
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
172
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
173
|
+
since: z.ZodOptional<z.ZodString>;
|
|
174
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
175
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
176
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
177
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
178
|
+
current_status: z.ZodOptional<z.ZodObject<{
|
|
179
|
+
status: z.ZodOptional<z.ZodString>;
|
|
180
|
+
color: z.ZodOptional<z.ZodString>;
|
|
181
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
182
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
183
|
+
since: z.ZodOptional<z.ZodString>;
|
|
184
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
185
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
186
|
+
since: z.ZodOptional<z.ZodString>;
|
|
187
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
188
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
189
|
+
since: z.ZodOptional<z.ZodString>;
|
|
190
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
191
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
192
|
+
status: z.ZodOptional<z.ZodString>;
|
|
193
|
+
color: z.ZodOptional<z.ZodString>;
|
|
194
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
195
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
196
|
+
since: z.ZodOptional<z.ZodString>;
|
|
197
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
198
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
199
|
+
since: z.ZodOptional<z.ZodString>;
|
|
200
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
201
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
202
|
+
since: z.ZodOptional<z.ZodString>;
|
|
203
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
204
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
205
|
+
status: z.ZodOptional<z.ZodString>;
|
|
206
|
+
color: z.ZodOptional<z.ZodString>;
|
|
207
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
208
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
209
|
+
since: z.ZodOptional<z.ZodString>;
|
|
210
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
211
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
212
|
+
since: z.ZodOptional<z.ZodString>;
|
|
213
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
214
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
215
|
+
since: z.ZodOptional<z.ZodString>;
|
|
216
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
217
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
218
|
+
status_history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
219
|
+
status: z.ZodOptional<z.ZodString>;
|
|
220
|
+
color: z.ZodOptional<z.ZodString>;
|
|
221
|
+
type: z.ZodOptional<z.ZodString>;
|
|
222
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
223
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
224
|
+
since: z.ZodOptional<z.ZodString>;
|
|
225
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
226
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
227
|
+
since: z.ZodOptional<z.ZodString>;
|
|
228
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
229
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
since: z.ZodOptional<z.ZodString>;
|
|
231
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
232
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
233
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
234
|
+
status: z.ZodOptional<z.ZodString>;
|
|
235
|
+
color: z.ZodOptional<z.ZodString>;
|
|
236
|
+
type: z.ZodOptional<z.ZodString>;
|
|
237
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
238
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
239
|
+
since: z.ZodOptional<z.ZodString>;
|
|
240
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
241
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
242
|
+
since: z.ZodOptional<z.ZodString>;
|
|
243
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
244
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
245
|
+
since: z.ZodOptional<z.ZodString>;
|
|
246
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
247
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
248
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
249
|
+
status: z.ZodOptional<z.ZodString>;
|
|
250
|
+
color: z.ZodOptional<z.ZodString>;
|
|
251
|
+
type: z.ZodOptional<z.ZodString>;
|
|
252
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
253
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
254
|
+
since: z.ZodOptional<z.ZodString>;
|
|
255
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
256
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
257
|
+
since: z.ZodOptional<z.ZodString>;
|
|
258
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
259
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
260
|
+
since: z.ZodOptional<z.ZodString>;
|
|
261
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
262
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
263
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
264
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
265
|
+
current_status: z.ZodOptional<z.ZodObject<{
|
|
266
|
+
status: z.ZodOptional<z.ZodString>;
|
|
267
|
+
color: z.ZodOptional<z.ZodString>;
|
|
268
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
269
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
270
|
+
since: z.ZodOptional<z.ZodString>;
|
|
271
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
272
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
273
|
+
since: z.ZodOptional<z.ZodString>;
|
|
274
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
275
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
276
|
+
since: z.ZodOptional<z.ZodString>;
|
|
277
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
278
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
279
|
+
status: z.ZodOptional<z.ZodString>;
|
|
280
|
+
color: z.ZodOptional<z.ZodString>;
|
|
281
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
282
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
283
|
+
since: z.ZodOptional<z.ZodString>;
|
|
284
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
285
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
286
|
+
since: z.ZodOptional<z.ZodString>;
|
|
287
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
288
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
289
|
+
since: z.ZodOptional<z.ZodString>;
|
|
290
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
291
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
292
|
+
status: z.ZodOptional<z.ZodString>;
|
|
293
|
+
color: z.ZodOptional<z.ZodString>;
|
|
294
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
295
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
296
|
+
since: z.ZodOptional<z.ZodString>;
|
|
297
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
298
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
299
|
+
since: z.ZodOptional<z.ZodString>;
|
|
300
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
301
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
302
|
+
since: z.ZodOptional<z.ZodString>;
|
|
303
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
304
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
305
|
+
status_history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
306
|
+
status: z.ZodOptional<z.ZodString>;
|
|
307
|
+
color: z.ZodOptional<z.ZodString>;
|
|
308
|
+
type: z.ZodOptional<z.ZodString>;
|
|
309
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
310
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
311
|
+
since: z.ZodOptional<z.ZodString>;
|
|
312
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
313
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
314
|
+
since: z.ZodOptional<z.ZodString>;
|
|
315
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
316
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
317
|
+
since: z.ZodOptional<z.ZodString>;
|
|
318
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
319
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
320
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
321
|
+
status: z.ZodOptional<z.ZodString>;
|
|
322
|
+
color: z.ZodOptional<z.ZodString>;
|
|
323
|
+
type: z.ZodOptional<z.ZodString>;
|
|
324
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
325
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
326
|
+
since: z.ZodOptional<z.ZodString>;
|
|
327
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
328
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
329
|
+
since: z.ZodOptional<z.ZodString>;
|
|
330
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
331
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
332
|
+
since: z.ZodOptional<z.ZodString>;
|
|
333
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
334
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
335
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
336
|
+
status: z.ZodOptional<z.ZodString>;
|
|
337
|
+
color: z.ZodOptional<z.ZodString>;
|
|
338
|
+
type: z.ZodOptional<z.ZodString>;
|
|
339
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
340
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
341
|
+
since: z.ZodOptional<z.ZodString>;
|
|
342
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
343
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
344
|
+
since: z.ZodOptional<z.ZodString>;
|
|
345
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
346
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
347
|
+
since: z.ZodOptional<z.ZodString>;
|
|
348
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
349
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
350
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
351
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
352
|
+
/**
|
|
353
|
+
* Response shape for GET /task/bulk_time_in_status/task_ids
|
|
354
|
+
* Maps task_id -> { current_status, status_history }.
|
|
355
|
+
* Each task entry uses the same lenient schema.
|
|
356
|
+
*/
|
|
357
|
+
export declare const BulkTasksTimeInStatusResponseSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
358
|
+
current_status: z.ZodOptional<z.ZodObject<{
|
|
359
|
+
status: z.ZodOptional<z.ZodString>;
|
|
360
|
+
color: z.ZodOptional<z.ZodString>;
|
|
361
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
362
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
363
|
+
since: z.ZodOptional<z.ZodString>;
|
|
364
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
365
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
366
|
+
since: z.ZodOptional<z.ZodString>;
|
|
367
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
368
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
369
|
+
since: z.ZodOptional<z.ZodString>;
|
|
370
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
371
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
372
|
+
status: z.ZodOptional<z.ZodString>;
|
|
373
|
+
color: z.ZodOptional<z.ZodString>;
|
|
374
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
375
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
since: z.ZodOptional<z.ZodString>;
|
|
377
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
378
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
379
|
+
since: z.ZodOptional<z.ZodString>;
|
|
380
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
381
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
since: z.ZodOptional<z.ZodString>;
|
|
383
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
384
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
385
|
+
status: z.ZodOptional<z.ZodString>;
|
|
386
|
+
color: z.ZodOptional<z.ZodString>;
|
|
387
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
388
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
389
|
+
since: z.ZodOptional<z.ZodString>;
|
|
390
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
391
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
392
|
+
since: z.ZodOptional<z.ZodString>;
|
|
393
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
394
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
395
|
+
since: z.ZodOptional<z.ZodString>;
|
|
396
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
397
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
398
|
+
status_history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
399
|
+
status: z.ZodOptional<z.ZodString>;
|
|
400
|
+
color: z.ZodOptional<z.ZodString>;
|
|
401
|
+
type: z.ZodOptional<z.ZodString>;
|
|
402
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
403
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
404
|
+
since: z.ZodOptional<z.ZodString>;
|
|
405
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
406
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
407
|
+
since: z.ZodOptional<z.ZodString>;
|
|
408
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
409
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
410
|
+
since: z.ZodOptional<z.ZodString>;
|
|
411
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
412
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
413
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
414
|
+
status: z.ZodOptional<z.ZodString>;
|
|
415
|
+
color: z.ZodOptional<z.ZodString>;
|
|
416
|
+
type: z.ZodOptional<z.ZodString>;
|
|
417
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
418
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
419
|
+
since: z.ZodOptional<z.ZodString>;
|
|
420
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
421
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
422
|
+
since: z.ZodOptional<z.ZodString>;
|
|
423
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
424
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
425
|
+
since: z.ZodOptional<z.ZodString>;
|
|
426
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
427
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
428
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
429
|
+
status: z.ZodOptional<z.ZodString>;
|
|
430
|
+
color: z.ZodOptional<z.ZodString>;
|
|
431
|
+
type: z.ZodOptional<z.ZodString>;
|
|
432
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
433
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
434
|
+
since: z.ZodOptional<z.ZodString>;
|
|
435
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
436
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
437
|
+
since: z.ZodOptional<z.ZodString>;
|
|
438
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
439
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
440
|
+
since: z.ZodOptional<z.ZodString>;
|
|
441
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
442
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
443
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
444
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
445
|
+
current_status: z.ZodOptional<z.ZodObject<{
|
|
446
|
+
status: z.ZodOptional<z.ZodString>;
|
|
447
|
+
color: z.ZodOptional<z.ZodString>;
|
|
448
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
449
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
450
|
+
since: z.ZodOptional<z.ZodString>;
|
|
451
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
452
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
453
|
+
since: z.ZodOptional<z.ZodString>;
|
|
454
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
455
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
456
|
+
since: z.ZodOptional<z.ZodString>;
|
|
457
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
458
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
459
|
+
status: z.ZodOptional<z.ZodString>;
|
|
460
|
+
color: z.ZodOptional<z.ZodString>;
|
|
461
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
462
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
463
|
+
since: z.ZodOptional<z.ZodString>;
|
|
464
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
465
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
466
|
+
since: z.ZodOptional<z.ZodString>;
|
|
467
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
468
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
469
|
+
since: z.ZodOptional<z.ZodString>;
|
|
470
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
471
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
472
|
+
status: z.ZodOptional<z.ZodString>;
|
|
473
|
+
color: z.ZodOptional<z.ZodString>;
|
|
474
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
475
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
476
|
+
since: z.ZodOptional<z.ZodString>;
|
|
477
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
478
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
479
|
+
since: z.ZodOptional<z.ZodString>;
|
|
480
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
481
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
482
|
+
since: z.ZodOptional<z.ZodString>;
|
|
483
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
484
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
485
|
+
status_history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
486
|
+
status: z.ZodOptional<z.ZodString>;
|
|
487
|
+
color: z.ZodOptional<z.ZodString>;
|
|
488
|
+
type: z.ZodOptional<z.ZodString>;
|
|
489
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
490
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
491
|
+
since: z.ZodOptional<z.ZodString>;
|
|
492
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
493
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
494
|
+
since: z.ZodOptional<z.ZodString>;
|
|
495
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
496
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
497
|
+
since: z.ZodOptional<z.ZodString>;
|
|
498
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
499
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
500
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
501
|
+
status: z.ZodOptional<z.ZodString>;
|
|
502
|
+
color: z.ZodOptional<z.ZodString>;
|
|
503
|
+
type: z.ZodOptional<z.ZodString>;
|
|
504
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
505
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
506
|
+
since: z.ZodOptional<z.ZodString>;
|
|
507
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
508
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
509
|
+
since: z.ZodOptional<z.ZodString>;
|
|
510
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
511
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
512
|
+
since: z.ZodOptional<z.ZodString>;
|
|
513
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
514
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
515
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
516
|
+
status: z.ZodOptional<z.ZodString>;
|
|
517
|
+
color: z.ZodOptional<z.ZodString>;
|
|
518
|
+
type: z.ZodOptional<z.ZodString>;
|
|
519
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
520
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
521
|
+
since: z.ZodOptional<z.ZodString>;
|
|
522
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
523
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
524
|
+
since: z.ZodOptional<z.ZodString>;
|
|
525
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
526
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
527
|
+
since: z.ZodOptional<z.ZodString>;
|
|
528
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
529
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
530
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
531
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
532
|
+
current_status: z.ZodOptional<z.ZodObject<{
|
|
533
|
+
status: z.ZodOptional<z.ZodString>;
|
|
534
|
+
color: z.ZodOptional<z.ZodString>;
|
|
535
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
536
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
537
|
+
since: z.ZodOptional<z.ZodString>;
|
|
538
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
539
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
540
|
+
since: z.ZodOptional<z.ZodString>;
|
|
541
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
542
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
543
|
+
since: z.ZodOptional<z.ZodString>;
|
|
544
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
545
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
546
|
+
status: z.ZodOptional<z.ZodString>;
|
|
547
|
+
color: z.ZodOptional<z.ZodString>;
|
|
548
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
549
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
550
|
+
since: z.ZodOptional<z.ZodString>;
|
|
551
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
552
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
553
|
+
since: z.ZodOptional<z.ZodString>;
|
|
554
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
555
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
556
|
+
since: z.ZodOptional<z.ZodString>;
|
|
557
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
558
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
559
|
+
status: z.ZodOptional<z.ZodString>;
|
|
560
|
+
color: z.ZodOptional<z.ZodString>;
|
|
561
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
562
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
563
|
+
since: z.ZodOptional<z.ZodString>;
|
|
564
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
565
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
566
|
+
since: z.ZodOptional<z.ZodString>;
|
|
567
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
568
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
569
|
+
since: z.ZodOptional<z.ZodString>;
|
|
570
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
571
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
572
|
+
status_history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
573
|
+
status: z.ZodOptional<z.ZodString>;
|
|
574
|
+
color: z.ZodOptional<z.ZodString>;
|
|
575
|
+
type: z.ZodOptional<z.ZodString>;
|
|
576
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
577
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
578
|
+
since: z.ZodOptional<z.ZodString>;
|
|
579
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
580
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
581
|
+
since: z.ZodOptional<z.ZodString>;
|
|
582
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
583
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
584
|
+
since: z.ZodOptional<z.ZodString>;
|
|
585
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
586
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
587
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
588
|
+
status: z.ZodOptional<z.ZodString>;
|
|
589
|
+
color: z.ZodOptional<z.ZodString>;
|
|
590
|
+
type: z.ZodOptional<z.ZodString>;
|
|
591
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
592
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
593
|
+
since: z.ZodOptional<z.ZodString>;
|
|
594
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
595
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
596
|
+
since: z.ZodOptional<z.ZodString>;
|
|
597
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
598
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
599
|
+
since: z.ZodOptional<z.ZodString>;
|
|
600
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
601
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
602
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
603
|
+
status: z.ZodOptional<z.ZodString>;
|
|
604
|
+
color: z.ZodOptional<z.ZodString>;
|
|
605
|
+
type: z.ZodOptional<z.ZodString>;
|
|
606
|
+
total_time: z.ZodOptional<z.ZodObject<{
|
|
607
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
608
|
+
since: z.ZodOptional<z.ZodString>;
|
|
609
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
610
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
611
|
+
since: z.ZodOptional<z.ZodString>;
|
|
612
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
613
|
+
by_minute: z.ZodOptional<z.ZodNumber>;
|
|
614
|
+
since: z.ZodOptional<z.ZodString>;
|
|
615
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
616
|
+
orderindex: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
617
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
618
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
89
619
|
export declare const TimeEntriesResponseSchema: z.ZodObject<{
|
|
90
620
|
data: z.ZodArray<z.ZodUnknown, "many">;
|
|
91
621
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -65,6 +65,47 @@ export const GoalTargetResponseSchema = z.object({
|
|
|
65
65
|
target: z.record(z.unknown())
|
|
66
66
|
}).passthrough();
|
|
67
67
|
// ========================================
|
|
68
|
+
// TIME IN STATUS
|
|
69
|
+
// ========================================
|
|
70
|
+
/**
|
|
71
|
+
* A single status_history entry. ClickUp's API legitimately omits `orderindex`
|
|
72
|
+
* on some entries (observed across many tasks in real workspaces). All fields
|
|
73
|
+
* are optional to surface partial data rather than rejecting the whole response.
|
|
74
|
+
*/
|
|
75
|
+
const StatusHistoryEntrySchema = z.object({
|
|
76
|
+
status: z.string().optional(),
|
|
77
|
+
color: z.string().optional(),
|
|
78
|
+
type: z.string().optional(),
|
|
79
|
+
total_time: z.object({
|
|
80
|
+
by_minute: z.number().optional(),
|
|
81
|
+
since: z.string().optional()
|
|
82
|
+
}).passthrough().optional(),
|
|
83
|
+
orderindex: z.union([z.number(), z.string()]).optional(),
|
|
84
|
+
// ClickUp may emit additional fields per status (e.g., custom-status edges)
|
|
85
|
+
}).passthrough();
|
|
86
|
+
const CurrentStatusSchema = z.object({
|
|
87
|
+
status: z.string().optional(),
|
|
88
|
+
color: z.string().optional(),
|
|
89
|
+
total_time: z.object({
|
|
90
|
+
by_minute: z.number().optional(),
|
|
91
|
+
since: z.string().optional()
|
|
92
|
+
}).passthrough().optional()
|
|
93
|
+
}).passthrough();
|
|
94
|
+
/** Response shape for GET /task/{task_id}/time_in_status */
|
|
95
|
+
export const TaskTimeInStatusResponseSchema = z.object({
|
|
96
|
+
current_status: CurrentStatusSchema.optional(),
|
|
97
|
+
status_history: z.array(StatusHistoryEntrySchema).optional()
|
|
98
|
+
}).passthrough();
|
|
99
|
+
/**
|
|
100
|
+
* Response shape for GET /task/bulk_time_in_status/task_ids
|
|
101
|
+
* Maps task_id -> { current_status, status_history }.
|
|
102
|
+
* Each task entry uses the same lenient schema.
|
|
103
|
+
*/
|
|
104
|
+
export const BulkTasksTimeInStatusResponseSchema = z.record(z.object({
|
|
105
|
+
current_status: CurrentStatusSchema.optional(),
|
|
106
|
+
status_history: z.array(StatusHistoryEntrySchema).optional()
|
|
107
|
+
}).passthrough());
|
|
108
|
+
// ========================================
|
|
68
109
|
// TIME TRACKING
|
|
69
110
|
// ========================================
|
|
70
111
|
export const TimeEntriesResponseSchema = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"response-schemas.js","sourceRoot":"","sources":["../../src/schemas/response-schemas.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,2CAA2C;AAC3C,4BAA4B;AAC5B,2CAA2C;AAE3C,sDAAsD;AACtD,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,WAAW,EAAE,CAAC;AAEhE,mCAAmC;AACnC,MAAM,cAAc,GAAG,CAAC,GAAW,EAAE,EAAE,CACrC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,WAAW,EAAE,CAAC;AAE3D,wCAAwC;AACxC,MAAM,YAAY,GAAG,CAAC,GAAW,EAAE,EAAE,CACnC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,WAAW,EAAE,CAAC;AAE1D,2CAA2C;AAC3C,mBAAmB;AACnB,2CAA2C;AAE3C,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC5B,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC5B,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,2CAA2C;AAC3C,QAAQ;AACR,2CAA2C;AAE3C,MAAM,CAAC,MAAM,mBAAmB,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;AACzD,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,gBAAgB;AAEzE,2CAA2C;AAC3C,SAAS;AACT,2CAA2C;AAE3C,MAAM,CAAC,MAAM,oBAAoB,GAAG,YAAY,CAAC,QAAQ,CAAC,CAAC;AAC3D,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;AAEzD,2CAA2C;AAC3C,QAAQ;AACR,2CAA2C;AAE3C,MAAM,CAAC,MAAM,mBAAmB,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;AACzD,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;AAExD,2CAA2C;AAC3C,UAAU;AACV,2CAA2C;AAE3C,MAAM,CAAC,MAAM,qBAAqB,GAAG,YAAY,CAAC,SAAS,CAAC,CAAC;AAC7D,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;AAE1D,2CAA2C;AAC3C,WAAW;AACX,2CAA2C;AAE3C,MAAM,CAAC,MAAM,sBAAsB,GAAG,YAAY,CAAC,UAAU,CAAC,CAAC;AAC/D,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;AAE3D,2CAA2C;AAC3C,QAAQ;AACR,2CAA2C;AAE3C,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC5B,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC5B,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC9B,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,2CAA2C;AAC3C,gBAAgB;AAChB,2CAA2C;AAE3C,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC3B,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC;QACZ,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;KACtB,CAAC;CACH,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,2CAA2C;AAC3C,QAAQ;AACR,2CAA2C;AAE3C,MAAM,CAAC,MAAM,mBAAmB,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;AACzD,MAAM,CAAC,MAAM,kBAAkB,GAAG,cAAc,CAAC,MAAM,CAAC,CAAC;AAEzD,2CAA2C;AAC3C,WAAW;AACX,2CAA2C;AAE3C,MAAM,CAAC,MAAM,sBAAsB,GAAG,YAAY,CAAC,UAAU,CAAC,CAAC;AAC/D,MAAM,CAAC,MAAM,qBAAqB,GAAG,cAAc,CAAC,SAAS,CAAC,CAAC;AAE/D,2CAA2C;AAC3C,eAAe;AACf,2CAA2C;AAE3C,MAAM,CAAC,MAAM,0BAA0B,GAAG,YAAY,CAAC,cAAc,CAAC,CAAC;AACvE,MAAM,CAAC,MAAM,wBAAwB,GAAG,cAAc,CAAC,YAAY,CAAC,CAAC;AAErE,2CAA2C;AAC3C,gBAAgB;AAChB,2CAA2C;AAE3C,MAAM,CAAC,MAAM,0BAA0B,GAAG,YAAY,CAAC,QAAQ,CAAC,CAAC;AACjE,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;AAE/D,2CAA2C;AAC3C,gBAAgB;AAChB,2CAA2C;AAE3C,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC3B,CAAC,CAAC,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;AAEvD,2CAA2C;AAC3C,cAAc;AACd,2CAA2C;AAE3C,MAAM,CAAC,MAAM,wBAAwB,GAAG,cAAc,CAAC,YAAY,CAAC,CAAC;AACrE,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,qBAAqB;AAErF,2CAA2C;AAC3C,aAAa;AACb,2CAA2C;AAE3C,MAAM,CAAC,MAAM,wBAAwB,GAAG,YAAY,CAAC,YAAY,CAAC,CAAC;AACnE,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;AAE7D,2CAA2C;AAC3C,qBAAqB;AACrB,2CAA2C;AAE3C;;;;GAIG;AACH,MAAM,UAAU,gBAAgB,CAC9B,MAAsB,EACtB,IAAa,EACb,OAAe;IAEf,MAAM,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IACtC,IAAI,MAAM,CAAC,OAAO,EAAE,CAAC;QACnB,OAAO,MAAM,CAAC,IAAI,CAAC;IACrB,CAAC;IACD,MAAM,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM;SAC/B,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,OAAO,EAAE,CAAC;SAC7C,IAAI,CAAC,IAAI,CAAC,CAAC;IACd,MAAM,IAAI,KAAK,CACb,qCAAqC,OAAO,KAAK,MAAM,IAAI;QAC3D,sDAAsD,MAAM,CAAC,IAAI,CAAC,IAA+B,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CACjH,CAAC;AACJ,CAAC"}
|
|
1
|
+
{"version":3,"file":"response-schemas.js","sourceRoot":"","sources":["../../src/schemas/response-schemas.ts"],"names":[],"mappings":"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"}
|