@kickflow/mcp-server 0.1.1 → 0.1.4

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.
@@ -28,57 +28,18 @@ export declare const getCurrentUserResponse: zod.ZodObject<{
28
28
  "100x100": zod.ZodNullable<zod.ZodString>;
29
29
  "64x64": zod.ZodNullable<zod.ZodString>;
30
30
  "32x32": zod.ZodNullable<zod.ZodString>;
31
- }, "strip", zod.ZodTypeAny, {
32
- "100x100": string | null;
33
- "64x64": string | null;
34
- "32x32": string | null;
35
- }, {
36
- "100x100": string | null;
37
- "64x64": string | null;
38
- "32x32": string | null;
31
+ }, zod.core.$strip>;
32
+ status: zod.ZodEnum<{
33
+ invited: "invited";
34
+ activated: "activated";
35
+ suspended: "suspended";
36
+ deactivated: "deactivated";
39
37
  }>;
40
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
41
38
  locale: zod.ZodString;
42
39
  createdAt: zod.ZodString;
43
40
  updatedAt: zod.ZodString;
44
41
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
45
- }, "strip", zod.ZodTypeAny, {
46
- code: string;
47
- id: string;
48
- image: {
49
- "100x100": string | null;
50
- "64x64": string | null;
51
- "32x32": string | null;
52
- };
53
- email: string;
54
- status: "suspended" | "activated" | "invited" | "deactivated";
55
- firstName: string;
56
- lastName: string;
57
- fullName: string;
58
- locale: string;
59
- createdAt: string;
60
- updatedAt: string;
61
- employeeId?: string | null | undefined;
62
- deactivatedAt?: string | null | undefined;
63
- }, {
64
- code: string;
65
- id: string;
66
- image: {
67
- "100x100": string | null;
68
- "64x64": string | null;
69
- "32x32": string | null;
70
- };
71
- email: string;
72
- status: "suspended" | "activated" | "invited" | "deactivated";
73
- firstName: string;
74
- lastName: string;
75
- fullName: string;
76
- locale: string;
77
- createdAt: string;
78
- updatedAt: string;
79
- employeeId?: string | null | undefined;
80
- deactivatedAt?: string | null | undefined;
81
- }>;
42
+ }, zod.core.$strip>;
82
43
  /**
83
44
  * ユーザー一覧を取得します。
84
45
  * @summary ユーザー一覧を取得
@@ -90,19 +51,14 @@ export declare const listUsersQuerySortByRegExp: RegExp;
90
51
  export declare const listUsersQueryParams: zod.ZodObject<{
91
52
  page: zod.ZodDefault<zod.ZodNumber>;
92
53
  perPage: zod.ZodDefault<zod.ZodNumber>;
93
- status: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>, "many">>;
54
+ status: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<{
55
+ invited: "invited";
56
+ activated: "activated";
57
+ suspended: "suspended";
58
+ deactivated: "deactivated";
59
+ }>>>;
94
60
  sortBy: zod.ZodOptional<zod.ZodString>;
95
- }, "strip", zod.ZodTypeAny, {
96
- page: number;
97
- perPage: number;
98
- status?: ("suspended" | "activated" | "invited" | "deactivated")[] | undefined;
99
- sortBy?: string | undefined;
100
- }, {
101
- page?: number | undefined;
102
- status?: ("suspended" | "activated" | "invited" | "deactivated")[] | undefined;
103
- perPage?: number | undefined;
104
- sortBy?: string | undefined;
105
- }>;
61
+ }, zod.core.$strip>;
106
62
  export declare const listUsersResponseEmailMax = 255;
107
63
  export declare const listUsersResponseCodeMax = 255;
108
64
  export declare const listUsersResponseFirstNameMax = 255;
@@ -121,57 +77,18 @@ export declare const listUsersResponseItem: zod.ZodObject<{
121
77
  "100x100": zod.ZodNullable<zod.ZodString>;
122
78
  "64x64": zod.ZodNullable<zod.ZodString>;
123
79
  "32x32": zod.ZodNullable<zod.ZodString>;
124
- }, "strip", zod.ZodTypeAny, {
125
- "100x100": string | null;
126
- "64x64": string | null;
127
- "32x32": string | null;
128
- }, {
129
- "100x100": string | null;
130
- "64x64": string | null;
131
- "32x32": string | null;
80
+ }, zod.core.$strip>;
81
+ status: zod.ZodEnum<{
82
+ invited: "invited";
83
+ activated: "activated";
84
+ suspended: "suspended";
85
+ deactivated: "deactivated";
132
86
  }>;
133
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
134
87
  locale: zod.ZodString;
135
88
  createdAt: zod.ZodString;
136
89
  updatedAt: zod.ZodString;
137
90
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
138
- }, "strip", zod.ZodTypeAny, {
139
- code: string;
140
- id: string;
141
- image: {
142
- "100x100": string | null;
143
- "64x64": string | null;
144
- "32x32": string | null;
145
- };
146
- email: string;
147
- status: "suspended" | "activated" | "invited" | "deactivated";
148
- firstName: string;
149
- lastName: string;
150
- fullName: string;
151
- locale: string;
152
- createdAt: string;
153
- updatedAt: string;
154
- employeeId?: string | null | undefined;
155
- deactivatedAt?: string | null | undefined;
156
- }, {
157
- code: string;
158
- id: string;
159
- image: {
160
- "100x100": string | null;
161
- "64x64": string | null;
162
- "32x32": string | null;
163
- };
164
- email: string;
165
- status: "suspended" | "activated" | "invited" | "deactivated";
166
- firstName: string;
167
- lastName: string;
168
- fullName: string;
169
- locale: string;
170
- createdAt: string;
171
- updatedAt: string;
172
- employeeId?: string | null | undefined;
173
- deactivatedAt?: string | null | undefined;
174
- }>;
91
+ }, zod.core.$strip>;
175
92
  export declare const listUsersResponse: zod.ZodArray<zod.ZodObject<{
176
93
  id: zod.ZodString;
177
94
  email: zod.ZodString;
@@ -184,57 +101,18 @@ export declare const listUsersResponse: zod.ZodArray<zod.ZodObject<{
184
101
  "100x100": zod.ZodNullable<zod.ZodString>;
185
102
  "64x64": zod.ZodNullable<zod.ZodString>;
186
103
  "32x32": zod.ZodNullable<zod.ZodString>;
187
- }, "strip", zod.ZodTypeAny, {
188
- "100x100": string | null;
189
- "64x64": string | null;
190
- "32x32": string | null;
191
- }, {
192
- "100x100": string | null;
193
- "64x64": string | null;
194
- "32x32": string | null;
104
+ }, zod.core.$strip>;
105
+ status: zod.ZodEnum<{
106
+ invited: "invited";
107
+ activated: "activated";
108
+ suspended: "suspended";
109
+ deactivated: "deactivated";
195
110
  }>;
196
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
197
111
  locale: zod.ZodString;
198
112
  createdAt: zod.ZodString;
199
113
  updatedAt: zod.ZodString;
200
114
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
201
- }, "strip", zod.ZodTypeAny, {
202
- code: string;
203
- id: string;
204
- image: {
205
- "100x100": string | null;
206
- "64x64": string | null;
207
- "32x32": string | null;
208
- };
209
- email: string;
210
- status: "suspended" | "activated" | "invited" | "deactivated";
211
- firstName: string;
212
- lastName: string;
213
- fullName: string;
214
- locale: string;
215
- createdAt: string;
216
- updatedAt: string;
217
- employeeId?: string | null | undefined;
218
- deactivatedAt?: string | null | undefined;
219
- }, {
220
- code: string;
221
- id: string;
222
- image: {
223
- "100x100": string | null;
224
- "64x64": string | null;
225
- "32x32": string | null;
226
- };
227
- email: string;
228
- status: "suspended" | "activated" | "invited" | "deactivated";
229
- firstName: string;
230
- lastName: string;
231
- fullName: string;
232
- locale: string;
233
- createdAt: string;
234
- updatedAt: string;
235
- employeeId?: string | null | undefined;
236
- deactivatedAt?: string | null | undefined;
237
- }>, "many">;
115
+ }, zod.core.$strip>>;
238
116
  /**
239
117
  * ユーザーを作成します。
240
118
  作成されたユーザーは招待済みステータスとなり、招待メールが送信されます。
@@ -253,21 +131,7 @@ export declare const createUserBody: zod.ZodObject<{
253
131
  lastName: zod.ZodString;
254
132
  sendEmail: zod.ZodOptional<zod.ZodBoolean>;
255
133
  employeeId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
256
- }, "strip", zod.ZodTypeAny, {
257
- code: string;
258
- email: string;
259
- firstName: string;
260
- lastName: string;
261
- employeeId?: string | null | undefined;
262
- sendEmail?: boolean | undefined;
263
- }, {
264
- code: string;
265
- email: string;
266
- firstName: string;
267
- lastName: string;
268
- employeeId?: string | null | undefined;
269
- sendEmail?: boolean | undefined;
270
- }>;
134
+ }, zod.core.$strip>;
271
135
  export declare const createUserResponseEmailMax = 255;
272
136
  export declare const createUserResponseCodeMax = 255;
273
137
  export declare const createUserResponseFirstNameMax = 255;
@@ -286,57 +150,18 @@ export declare const createUserResponse: zod.ZodObject<{
286
150
  "100x100": zod.ZodNullable<zod.ZodString>;
287
151
  "64x64": zod.ZodNullable<zod.ZodString>;
288
152
  "32x32": zod.ZodNullable<zod.ZodString>;
289
- }, "strip", zod.ZodTypeAny, {
290
- "100x100": string | null;
291
- "64x64": string | null;
292
- "32x32": string | null;
293
- }, {
294
- "100x100": string | null;
295
- "64x64": string | null;
296
- "32x32": string | null;
153
+ }, zod.core.$strip>;
154
+ status: zod.ZodEnum<{
155
+ invited: "invited";
156
+ activated: "activated";
157
+ suspended: "suspended";
158
+ deactivated: "deactivated";
297
159
  }>;
298
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
299
160
  locale: zod.ZodString;
300
161
  createdAt: zod.ZodString;
301
162
  updatedAt: zod.ZodString;
302
163
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
303
- }, "strip", zod.ZodTypeAny, {
304
- code: string;
305
- id: string;
306
- image: {
307
- "100x100": string | null;
308
- "64x64": string | null;
309
- "32x32": string | null;
310
- };
311
- email: string;
312
- status: "suspended" | "activated" | "invited" | "deactivated";
313
- firstName: string;
314
- lastName: string;
315
- fullName: string;
316
- locale: string;
317
- createdAt: string;
318
- updatedAt: string;
319
- employeeId?: string | null | undefined;
320
- deactivatedAt?: string | null | undefined;
321
- }, {
322
- code: string;
323
- id: string;
324
- image: {
325
- "100x100": string | null;
326
- "64x64": string | null;
327
- "32x32": string | null;
328
- };
329
- email: string;
330
- status: "suspended" | "activated" | "invited" | "deactivated";
331
- firstName: string;
332
- lastName: string;
333
- fullName: string;
334
- locale: string;
335
- createdAt: string;
336
- updatedAt: string;
337
- employeeId?: string | null | undefined;
338
- deactivatedAt?: string | null | undefined;
339
- }>;
164
+ }, zod.core.$strip>;
340
165
  /**
341
166
  * ユーザーを一件取得します。
342
167
  * @summary ユーザーを取得
@@ -359,57 +184,18 @@ export declare const getUserResponse: zod.ZodObject<{
359
184
  "100x100": zod.ZodNullable<zod.ZodString>;
360
185
  "64x64": zod.ZodNullable<zod.ZodString>;
361
186
  "32x32": zod.ZodNullable<zod.ZodString>;
362
- }, "strip", zod.ZodTypeAny, {
363
- "100x100": string | null;
364
- "64x64": string | null;
365
- "32x32": string | null;
366
- }, {
367
- "100x100": string | null;
368
- "64x64": string | null;
369
- "32x32": string | null;
187
+ }, zod.core.$strip>;
188
+ status: zod.ZodEnum<{
189
+ invited: "invited";
190
+ activated: "activated";
191
+ suspended: "suspended";
192
+ deactivated: "deactivated";
370
193
  }>;
371
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
372
194
  locale: zod.ZodString;
373
195
  createdAt: zod.ZodString;
374
196
  updatedAt: zod.ZodString;
375
197
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
376
- }, "strip", zod.ZodTypeAny, {
377
- code: string;
378
- id: string;
379
- image: {
380
- "100x100": string | null;
381
- "64x64": string | null;
382
- "32x32": string | null;
383
- };
384
- email: string;
385
- status: "suspended" | "activated" | "invited" | "deactivated";
386
- firstName: string;
387
- lastName: string;
388
- fullName: string;
389
- locale: string;
390
- createdAt: string;
391
- updatedAt: string;
392
- employeeId?: string | null | undefined;
393
- deactivatedAt?: string | null | undefined;
394
- }, {
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
- }>;
198
+ }, zod.core.$strip>;
413
199
  /**
414
200
  * ユーザーを削除します(論理削除)。
415
201
  削除されたユーザーは削除済ステータスとなりますが、引き続きユーザー情報にアクセス可能です。
@@ -435,57 +221,18 @@ export declare const deleteUserResponse: zod.ZodObject<{
435
221
  "100x100": zod.ZodNullable<zod.ZodString>;
436
222
  "64x64": zod.ZodNullable<zod.ZodString>;
437
223
  "32x32": zod.ZodNullable<zod.ZodString>;
438
- }, "strip", zod.ZodTypeAny, {
439
- "100x100": string | null;
440
- "64x64": string | null;
441
- "32x32": string | null;
442
- }, {
443
- "100x100": string | null;
444
- "64x64": string | null;
445
- "32x32": string | null;
224
+ }, zod.core.$strip>;
225
+ status: zod.ZodEnum<{
226
+ invited: "invited";
227
+ activated: "activated";
228
+ suspended: "suspended";
229
+ deactivated: "deactivated";
446
230
  }>;
447
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
448
231
  locale: zod.ZodString;
449
232
  createdAt: zod.ZodString;
450
233
  updatedAt: zod.ZodString;
451
234
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
452
- }, "strip", zod.ZodTypeAny, {
453
- code: string;
454
- id: string;
455
- image: {
456
- "100x100": string | null;
457
- "64x64": string | null;
458
- "32x32": string | null;
459
- };
460
- email: string;
461
- status: "suspended" | "activated" | "invited" | "deactivated";
462
- firstName: string;
463
- lastName: string;
464
- fullName: string;
465
- locale: string;
466
- createdAt: string;
467
- updatedAt: string;
468
- employeeId?: string | null | undefined;
469
- deactivatedAt?: string | null | undefined;
470
- }, {
471
- code: string;
472
- id: string;
473
- image: {
474
- "100x100": string | null;
475
- "64x64": string | null;
476
- "32x32": string | null;
477
- };
478
- email: string;
479
- status: "suspended" | "activated" | "invited" | "deactivated";
480
- firstName: string;
481
- lastName: string;
482
- fullName: string;
483
- locale: string;
484
- createdAt: string;
485
- updatedAt: string;
486
- employeeId?: string | null | undefined;
487
- deactivatedAt?: string | null | undefined;
488
- }>;
235
+ }, zod.core.$strip>;
489
236
  /**
490
237
  * ユーザーを更新します。
491
238
 
@@ -503,19 +250,7 @@ export declare const updateUserBody: zod.ZodObject<{
503
250
  firstName: zod.ZodOptional<zod.ZodString>;
504
251
  lastName: zod.ZodOptional<zod.ZodString>;
505
252
  employeeId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
506
- }, "strip", zod.ZodTypeAny, {
507
- code?: string | undefined;
508
- email?: string | undefined;
509
- firstName?: string | undefined;
510
- lastName?: string | undefined;
511
- employeeId?: string | null | undefined;
512
- }, {
513
- code?: string | undefined;
514
- email?: string | undefined;
515
- firstName?: string | undefined;
516
- lastName?: string | undefined;
517
- employeeId?: string | null | undefined;
518
- }>;
253
+ }, zod.core.$strip>;
519
254
  export declare const updateUserResponseEmailMax = 255;
520
255
  export declare const updateUserResponseCodeMax = 255;
521
256
  export declare const updateUserResponseFirstNameMax = 255;
@@ -534,57 +269,18 @@ export declare const updateUserResponse: zod.ZodObject<{
534
269
  "100x100": zod.ZodNullable<zod.ZodString>;
535
270
  "64x64": zod.ZodNullable<zod.ZodString>;
536
271
  "32x32": zod.ZodNullable<zod.ZodString>;
537
- }, "strip", zod.ZodTypeAny, {
538
- "100x100": string | null;
539
- "64x64": string | null;
540
- "32x32": string | null;
541
- }, {
542
- "100x100": string | null;
543
- "64x64": string | null;
544
- "32x32": string | null;
272
+ }, zod.core.$strip>;
273
+ status: zod.ZodEnum<{
274
+ invited: "invited";
275
+ activated: "activated";
276
+ suspended: "suspended";
277
+ deactivated: "deactivated";
545
278
  }>;
546
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
547
279
  locale: zod.ZodString;
548
280
  createdAt: zod.ZodString;
549
281
  updatedAt: zod.ZodString;
550
282
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
551
- }, "strip", zod.ZodTypeAny, {
552
- code: string;
553
- id: string;
554
- image: {
555
- "100x100": string | null;
556
- "64x64": string | null;
557
- "32x32": string | null;
558
- };
559
- email: string;
560
- status: "suspended" | "activated" | "invited" | "deactivated";
561
- firstName: string;
562
- lastName: string;
563
- fullName: string;
564
- locale: string;
565
- createdAt: string;
566
- updatedAt: string;
567
- employeeId?: string | null | undefined;
568
- deactivatedAt?: string | null | undefined;
569
- }, {
570
- code: string;
571
- id: string;
572
- image: {
573
- "100x100": string | null;
574
- "64x64": string | null;
575
- "32x32": string | null;
576
- };
577
- email: string;
578
- status: "suspended" | "activated" | "invited" | "deactivated";
579
- firstName: string;
580
- lastName: string;
581
- fullName: string;
582
- locale: string;
583
- createdAt: string;
584
- updatedAt: string;
585
- employeeId?: string | null | undefined;
586
- deactivatedAt?: string | null | undefined;
587
- }>;
283
+ }, zod.core.$strip>;
588
284
  /**
589
285
  * メールアドレスからユーザーを取得します(完全一致)
590
286
  ※メールアドレスはURLエンコードしたものを送ってください。
@@ -592,11 +288,7 @@ export declare const updateUserResponse: zod.ZodObject<{
592
288
  */
