@dotlab-hq/vector-store-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 (46) hide show
  1. package/README.md +225 -0
  2. package/dist/client.d.ts +11 -0
  3. package/dist/client.d.ts.map +1 -0
  4. package/dist/client.js +28 -0
  5. package/dist/client.js.map +1 -0
  6. package/dist/index.d.ts +13 -0
  7. package/dist/index.d.ts.map +1 -0
  8. package/dist/index.js +13 -0
  9. package/dist/index.js.map +1 -0
  10. package/dist/schemas/index.d.ts +492 -0
  11. package/dist/schemas/index.d.ts.map +1 -0
  12. package/dist/schemas/index.js +300 -0
  13. package/dist/schemas/index.js.map +1 -0
  14. package/dist/server.d.ts +2 -0
  15. package/dist/server.d.ts.map +1 -0
  16. package/dist/server.js +99 -0
  17. package/dist/server.js.map +1 -0
  18. package/dist/stdio.d.ts +3 -0
  19. package/dist/stdio.d.ts.map +1 -0
  20. package/dist/stdio.js +30 -0
  21. package/dist/stdio.js.map +1 -0
  22. package/dist/tools/files.d.ts +9 -0
  23. package/dist/tools/files.d.ts.map +1 -0
  24. package/dist/tools/files.js +153 -0
  25. package/dist/tools/files.js.map +1 -0
  26. package/dist/tools/index.d.ts +40 -0
  27. package/dist/tools/index.d.ts.map +1 -0
  28. package/dist/tools/index.js +47 -0
  29. package/dist/tools/index.js.map +1 -0
  30. package/dist/tools/upload-file.d.ts +20 -0
  31. package/dist/tools/upload-file.d.ts.map +1 -0
  32. package/dist/tools/upload-file.js +60 -0
  33. package/dist/tools/upload-file.js.map +1 -0
  34. package/dist/tools/vector-stores.d.ts +8 -0
  35. package/dist/tools/vector-stores.d.ts.map +1 -0
  36. package/dist/tools/vector-stores.js +267 -0
  37. package/dist/tools/vector-stores.js.map +1 -0
  38. package/dist/tools/vs-file-batches.d.ts +8 -0
  39. package/dist/tools/vs-file-batches.d.ts.map +1 -0
  40. package/dist/tools/vs-file-batches.js +157 -0
  41. package/dist/tools/vs-file-batches.js.map +1 -0
  42. package/dist/tools/vs-files.d.ts +8 -0
  43. package/dist/tools/vs-files.d.ts.map +1 -0
  44. package/dist/tools/vs-files.js +222 -0
  45. package/dist/tools/vs-files.js.map +1 -0
  46. package/package.json +73 -0
