@kickflow/mcp-server 0.1.1 → 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.
@@ -18,15 +18,7 @@ export declare const listCommentsQueryParams: 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 listCommentsResponseUserEmailMax = 255;
31
23
  export declare const listCommentsResponseUserCodeMax = 255;
32
24
  export declare const listCommentsResponseUserFirstNameMax = 255;
@@ -46,15 +38,7 @@ export declare const listCommentsResponseItem: zod.ZodObject<{
46
38
  signedId: zod.ZodString;
47
39
  filename: zod.ZodString;
48
40
  url: zod.ZodString;
49
- }, "strip", zod.ZodTypeAny, {
50
- filename: string;
51
- url: string;
52
- signedId: string;
53
- }, {
54
- filename: string;
55
- url: string;
56
- signedId: string;
57
- }>, "many">;
41
+ }, zod.core.$strip>>;
58
42
  createdAt: zod.ZodString;
59
43
  updatedAt: zod.ZodString;
60
44
  deletedAt: zod.ZodNullable<zod.ZodString>;
@@ -70,57 +54,18 @@ export declare const listCommentsResponseItem: zod.ZodObject<{
70
54
  "100x100": zod.ZodNullable<zod.ZodString>;
71
55
  "64x64": zod.ZodNullable<zod.ZodString>;
72
56
  "32x32": zod.ZodNullable<zod.ZodString>;
73
- }, "strip", zod.ZodTypeAny, {
74
- "100x100": string | null;
75
- "64x64": string | null;
76
- "32x32": string | null;
77
- }, {
78
- "100x100": string | null;
79
- "64x64": string | null;
80
- "32x32": string | null;
57
+ }, zod.core.$strip>;
58
+ status: zod.ZodEnum<{
59
+ invited: "invited";
60
+ activated: "activated";
61
+ suspended: "suspended";
62
+ deactivated: "deactivated";
81
63
  }>;
82
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
83
64
  locale: zod.ZodString;
84
65
  createdAt: zod.ZodString;
85
66
  updatedAt: zod.ZodString;