593
289
  export declare const lookupUserByEmailQueryParams: zod.ZodObject<{
594
290
  email: zod.ZodString;
595
- }, "strip", zod.ZodTypeAny, {
596
- email: string;
597
- }, {
598
- email: string;
599
- }>;
291
+ }, zod.core.$strip>;
600
292
  export declare const lookupUserByEmailResponseEmailMax = 255;
601
293
  export declare const lookupUserByEmailResponseCodeMax = 255;
602
294
  export declare const lookupUserByEmailResponseFirstNameMax = 255;
@@ -615,57 +307,18 @@ export declare const lookupUserByEmailResponse: zod.ZodObject<{
615
307
  "100x100": zod.ZodNullable<zod.ZodString>;
616
308
  "64x64": zod.ZodNullable<zod.ZodString>;
617
309
  "32x32": zod.ZodNullable<zod.ZodString>;
618
- }, "strip", zod.ZodTypeAny, {
619
- "100x100": string | null;
620
- "64x64": string | null;
621
- "32x32": string | null;
622
- }, {
623
- "100x100": string | null;
624
- "64x64": string | null;
625
- "32x32": string | null;
310
+ }, zod.core.$strip>;
311
+ status: zod.ZodEnum<{
312
+ invited: "invited";
313
+ activated: "activated";
314
+ suspended: "suspended";
315
+ deactivated: "deactivated";
626
316
  }>;