@@ -0,0 +1,492 @@
1
+ import { z } from "zod";
2
+ export declare const ResponseFormat: {
3
+ readonly MARKDOWN: "markdown";
4
+ readonly JSON: "json";
5
+ };
6
+ export type ResponseFormat = (typeof ResponseFormat)[keyof typeof ResponseFormat];
7
+ export declare const SortOrder: {
8
+ readonly ASC: "asc";
9
+ readonly DESC: "desc";
10
+ };
11
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
12
+ export declare const FileStatus: {
13
+ readonly IN_PROGRESS: "in_progress";
14
+ readonly COMPLETED: "completed";
15
+ readonly FAILED: "failed";
16
+ readonly CANCELLED: "cancelled";
17
+ };
18
+ export type FileStatus = (typeof FileStatus)[keyof typeof FileStatus];
19
+ export declare const CreateVectorStoreSchema: z.ZodObject<{
20
+ name: z.ZodString;
21
+ file_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22
+ expires_after: z.ZodOptional<z.ZodObject<{
23
+ anchor: z.ZodLiteral<"last_active_at">;
24
+ days: z.ZodNumber;
25
+ }, "strip", z.ZodTypeAny, {
26
+ anchor: "last_active_at";
27
+ days: number;
28
+ }, {
29
+ anchor: "last_active_at";
30
+ days: number;
31
+ }>>;
32
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
33
+ chunking_strategy: z.ZodOptional<z.ZodObject<{
34
+ type: z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"static">]>;
35
+ static: z.ZodOptional<z.ZodObject<{
36
+ max_chunk_size_tokens: z.ZodDefault<z.ZodNumber>;
37
+ chunk_overlap_tokens: z.ZodDefault<z.ZodNumber>;
38
+ }, "strip", z.ZodTypeAny, {
39
+ max_chunk_size_tokens: number;
40
+ chunk_overlap_tokens: number;
41
+ }, {
42
+ max_chunk_size_tokens?: number | undefined;
43
+ chunk_overlap_tokens?: number | undefined;
44
+ }>>;
45
+ }, "strip", z.ZodTypeAny, {
46
+ type: "auto" | "static";
47
+ static?: {
48
+ max_chunk_size_tokens: number;
49
+ chunk_overlap_tokens: number;
50
+ } | undefined;
51
+ }, {
52
+ type: "auto" | "static";
53
+ static?: {
54
+ max_chunk_size_tokens?: number | undefined;
55
+ chunk_overlap_tokens?: number | undefined;
56
+ } | undefined;
57
+ }>>;
58
+ }, "strip", z.ZodTypeAny, {
59
+ name: string;
60
+ file_ids?: string[] | undefined;
61
+ expires_after?: {
62
+ anchor: "last_active_at";
63
+ days: number;
64
+ } | undefined;
65
+ metadata?: Record<string, string | number | boolean> | undefined;
66
+ chunking_strategy?: {
67
+ type: "auto" | "static";
68
+ static?: {
69
+ max_chunk_size_tokens: number;
70
+ chunk_overlap_tokens: number;
71
+ } | undefined;
72
+ } | undefined;
73
+ }, {
74
+ name: string;
75
+ file_ids?: string[] | undefined;
76
+ expires_after?: {
77
+ anchor: "last_active_at";
78
+ days: number;
79
+ } | undefined;
80
+ metadata?: Record<string, string | number | boolean> | undefined;
81
+ chunking_strategy?: {
82
+ type: "auto" | "static";
83
+ static?: {
84
+ max_chunk_size_tokens?: number | undefined;
85
+ chunk_overlap_tokens?: number | undefined;
86
+ } | undefined;
87
+ } | undefined;
88
+ }>;
89
+ export declare const UpdateVectorStoreSchema: z.ZodObject<{
90
+ vector_store_id: z.ZodString;
91
+ name: z.ZodOptional<z.ZodString>;
92
+ expires_after: z.ZodOptional<z.ZodObject<{
93
+ anchor: z.ZodLiteral<"last_active_at">;
94
+ days: z.ZodNumber;
95
+ }, "strip", z.ZodTypeAny, {
96
+ anchor: "last_active_at";
97
+ days: number;
98
+ }, {
99
+ anchor: "last_active_at";
100
+ days: number;
101
+ }>>;
102
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
103
+ }, "strip", z.ZodTypeAny, {
104
+ vector_store_id: string;
105
+ name?: string | undefined;
106
+ expires_after?: {
107
+ anchor: "last_active_at";
108
+ days: number;
109
+ } | undefined;
110
+ metadata?: Record<string, string | number | boolean> | undefined;
111
+ }, {
112
+ vector_store_id: string;
113
+ name?: string | undefined;
114
+ expires_after?: {
115
+ anchor: "last_active_at";
116
+ days: number;
117
+ } | undefined;
118
+ metadata?: Record<string, string | number | boolean> | undefined;
119
+ }>;
120
+ export declare const RetrieveVectorStoreSchema: z.ZodObject<{
121
+ vector_store_id: z.ZodString;
122
+ }, "strip", z.ZodTypeAny, {
123
+ vector_store_id: string;
124
+ }, {
125
+ vector_store_id: string;
126
+ }>;
127
+ export declare const DeleteVectorStoreSchema: z.ZodObject<{
128
+ vector_store_id: z.ZodString;
129
+ }, "strip", z.ZodTypeAny, {
130
+ vector_store_id: string;
131
+ }, {
132
+ vector_store_id: string;
133
+ }>;
134
+ export declare const ListVectorStoresSchema: z.ZodObject<{
135
+ after: z.ZodOptional<z.ZodString>;
136
+ before: z.ZodOptional<z.ZodString>;
137
+ limit: z.ZodDefault<z.ZodNumber>;
138
+ order: z.ZodDefault<z.ZodNativeEnum<{
139
+ readonly ASC: "asc";
140
+ readonly DESC: "desc";
141
+ }>>;
142
+ response_format: z.ZodDefault<z.ZodNativeEnum<{
143
+ readonly MARKDOWN: "markdown";
144
+ readonly JSON: "json";
145
+ }>>;
146
+ }, "strict", z.ZodTypeAny, {
147
+ limit: number;
148
+ order: "asc" | "desc";
149
+ response_format: "markdown" | "json";
150
+ after?: string | undefined;
151
+ before?: string | undefined;
152
+ }, {
153
+ after?: string | undefined;
154
+ before?: string | undefined;
155
+ limit?: number | undefined;
156
+ order?: "asc" | "desc" | undefined;
157
+ response_format?: "markdown" | "json" | undefined;
158
+ }>;
159
+ export declare const SearchVectorStoreSchema: z.ZodObject<{
160
+ vector_store_id: z.ZodString;
161
+ query: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
162
+ max_num_results: z.ZodDefault<z.ZodNumber>;
163
+ rewrite_query: z.ZodDefault<z.ZodBoolean>;
164
+ filters: z.ZodOptional<z.ZodObject<{
165
+ type: z.ZodUnion<[z.ZodLiteral<"eq">, z.ZodLiteral<"ne">, z.ZodLiteral<"gt">, z.ZodLiteral<"gte">, z.ZodLiteral<"lt">, z.ZodLiteral<"lte">, z.ZodLiteral<"in">, z.ZodLiteral<"nin">]>;
166
+ key: z.ZodString;
167
+ value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>;
168
+ }, "strip", z.ZodTypeAny, {
169
+ value: string | number | boolean | string[];
170
+ type: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "in" | "nin";
171
+ key: string;
172
+ }, {
173
+ value: string | number | boolean | string[];
174
+ type: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "in" | "nin";
175
+ key: string;
176
+ }>>;
177
+ response_format: z.ZodDefault<z.ZodNativeEnum<{
178
+ readonly MARKDOWN: "markdown";
179
+ readonly JSON: "json";
180
+ }>>;
181
+ }, "strip", z.ZodTypeAny, {
182
+ vector_store_id: string;
183
+ response_format: "markdown" | "json";
184
+ query: string | string[];
185
+ max_num_results: number;
186
+ rewrite_query: boolean;
187
+ filters?: {
188
+ value: string | number | boolean | string[];
189
+ type: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "in" | "nin";
190
+ key: string;
191
+ } | undefined;
192
+ }, {
193
+ vector_store_id: string;
194
+ query: string | string[];
195
+ response_format?: "markdown" | "json" | undefined;
196
+ max_num_results?: number | undefined;
197
+ rewrite_query?: boolean | undefined;
198
+ filters?: {
199
+ value: string | number | boolean | string[];
200
+ type: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "in" | "nin";
201
+ key: string;
202
+ } | undefined;
203
+ }>;
204
+ export declare const ListFilesSchema: z.ZodObject<{
205
+ after: z.ZodOptional<z.ZodString>;
206
+ limit: z.ZodDefault<z.ZodNumber>;
207
+ order: z.ZodDefault<z.ZodNativeEnum<{
208
+ readonly ASC: "asc";
209
+ readonly DESC: "desc";
210
+ }>>;
211
+ purpose: z.ZodOptional<z.ZodString>;
212
+ response_format: z.ZodDefault<z.ZodNativeEnum<{
213
+ readonly MARKDOWN: "markdown";
214
+ readonly JSON: "json";
215
+ }>>;
216
+ }, "strict", z.ZodTypeAny, {
217
+ limit: number;
218
+ order: "asc" | "desc";
219
+ response_format: "markdown" | "json";
220
+ after?: string | undefined;
221
+ purpose?: string | undefined;
222
+ }, {
223
+ after?: string | undefined;
224
+ limit?: number | undefined;
225
+ order?: "asc" | "desc" | undefined;
226
+ response_format?: "markdown" | "json" | undefined;
227
+ purpose?: string | undefined;
228
+ }>;
229
+ export declare const RetrieveFileSchema: z.ZodObject<{
230
+ file_id: z.ZodString;
231
+ }, "strip", z.ZodTypeAny, {
232
+ file_id: string;
233
+ }, {
234
+ file_id: string;
235
+ }>;
236
+ export declare const DeleteFileSchema: z.ZodObject<{
237
+ file_id: z.ZodString;
238
+ }, "strip", z.ZodTypeAny, {
239
+ file_id: string;
240
+ }, {
241
+ file_id: string;
242
+ }>;
243
+ export declare const RetrieveFileContentSchema: z.ZodObject<{
244
+ file_id: z.ZodString;
245
+ }, "strip", z.ZodTypeAny, {
246
+ file_id: string;
247
+ }, {
248
+ file_id: string;
249
+ }>;
250
+ export declare const CreateVectorStoreFileSchema: z.ZodObject<{
251
+ vector_store_id: z.ZodString;
252
+ file_id: z.ZodString;
253
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
254
+ chunking_strategy: z.ZodOptional<z.ZodObject<{
255
+ type: z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"static">]>;
256
+ static: z.ZodOptional<z.ZodObject<{
257
+ max_chunk_size_tokens: z.ZodDefault<z.ZodNumber>;
258
+ chunk_overlap_tokens: z.ZodDefault<z.ZodNumber>;
259
+ }, "strip", z.ZodTypeAny, {
260
+ max_chunk_size_tokens: number;
261
+ chunk_overlap_tokens: number;
262
+ }, {
263
+ max_chunk_size_tokens?: number | undefined;
264
+ chunk_overlap_tokens?: number | undefined;
265
+ }>>;
266
+ }, "strip", z.ZodTypeAny, {
267
+ type: "auto" | "static";
268
+ static?: {
269
+ max_chunk_size_tokens: number;
270
+ chunk_overlap_tokens: number;
271
+ } | undefined;
272
+ }, {
273
+ type: "auto" | "static";
274
+ static?: {
275
+ max_chunk_size_tokens?: number | undefined;
276
+ chunk_overlap_tokens?: number | undefined;
277
+ } | undefined;
278
+ }>>;
279
+ }, "strip", z.ZodTypeAny, {
280
+ vector_store_id: string;
281
+ file_id: string;
282
+ chunking_strategy?: {
283
+ type: "auto" | "static";
284
+ static?: {
285
+ max_chunk_size_tokens: number;
286
+ chunk_overlap_tokens: number;
287
+ } | undefined;
288
+ } | undefined;
289
+ attributes?: Record<string, string | number | boolean> | undefined;
290
+ }, {
291
+ vector_store_id: string;
292
+ file_id: string;
293
+ chunking_strategy?: {
294
+ type: "auto" | "static";
295
+ static?: {
296
+ max_chunk_size_tokens?: number | undefined;
297
+ chunk_overlap_tokens?: number | undefined;
298
+ } | undefined;
299
+ } | undefined;
300
+ attributes?: Record<string, string | number | boolean> | undefined;
301
+ }>;
302
+ export declare const ListVectorStoreFilesSchema: z.ZodObject<{
303
+ vector_store_id: z.ZodString;
304
+ after: z.ZodOptional<z.ZodString>;
305
+ before: z.ZodOptional<z.ZodString>;
306
+ filter: z.ZodOptional<z.ZodNativeEnum<{
307
+ readonly IN_PROGRESS: "in_progress";
308
+ readonly COMPLETED: "completed";
309
+ readonly FAILED: "failed";
310
+ readonly CANCELLED: "cancelled";
311
+ }>>;
312
+ limit: z.ZodDefault<z.ZodNumber>;
313
+ order: z.ZodDefault<z.ZodNativeEnum<{
314
+ readonly ASC: "asc";
315
+ readonly DESC: "desc";
316
+ }>>;
317
+ response_format: z.ZodDefault<z.ZodNativeEnum<{
318
+ readonly MARKDOWN: "markdown";
319
+ readonly JSON: "json";
320
+ }>>;
321
+ }, "strict", z.ZodTypeAny, {
322
+ vector_store_id: string;
323
+ limit: number;
324
+ order: "asc" | "desc";
325
+ response_format: "markdown" | "json";
326
+ filter?: "in_progress" | "completed" | "failed" | "cancelled" | undefined;
327
+ after?: string | undefined;
328
+ before?: string | undefined;
329
+ }, {
330
+ vector_store_id: string;
331
+ filter?: "in_progress" | "completed" | "failed" | "cancelled" | undefined;
332
+ after?: string | undefined;
333
+ before?: string | undefined;
334
+ limit?: number | undefined;
335
+ order?: "asc" | "desc" | undefined;
336
+ response_format?: "markdown" | "json" | undefined;
337
+ }>;
338
+ export declare const RetrieveVectorStoreFileSchema: z.ZodObject<{
339
+ vector_store_id: z.ZodString;
340
+ file_id: z.ZodString;
341
+ }, "strip", z.ZodTypeAny, {
342
+ vector_store_id: string;
343
+ file_id: string;
344
+ }, {
345
+ vector_store_id: string;
346
+ file_id: string;
347
+ }>;
348
+ export declare const DeleteVectorStoreFileSchema: z.ZodObject<{
349
+ vector_store_id: z.ZodString;
350
+ file_id: z.ZodString;
351
+ }, "strip", z.ZodTypeAny, {
352
+ vector_store_id: string;
353
+ file_id: string;
354
+ }, {
355
+ vector_store_id: string;
356
+ file_id: string;
357
+ }>;
358
+ export declare const RetrieveVectorStoreFileContentSchema: z.ZodObject<{
359
+ vector_store_id: z.ZodString;
360
+ file_id: z.ZodString;
361
+ }, "strip", z.ZodTypeAny, {
362
+ vector_store_id: string;
363
+ file_id: string;
364
+ }, {
365
+ vector_store_id: string;
366
+ file_id: string;
367
+ }>;
368
+ export declare const UpdateVectorStoreFileAttributesSchema: z.ZodObject<{
369
+ vector_store_id: z.ZodString;
370
+ file_id: z.ZodString;
371
+ attributes: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
372
+ }, "strip", z.ZodTypeAny, {
373
+ vector_store_id: string;
374
+ file_id: string;
375
+ attributes: Record<string, string | number | boolean> | null;
376
+ }, {
377
+ vector_store_id: string;
378
+ file_id: string;
379
+ attributes: Record<string, string | number | boolean> | null;
380
+ }>;
381
+ export declare const CreateVectorStoreFileBatchSchema: z.ZodObject<{
382
+ vector_store_id: z.ZodString;
383
+ file_ids: z.ZodArray<z.ZodString, "many">;
384
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
385
+ chunking_strategy: z.ZodOptional<z.ZodObject<{
386
+ type: z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"static">]>;
387
+ static: z.ZodOptional<z.ZodObject<{
388
+ max_chunk_size_tokens: z.ZodDefault<z.ZodNumber>;
389
+ chunk_overlap_tokens: z.ZodDefault<z.ZodNumber>;
390
+ }, "strip", z.ZodTypeAny, {
391
+ max_chunk_size_tokens: number;
392
+ chunk_overlap_tokens: number;
393
+ }, {
394
+ max_chunk_size_tokens?: number | undefined;
395
+ chunk_overlap_tokens?: number | undefined;
396
+ }>>;
397
+ }, "strip", z.ZodTypeAny, {
398
+ type: "auto" | "static";
399
+ static?: {
400
+ max_chunk_size_tokens: number;
401
+ chunk_overlap_tokens: number;
402
+ } | undefined;
403
+ }, {
404
+ type: "auto" | "static";
405
+ static?: {
406
+ max_chunk_size_tokens?: number | undefined;
407
+ chunk_overlap_tokens?: number | undefined;
408
+ } | undefined;
409
+ }>>;
410
+ }, "strip", z.ZodTypeAny, {
411
+ file_ids: string[];
412
+ vector_store_id: string;
413
+ chunking_strategy?: {
414
+ type: "auto" | "static";
415
+ static?: {
416
+ max_chunk_size_tokens: number;
417
+ chunk_overlap_tokens: number;
418
+ } | undefined;
419
+ } | undefined;
420
+ attributes?: Record<string, string | number | boolean> | undefined;
421
+ }, {
422
+ file_ids: string[];
423
+ vector_store_id: string;
424
+ chunking_strategy?: {
425
+ type: "auto" | "static";
426
+ static?: {
427
+ max_chunk_size_tokens?: number | undefined;
428
+ chunk_overlap_tokens?: number | undefined;
429
+ } | undefined;
430
+ } | undefined;
431
+ attributes?: Record<string, string | number | boolean> | undefined;
432
+ }>;
433
+ export declare const RetrieveVectorStoreFileBatchSchema: z.ZodObject<{
434
+ vector_store_id: z.ZodString;
435
+ batch_id: z.ZodString;
436
+ }, "strip", z.ZodTypeAny, {
437
+ vector_store_id: string;
438
+ batch_id: string;
439
+ }, {
440
+ vector_store_id: string;
441
+ batch_id: string;
442
+ }>;
443
+ export declare const CancelVectorStoreFileBatchSchema: z.ZodObject<{
444
+ vector_store_id: z.ZodString;
445
+ batch_id: z.ZodString;
446
+ }, "strip", z.ZodTypeAny, {
447
+ vector_store_id: string;
448
+ batch_id: string;
449
+ }, {
450
+ vector_store_id: string;
451
+ batch_id: string;
452
+ }>;
453
+ export declare const ListVectorStoreFileBatchFilesSchema: z.ZodObject<{
454
+ vector_store_id: z.ZodString;
455
+ batch_id: z.ZodString;
456
+ after: z.ZodOptional<z.ZodString>;
457
+ before: z.ZodOptional<z.ZodString>;
458
+ filter: z.ZodOptional<z.ZodNativeEnum<{
459
+ readonly IN_PROGRESS: "in_progress";
460
+ readonly COMPLETED: "completed";
461
+ readonly FAILED: "failed";
462
+ readonly CANCELLED: "cancelled";
463
+ }>>;
464
+ limit: z.ZodDefault<z.ZodNumber>;
465
+ order: z.ZodDefault<z.ZodNativeEnum<{
466
+ readonly ASC: "asc";
467
+ readonly DESC: "desc";
468
+ }>>;
469
+ response_format: z.ZodDefault<z.ZodNativeEnum<{
470
+ readonly MARKDOWN: "markdown";
471
+ readonly JSON: "json";
472
+ }>>;
473
+ }, "strict", z.ZodTypeAny, {
474
+ vector_store_id: string;
475
+ limit: number;
476
+ order: "asc" | "desc";
477
+ response_format: "markdown" | "json";
478
+ batch_id: string;
479
+ filter?: "in_progress" | "completed" | "failed" | "cancelled" | undefined;
480
+ after?: string | undefined;
481
+ before?: string | undefined;
482
+ }, {
483
+ vector_store_id: string;
484
+ batch_id: string;
485
+ filter?: "in_progress" | "completed" | "failed" | "cancelled" | undefined;
486
+ after?: string | undefined;
487
+ before?: string | undefined;
488
+ limit?: number | undefined;
489
+ order?: "asc" | "desc" | undefined;
490
+ response_format?: "markdown" | "json" | undefined;
491
+ }>;
492
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,cAAc;;;CAGjB,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAElF,eAAO,MAAM,SAAS;;;CAGZ,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEnE,eAAO,MAAM,UAAU;;;;;CAKb,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,CAAC,OAAO,UAAU,CAAC,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC;AAMtE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmClC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAclC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;EAEpC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;EAElC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;EA0BxB,CAAC;AAEZ,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuClC,CAAC;AAMH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;EAoBjB,CAAC;AAEZ,eAAO,MAAM,kBAAkB;;;;;;EAE7B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;EAE3B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;EAEpC,CAAC;AAMH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBtC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyB5B,CAAC;AAEZ,eAAO,MAAM,6BAA6B;;;;;;;;;EAGxC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;EAGtC,CAAC;AAEH,eAAO,MAAM,oCAAoC;;;;;;;;;EAG/C,CAAC;AAEH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;EAOhD,CAAC;AAMH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB3C,CAAC;AAEH,eAAO,MAAM,kCAAkC;;;;;;;;;EAG7C,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;EAG3C,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BrC,CAAC"}