86
67
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
87
- }, "strip", zod.ZodTypeAny, {
88
- code: string;
89
- id: string;
90
- image: {
91
- "100x100": string | null;
92
- "64x64": string | null;
93
- "32x32": string | null;
94
- };
95
- email: string;
96
- status: "suspended" | "activated" | "invited" | "deactivated";
97
- firstName: string;
98
- lastName: string;
99
- fullName: string;
100
- locale: string;
101
- createdAt: string;
102
- updatedAt: string;
103
- employeeId?: string | null | undefined;
104
- deactivatedAt?: string | null | undefined;
105
- }, {
106
- code: string;
107
- id: string;
108
- image: {
109
- "100x100": string | null;
110
- "64x64": string | null;
111
- "32x32": string | null;
112
- };
113
- email: string;
114
- status: "suspended" | "activated" | "invited" | "deactivated";
115
- firstName: string;
116
- lastName: string;
117
- fullName: string;
118
- locale: string;
119
- createdAt: string;
120
- updatedAt: string;
121
- employeeId?: string | null | undefined;
122
- deactivatedAt?: string | null | undefined;
123
- }>;
68
+ }, zod.core.$strip>;
124
69
  mentionedUsers: zod.ZodArray<zod.ZodObject<{
125
70
  id: zod.ZodString;
126
71
  email: zod.ZodString;
@@ -133,156 +78,19 @@ export declare const listCommentsResponseItem: zod.ZodObject<{
133
78
  "100x100": zod.ZodNullable<zod.ZodString>;
134
79
  "64x64": zod.ZodNullable<zod.ZodString>;
135
80
  "32x32": zod.ZodNullable<zod.ZodString>;
136
- }, "strip", zod.ZodTypeAny, {
137
- "100x100": string | null;
138
- "64x64": string | null;
139
- "32x32": string | null;
140
- }, {
141
- "100x100": string | null;
142
- "64x64": string | null;
143
- "32x32": string | null;
81
+ }, zod.core.$strip>;
82
+ status: zod.ZodEnum<{
83
+ invited: "invited";
84
+ activated: "activated";
85
+ suspended: "suspended";
86
+ deactivated: "deactivated";
144
87
  }>;
145
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
146
88
  locale: zod.ZodString;
147
89
  createdAt: zod.ZodString;
148
90
  updatedAt: zod.ZodString;
149
91
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
150
- }, "strip", zod.ZodTypeAny, {
151
- code: string;
152
- id: string;
153
- image: {
154
- "100x100": string | null;
155
- "64x64": string | null;
156
- "32x32": string | null;
157
- };
158
- email: string;
159
- status: "suspended" | "activated" | "invited" | "deactivated";
160
- firstName: string;
161
- lastName: string;
162
- fullName: string;
163
- locale: string;
164
- createdAt: string;
165
- updatedAt: string;
166
- employeeId?: string | null | undefined;
167
- deactivatedAt?: string | null | undefined;
168
- }, {
169
- code: string;
170
- id: string;
171
- image: {
172
- "100x100": string | null;
173
- "64x64": string | null;
174
- "32x32": string | null;
175
- };
176
- email: string;
177
- status: "suspended" | "activated" | "invited" | "deactivated";
178
- firstName: string;
179
- lastName: string;
180
- fullName: string;
181
- locale: string;
182
- createdAt: string;
183
- updatedAt: string;
184
- employeeId?: string | null | undefined;
185
- deactivatedAt?: string | null | undefined;
186
- }>, "many">;
187
- }, "strip", zod.ZodTypeAny, {
188
- id: string;
189
- body: string;
190
- user: {
191
- code: string;
192
- id: string;
193
- image: {
194
- "100x100": string | null;
195
- "64x64": string | null;
196
- "32x32": string | null;
197
- };
198
- email: string;
199
- status: "suspended" | "activated" | "invited" | "deactivated";
200
- firstName: string;
201
- lastName: string;
202
- fullName: string;
203
- locale: string;
204
- createdAt: string;
205
- updatedAt: string;
206
- employeeId?: string | null | undefined;
207
- deactivatedAt?: string | null | undefined;
208
- };
209
- createdAt: string;
210
- updatedAt: string;
211
- attachments: {
212
- filename: string;
213
- url: string;
214
- signedId: string;
215
- }[];
216
- deletedAt: string | null;
217
- mentionedUsers: {
218
- code: string;
219
- id: string;
220
- image: {
221
- "100x100": string | null;
222
- "64x64": string | null;
223
- "32x32": string | null;
224
- };
225
- email: string;
226
- status: "suspended" | "activated" | "invited" | "deactivated";
227
- firstName: string;
228
- lastName: string;
229
- fullName: string;
230
- locale: string;
231
- createdAt: string;
232
- updatedAt: string;
233
- employeeId?: string | null | undefined;
234
- deactivatedAt?: string | null | undefined;
235
- }[];
236
- }, {
237
- id: string;
238
- body: string;
239
- user: {
240
- code: string;
241
- id: string;
242
- image: {
243
- "100x100": string | null;
244
- "64x64": string | null;
245
- "32x32": string | null;
246
- };
247
- email: string;
248
- status: "suspended" | "activated" | "invited" | "deactivated";
249
- firstName: string;
250
- lastName: string;
251
- fullName: string;
252
- locale: string;
253
- createdAt: string;
254
- updatedAt: string;
255
- employeeId?: string | null | undefined;
256
- deactivatedAt?: string | null | undefined;
257
- };
258
- createdAt: string;
259
- updatedAt: string;
260
- attachments: {
261
- filename: string;
262
- url: string;
263
- signedId: string;
264
- }[];
265
- deletedAt: string | null;
266
- mentionedUsers: {
267
- code: string;
268
- id: string;
269
- image: {
270
- "100x100": string | null;
271
- "64x64": string | null;
272
- "32x32": string | null;
273
- };
274
- email: string;
275
- status: "suspended" | "activated" | "invited" | "deactivated";
276
- firstName: string;
277
- lastName: string;
278
- fullName: string;
279
- locale: string;
280
- createdAt: string;
281
- updatedAt: string;
282
- employeeId?: string | null | undefined;
283
- deactivatedAt?: string | null | undefined;
284
- }[];
285
- }>;
92
+ }, zod.core.$strip>>;
93
+ }, zod.core.$strip>;
286
94
  export declare const listCommentsResponse: zod.ZodArray<zod.ZodObject<{
287
95
  id: zod.ZodString;
288
96
  body: zod.ZodString;
@@ -290,15 +98,7 @@ export declare const listCommentsResponse: zod.ZodArray<zod.ZodObject<{
290
98
  signedId: zod.ZodString;
291
99
  filename: zod.ZodString;
292
100
  url: zod.ZodString;
293
- }, "strip", zod.ZodTypeAny, {
294
- filename: string;
295
- url: string;
296
- signedId: string;
297
- }, {
298
- filename: string;
299
- url: string;
300
- signedId: string;
301
- }>, "many">;
101
+ }, zod.core.$strip>>;
302
102
  createdAt: zod.ZodString;
303
103
  updatedAt: zod.ZodString;
304
104
  deletedAt: zod.ZodNullable<zod.ZodString>;
@@ -314,57 +114,18 @@ export declare const listCommentsResponse: zod.ZodArray<zod.ZodObject<{
314
114
  "100x100": zod.ZodNullable<zod.ZodString>;
315
115
  "64x64": zod.ZodNullable<zod.ZodString>;
316
116
  "32x32": zod.ZodNullable<zod.ZodString>;
317
- }, "strip", zod.ZodTypeAny, {
318
- "100x100": string | null;
319
- "64x64": string | null;
320
- "32x32": string | null;
321
- }, {
322
- "100x100": string | null;
323
- "64x64": string | null;
324
- "32x32": string | null;
117
+ }, zod.core.$strip>;
118
+ status: zod.ZodEnum<{
119
+ invited: "invited";
120
+ activated: "activated";
121
+ suspended: "suspended";
122
+ deactivated: "deactivated";
325
123
  }>;
326
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
327
124
  locale: zod.ZodString;
328
125
  createdAt: zod.ZodString;
329
126
  updatedAt: zod.ZodString;