627
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
628
317
  locale: zod.ZodString;
629
318
  createdAt: zod.ZodString;
630
319
  updatedAt: zod.ZodString;
631
320
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
632
- }, "strip", zod.ZodTypeAny, {
633
- code: string;
634
- id: string;
635
- image: {
636
- "100x100": string | null;
637
- "64x64": string | null;
638
- "32x32": string | null;
639
- };
640
- email: string;
641
- status: "suspended" | "activated" | "invited" | "deactivated";
642
- firstName: string;
643
- lastName: string;
644
- fullName: string;
645
- locale: string;
646
- createdAt: string;
647
- updatedAt: string;
648
- employeeId?: string | null | undefined;
649
- deactivatedAt?: string | null | undefined;
650
- }, {
651
- code: string;
652
- id: string;
653
- image: {
654
- "100x100": string | null;
655
- "64x64": string | null;
656
- "32x32": string | null;
657
- };
658
- email: string;
659
- status: "suspended" | "activated" | "invited" | "deactivated";
660
- firstName: string;
661
- lastName: string;
662
- fullName: string;
663
- locale: string;
664
- createdAt: string;
665
- updatedAt: string;
666
- employeeId?: string | null | undefined;
667
- deactivatedAt?: string | null | undefined;
668
- }>;
321
+ }, zod.core.$strip>;
669
322
  /**
670
323
  * 削除されたユーザーを再び招待します。
671
324
 
@@ -690,57 +343,18 @@ export declare const reinviteUserResponse: zod.ZodObject<{
690
343
  "100x100": zod.ZodNullable<zod.ZodString>;
691
344
  "64x64": zod.ZodNullable<zod.ZodString>;
692
345
  "32x32": zod.ZodNullable<zod.ZodString>;
693
- }, "strip", zod.ZodTypeAny, {
694
- "100x100": string | null;
695
- "64x64": string | null;
696
- "32x32": string | null;
697
- }, {
698
- "100x100": string | null;
699
- "64x64": string | null;
700
- "32x32": string | null;
346
+ }, zod.core.$strip>;
347
+ status: zod.ZodEnum<{
348
+ invited: "invited";
349
+ activated: "activated";
350
+ suspended: "suspended";
351
+ deactivated: "deactivated";
701
352
  }>;
702
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
703
353
  locale: zod.ZodString;
704
354
  createdAt: zod.ZodString;
705
355
  updatedAt: zod.ZodString;
706
356
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
707
- }, "strip", zod.ZodTypeAny, {
708
- code: string;
709
- id: string;
710
- image: {
711
- "100x100": string | null;
712
- "64x64": string | null;
713
- "32x32": string | null;
714
- };
715
- email: string;
716
- status: "suspended" | "activated" | "invited" | "deactivated";
717
- firstName: string;
718
- lastName: string;
719
- fullName: string;
720
- locale: string;
721
- createdAt: string;
722
- updatedAt: string;
723
- employeeId?: string | null | undefined;
724
- deactivatedAt?: string | null | undefined;
725
- }, {
726
- code: string;
727
- id: string;
728
- image: {
729
- "100x100": string | null;
730
- "64x64": string | null;
731
- "32x32": string | null;
732
- };
733
- email: string;
734
- status: "suspended" | "activated" | "invited" | "deactivated";
735
- firstName: string;
736
- lastName: string;
737
- fullName: string;
738
- locale: string;
739
- createdAt: string;
740
- updatedAt: string;
741
- employeeId?: string | null | undefined;
742
- deactivatedAt?: string | null | undefined;
743
- }>;
357
+ }, zod.core.$strip>;
744
358
  /**
745
359
  * 有効なユーザーを一時停止します。
746
360
 
@@ -765,57 +379,18 @@ export declare const suspendUserResponse: zod.ZodObject<{
765
379
  "100x100": zod.ZodNullable<zod.ZodString>;
766
380
  "64x64": zod.ZodNullable<zod.ZodString>;
767
381
  "32x32": zod.ZodNullable<zod.ZodString>;
768
- }, "strip", zod.ZodTypeAny, {
769
- "100x100": string | null;
770
- "64x64": string | null;
771
- "32x32": string | null;
772
- }, {
773
- "100x100": string | null;
774
- "64x64": string | null;
775
- "32x32": string | null;
382
+ }, zod.core.$strip>;
383
+ status: zod.ZodEnum<{
384
+ invited: "invited";
385
+ activated: "activated";
386
+ suspended: "suspended";
387
+ deactivated: "deactivated";
776
388
  }>;
777
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
778
389
  locale: zod.ZodString;
779
390
  createdAt: zod.ZodString;
780
391
  updatedAt: zod.ZodString;
781
392
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
782
- }, "strip", zod.ZodTypeAny, {
783
- code: string;
784
- id: string;
785
- image: {
786
- "100x100": string | null;
787
- "64x64": string | null;
788
- "32x32": string | null;
789
- };
790
- email: string;
791
- status: "suspended" | "activated" | "invited" | "deactivated";
792
- firstName: string;
793
- lastName: string;
794
- fullName: string;
795
- locale: string;
796
- createdAt: string;
797
- updatedAt: string;
798
- employeeId?: string | null | undefined;
799
- deactivatedAt?: string | null | undefined;
800
- }, {
801
- code: string;
802
- id: string;
803
- image: {
804
- "100x100": string | null;
805
- "64x64": string | null;
806
- "32x32": string | null;
807
- };
808
- email: string;
809
- status: "suspended" | "activated" | "invited" | "deactivated";
810
- firstName: string;
811
- lastName: string;
812
- fullName: string;
813
- locale: string;
814
- createdAt: string;
815
- updatedAt: string;
816
- employeeId?: string | null | undefined;
817
- deactivatedAt?: string | null | undefined;
818
- }>;
393
+ }, zod.core.$strip>;
819
394
  /**
820
395
  * 一時停止中のユーザーを有効化します。
821
396
 
@@ -840,57 +415,18 @@ export declare const reactivateUserResponse: zod.ZodObject<{
840
415
  "100x100": zod.ZodNullable<zod.ZodString>;
841
416
  "64x64": zod.ZodNullable<zod.ZodString>;
842
417
  "32x32": zod.ZodNullable<zod.ZodString>;
843
- }, "strip", zod.ZodTypeAny, {
844
- "100x100": string | null;
845
- "64x64": string | null;
846
- "32x32": string | null;
847
- }, {
848
- "100x100": string | null;
849
- "64x64": string | null;
850
- "32x32": string | null;
418
+ }, zod.core.$strip>;
419
+ status: zod.ZodEnum<{
420
+ invited: "invited";
421
+ activated: "activated";
422
+ suspended: "suspended";
423
+ deactivated: "deactivated";
851
424
  }>;
852
- status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
853
425
  locale: zod.ZodString;
854
426
  createdAt: zod.ZodString;
855
427
  updatedAt: zod.ZodString;
856
428
  deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
857
- }, "strip", zod.ZodTypeAny, {
858
- code: string;
859
- id: string;
860
- image: {
861
- "100x100": string | null;
862
- "64x64": string | null;
863
- "32x32": string | null;
864
- };
865
- email: string;
866
- status: "suspended" | "activated" | "invited" | "deactivated";
867
- firstName: string;
868
- lastName: string;
869
- fullName: string;
870
- locale: string;
871
- createdAt: string;
872
- updatedAt: string;
873
- employeeId?: string | null | undefined;
874
- deactivatedAt?: string | null | undefined;
875
- }, {
876
- code: string;
877
- id: string;
878
- image: {
879
- "100x100": string | null;
880
- "64x64": string | null;
881
- "32x32": string | null;
882
- };
883
- email: string;
884
- status: "suspended" | "activated" | "invited" | "deactivated";
885
- firstName: string;
886
- lastName: string;
887
- fullName: string;
888
- locale: string;
889
- createdAt: string;
890
- updatedAt: string;
891
- employeeId?: string | null | undefined;
892
- deactivatedAt?: string | null | undefined;
893
- }>;
429
+ }, zod.core.$strip>;
894
430
  /**
895
431
  * ユーザーの所属チーム一覧を取得します。
896
432
 
@@ -904,15 +440,7 @@ export declare const listUserTeamsQueryParams: zod.ZodObject<{
904
440
  page: zod.ZodDefault<zod.ZodNumber>;
905
441
  perPage: zod.ZodDefault<zod.ZodNumber>;
906
442
  submittable: zod.ZodOptional<zod.ZodBoolean>;
907
- }, "strip", zod.ZodTypeAny, {
908
- page: number;
909
- perPage: number;
910
- submittable?: boolean | undefined;
911
- }, {
912
- page?: number | undefined;
913
- perPage?: number | undefined;
914
- submittable?: boolean | undefined;
915
- }>;
443
+ }, zod.core.$strip>;
916
444
  export declare const listUserTeamsResponseNameMax = 255;
917
445
  export declare const listUserTeamsResponseCodeMax = 255;
918
446
  export declare const listUserTeamsResponseUsersCountMin = 0;
@@ -925,25 +453,7 @@ export declare const listUserTeamsResponseItem: zod.ZodObject<{
925
453
  usersCount: zod.ZodNumber;
926
454
  createdAt: zod.ZodString;
927
455
  updatedAt: zod.ZodString;
928
- }, "strip", zod.ZodTypeAny, {
929
- code: string;
930
- name: string;
931
- id: string;
932
- fullName: string;
933
- createdAt: string;
934
- updatedAt: string;
935
- approveOnly: boolean;
936
- usersCount: number;
937
- }, {
938
- code: string;
939
- name: string;
940
- id: string;
941
- fullName: string;
942
- createdAt: string;
943
- updatedAt: string;
944
- approveOnly: boolean;
945
- usersCount: number;
946
- }>;
456
+ }, zod.core.$strip>;
947
457
  export declare const listUserTeamsResponse: zod.ZodArray<zod.ZodObject<{
948
458
  id: zod.ZodString;
949
459
  name: zod.ZodString;
@@ -953,25 +463,7 @@ export declare const listUserTeamsResponse: zod.ZodArray<zod.ZodObject<{
953
463
  usersCount: zod.ZodNumber;
954
464
  createdAt: zod.ZodString;
955
465
  updatedAt: zod.ZodString;
956
- }, "strip", zod.ZodTypeAny, {
957
- code: string;
958
- name: string;
959
- id: string;
960
- fullName: string;
961
- createdAt: string;
962
- updatedAt: string;
963
- approveOnly: boolean;
964
- usersCount: number;
965
- }, {
966
- code: string;
967
- name: string;
968
- id: string;
969
- fullName: string;
970
- createdAt: string;
971
- updatedAt: string;
972
- approveOnly: boolean;
973
- usersCount: number;
974
- }>, "many">;
466
+ }, zod.core.$strip>>;
975
467
  /**
976
468
  * ユーザーの管理者ロール一覧を取得します。
977
469
 
@@ -984,13 +476,7 @@ export declare const listUserRolesQueryPerPageMax = 100;
984
476
  export declare const listUserRolesQueryParams: zod.ZodObject<{
985
477
  page: zod.ZodDefault<zod.ZodNumber>;
986
478
  perPage: zod.ZodDefault<zod.ZodNumber>;
987
- }, "strip", zod.ZodTypeAny, {
988
- page: number;
989
- perPage: number;
990
- }, {
991
- page?: number | undefined;
992
- perPage?: number | undefined;
993
- }>;
479
+ }, zod.core.$strip>;
994
480
  export declare const listUserRolesResponseNameMax = 255;
995
481
  export declare const listUserRolesResponseUsersCountMin = 0;
996
482
  export declare const listUserRolesResponseItem: zod.ZodObject<{
@@ -1000,21 +486,7 @@ export declare const listUserRolesResponseItem: zod.ZodObject<{
1000
486
  usersCount: zod.ZodNumber;
1001
487
  createdAt: zod.ZodString;
1002
488
  updatedAt: zod.ZodString;
1003
- }, "strip", zod.ZodTypeAny, {
1004
- name: string;
1005
- id: string;
1006
- createdAt: string;
1007
- updatedAt: string;
1008
- usersCount: number;
1009
- editable: boolean;
1010
- }, {
1011
- name: string;
1012
- id: string;
1013
- createdAt: string;
1014
- updatedAt: string;
1015
- usersCount: number;
1016
- editable: boolean;
1017
- }>;
489
+ }, zod.core.$strip>;
1018
490
  export declare const listUserRolesResponse: zod.ZodArray<zod.ZodObject<{
1019
491
  id: zod.ZodString;
1020
492
  name: zod.ZodString;
@@ -1022,18 +494,4 @@ export declare const listUserRolesResponse: zod.ZodArray<zod.ZodObject<{
1022
494
  usersCount: zod.ZodNumber;
1023
495
  createdAt: zod.ZodString;
1024
496
  updatedAt: zod.ZodString;
1025
- }, "strip", zod.ZodTypeAny, {
1026
- name: string;
1027
- id: string;
1028
- createdAt: string;
1029
- updatedAt: string;
1030
- usersCount: number;
1031
- editable: boolean;
1032
- }, {
1033
- name: string;
1034
- id: string;
1035
- createdAt: string;
1036
- updatedAt: string;
1037
- usersCount: number;
1038
- editable: boolean;
1039
- }>, "many">;
497
+ }, zod.core.$strip>>;