@kickflow/mcp-server 0.1.0 → 0.1.3

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.
@@ -15,19 +15,11 @@ import { z as zod } from 'zod';
15
15
  * @summary 添付ファイルをアップロード
16
16
  */
17
17
  export declare const uploadFileBody: zod.ZodObject<{
18
- file: zod.ZodOptional<zod.ZodType<File, zod.ZodTypeDef, File>>;
19
- }, "strip", zod.ZodTypeAny, {
20
- file?: File | undefined;
21
- }, {
22
- file?: File | undefined;
23
- }>;
18
+ file: zod.ZodOptional<zod.ZodCustom<File, File>>;
19
+ }, zod.core.$strip>;
24
20
  export declare const uploadFileResponse: zod.ZodObject<{
25
21
  signedId: zod.ZodString;
26
- }, "strip", zod.ZodTypeAny, {
27
- signedId: string;
28
- }, {
29
- signedId: string;
30
- }>;
22
+ }, zod.core.$strip>;
31
23
  /**
32
24
  * 添付ファイルのAmazon S3上のURLを含む情報を取得します。
33
25
 
@@ -43,18 +35,4 @@ export declare const getFileResponse: zod.ZodObject<{
43
35
  byteSize: zod.ZodNumber;
44
36
  contentType: zod.ZodString;
45
37
  createdAt: zod.ZodString;
46
- }, "strip", zod.ZodTypeAny, {
47
- filename: string;
48
- url: string;
49
- createdAt: string;
50
- checksum: string;
51
- byteSize: number;
52
- contentType: string;
53
- }, {
54
- filename: string;
55
- url: string;
56
- createdAt: string;
57
- checksum: string;
58
- byteSize: number;
59
- contentType: string;
60
- }>;
38
+ }, zod.core.$strip>;
@@ -18,15 +18,7 @@ export declare const listFoldersQueryParams: zod.ZodObject<{
18
18
  page: zod.ZodDefault<zod.ZodNumber>;
19
19
  perPage: zod.ZodDefault<zod.ZodNumber>;
20
20
  sortBy: zod.ZodOptional<zod.ZodString>;
21
- }, "strip", zod.ZodTypeAny, {
22
- page: number;
23
- perPage: number;
24
- sortBy?: string | undefined;
25
- }, {
26
- page?: number | undefined;
27
- perPage?: number | undefined;
28
- sortBy?: string | undefined;
29
- }>;
21
+ }, zod.core.$strip>;
30
22
  export declare const listFoldersResponseNameMax = 255;
31
23
  export declare const listFoldersResponseCodeMax = 255;
32
24
  export declare const listFoldersResponseWorkflowsCountMin = 0;
@@ -42,27 +34,7 @@ export declare const listFoldersResponseItem: zod.ZodObject<{
42
34
  pipelinesCount: zod.ZodNumber;
43
35
  createdAt: zod.ZodString;
44
36
  updatedAt: zod.ZodString;
45
- }, "strip", zod.ZodTypeAny, {
46
- code: string;
47
- name: string;
48
- id: string;
49
- createdAt: string;
50
- updatedAt: string;
51
- workflowsCount: number;
52
- routesCount: number;
53
- pipelinesCount: number;
54
- description?: string | null | undefined;
55
- }, {
56
- code: string;
57
- name: string;
58
- id: string;
59
- createdAt: string;
60
- updatedAt: string;
61
- workflowsCount: number;
62
- routesCount: number;
63
- pipelinesCount: number;
64
- description?: string | null | undefined;
65
- }>;
37
+ }, zod.core.$strip>;
66
38
  export declare const listFoldersResponse: zod.ZodArray<zod.ZodObject<{
67
39
  id: zod.ZodString;
68
40
  name: zod.ZodString;
@@ -73,27 +45,7 @@ export declare const listFoldersResponse: zod.ZodArray<zod.ZodObject<{
73
45
  pipelinesCount: zod.ZodNumber;
74
46
  createdAt: zod.ZodString;
75
47
  updatedAt: zod.ZodString;
76
- }, "strip", zod.ZodTypeAny, {
77
- code: string;
78
- name: string;
79
- id: string;
80
- createdAt: string;
81
- updatedAt: string;
82
- workflowsCount: number;
83
- routesCount: number;
84
- pipelinesCount: number;
85
- description?: string | null | undefined;
86
- }, {
87
- code: string;
88
- name: string;
89
- id: string;
90
- createdAt: string;
91
- updatedAt: string;
92
- workflowsCount: number;
93
- routesCount: number;
94
- pipelinesCount: number;
95
- description?: string | null | undefined;
96
- }>, "many">;
48
+ }, zod.core.$strip>>;
97
49
  /**
98
50
  * フォルダを作成します。
99
51
 
@@ -105,17 +57,7 @@ export declare const createFolderBody: zod.ZodObject<{
105
57
  code: zod.ZodOptional<zod.ZodString>;
106
58
  description: zod.ZodOptional<zod.ZodString>;
107
59
  parentFolderId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
108
- }, "strip", zod.ZodTypeAny, {
109
- name: string;
110
- code?: string | undefined;
111
- description?: string | undefined;
112
- parentFolderId?: string | null | undefined;
113
- }, {
114
- name: string;
115
- code?: string | undefined;
116
- description?: string | undefined;
117
- parentFolderId?: string | null | undefined;
118
- }>;
60
+ }, zod.core.$strip>;
119
61
  export declare const createFolderResponseNameMax = 255;
120
62
  export declare const createFolderResponseCodeMax = 255;
121
63
  export declare const createFolderResponseWorkflowsCountMin = 0;
@@ -141,27 +83,7 @@ export declare const createFolderResponse: zod.ZodIntersection<zod.ZodObject<{
141
83
  pipelinesCount: zod.ZodNumber;
142
84
  createdAt: zod.ZodString;
143
85
  updatedAt: zod.ZodString;
144
- }, "strip", zod.ZodTypeAny, {
145
- code: string;
146
- name: string;
147
- id: string;
148
- createdAt: string;
149
- updatedAt: string;
150
- workflowsCount: number;
151
- routesCount: number;
152
- pipelinesCount: number;
153
- description?: string | null | undefined;
154
- }, {
155
- code: string;
156
- name: string;
157
- id: string;
158
- createdAt: string;
159
- updatedAt: string;
160
- workflowsCount: number;
161
- routesCount: number;
162
- pipelinesCount: number;
163
- description?: string | null | undefined;
164
- }>, zod.ZodObject<{
86
+ }, zod.core.$strip>, zod.ZodObject<{
165
87
  ancestors: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
166
88
  id: zod.ZodString;
167
89
  name: zod.ZodString;
@@ -172,27 +94,7 @@ export declare const createFolderResponse: zod.ZodIntersection<zod.ZodObject<{
172
94
  pipelinesCount: zod.ZodNumber;
173
95
  createdAt: zod.ZodString;
174
96
  updatedAt: zod.ZodString;
175
- }, "strip", zod.ZodTypeAny, {
176
- code: string;
177
- name: string;
178
- id: string;
179
- createdAt: string;
180
- updatedAt: string;
181
- workflowsCount: number;
182
- routesCount: number;
183
- pipelinesCount: number;
184
- description?: string | null | undefined;
185
- }, {
186
- code: string;
187
- name: string;
188
- id: string;
189
- createdAt: string;
190
- updatedAt: string;
191
- workflowsCount: number;
192
- routesCount: number;
193
- pipelinesCount: number;
194
- description?: string | null | undefined;
195
- }>, "many">>;
97
+ }, zod.core.$strip>>>;
196
98
  children: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
197
99
  id: zod.ZodString;
198
100
  name: zod.ZodString;
@@ -203,74 +105,8 @@ export declare const createFolderResponse: zod.ZodIntersection<zod.ZodObject<{
203
105
  pipelinesCount: zod.ZodNumber;
204
106
  createdAt: zod.ZodString;
205
107
  updatedAt: zod.ZodString;
206
- }, "strip", zod.ZodTypeAny, {
207
- code: string;
208
- name: string;
209
- id: string;
210
- createdAt: string;
211
- updatedAt: string;
212
- workflowsCount: number;
213
- routesCount: number;
214
- pipelinesCount: number;
215
- description?: string | null | undefined;
216
- }, {
217
- code: string;
218
- name: string;
219
- id: string;
220
- createdAt: string;
221
- updatedAt: string;
222
- workflowsCount: number;
223
- routesCount: number;
224
- pipelinesCount: number;
225
- description?: string | null | undefined;
226
- }>, "many">>;
227
- }, "strip", zod.ZodTypeAny, {
228
- children?: {
229
- code: string;
230
- name: string;
231
- id: string;
232
- createdAt: string;
233
- updatedAt: string;
234
- workflowsCount: number;
235
- routesCount: number;
236
- pipelinesCount: number;
237
- description?: string | null | undefined;
238
- }[] | undefined;
239
- ancestors?: {
240
- code: string;
241
- name: string;
242
- id: string;
243
- createdAt: string;
244
- updatedAt: string;
245
- workflowsCount: number;
246
- routesCount: number;
247
- pipelinesCount: number;
248
- description?: string | null | undefined;
249
- }[] | undefined;
250
- }, {
251
- children?: {
252
- code: string;
253
- name: string;
254
- id: string;
255
- createdAt: string;
256
- updatedAt: string;
257
- workflowsCount: number;
258
- routesCount: number;
259
- pipelinesCount: number;
260
- description?: string | null | undefined;
261
- }[] | undefined;
262
- ancestors?: {
263
- code: string;
264
- name: string;
265
- id: string;
266
- createdAt: string;
267
- updatedAt: string;
268
- workflowsCount: number;
269
- routesCount: number;
270
- pipelinesCount: number;
271
- description?: string | null | undefined;
272
- }[] | undefined;
273
- }>>;
108
+ }, zod.core.$strip>>>;
109
+ }, zod.core.$strip>>;
274
110
  /**
275
111
  * フォルダを更新します。
276
112
 
@@ -282,17 +118,7 @@ export declare const updateFolderBody: zod.ZodObject<{
282
118
  code: zod.ZodOptional<zod.ZodString>;
283
119
  description: zod.ZodOptional<zod.ZodString>;
284
120
  parentFolderId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
285
- }, "strip", zod.ZodTypeAny, {
286
- code?: string | undefined;
287
- name?: string | undefined;
288
- description?: string | undefined;
289
- parentFolderId?: string | null | undefined;
290
- }, {
291
- code?: string | undefined;
292
- name?: string | undefined;
293
- description?: string | undefined;
294
- parentFolderId?: string | null | undefined;
295
- }>;
121
+ }, zod.core.$strip>;
296
122
  export declare const updateFolderResponseNameMax = 255;
297
123
  export declare const updateFolderResponseCodeMax = 255;
298
124
  export declare const updateFolderResponseWorkflowsCountMin = 0;
@@ -318,27 +144,7 @@ export declare const updateFolderResponse: zod.ZodIntersection<zod.ZodObject<{
318
144
  pipelinesCount: zod.ZodNumber;
319
145
  createdAt: zod.ZodString;
320
146
  updatedAt: zod.ZodString;
321
- }, "strip", zod.ZodTypeAny, {
322
- code: string;
323
- name: string;
324
- id: string;
325
- createdAt: string;
326
- updatedAt: string;
327
- workflowsCount: number;
328
- routesCount: number;
329
- pipelinesCount: number;
330
- description?: string | null | undefined;
331
- }, {
332
- code: string;
333
- name: string;
334
- id: string;
335
- createdAt: string;
336
- updatedAt: string;
337
- workflowsCount: number;
338
- routesCount: number;
339
- pipelinesCount: number;
340
- description?: string | null | undefined;
341
- }>, zod.ZodObject<{
147
+ }, zod.core.$strip>, zod.ZodObject<{
342
148
  ancestors: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
343
149
  id: zod.ZodString;
344
150
  name: zod.ZodString;
@@ -349,27 +155,7 @@ export declare const updateFolderResponse: zod.ZodIntersection<zod.ZodObject<{
349
155
  pipelinesCount: zod.ZodNumber;
350
156
  createdAt: zod.ZodString;
351
157
  updatedAt: zod.ZodString;
352
- }, "strip", zod.ZodTypeAny, {
353
- code: string;
354
- name: string;
355
- id: string;
356
- createdAt: string;
357
- updatedAt: string;
358
- workflowsCount: number;
359
- routesCount: number;
360
- pipelinesCount: number;
361
- description?: string | null | undefined;
362
- }, {
363
- code: string;
364
- name: string;
365
- id: string;
366
- createdAt: string;
367
- updatedAt: string;
368
- workflowsCount: number;
369
- routesCount: number;
370
- pipelinesCount: number;
371
- description?: string | null | undefined;
372
- }>, "many">>;
158
+ }, zod.core.$strip>>>;
373
159
  children: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
374
160
  id: zod.ZodString;
375
161
  name: zod.ZodString;
@@ -380,74 +166,8 @@ export declare const updateFolderResponse: zod.ZodIntersection<zod.ZodObject<{
380
166
  pipelinesCount: zod.ZodNumber;
381
167
  createdAt: zod.ZodString;
382
168
  updatedAt: zod.ZodString;
383
- }, "strip", zod.ZodTypeAny, {
384
- code: string;
385
- name: string;
386
- id: string;
387
- createdAt: string;
388
- updatedAt: string;
389
- workflowsCount: number;
390
- routesCount: number;
391
- pipelinesCount: number;
392
- description?: string | null | undefined;
393
- }, {
394
- code: string;
395
- name: string;
396
- id: string;
397
- createdAt: string;
398
- updatedAt: string;
399
- workflowsCount: number;
400
- routesCount: number;
401
- pipelinesCount: number;
402
- description?: string | null | undefined;
403
- }>, "many">>;
404
- }, "strip", zod.ZodTypeAny, {
405
- children?: {
406
- code: string;
407
- name: string;
408
- id: string;
409
- createdAt: string;
410
- updatedAt: string;
411
- workflowsCount: number;
412
- routesCount: number;
413
- pipelinesCount: number;
414
- description?: string | null | undefined;
415
- }[] | undefined;
416
- ancestors?: {
417
- code: string;
418
- name: string;
419
- id: string;
420
- createdAt: string;
421
- updatedAt: string;
422
- workflowsCount: number;
423
- routesCount: number;
424
- pipelinesCount: number;
425
- description?: string | null | undefined;
426
- }[] | undefined;
427
- }, {
428
- children?: {
429
- code: string;
430
- name: string;
431
- id: string;
432
- createdAt: string;
433
- updatedAt: string;
434
- workflowsCount: number;
435
- routesCount: number;
436
- pipelinesCount: number;
437
- description?: string | null | undefined;
438
- }[] | undefined;
439
- ancestors?: {
440
- code: string;
441
- name: string;
442
- id: string;
443
- createdAt: string;
444
- updatedAt: string;
445
- workflowsCount: number;
446
- routesCount: number;
447
- pipelinesCount: number;
448
- description?: string | null | undefined;
449
- }[] | undefined;
450
- }>>;
169
+ }, zod.core.$strip>>>;
170
+ }, zod.core.$strip>>;
451
171
  /**
452
172
  * フォルダを一件取得します。
453
173
  * @summary フォルダを取得
@@ -477,27 +197,7 @@ export declare const getFolderResponse: zod.ZodIntersection<zod.ZodObject<{
477
197
  pipelinesCount: zod.ZodNumber;
478
198
  createdAt: zod.ZodString;
479
199
  updatedAt: zod.ZodString;
480
- }, "strip", zod.ZodTypeAny, {
481
- code: string;
482
- name: string;
483
- id: string;
484
- createdAt: string;
485
- updatedAt: string;
486
- workflowsCount: number;
487
- routesCount: number;
488
- pipelinesCount: number;
489
- description?: string | null | undefined;
490
- }, {
491
- code: string;
492
- name: string;
493
- id: string;
494
- createdAt: string;
495
- updatedAt: string;
496
- workflowsCount: number;
497
- routesCount: number;
498
- pipelinesCount: number;
499
- description?: string | null | undefined;
500
- }>, zod.ZodObject<{
200
+ }, zod.core.$strip>, zod.ZodObject<{
501
201
  ancestors: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
502
202
  id: zod.ZodString;
503
203
  name: zod.ZodString;
@@ -508,27 +208,7 @@ export declare const getFolderResponse: zod.ZodIntersection<zod.ZodObject<{
508
208
  pipelinesCount: zod.ZodNumber;
509
209
  createdAt: zod.ZodString;
510
210
  updatedAt: zod.ZodString;
511
- }, "strip", zod.ZodTypeAny, {
512
- code: string;
513
- name: string;
514
- id: string;
515
- createdAt: string;
516
- updatedAt: string;
517
- workflowsCount: number;
518
- routesCount: number;
519
- pipelinesCount: number;
520
- description?: string | null | undefined;
521
- }, {
522
- code: string;
523
- name: string;
524
- id: string;
525
- createdAt: string;
526
- updatedAt: string;
527
- workflowsCount: number;
528
- routesCount: number;
529
- pipelinesCount: number;
530
- description?: string | null | undefined;
531
- }>, "many">>;
211
+ }, zod.core.$strip>>>;
532
212
  children: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
533
213
  id: zod.ZodString;
534
214
  name: zod.ZodString;
@@ -539,71 +219,5 @@ export declare const getFolderResponse: zod.ZodIntersection<zod.ZodObject<{
539
219
  pipelinesCount: zod.ZodNumber;
540
220
  createdAt: zod.ZodString;
541
221
  updatedAt: zod.ZodString;
542
- }, "strip", zod.ZodTypeAny, {
543
- code: string;
544
- name: string;
545
- id: string;
546
- createdAt: string;
547
- updatedAt: string;
548
- workflowsCount: number;
549
- routesCount: number;
550
- pipelinesCount: number;
551
- description?: string | null | undefined;
552
- }, {
553
- code: string;
554
- name: string;
555
- id: string;
556
- createdAt: string;
557
- updatedAt: string;
558
- workflowsCount: number;
559
- routesCount: number;
560
- pipelinesCount: number;
561
- description?: string | null | undefined;
562
- }>, "many">>;
563
- }, "strip", zod.ZodTypeAny, {
564
- children?: {
565
- code: string;
566
- name: string;
567
- id: string;
568
- createdAt: string;
569
- updatedAt: string;
570
- workflowsCount: number;
571
- routesCount: number;
572
- pipelinesCount: number;
573
- description?: string | null | undefined;
574
- }[] | undefined;
575
- ancestors?: {
576
- code: string;
577
- name: string;
578
- id: string;
579
- createdAt: string;
580
- updatedAt: string;
581
- workflowsCount: number;
582
- routesCount: number;
583
- pipelinesCount: number;
584
- description?: string | null | undefined;
585
- }[] | undefined;
586
- }, {
587
- children?: {
588
- code: string;
589
- name: string;
590
- id: string;
591
- createdAt: string;
592
- updatedAt: string;
593
- workflowsCount: number;
594
- routesCount: number;
595
- pipelinesCount: number;
596
- description?: string | null | undefined;
597
- }[] | undefined;
598
- ancestors?: {
599
- code: string;
600
- name: string;
601
- id: string;
602
- createdAt: string;
603
- updatedAt: string;
604
- workflowsCount: number;
605
- routesCount: number;
606
- pipelinesCount: number;
607
- description?: string | null | undefined;
608
- }[] | undefined;
609
- }>>;
222
+ }, zod.core.$strip>>>;
223
+ }, zod.core.$strip>>;