330
127
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
331
- }, "strip", zod.ZodTypeAny, {
332
- code: string;
333
- id: string;
334
- image: {
335
- "100x100": string | null;
336
- "64x64": string | null;
337
- "32x32": string | null;
338
- };
339
- email: string;
340
- status: "suspended" | "activated" | "invited" | "deactivated";
341
- firstName: string;
342
- lastName: string;
343
- fullName: string;
344
- locale: string;
345
- createdAt: string;
346
- updatedAt: string;
347
- employeeId?: string | null | undefined;
348
- deactivatedAt?: string | null | undefined;
349
- }, {
350
- code: string;
351
- id: string;
352
- image: {
353
- "100x100": string | null;
354
- "64x64": string | null;
355
- "32x32": string | null;
356
- };
357
- email: string;
358
- status: "suspended" | "activated" | "invited" | "deactivated";
359
- firstName: string;
360
- lastName: string;
361
- fullName: string;
362
- locale: string;
363
- createdAt: string;
364
- updatedAt: string;
365
- employeeId?: string | null | undefined;
366
- deactivatedAt?: string | null | undefined;
367
- }>;
128
+ }, zod.core.$strip>;
368
129
  mentionedUsers: zod.ZodArray<zod.ZodObject<{
369
130
  id: zod.ZodString;
370
131
  email: zod.ZodString;
@@ -377,170 +138,27 @@ export declare const listCommentsResponse: zod.ZodArray<zod.ZodObject<{
377
138
  "100x100": zod.ZodNullable<zod.ZodString>;
378
139
  "64x64": zod.ZodNullable<zod.ZodString>;
379
140
  "32x32": zod.ZodNullable<zod.ZodString>;
380
- }, "strip", zod.ZodTypeAny, {
381
- "100x100": string | null;
382
- "64x64": string | null;
383
- "32x32": string | null;
384
- }, {
385
- "100x100": string | null;
386
- "64x64": string | null;
387
- "32x32": string | null;
141
+ }, zod.core.$strip>;
142
+ status: zod.ZodEnum<{
143
+ invited: "invited";
144
+ activated: "activated";
145
+ suspended: "suspended";
146
+ deactivated: "deactivated";
388
147
  }>;
389
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
390
148
  locale: zod.ZodString;
391
149
  createdAt: zod.ZodString;
392
150
  updatedAt: zod.ZodString;
393
151
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
394
- }, "strip", zod.ZodTypeAny, {
395
- code: string;
396
- id: string;
397
- image: {
398
- "100x100": string | null;
399
- "64x64": string | null;
400
- "32x32": string | null;
401
- };
402
- email: string;
403
- status: "suspended" | "activated" | "invited" | "deactivated";
404
- firstName: string;
405
- lastName: string;
406
- fullName: string;
407
- locale: string;
408
- createdAt: string;
409
- updatedAt: string;
410
- employeeId?: string | null | undefined;
411
- deactivatedAt?: string | null | undefined;
412
- }, {
413
- code: string;
414
- id: string;
415
- image: {
416
- "100x100": string | null;
417
- "64x64": string | null;
418
- "32x32": string | null;
419
- };
420
- email: string;
421
- status: "suspended" | "activated" | "invited" | "deactivated";
422
- firstName: string;
423
- lastName: string;
424
- fullName: string;
425
- locale: string;
426
- createdAt: string;
427
- updatedAt: string;
428
- employeeId?: string | null | undefined;
429
- deactivatedAt?: string | null | undefined;
430
- }>, "many">;
431
- }, "strip", zod.ZodTypeAny, {
432
- id: string;
433
- body: string;
434
- user: {
435
- code: string;
436
- id: string;
437
- image: {
438
- "100x100": string | null;
439
- "64x64": string | null;
440
- "32x32": string | null;
441
- };
442
- email: string;
443
- status: "suspended" | "activated" | "invited" | "deactivated";
444
- firstName: string;
445
- lastName: string;
446
- fullName: string;
447
- locale: string;
448
- createdAt: string;
449
- updatedAt: string;
450
- employeeId?: string | null | undefined;
451
- deactivatedAt?: string | null | undefined;
452
- };
453
- createdAt: string;
454
- updatedAt: string;
455
- attachments: {
456
- filename: string;
457
- url: string;
458
- signedId: string;
459
- }[];
460
- deletedAt: string | null;
461
- mentionedUsers: {
462
- code: string;
463
- id: string;
464
- image: {
465
- "100x100": string | null;
466
- "64x64": string | null;
467
- "32x32": string | null;
468
- };
469
- email: string;
470
- status: "suspended" | "activated" | "invited" | "deactivated";
471
- firstName: string;
472
- lastName: string;
473
- fullName: string;
474
- locale: string;
475
- createdAt: string;
476
- updatedAt: string;
477
- employeeId?: string | null | undefined;
478
- deactivatedAt?: string | null | undefined;
479
- }[];
480
- }, {
481
- id: string;
482
- body: string;
483
- user: {
484
- code: string;
485
- id: string;
486
- image: {
487
- "100x100": string | null;
488
- "64x64": string | null;
489
- "32x32": string | null;
490
- };
491
- email: string;
492
- status: "suspended" | "activated" | "invited" | "deactivated";
493
- firstName: string;
494
- lastName: string;
495
- fullName: string;
496
- locale: string;
497
- createdAt: string;
498
- updatedAt: string;
499
- employeeId?: string | null | undefined;
500
- deactivatedAt?: string | null | undefined;
501
- };
502
- createdAt: string;
503
- updatedAt: string;
504
- attachments: {
505
- filename: string;
506
- url: string;
507
- signedId: string;
508
- }[];
509
- deletedAt: string | null;
510
- mentionedUsers: {
511
- code: string;
512
- id: string;
513
- image: {
514
- "100x100": string | null;
515
- "64x64": string | null;
516
- "32x32": string | null;
517
- };
518
- email: string;
519
- status: "suspended" | "activated" | "invited" | "deactivated";
520
- firstName: string;
521
- lastName: string;
522
- fullName: string;
523
- locale: string;
524
- createdAt: string;
525
- updatedAt: string;
526
- employeeId?: string | null | undefined;
527
- deactivatedAt?: string | null | undefined;
528
- }[];
529
- }>, "many">;
152
+ }, zod.core.$strip>>;
153
+ }, zod.core.$strip>>;
530
154
  /**
531
155
  * チケットにコメントを投稿します。
532
156
  * @summary コメントを投稿
533
157
  */
534
158
  export declare const createCommentBody: zod.ZodObject<{
535
159
  body: zod.ZodString;
536
- files: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
537
- }, "strip", zod.ZodTypeAny, {
538
- body: string;
539
- files?: string[] | null | undefined;
540
- }, {
541
- body: string;
542
- files?: string[] | null | undefined;
543
- }>;
160
+ files: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
161
+ }, zod.core.$strip>;
544
162
  export declare const createCommentResponseUserEmailMax = 255;
545
163
  export declare const createCommentResponseUserCodeMax = 255;
546
164
  export declare const createCommentResponseUserFirstNameMax = 255;
@@ -560,15 +178,7 @@ export declare const createCommentResponse: zod.ZodObject<{
560
178
  signedId: zod.ZodString;
561
179
  filename: zod.ZodString;
562
180
  url: zod.ZodString;
563
- }, "strip", zod.ZodTypeAny, {
564
- filename: string;
565
- url: string;
566
- signedId: string;
567
- }, {
568
- filename: string;
569
- url: string;
570
- signedId: string;
571
- }>, "many">;
181
+ }, zod.core.$strip>>;
572
182
  createdAt: zod.ZodString;
573
183
  updatedAt: zod.ZodString;
574
184
  deletedAt: zod.ZodNullable<zod.ZodString>;
@@ -584,57 +194,18 @@ export declare const createCommentResponse: zod.ZodObject<{
584
194
  "100x100": zod.ZodNullable<zod.ZodString>;
585
195
  "64x64": zod.ZodNullable<zod.ZodString>;
586
196
  "32x32": zod.ZodNullable<zod.ZodString>;
587
- }, "strip", zod.ZodTypeAny, {
588
- "100x100": string | null;
589
- "64x64": string | null;
590
- "32x32": string | null;
591
- }, {
592
- "100x100": string | null;
593
- "64x64": string | null;
594
- "32x32": string | null;
197
+ }, zod.core.$strip>;
198
+ status: zod.ZodEnum<{
199
+ invited: "invited";
200
+ activated: "activated";
201
+ suspended: "suspended";
202
+ deactivated: "deactivated";
595
203
  }>;
596
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
597
204
  locale: zod.ZodString;
598
205
  createdAt: zod.ZodString;
599
206
  updatedAt: zod.ZodString;
600
207
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
601
- }, "strip", zod.ZodTypeAny, {
602
- code: string;
603
- id: string;
604
- image: {
605
- "100x100": string | null;
606
- "64x64": string | null;
607
- "32x32": string | null;
608
- };
609
- email: string;
610
- status: "suspended" | "activated" | "invited" | "deactivated";
611
- firstName: string;
612
- lastName: string;
613
- fullName: string;
614
- locale: string;
615
- createdAt: string;
616
- updatedAt: string;
617
- employeeId?: string | null | undefined;
618
- deactivatedAt?: string | null | undefined;
619
- }, {
620
- code: string;
621
- id: string;
622
- image: {
623
- "100x100": string | null;
624
- "64x64": string | null;
625
- "32x32": string | null;
626
- };
627
- email: string;
628
- status: "suspended" | "activated" | "invited" | "deactivated";
629
- firstName: string;
630
- lastName: string;
631
- fullName: string;
632
- locale: string;
633
- createdAt: string;
634
- updatedAt: string;
635
- employeeId?: string | null | undefined;
636
- deactivatedAt?: string | null | undefined;
637
- }>;
208
+ }, zod.core.$strip>;
638
209
  mentionedUsers: zod.ZodArray<zod.ZodObject<{
639
210
  id: zod.ZodString;
640
211
  email: zod.ZodString;
@@ -647,156 +218,19 @@ export declare const createCommentResponse: zod.ZodObject<{
647
218
  "100x100": zod.ZodNullable<zod.ZodString>;
648
219
  "64x64": zod.ZodNullable<zod.ZodString>;
649
220
  "32x32": zod.ZodNullable<zod.ZodString>;
650
- }, "strip", zod.ZodTypeAny, {
651
- "100x100": string | null;
652
- "64x64": string | null;
653
- "32x32": string | null;
654
- }, {
655
- "100x100": string | null;
656
- "64x64": string | null;
657
- "32x32": string | null;
221
+ }, zod.core.$strip>;
222
+ status: zod.ZodEnum<{
223
+ invited: "invited";
224
+ activated: "activated";
225
+ suspended: "suspended";
226
+ deactivated: "deactivated";
658
227
  }>;
659
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
660
228
  locale: zod.ZodString;
661
229
  createdAt: zod.ZodString;
662
230
  updatedAt: zod.ZodString;
663
231
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
664
- }, "strip", zod.ZodTypeAny, {
665
- code: string;
666
- id: string;
667
- image: {
668
- "100x100": string | null;
669
- "64x64": string | null;
670
- "32x32": string | null;
671
- };
672
- email: string;
673
- status: "suspended" | "activated" | "invited" | "deactivated";
674
- firstName: string;
675
- lastName: string;
676
- fullName: string;
677
- locale: string;
678
- createdAt: string;
679
- updatedAt: string;
680
- employeeId?: string | null | undefined;
681
- deactivatedAt?: string | null | undefined;
682
- }, {
683
- code: string;
684
- id: string;
685
- image: {
686
- "100x100": string | null;
687
- "64x64": string | null;
688
- "32x32": string | null;
689
- };
690
- email: string;
691
- status: "suspended" | "activated" | "invited" | "deactivated";
692
- firstName: string;
693
- lastName: string;
694
- fullName: string;
695
- locale: string;
696
- createdAt: string;
697
- updatedAt: string;
698
- employeeId?: string | null | undefined;
699
- deactivatedAt?: string | null | undefined;
700
- }>, "many">;
701
- }, "strip", zod.ZodTypeAny, {
702
- id: string;
703
- body: string;
704
- user: {
705
- code: string;
706
- id: string;
707
- image: {
708
- "100x100": string | null;
709
- "64x64": string | null;
710
- "32x32": string | null;
711
- };
712
- email: string;
713
- status: "suspended" | "activated" | "invited" | "deactivated";
714
- firstName: string;
715
- lastName: string;
716
- fullName: string;
717
- locale: string;
718
- createdAt: string;
719
- updatedAt: string;
720
- employeeId?: string | null | undefined;
721
- deactivatedAt?: string | null | undefined;
722
- };
723
- createdAt: string;
724
- updatedAt: string;
725
- attachments: {
726
- filename: string;
727
- url: string;
728
- signedId: string;
729
- }[];
730
- deletedAt: string | null;
731
- mentionedUsers: {
732
- code: string;
733
- id: string;
734
- image: {
735
- "100x100": string | null;
736
- "64x64": string | null;
737
- "32x32": string | null;
738
- };
739
- email: string;
740
- status: "suspended" | "activated" | "invited" | "deactivated";
741
- firstName: string;
742
- lastName: string;
743
- fullName: string;
744
- locale: string;
745
- createdAt: string;
746
- updatedAt: string;
747
- employeeId?: string | null | undefined;
748
- deactivatedAt?: string | null | undefined;
749
- }[];
750
- }, {
751
- id: string;
752
- body: string;
753
- user: {
754
- code: string;
755
- id: string;
756
- image: {
757
- "100x100": string | null;
758
- "64x64": string | null;
759
- "32x32": string | null;
760
- };
761
- email: string;
762
- status: "suspended" | "activated" | "invited" | "deactivated";
763
- firstName: string;
764
- lastName: string;
765
- fullName: string;
766
- locale: string;
767
- createdAt: string;
768
- updatedAt: string;
769
- employeeId?: string | null | undefined;
770
- deactivatedAt?: string | null | undefined;
771
- };
772
- createdAt: string;
773
- updatedAt: string;
774
- attachments: {
775
- filename: string;
776
- url: string;
777
- signedId: string;
778
- }[];
779
- deletedAt: string | null;
780
- mentionedUsers: {
781
- code: string;
782
- id: string;
783
- image: {
784
- "100x100": string | null;
785
- "64x64": string | null;
786
- "32x32": string | null;
787
- };
788
- email: string;
789
- status: "suspended" | "activated" | "invited" | "deactivated";
790
- firstName: string;
791
- lastName: string;
792
- fullName: string;
793
- locale: string;
794
- createdAt: string;
795
- updatedAt: string;
796
- employeeId?: string | null | undefined;
797
- deactivatedAt?: string | null | undefined;
798
- }[];
799
- }>;
232
+ }, zod.core.$strip>>;
233
+ }, zod.core.$strip>;
800
234
  /**
801
235
  * チケットのコメントを取得します。
802
236
  * @summary コメントを取得
@@ -820,15 +254,7 @@ export declare const getCommentResponse: zod.ZodObject<{
820
254
  signedId: zod.ZodString;
821
255
  filename: zod.ZodString;
822
256
  url: zod.ZodString;
823
- }, "strip", zod.ZodTypeAny, {
824
- filename: string;
825
- url: string;
826
- signedId: string;
827
- }, {
828
- filename: string;
829
- url: string;
830
- signedId: string;
831
- }>, "many">;
257
+ }, zod.core.$strip>>;
832
258
  createdAt: zod.ZodString;
833
259
  updatedAt: zod.ZodString;
834
260
  deletedAt: zod.ZodNullable<zod.ZodString>;
@@ -844,57 +270,18 @@ export declare const getCommentResponse: zod.ZodObject<{
844
270
  "100x100": zod.ZodNullable<zod.ZodString>;
845
271
  "64x64": zod.ZodNullable<zod.ZodString>;
846
272
  "32x32": zod.ZodNullable<zod.ZodString>;
847
- }, "strip", zod.ZodTypeAny, {
848
- "100x100": string | null;
849
- "64x64": string | null;
850
- "32x32": string | null;
851
- }, {
852
- "100x100": string | null;
853
- "64x64": string | null;
854
- "32x32": string | null;
273
+ }, zod.core.$strip>;
274
+ status: zod.ZodEnum<{
275
+ invited: "invited";
276
+ activated: "activated";
277
+ suspended: "suspended";
278
+ deactivated: "deactivated";
855
279
  }>;
856
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
857
280
  locale: zod.ZodString;
858
281
  createdAt: zod.ZodString;
859
282
  updatedAt: zod.ZodString;
860
283
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
861
- }, "strip", zod.ZodTypeAny, {
862
- code: string;
863
- id: string;
864
- image: {
865
- "100x100": string | null;
866
- "64x64": string | null;
867
- "32x32": string | null;
868
- };
869
- email: string;
870
- status: "suspended" | "activated" | "invited" | "deactivated";
871
- firstName: string;
872
- lastName: string;
873
- fullName: string;
874
- locale: string;
875
- createdAt: string;
876
- updatedAt: string;
877
- employeeId?: string | null | undefined;
878
- deactivatedAt?: string | null | undefined;
879
- }, {
880
- code: string;
881
- id: string;
882
- image: {
883
- "100x100": string | null;
884
- "64x64": string | null;
885
- "32x32": string | null;
886
- };
887
- email: string;
888
- status: "suspended" | "activated" | "invited" | "deactivated";
889
- firstName: string;
890
- lastName: string;
891
- fullName: string;
892
- locale: string;
893
- createdAt: string;
894
- updatedAt: string;
895
- employeeId?: string | null | undefined;
896
- deactivatedAt?: string | null | undefined;
897
- }>;
284
+ }, zod.core.$strip>;
898
285
  mentionedUsers: zod.ZodArray<zod.ZodObject<{
899
286
  id: zod.ZodString;
900
287
  email: zod.ZodString;
@@ -907,167 +294,26 @@ export declare const getCommentResponse: zod.ZodObject<{
907
294
  "100x100": zod.ZodNullable<zod.ZodString>;
908
295
  "64x64": zod.ZodNullable<zod.ZodString>;
909
296
  "32x32": zod.ZodNullable<zod.ZodString>;
910
- }, "strip", zod.ZodTypeAny, {
911
- "100x100": string | null;
912
- "64x64": string | null;
913
- "32x32": string | null;
914
- }, {
915
- "100x100": string | null;
916
- "64x64": string | null;
917
- "32x32": string | null;
297
+ }, zod.core.$strip>;
298
+ status: zod.ZodEnum<{
299
+ invited: "invited";
300
+ activated: "activated";
301
+ suspended: "suspended";
302
+ deactivated: "deactivated";
918
303
  }>;
919
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
920
304
  locale: zod.ZodString;
921
305
  createdAt: zod.ZodString;
922
306
  updatedAt: zod.ZodString;
923
307
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
924
- }, "strip", zod.ZodTypeAny, {
925
- code: string;
926
- id: string;
927
- image: {
928
- "100x100": string | null;
929
- "64x64": string | null;
930
- "32x32": string | null;
931
- };
932
- email: string;
933
- status: "suspended" | "activated" | "invited" | "deactivated";
934
- firstName: string;
935
- lastName: string;
936
- fullName: string;
937
- locale: string;
938
- createdAt: string;
939
- updatedAt: string;
940
- employeeId?: string | null | undefined;
941
- deactivatedAt?: string | null | undefined;
942
- }, {
943
- code: string;
944
- id: string;
945
- image: {
946
- "100x100": string | null;
947
- "64x64": string | null;
948
- "32x32": string | null;
949
- };
950
- email: string;
951
- status: "suspended" | "activated" | "invited" | "deactivated";
952
- firstName: string;
953
- lastName: string;
954
- fullName: string;
955
- locale: string;
956
- createdAt: string;
957
- updatedAt: string;
958
- employeeId?: string | null | undefined;
959
- deactivatedAt?: string | null | undefined;
960
- }>, "many">;
961
- }, "strip", zod.ZodTypeAny, {
962
- id: string;
963
- body: string;
964
- user: {
965
- code: string;
966
- id: string;
967
- image: {
968
- "100x100": string | null;
969
- "64x64": string | null;
970
- "32x32": string | null;
971
- };
972
- email: string;
973
- status: "suspended" | "activated" | "invited" | "deactivated";
974
- firstName: string;
975
- lastName: string;
976
- fullName: string;
977
- locale: string;
978
- createdAt: string;
979
- updatedAt: string;
980
- employeeId?: string | null | undefined;
981
- deactivatedAt?: string | null | undefined;
982
- };
983
- createdAt: string;
984
- updatedAt: string;
985
- attachments: {
986
- filename: string;
987
- url: string;
988
- signedId: string;
989
- }[];
990
- deletedAt: string | null;
991
- mentionedUsers: {
992
- code: string;
993
- id: string;
994
- image: {
995
- "100x100": string | null;
996
- "64x64": string | null;
997
- "32x32": string | null;
998
- };
999
- email: string;
1000
- status: "suspended" | "activated" | "invited" | "deactivated";
1001
- firstName: string;
1002
- lastName: string;
1003
- fullName: string;
1004
- locale: string;
1005
- createdAt: string;
1006
- updatedAt: string;
1007
- employeeId?: string | null | undefined;
1008
- deactivatedAt?: string | null | undefined;
1009
- }[];
1010
- }, {
1011
- id: string;
1012
- body: string;
1013
- user: {
1014
- code: string;
1015
- id: string;
1016
- image: {
1017
- "100x100": string | null;
1018
- "64x64": string | null;
1019
- "32x32": string | null;
1020
- };
1021
- email: string;
1022
- status: "suspended" | "activated" | "invited" | "deactivated";
1023
- firstName: string;
1024
- lastName: string;
1025
- fullName: string;
1026
- locale: string;
1027
- createdAt: string;
1028
- updatedAt: string;
1029
- employeeId?: string | null | undefined;
1030
- deactivatedAt?: string | null | undefined;
1031
- };
1032
- createdAt: string;
1033
- updatedAt: string;
1034
- attachments: {
1035
- filename: string;
1036
- url: string;
1037
- signedId: string;
1038
- }[];
1039
- deletedAt: string | null;
1040
- mentionedUsers: {
1041
- code: string;
1042
- id: string;
1043
- image: {
1044
- "100x100": string | null;
1045
- "64x64": string | null;
1046
- "32x32": string | null;
1047
- };
1048
- email: string;
1049
- status: "suspended" | "activated" | "invited" | "deactivated";
1050
- firstName: string;
1051
- lastName: string;
1052
- fullName: string;
1053
- locale: string;
1054
- createdAt: string;
1055
- updatedAt: string;
1056
- employeeId?: string | null | undefined;
1057
- deactivatedAt?: string | null | undefined;
1058
- }[];
1059
- }>;
308
+ }, zod.core.$strip>>;
309
+ }, zod.core.$strip>;
1060
310
  /**
1061
311
  * チケットのコメントを更新します。添付ファイルは更新できません。
1062
312
  * @summary コメントを更新
1063
313
  */
1064
314
  export declare const updateCommentBody: zod.ZodObject<{
1065
315
  body: zod.ZodString;
1066
- }, "strip", zod.ZodTypeAny, {
1067
- body: string;
1068
- }, {
1069
- body: string;
1070
- }>;
316
+ }, zod.core.$strip>;
1071
317
  export declare const updateCommentResponseUserEmailMax = 255;
1072
318
  export declare const updateCommentResponseUserCodeMax = 255;
1073
319
  export declare const updateCommentResponseUserFirstNameMax = 255;
@@ -1087,15 +333,7 @@ export declare const updateCommentResponse: zod.ZodObject<{
1087
333
  signedId: zod.ZodString;
1088
334
  filename: zod.ZodString;
1089
335
  url: zod.ZodString;
1090
- }, "strip", zod.ZodTypeAny, {
1091
- filename: string;
1092
- url: string;
1093
- signedId: string;
1094
- }, {
1095
- filename: string;
1096
- url: string;
1097
- signedId: string;
1098
- }>, "many">;
336
+ }, zod.core.$strip>>;
1099
337
  createdAt: zod.ZodString;
1100
338
  updatedAt: zod.ZodString;
1101
339
  deletedAt: zod.ZodNullable<zod.ZodString>;
@@ -1111,57 +349,18 @@ export declare const updateCommentResponse: zod.ZodObject<{
1111
349
  "100x100": zod.ZodNullable<zod.ZodString>;
1112
350
  "64x64": zod.ZodNullable<zod.ZodString>;
1113
351
  "32x32": zod.ZodNullable<zod.ZodString>;
1114
- }, "strip", zod.ZodTypeAny, {
1115
- "100x100": string | null;
1116
- "64x64": string | null;
1117
- "32x32": string | null;
1118
- }, {
1119
- "100x100": string | null;
1120
- "64x64": string | null;
1121
- "32x32": string | null;
352
+ }, zod.core.$strip>;
353
+ status: zod.ZodEnum<{
354
+ invited: "invited";
355
+ activated: "activated";
356
+ suspended: "suspended";
357
+ deactivated: "deactivated";
1122
358
  }>;
1123
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
1124
359
  locale: zod.ZodString;
1125
360
  createdAt: zod.ZodString;
1126
361
  updatedAt: zod.ZodString;
1127
362
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1128
- }, "strip", zod.ZodTypeAny, {
1129
- code: string;
1130
- id: string;
1131
- image: {
1132
- "100x100": string | null;
1133
- "64x64": string | null;
1134
- "32x32": string | null;
1135
- };
1136
- email: string;
1137
- status: "suspended" | "activated" | "invited" | "deactivated";
1138
- firstName: string;
1139
- lastName: string;
1140
- fullName: string;
1141
- locale: string;
1142
- createdAt: string;
1143
- updatedAt: string;
1144
- employeeId?: string | null | undefined;
1145
- deactivatedAt?: string | null | undefined;
1146
- }, {
1147
- code: string;
1148
- id: string;
1149
- image: {
1150
- "100x100": string | null;
1151
- "64x64": string | null;
1152
- "32x32": string | null;
1153
- };
1154
- email: string;
1155
- status: "suspended" | "activated" | "invited" | "deactivated";
1156
- firstName: string;
1157
- lastName: string;
1158
- fullName: string;
1159
- locale: string;
1160
- createdAt: string;
1161
- updatedAt: string;
1162
- employeeId?: string | null | undefined;
1163
- deactivatedAt?: string | null | undefined;
1164
- }>;
363
+ }, zod.core.$strip>;
1165
364
  mentionedUsers: zod.ZodArray<zod.ZodObject<{
1166
365
  id: zod.ZodString;
1167
366
  email: zod.ZodString;
@@ -1174,153 +373,16 @@ export declare const updateCommentResponse: zod.ZodObject<{
1174
373
  "100x100": zod.ZodNullable<zod.ZodString>;
1175
374
  "64x64": zod.ZodNullable<zod.ZodString>;
1176
375
  "32x32": zod.ZodNullable<zod.ZodString>;
1177
- }, "strip", zod.ZodTypeAny, {
1178
- "100x100": string | null;
1179
- "64x64": string | null;
1180
- "32x32": string | null;
1181
- }, {
1182
- "100x100": string | null;
1183
- "64x64": string | null;
1184
- "32x32": string | null;
376
+ }, zod.core.$strip>;
377
+ status: zod.ZodEnum<{
378
+ invited: "invited";
379
+ activated: "activated";
380
+ suspended: "suspended";
381
+ deactivated: "deactivated";
1185
382
  }>;
1186
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
1187
383
  locale: zod.ZodString;
1188
384
  createdAt: zod.ZodString;
1189
385
  updatedAt: zod.ZodString;
1190
386
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1191
- }, "strip", zod.ZodTypeAny, {
1192
- code: string;
1193
- id: string;
1194
- image: {
1195
- "100x100": string | null;
1196
- "64x64": string | null;
1197
- "32x32": string | null;
1198
- };
1199
- email: string;
1200
- status: "suspended" | "activated" | "invited" | "deactivated";
1201
- firstName: string;
1202
- lastName: string;
1203
- fullName: string;
1204
- locale: string;
1205
- createdAt: string;
1206
- updatedAt: string;
1207
- employeeId?: string | null | undefined;
1208
- deactivatedAt?: string | null | undefined;
1209
- }, {
1210
- code: string;
1211
- id: string;
1212
- image: {
1213
- "100x100": string | null;
1214
- "64x64": string | null;
1215
- "32x32": string | null;
1216
- };
1217
- email: string;
1218
- status: "suspended" | "activated" | "invited" | "deactivated";
1219
- firstName: string;
1220
- lastName: string;
1221
- fullName: string;
1222
- locale: string;
1223
- createdAt: string;
1224
- updatedAt: string;
1225
- employeeId?: string | null | undefined;
1226
- deactivatedAt?: string | null | undefined;
1227
- }>, "many">;
1228
- }, "strip", zod.ZodTypeAny, {
1229
- id: string;
1230
- body: string;
1231
- user: {
1232
- code: string;
1233
- id: string;
1234
- image: {
1235
- "100x100": string | null;
1236
- "64x64": string | null;
1237
- "32x32": string | null;
1238
- };
1239
- email: string;
1240
- status: "suspended" | "activated" | "invited" | "deactivated";
1241
- firstName: string;
1242
- lastName: string;
1243
- fullName: string;
1244
- locale: string;
1245
- createdAt: string;
1246
- updatedAt: string;
1247
- employeeId?: string | null | undefined;
1248
- deactivatedAt?: string | null | undefined;
1249
- };
1250
- createdAt: string;
1251
- updatedAt: string;
1252
- attachments: {
1253
- filename: string;
1254
- url: string;
1255
- signedId: string;
1256
- }[];
1257
- deletedAt: string | null;
1258
- mentionedUsers: {
1259
- code: string;
1260
- id: string;
1261
- image: {
1262
- "100x100": string | null;
1263
- "64x64": string | null;
1264
- "32x32": string | null;
1265
- };
1266
- email: string;
1267
- status: "suspended" | "activated" | "invited" | "deactivated";
1268
- firstName: string;
1269
- lastName: string;
1270
- fullName: string;
1271
- locale: string;
1272
- createdAt: string;
1273
- updatedAt: string;
1274
- employeeId?: string | null | undefined;
1275
- deactivatedAt?: string | null | undefined;
1276
- }[];
1277
- }, {
1278
- id: string;
1279
- body: string;
1280
- user: {
1281
- code: string;
1282
- id: string;
1283
- image: {
1284
- "100x100": string | null;
1285
- "64x64": string | null;
1286
- "32x32": string | null;
1287
- };
1288
- email: string;
1289
- status: "suspended" | "activated" | "invited" | "deactivated";
1290
- firstName: string;
1291
- lastName: string;
1292
- fullName: string;
1293
- locale: string;
1294
- createdAt: string;
1295
- updatedAt: string;
1296
- employeeId?: string | null | undefined;
1297
- deactivatedAt?: string | null | undefined;
1298
- };
1299
- createdAt: string;
1300
- updatedAt: string;
1301
- attachments: {
1302
- filename: string;
1303
- url: string;
1304
- signedId: string;
1305
- }[];
1306
- deletedAt: string | null;
1307
- mentionedUsers: {
1308
- code: string;
1309
- id: string;
1310
- image: {
1311
- "100x100": string | null;
1312
- "64x64": string | null;
1313
- "32x32": string | null;
1314
- };
1315
- email: string;
1316
- status: "suspended" | "activated" | "invited" | "deactivated";
1317
- firstName: string;
1318
- lastName: string;
1319
- fullName: string;
1320
- locale: string;
1321
- createdAt: string;
1322
- updatedAt: string;
1323
- employeeId?: string | null | undefined;
1324
- deactivatedAt?: string | null | undefined;
1325
- }[];
1326
- }>;
387
+ }, zod.core.$strip>>;
388
+ }, zod.core.$strip>;