@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.
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.d.ts +19 -147
- package/dist/kickflow-api/generated/category/category.zod.d.ts +7 -63
- package/dist/kickflow-api/generated/comment/comment.zod.d.ts +84 -1022
- package/dist/kickflow-api/generated/file/file.zod.d.ts +4 -26
- package/dist/kickflow-api/generated/folder/folder.zod.d.ts +17 -403
- package/dist/kickflow-api/generated/general-master/general-master.zod.d.ts +153 -1067
- package/dist/kickflow-api/generated/grade/grade.zod.d.ts +8 -112
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.d.ts +18 -304
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.d.ts +144 -1410
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.d.ts +144 -1410
- package/dist/kickflow-api/generated/role/role.zod.d.ts +181 -1122
- package/dist/kickflow-api/generated/route/route.zod.d.ts +135 -1246
- package/dist/kickflow-api/generated/team/team.zod.d.ts +70 -969
- package/dist/kickflow-api/generated/ticket/ticket.zod.d.ts +20483 -221467
- package/dist/kickflow-api/generated/user/user.zod.d.ts +93 -635
- package/dist/kickflow-api/generated/workflow/workflow.zod.d.ts +415 -3138
- package/dist/kickflow-api/tools/file/upload-file.js +24 -10
- package/dist/kickflow-api/tools/file/upload-file.js.map +1 -1
- package/package.json +9 -8
|
@@ -21,15 +21,7 @@ export declare const listTeamsQueryParams: zod.ZodObject<{
|
|
|
21
21
|
parentId: zod.ZodOptional<zod.ZodString>;
|
|
22
22
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
23
23
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
24
|
-
},
|
|
25
|
-
page: number;
|
|
26
|
-
perPage: number;
|
|
27
|
-
parentId?: string | undefined;
|
|
28
|
-
}, {
|
|
29
|
-
page?: number | undefined;
|
|
30
|
-
perPage?: number | undefined;
|
|
31
|
-
parentId?: string | undefined;
|
|
32
|
-
}>;
|
|
24
|
+
}, zod.core.$strip>;
|
|
33
25
|
export declare const listTeamsResponseNameMax = 255;
|
|
34
26
|
export declare const listTeamsResponseCodeMax = 255;
|
|
35
27
|
export declare const listTeamsResponseUsersCountMin = 0;
|
|
@@ -42,25 +34,7 @@ export declare const listTeamsResponseItem: zod.ZodObject<{
|
|
|
42
34
|
usersCount: zod.ZodNumber;
|
|
43
35
|
createdAt: zod.ZodString;
|
|
44
36
|
updatedAt: zod.ZodString;
|
|
45
|
-
},
|
|
46
|
-
code: string;
|
|
47
|
-
name: string;
|
|
48
|
-
id: string;
|
|
49
|
-
fullName: string;
|
|
50
|
-
createdAt: string;
|
|
51
|
-
updatedAt: string;
|
|
52
|
-
approveOnly: boolean;
|
|
53
|
-
usersCount: number;
|
|
54
|
-
}, {
|
|
55
|
-
code: string;
|
|
56
|
-
name: string;
|
|
57
|
-
id: string;
|
|
58
|
-
fullName: string;
|
|
59
|
-
createdAt: string;
|
|
60
|
-
updatedAt: string;
|
|
61
|
-
approveOnly: boolean;
|
|
62
|
-
usersCount: number;
|
|
63
|
-
}>;
|
|
37
|
+
}, zod.core.$strip>;
|
|
64
38
|
export declare const listTeamsResponse: zod.ZodArray<zod.ZodObject<{
|
|
65
39
|
id: zod.ZodString;
|
|
66
40
|
name: zod.ZodString;
|
|
@@ -70,25 +44,7 @@ export declare const listTeamsResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
70
44
|
usersCount: zod.ZodNumber;
|
|
71
45
|
createdAt: zod.ZodString;
|
|
72
46
|
updatedAt: zod.ZodString;
|
|
73
|
-
},
|
|
74
|
-
code: string;
|
|
75
|
-
name: string;
|
|
76
|
-
id: string;
|
|
77
|
-
fullName: string;
|
|
78
|
-
createdAt: string;
|
|
79
|
-
updatedAt: string;
|
|
80
|
-
approveOnly: boolean;
|
|
81
|
-
usersCount: number;
|
|
82
|
-
}, {
|
|
83
|
-
code: string;
|
|
84
|
-
name: string;
|
|
85
|
-
id: string;
|
|
86
|
-
fullName: string;
|
|
87
|
-
createdAt: string;
|
|
88
|
-
updatedAt: string;
|
|
89
|
-
approveOnly: boolean;
|
|
90
|
-
usersCount: number;
|
|
91
|
-
}>, "many">;
|
|
47
|
+
}, zod.core.$strip>>;
|
|
92
48
|
/**
|
|
93
49
|
* 指定した組織図内にチームを作成します。
|
|
94
50
|
|
|
@@ -100,17 +56,7 @@ export declare const createTeamBody: zod.ZodObject<{
|
|
|
100
56
|
code: zod.ZodOptional<zod.ZodString>;
|
|
101
57
|
parentId: zod.ZodOptional<zod.ZodString>;
|
|
102
58
|
approveOnly: zod.ZodOptional<zod.ZodBoolean>;
|
|
103
|
-
},
|
|
104
|
-
name: string;
|
|
105
|
-
code?: string | undefined;
|
|
106
|
-
approveOnly?: boolean | undefined;
|
|
107
|
-
parentId?: string | undefined;
|
|
108
|
-
}, {
|
|
109
|
-
name: string;
|
|
110
|
-
code?: string | undefined;
|
|
111
|
-
approveOnly?: boolean | undefined;
|
|
112
|
-
parentId?: string | undefined;
|
|
113
|
-
}>;
|
|
59
|
+
}, zod.core.$strip>;
|
|
114
60
|
export declare const createTeamResponseNameMax = 255;
|
|
115
61
|
export declare const createTeamResponseCodeMax = 255;
|
|
116
62
|
export declare const createTeamResponseUsersCountMin = 0;
|
|
@@ -140,25 +86,7 @@ export declare const createTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
140
86
|
usersCount: zod.ZodNumber;
|
|
141
87
|
createdAt: zod.ZodString;
|
|
142
88
|
updatedAt: zod.ZodString;
|
|
143
|
-
},
|
|
144
|
-
code: string;
|
|
145
|
-
name: string;
|
|
146
|
-
id: string;
|
|
147
|
-
fullName: string;
|
|
148
|
-
createdAt: string;
|
|
149
|
-
updatedAt: string;
|
|
150
|
-
approveOnly: boolean;
|
|
151
|
-
usersCount: number;
|
|
152
|
-
}, {
|
|
153
|
-
code: string;
|
|
154
|
-
name: string;
|
|
155
|
-
id: string;
|
|
156
|
-
fullName: string;
|
|
157
|
-
createdAt: string;
|
|
158
|
-
updatedAt: string;
|
|
159
|
-
approveOnly: boolean;
|
|
160
|
-
usersCount: number;
|
|
161
|
-
}>, zod.ZodObject<{
|
|
89
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
162
90
|
parent: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
163
91
|
id: zod.ZodString;
|
|
164
92
|
name: zod.ZodString;
|
|
@@ -168,25 +96,7 @@ export declare const createTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
168
96
|
usersCount: zod.ZodNumber;
|
|
169
97
|
createdAt: zod.ZodString;
|
|
170
98
|
updatedAt: zod.ZodString;
|
|
171
|
-
},
|
|
172
|
-
code: string;
|
|
173
|
-
name: string;
|
|
174
|
-
id: string;
|
|
175
|
-
fullName: string;
|
|
176
|
-
createdAt: string;
|
|
177
|
-
updatedAt: string;
|
|
178
|
-
approveOnly: boolean;
|
|
179
|
-
usersCount: number;
|
|
180
|
-
}, {
|
|
181
|
-
code: string;
|
|
182
|
-
name: string;
|
|
183
|
-
id: string;
|
|
184
|
-
fullName: string;
|
|
185
|
-
createdAt: string;
|
|
186
|
-
updatedAt: string;
|
|
187
|
-
approveOnly: boolean;
|
|
188
|
-
usersCount: number;
|
|
189
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
99
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
190
100
|
children: zod.ZodArray<zod.ZodObject<{
|
|
191
101
|
id: zod.ZodString;
|
|
192
102
|
name: zod.ZodString;
|
|
@@ -196,25 +106,7 @@ export declare const createTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
196
106
|
usersCount: zod.ZodNumber;
|
|
197
107
|
createdAt: zod.ZodString;
|
|
198
108
|
updatedAt: zod.ZodString;
|
|
199
|
-
},
|
|
200
|
-
code: string;
|
|
201
|
-
name: string;
|
|
202
|
-
id: string;
|
|
203
|
-
fullName: string;
|
|
204
|
-
createdAt: string;
|
|
205
|
-
updatedAt: string;
|
|
206
|
-
approveOnly: boolean;
|
|
207
|
-
usersCount: number;
|
|
208
|
-
}, {
|
|
209
|
-
code: string;
|
|
210
|
-
name: string;
|
|
211
|
-
id: string;
|
|
212
|
-
fullName: string;
|
|
213
|
-
createdAt: string;
|
|
214
|
-
updatedAt: string;
|
|
215
|
-
approveOnly: boolean;
|
|
216
|
-
usersCount: number;
|
|
217
|
-
}>, "many">;
|
|
109
|
+
}, zod.core.$strip>>;
|
|
218
110
|
users: zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
219
111
|
grades: zod.ZodArray<zod.ZodObject<{
|
|
220
112
|
id: zod.ZodString;
|
|
@@ -224,47 +116,9 @@ export declare const createTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
224
116
|
isDefault: zod.ZodBoolean;
|
|
225
117
|
createdAt: zod.ZodString;
|
|
226
118
|
updatedAt: zod.ZodString;
|
|
227
|
-
},
|
|
228
|
-
code: string | null;
|
|
229
|
-
name: string;
|
|
230
|
-
id: string;
|
|
231
|
-
level: number;
|
|
232
|
-
createdAt: string;
|
|
233
|
-
updatedAt: string;
|
|
234
|
-
isDefault: boolean;
|
|
235
|
-
}, {
|
|
236
|
-
code: string | null;
|
|
237
|
-
name: string;
|
|
238
|
-
id: string;
|
|
239
|
-
level: number;
|
|
240
|
-
createdAt: string;
|
|
241
|
-
updatedAt: string;
|
|
242
|
-
isDefault: boolean;
|
|
243
|
-
}>, "many">;
|
|
119
|
+
}, zod.core.$strip>>;
|
|
244
120
|
leader: zod.ZodBoolean;
|
|
245
|
-
},
|
|
246
|
-
grades: {
|
|
247
|
-
code: string | null;
|
|
248
|
-
name: string;
|
|
249
|
-
id: string;
|
|
250
|
-
level: number;
|
|
251
|
-
createdAt: string;
|
|
252
|
-
updatedAt: string;
|
|
253
|
-
isDefault: boolean;
|
|
254
|
-
}[];
|
|
255
|
-
leader: boolean;
|
|
256
|
-
}, {
|
|
257
|
-
grades: {
|
|
258
|
-
code: string | null;
|
|
259
|
-
name: string;
|
|
260
|
-
id: string;
|
|
261
|
-
level: number;
|
|
262
|
-
createdAt: string;
|
|
263
|
-
updatedAt: string;
|
|
264
|
-
isDefault: boolean;
|
|
265
|
-
}[];
|
|
266
|
-
leader: boolean;
|
|
267
|
-
}>, zod.ZodObject<{
|
|
121
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
268
122
|
id: zod.ZodString;
|
|
269
123
|
email: zod.ZodString;
|
|
270
124
|
code: zod.ZodString;
|
|
@@ -276,142 +130,19 @@ export declare const createTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
276
130
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
277
131
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
278
132
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
279
|
-
},
|
|
280
|
-
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
|
|
284
|
-
"
|
|
285
|
-
"64x64": string | null;
|
|
286
|
-
"32x32": string | null;
|
|
133
|
+
}, zod.core.$strip>;
|
|
134
|
+
status: zod.ZodEnum<{
|
|
135
|
+
invited: "invited";
|
|
136
|
+
activated: "activated";
|
|
137
|
+
suspended: "suspended";
|
|
138
|
+
deactivated: "deactivated";
|
|
287
139
|
}>;
|
|
288
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
289
140
|
locale: zod.ZodString;
|
|
290
141
|
createdAt: zod.ZodString;
|
|
291
142
|
updatedAt: zod.ZodString;
|
|
292
143
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
293
|
-
},
|
|
294
|
-
|
|
295
|
-
id: string;
|
|
296
|
-
image: {
|
|
297
|
-
"100x100": string | null;
|
|
298
|
-
"64x64": string | null;
|
|
299
|
-
"32x32": string | null;
|
|
300
|
-
};
|
|
301
|
-
email: string;
|
|
302
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
303
|
-
firstName: string;
|
|
304
|
-
lastName: string;
|
|
305
|
-
fullName: string;
|
|
306
|
-
locale: string;
|
|
307
|
-
createdAt: string;
|
|
308
|
-
updatedAt: string;
|
|
309
|
-
employeeId?: string | null | undefined;
|
|
310
|
-
deactivatedAt?: string | null | undefined;
|
|
311
|
-
}, {
|
|
312
|
-
code: string;
|
|
313
|
-
id: string;
|
|
314
|
-
image: {
|
|
315
|
-
"100x100": string | null;
|
|
316
|
-
"64x64": string | null;
|
|
317
|
-
"32x32": string | null;
|
|
318
|
-
};
|
|
319
|
-
email: string;
|
|
320
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
321
|
-
firstName: string;
|
|
322
|
-
lastName: string;
|
|
323
|
-
fullName: string;
|
|
324
|
-
locale: string;
|
|
325
|
-
createdAt: string;
|
|
326
|
-
updatedAt: string;
|
|
327
|
-
employeeId?: string | null | undefined;
|
|
328
|
-
deactivatedAt?: string | null | undefined;
|
|
329
|
-
}>>, "many">;
|
|
330
|
-
}, "strip", zod.ZodTypeAny, {
|
|
331
|
-
children: {
|
|
332
|
-
code: string;
|
|
333
|
-
name: string;
|
|
334
|
-
id: string;
|
|
335
|
-
fullName: string;
|
|
336
|
-
createdAt: string;
|
|
337
|
-
updatedAt: string;
|
|
338
|
-
approveOnly: boolean;
|
|
339
|
-
usersCount: number;
|
|
340
|
-
}[];
|
|
341
|
-
users: ({
|
|
342
|
-
grades: {
|
|
343
|
-
code: string | null;
|
|
344
|
-
name: string;
|
|
345
|
-
id: string;
|
|
346
|
-
level: number;
|
|
347
|
-
createdAt: string;
|
|
348
|
-
updatedAt: string;
|
|
349
|
-
isDefault: boolean;
|
|
350
|
-
}[];
|
|
351
|
-
leader: boolean;
|
|
352
|
-
} & {
|
|
353
|
-
code: string;
|
|
354
|
-
id: string;
|
|
355
|
-
image: {
|
|
356
|
-
"100x100": string | null;
|
|
357
|
-
"64x64": string | null;
|
|
358
|
-
"32x32": string | null;
|
|
359
|
-
};
|
|
360
|
-
email: string;
|
|
361
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
362
|
-
firstName: string;
|
|
363
|
-
lastName: string;
|
|
364
|
-
fullName: string;
|
|
365
|
-
locale: string;
|
|
366
|
-
createdAt: string;
|
|
367
|
-
updatedAt: string;
|
|
368
|
-
employeeId?: string | null | undefined;
|
|
369
|
-
deactivatedAt?: string | null | undefined;
|
|
370
|
-
})[];
|
|
371
|
-
parent?: any;
|
|
372
|
-
}, {
|
|
373
|
-
children: {
|
|
374
|
-
code: string;
|
|
375
|
-
name: string;
|
|
376
|
-
id: string;
|
|
377
|
-
fullName: string;
|
|
378
|
-
createdAt: string;
|
|
379
|
-
updatedAt: string;
|
|
380
|
-
approveOnly: boolean;
|
|
381
|
-
usersCount: number;
|
|
382
|
-
}[];
|
|
383
|
-
users: ({
|
|
384
|
-
grades: {
|
|
385
|
-
code: string | null;
|
|
386
|
-
name: string;
|
|
387
|
-
id: string;
|
|
388
|
-
level: number;
|
|
389
|
-
createdAt: string;
|
|
390
|
-
updatedAt: string;
|
|
391
|
-
isDefault: boolean;
|
|
392
|
-
}[];
|
|
393
|
-
leader: boolean;
|
|
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
|
-
})[];
|
|
413
|
-
parent?: any;
|
|
414
|
-
}>>;
|
|
144
|
+
}, zod.core.$strip>>>;
|
|
145
|
+
}, zod.core.$strip>>;
|
|
415
146
|
/**
|
|
416
147
|
* チームを一件取得します。
|
|
417
148
|
|
|
@@ -447,25 +178,7 @@ export declare const getTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
447
178
|
usersCount: zod.ZodNumber;
|
|
448
179
|
createdAt: zod.ZodString;
|
|
449
180
|
updatedAt: zod.ZodString;
|
|
450
|
-
},
|
|
451
|
-
code: string;
|
|
452
|
-
name: string;
|
|
453
|
-
id: string;
|
|
454
|
-
fullName: string;
|
|
455
|
-
createdAt: string;
|
|
456
|
-
updatedAt: string;
|
|
457
|
-
approveOnly: boolean;
|
|
458
|
-
usersCount: number;
|
|
459
|
-
}, {
|
|
460
|
-
code: string;
|
|
461
|
-
name: string;
|
|
462
|
-
id: string;
|
|
463
|
-
fullName: string;
|
|
464
|
-
createdAt: string;
|
|
465
|
-
updatedAt: string;
|
|
466
|
-
approveOnly: boolean;
|
|
467
|
-
usersCount: number;
|
|
468
|
-
}>, zod.ZodObject<{
|
|
181
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
469
182
|
parent: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
470
183
|
id: zod.ZodString;
|
|
471
184
|
name: zod.ZodString;
|
|
@@ -475,25 +188,7 @@ export declare const getTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
475
188
|
usersCount: zod.ZodNumber;
|
|
476
189
|
createdAt: zod.ZodString;
|
|
477
190
|
updatedAt: zod.ZodString;
|
|
478
|
-
},
|
|
479
|
-
code: string;
|
|
480
|
-
name: string;
|
|
481
|
-
id: string;
|
|
482
|
-
fullName: string;
|
|
483
|
-
createdAt: string;
|
|
484
|
-
updatedAt: string;
|
|
485
|
-
approveOnly: boolean;
|
|
486
|
-
usersCount: number;
|
|
487
|
-
}, {
|
|
488
|
-
code: string;
|
|
489
|
-
name: string;
|
|
490
|
-
id: string;
|
|
491
|
-
fullName: string;
|
|
492
|
-
createdAt: string;
|
|
493
|
-
updatedAt: string;
|
|
494
|
-
approveOnly: boolean;
|
|
495
|
-
usersCount: number;
|
|
496
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
191
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
497
192
|
children: zod.ZodArray<zod.ZodObject<{
|
|
498
193
|
id: zod.ZodString;
|
|
499
194
|
name: zod.ZodString;
|
|
@@ -503,25 +198,7 @@ export declare const getTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
503
198
|
usersCount: zod.ZodNumber;
|
|
504
199
|
createdAt: zod.ZodString;
|
|
505
200
|
updatedAt: zod.ZodString;
|
|
506
|
-
},
|
|
507
|
-
code: string;
|
|
508
|
-
name: string;
|
|
509
|
-
id: string;
|
|
510
|
-
fullName: string;
|
|
511
|
-
createdAt: string;
|
|
512
|
-
updatedAt: string;
|
|
513
|
-
approveOnly: boolean;
|
|
514
|
-
usersCount: number;
|
|
515
|
-
}, {
|
|
516
|
-
code: string;
|
|
517
|
-
name: string;
|
|
518
|
-
id: string;
|
|
519
|
-
fullName: string;
|
|
520
|
-
createdAt: string;
|
|
521
|
-
updatedAt: string;
|
|
522
|
-
approveOnly: boolean;
|
|
523
|
-
usersCount: number;
|
|
524
|
-
}>, "many">;
|
|
201
|
+
}, zod.core.$strip>>;
|
|
525
202
|
users: zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
526
203
|
grades: zod.ZodArray<zod.ZodObject<{
|
|
527
204
|
id: zod.ZodString;
|
|
@@ -531,47 +208,9 @@ export declare const getTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
531
208
|
isDefault: zod.ZodBoolean;
|
|
532
209
|
createdAt: zod.ZodString;
|
|
533
210
|
updatedAt: zod.ZodString;
|
|
534
|
-
},
|
|
535
|
-
code: string | null;
|
|
536
|
-
name: string;
|
|
537
|
-
id: string;
|
|
538
|
-
level: number;
|
|
539
|
-
createdAt: string;
|
|
540
|
-
updatedAt: string;
|
|
541
|
-
isDefault: boolean;
|
|
542
|
-
}, {
|
|
543
|
-
code: string | null;
|
|
544
|
-
name: string;
|
|
545
|
-
id: string;
|
|
546
|
-
level: number;
|
|
547
|
-
createdAt: string;
|
|
548
|
-
updatedAt: string;
|
|
549
|
-
isDefault: boolean;
|
|
550
|
-
}>, "many">;
|
|
211
|
+
}, zod.core.$strip>>;
|
|
551
212
|
leader: zod.ZodBoolean;
|
|
552
|
-
},
|
|
553
|
-
grades: {
|
|
554
|
-
code: string | null;
|
|
555
|
-
name: string;
|
|
556
|
-
id: string;
|
|
557
|
-
level: number;
|
|
558
|
-
createdAt: string;
|
|
559
|
-
updatedAt: string;
|
|
560
|
-
isDefault: boolean;
|
|
561
|
-
}[];
|
|
562
|
-
leader: boolean;
|
|
563
|
-
}, {
|
|
564
|
-
grades: {
|
|
565
|
-
code: string | null;
|
|
566
|
-
name: string;
|
|
567
|
-
id: string;
|
|
568
|
-
level: number;
|
|
569
|
-
createdAt: string;
|
|
570
|
-
updatedAt: string;
|
|
571
|
-
isDefault: boolean;
|
|
572
|
-
}[];
|
|
573
|
-
leader: boolean;
|
|
574
|
-
}>, zod.ZodObject<{
|
|
213
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
575
214
|
id: zod.ZodString;
|
|
576
215
|
email: zod.ZodString;
|
|
577
216
|
code: zod.ZodString;
|
|
@@ -583,142 +222,19 @@ export declare const getTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
583
222
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
584
223
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
585
224
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
586
|
-
},
|
|
587
|
-
|
|
588
|
-
"
|
|
589
|
-
"
|
|
590
|
-
|
|
591
|
-
"
|
|
592
|
-
"64x64": string | null;
|
|
593
|
-
"32x32": string | null;
|
|
225
|
+
}, zod.core.$strip>;
|
|
226
|
+
status: zod.ZodEnum<{
|
|
227
|
+
invited: "invited";
|
|
228
|
+
activated: "activated";
|
|
229
|
+
suspended: "suspended";
|
|
230
|
+
deactivated: "deactivated";
|
|
594
231
|
}>;
|
|
595
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
596
232
|
locale: zod.ZodString;
|
|
597
233
|
createdAt: zod.ZodString;
|
|
598
234
|
updatedAt: zod.ZodString;
|
|
599
235
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
600
|
-
},
|
|
601
|
-
|
|
602
|
-
id: string;
|
|
603
|
-
image: {
|
|
604
|
-
"100x100": string | null;
|
|
605
|
-
"64x64": string | null;
|
|
606
|
-
"32x32": string | null;
|
|
607
|
-
};
|
|
608
|
-
email: string;
|
|
609
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
610
|
-
firstName: string;
|
|
611
|
-
lastName: string;
|
|
612
|
-
fullName: string;
|
|
613
|
-
locale: string;
|
|
614
|
-
createdAt: string;
|
|
615
|
-
updatedAt: string;
|
|
616
|
-
employeeId?: string | null | undefined;
|
|
617
|
-
deactivatedAt?: string | null | undefined;
|
|
618
|
-
}, {
|
|
619
|
-
code: string;
|
|
620
|
-
id: string;
|
|
621
|
-
image: {
|
|
622
|
-
"100x100": string | null;
|
|
623
|
-
"64x64": string | null;
|
|
624
|
-
"32x32": string | null;
|
|
625
|
-
};
|
|
626
|
-
email: string;
|
|
627
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
628
|
-
firstName: string;
|
|
629
|
-
lastName: string;
|
|
630
|
-
fullName: string;
|
|
631
|
-
locale: string;
|
|
632
|
-
createdAt: string;
|
|
633
|
-
updatedAt: string;
|
|
634
|
-
employeeId?: string | null | undefined;
|
|
635
|
-
deactivatedAt?: string | null | undefined;
|
|
636
|
-
}>>, "many">;
|
|
637
|
-
}, "strip", zod.ZodTypeAny, {
|
|
638
|
-
children: {
|
|
639
|
-
code: string;
|
|
640
|
-
name: string;
|
|
641
|
-
id: string;
|
|
642
|
-
fullName: string;
|
|
643
|
-
createdAt: string;
|
|
644
|
-
updatedAt: string;
|
|
645
|
-
approveOnly: boolean;
|
|
646
|
-
usersCount: number;
|
|
647
|
-
}[];
|
|
648
|
-
users: ({
|
|
649
|
-
grades: {
|
|
650
|
-
code: string | null;
|
|
651
|
-
name: string;
|
|
652
|
-
id: string;
|
|
653
|
-
level: number;
|
|
654
|
-
createdAt: string;
|
|
655
|
-
updatedAt: string;
|
|
656
|
-
isDefault: boolean;
|
|
657
|
-
}[];
|
|
658
|
-
leader: boolean;
|
|
659
|
-
} & {
|
|
660
|
-
code: string;
|
|
661
|
-
id: string;
|
|
662
|
-
image: {
|
|
663
|
-
"100x100": string | null;
|
|
664
|
-
"64x64": string | null;
|
|
665
|
-
"32x32": string | null;
|
|
666
|
-
};
|
|
667
|
-
email: string;
|
|
668
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
669
|
-
firstName: string;
|
|
670
|
-
lastName: string;
|
|
671
|
-
fullName: string;
|
|
672
|
-
locale: string;
|
|
673
|
-
createdAt: string;
|
|
674
|
-
updatedAt: string;
|
|
675
|
-
employeeId?: string | null | undefined;
|
|
676
|
-
deactivatedAt?: string | null | undefined;
|
|
677
|
-
})[];
|
|
678
|
-
parent?: any;
|
|
679
|
-
}, {
|
|
680
|
-
children: {
|
|
681
|
-
code: string;
|
|
682
|
-
name: string;
|
|
683
|
-
id: string;
|
|
684
|
-
fullName: string;
|
|
685
|
-
createdAt: string;
|
|
686
|
-
updatedAt: string;
|
|
687
|
-
approveOnly: boolean;
|
|
688
|
-
usersCount: number;
|
|
689
|
-
}[];
|
|
690
|
-
users: ({
|
|
691
|
-
grades: {
|
|
692
|
-
code: string | null;
|
|
693
|
-
name: string;
|
|
694
|
-
id: string;
|
|
695
|
-
level: number;
|
|
696
|
-
createdAt: string;
|
|
697
|
-
updatedAt: string;
|
|
698
|
-
isDefault: boolean;
|
|
699
|
-
}[];
|
|
700
|
-
leader: boolean;
|
|
701
|
-
} & {
|
|
702
|
-
code: string;
|
|
703
|
-
id: string;
|
|
704
|
-
image: {
|
|
705
|
-
"100x100": string | null;
|
|
706
|
-
"64x64": string | null;
|
|
707
|
-
"32x32": string | null;
|
|
708
|
-
};
|
|
709
|
-
email: string;
|
|
710
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
711
|
-
firstName: string;
|
|
712
|
-
lastName: string;
|
|
713
|
-
fullName: string;
|
|
714
|
-
locale: string;
|
|
715
|
-
createdAt: string;
|
|
716
|
-
updatedAt: string;
|
|
717
|
-
employeeId?: string | null | undefined;
|
|
718
|
-
deactivatedAt?: string | null | undefined;
|
|
719
|
-
})[];
|
|
720
|
-
parent?: any;
|
|
721
|
-
}>>;
|
|
236
|
+
}, zod.core.$strip>>>;
|
|
237
|
+
}, zod.core.$strip>>;
|
|
722
238
|
/**
|
|
723
239
|
* チームを更新します。
|
|
724
240
|
|
|
@@ -730,17 +246,7 @@ export declare const updateTeamBody: zod.ZodObject<{
|
|
|
730
246
|
code: zod.ZodOptional<zod.ZodString>;
|
|
731
247
|
parentId: zod.ZodOptional<zod.ZodString>;
|
|
732
248
|
approveOnly: zod.ZodOptional<zod.ZodBoolean>;
|
|
733
|
-
},
|
|
734
|
-
code?: string | undefined;
|
|
735
|
-
name?: string | undefined;
|
|
736
|
-
approveOnly?: boolean | undefined;
|
|
737
|
-
parentId?: string | undefined;
|
|
738
|
-
}, {
|
|
739
|
-
code?: string | undefined;
|
|
740
|
-
name?: string | undefined;
|
|
741
|
-
approveOnly?: boolean | undefined;
|
|
742
|
-
parentId?: string | undefined;
|
|
743
|
-
}>;
|
|
249
|
+
}, zod.core.$strip>;
|
|
744
250
|
export declare const updateTeamResponseNameMax = 255;
|
|
745
251
|
export declare const updateTeamResponseCodeMax = 255;
|
|
746
252
|
export declare const updateTeamResponseUsersCountMin = 0;
|
|
@@ -770,25 +276,7 @@ export declare const updateTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
770
276
|
usersCount: zod.ZodNumber;
|
|
771
277
|
createdAt: zod.ZodString;
|
|
772
278
|
updatedAt: zod.ZodString;
|
|
773
|
-
},
|
|
774
|
-
code: string;
|
|
775
|
-
name: string;
|
|
776
|
-
id: string;
|
|
777
|
-
fullName: string;
|
|
778
|
-
createdAt: string;
|
|
779
|
-
updatedAt: string;
|
|
780
|
-
approveOnly: boolean;
|
|
781
|
-
usersCount: number;
|
|
782
|
-
}, {
|
|
783
|
-
code: string;
|
|
784
|
-
name: string;
|
|
785
|
-
id: string;
|
|
786
|
-
fullName: string;
|
|
787
|
-
createdAt: string;
|
|
788
|
-
updatedAt: string;
|
|
789
|
-
approveOnly: boolean;
|
|
790
|
-
usersCount: number;
|
|
791
|
-
}>, zod.ZodObject<{
|
|
279
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
792
280
|
parent: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
793
281
|
id: zod.ZodString;
|
|
794
282
|
name: zod.ZodString;
|
|
@@ -798,25 +286,7 @@ export declare const updateTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
798
286
|
usersCount: zod.ZodNumber;
|
|
799
287
|
createdAt: zod.ZodString;
|
|
800
288
|
updatedAt: zod.ZodString;
|
|
801
|
-
},
|
|
802
|
-
code: string;
|
|
803
|
-
name: string;
|
|
804
|
-
id: string;
|
|
805
|
-
fullName: string;
|
|
806
|
-
createdAt: string;
|
|
807
|
-
updatedAt: string;
|
|
808
|
-
approveOnly: boolean;
|
|
809
|
-
usersCount: number;
|
|
810
|
-
}, {
|
|
811
|
-
code: string;
|
|
812
|
-
name: string;
|
|
813
|
-
id: string;
|
|
814
|
-
fullName: string;
|
|
815
|
-
createdAt: string;
|
|
816
|
-
updatedAt: string;
|
|
817
|
-
approveOnly: boolean;
|
|
818
|
-
usersCount: number;
|
|
819
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
289
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
820
290
|
children: zod.ZodArray<zod.ZodObject<{
|
|
821
291
|
id: zod.ZodString;
|
|
822
292
|
name: zod.ZodString;
|
|
@@ -826,25 +296,7 @@ export declare const updateTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
826
296
|
usersCount: zod.ZodNumber;
|
|
827
297
|
createdAt: zod.ZodString;
|
|
828
298
|
updatedAt: zod.ZodString;
|
|
829
|
-
},
|
|
830
|
-
code: string;
|
|
831
|
-
name: string;
|
|
832
|
-
id: string;
|
|
833
|
-
fullName: string;
|
|
834
|
-
createdAt: string;
|
|
835
|
-
updatedAt: string;
|
|
836
|
-
approveOnly: boolean;
|
|
837
|
-
usersCount: number;
|
|
838
|
-
}, {
|
|
839
|
-
code: string;
|
|
840
|
-
name: string;
|
|
841
|
-
id: string;
|
|
842
|
-
fullName: string;
|
|
843
|
-
createdAt: string;
|
|
844
|
-
updatedAt: string;
|
|
845
|
-
approveOnly: boolean;
|
|
846
|
-
usersCount: number;
|
|
847
|
-
}>, "many">;
|
|
299
|
+
}, zod.core.$strip>>;
|
|
848
300
|
users: zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
849
301
|
grades: zod.ZodArray<zod.ZodObject<{
|
|
850
302
|
id: zod.ZodString;
|
|
@@ -854,47 +306,9 @@ export declare const updateTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
854
306
|
isDefault: zod.ZodBoolean;
|
|
855
307
|
createdAt: zod.ZodString;
|
|
856
308
|
updatedAt: zod.ZodString;
|
|
857
|
-
},
|
|
858
|
-
code: string | null;
|
|
859
|
-
name: string;
|
|
860
|
-
id: string;
|
|
861
|
-
level: number;
|
|
862
|
-
createdAt: string;
|
|
863
|
-
updatedAt: string;
|
|
864
|
-
isDefault: boolean;
|
|
865
|
-
}, {
|
|
866
|
-
code: string | null;
|
|
867
|
-
name: string;
|
|
868
|
-
id: string;
|
|
869
|
-
level: number;
|
|
870
|
-
createdAt: string;
|
|
871
|
-
updatedAt: string;
|
|
872
|
-
isDefault: boolean;
|
|
873
|
-
}>, "many">;
|
|
309
|
+
}, zod.core.$strip>>;
|
|
874
310
|
leader: zod.ZodBoolean;
|
|
875
|
-
},
|
|
876
|
-
grades: {
|
|
877
|
-
code: string | null;
|
|
878
|
-
name: string;
|
|
879
|
-
id: string;
|
|
880
|
-
level: number;
|
|
881
|
-
createdAt: string;
|
|
882
|
-
updatedAt: string;
|
|
883
|
-
isDefault: boolean;
|
|
884
|
-
}[];
|
|
885
|
-
leader: boolean;
|
|
886
|
-
}, {
|
|
887
|
-
grades: {
|
|
888
|
-
code: string | null;
|
|
889
|
-
name: string;
|
|
890
|
-
id: string;
|
|
891
|
-
level: number;
|
|
892
|
-
createdAt: string;
|
|
893
|
-
updatedAt: string;
|
|
894
|
-
isDefault: boolean;
|
|
895
|
-
}[];
|
|
896
|
-
leader: boolean;
|
|
897
|
-
}>, zod.ZodObject<{
|
|
311
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
898
312
|
id: zod.ZodString;
|
|
899
313
|
email: zod.ZodString;
|
|
900
314
|
code: zod.ZodString;
|
|
@@ -906,142 +320,19 @@ export declare const updateTeamResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
906
320
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
907
321
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
908
322
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
909
|
-
},
|
|
910
|
-
|
|
911
|
-
"
|
|
912
|
-
"
|
|
913
|
-
|
|
914
|
-
"
|
|
915
|
-
"64x64": string | null;
|
|
916
|
-
"32x32": string | null;
|
|
323
|
+
}, zod.core.$strip>;
|
|
324
|
+
status: zod.ZodEnum<{
|
|
325
|
+
invited: "invited";
|
|
326
|
+
activated: "activated";
|
|
327
|
+
suspended: "suspended";
|
|
328
|
+
deactivated: "deactivated";
|
|
917
329
|
}>;
|
|
918
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
919
330
|
locale: zod.ZodString;
|
|
920
331
|
createdAt: zod.ZodString;
|
|
921
332
|
updatedAt: zod.ZodString;
|
|
922
333
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
923
|
-
},
|
|
924
|
-
|
|
925
|
-
id: string;
|
|
926
|
-
image: {
|
|
927
|
-
"100x100": string | null;
|
|
928
|
-
"64x64": string | null;
|
|
929
|
-
"32x32": string | null;
|
|
930
|
-
};
|
|
931
|
-
email: string;
|
|
932
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
933
|
-
firstName: string;
|
|
934
|
-
lastName: string;
|
|
935
|
-
fullName: string;
|
|
936
|
-
locale: string;
|
|
937
|
-
createdAt: string;
|
|
938
|
-
updatedAt: string;
|
|
939
|
-
employeeId?: string | null | undefined;
|
|
940
|
-
deactivatedAt?: string | null | undefined;
|
|
941
|
-
}, {
|
|
942
|
-
code: string;
|
|
943
|
-
id: string;
|
|
944
|
-
image: {
|
|
945
|
-
"100x100": string | null;
|
|
946
|
-
"64x64": string | null;
|
|
947
|
-
"32x32": string | null;
|
|
948
|
-
};
|
|
949
|
-
email: string;
|
|
950
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
951
|
-
firstName: string;
|
|
952
|
-
lastName: string;
|
|
953
|
-
fullName: string;
|
|
954
|
-
locale: string;
|
|
955
|
-
createdAt: string;
|
|
956
|
-
updatedAt: string;
|
|
957
|
-
employeeId?: string | null | undefined;
|
|
958
|
-
deactivatedAt?: string | null | undefined;
|
|
959
|
-
}>>, "many">;
|
|
960
|
-
}, "strip", zod.ZodTypeAny, {
|
|
961
|
-
children: {
|
|
962
|
-
code: string;
|
|
963
|
-
name: string;
|
|
964
|
-
id: string;
|
|
965
|
-
fullName: string;
|
|
966
|
-
createdAt: string;
|
|
967
|
-
updatedAt: string;
|
|
968
|
-
approveOnly: boolean;
|
|
969
|
-
usersCount: number;
|
|
970
|
-
}[];
|
|
971
|
-
users: ({
|
|
972
|
-
grades: {
|
|
973
|
-
code: string | null;
|
|
974
|
-
name: string;
|
|
975
|
-
id: string;
|
|
976
|
-
level: number;
|
|
977
|
-
createdAt: string;
|
|
978
|
-
updatedAt: string;
|
|
979
|
-
isDefault: boolean;
|
|
980
|
-
}[];
|
|
981
|
-
leader: boolean;
|
|
982
|
-
} & {
|
|
983
|
-
code: string;
|
|
984
|
-
id: string;
|
|
985
|
-
image: {
|
|
986
|
-
"100x100": string | null;
|
|
987
|
-
"64x64": string | null;
|
|
988
|
-
"32x32": string | null;
|
|
989
|
-
};
|
|
990
|
-
email: string;
|
|
991
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
992
|
-
firstName: string;
|
|
993
|
-
lastName: string;
|
|
994
|
-
fullName: string;
|
|
995
|
-
locale: string;
|
|
996
|
-
createdAt: string;
|
|
997
|
-
updatedAt: string;
|
|
998
|
-
employeeId?: string | null | undefined;
|
|
999
|
-
deactivatedAt?: string | null | undefined;
|
|
1000
|
-
})[];
|
|
1001
|
-
parent?: any;
|
|
1002
|
-
}, {
|
|
1003
|
-
children: {
|
|
1004
|
-
code: string;
|
|
1005
|
-
name: string;
|
|
1006
|
-
id: string;
|
|
1007
|
-
fullName: string;
|
|
1008
|
-
createdAt: string;
|
|
1009
|
-
updatedAt: string;
|
|
1010
|
-
approveOnly: boolean;
|
|
1011
|
-
usersCount: number;
|
|
1012
|
-
}[];
|
|
1013
|
-
users: ({
|
|
1014
|
-
grades: {
|
|
1015
|
-
code: string | null;
|
|
1016
|
-
name: string;
|
|
1017
|
-
id: string;
|
|
1018
|
-
level: number;
|
|
1019
|
-
createdAt: string;
|
|
1020
|
-
updatedAt: string;
|
|
1021
|
-
isDefault: boolean;
|
|
1022
|
-
}[];
|
|
1023
|
-
leader: boolean;
|
|
1024
|
-
} & {
|
|
1025
|
-
code: string;
|
|
1026
|
-
id: string;
|
|
1027
|
-
image: {
|
|
1028
|
-
"100x100": string | null;
|
|
1029
|
-
"64x64": string | null;
|
|
1030
|
-
"32x32": string | null;
|
|
1031
|
-
};
|
|
1032
|
-
email: string;
|
|
1033
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1034
|
-
firstName: string;
|
|
1035
|
-
lastName: string;
|
|
1036
|
-
fullName: string;
|
|
1037
|
-
locale: string;
|
|
1038
|
-
createdAt: string;
|
|
1039
|
-
updatedAt: string;
|
|
1040
|
-
employeeId?: string | null | undefined;
|
|
1041
|
-
deactivatedAt?: string | null | undefined;
|
|
1042
|
-
})[];
|
|
1043
|
-
parent?: any;
|
|
1044
|
-
}>>;
|
|
334
|
+
}, zod.core.$strip>>>;
|
|
335
|
+
}, zod.core.$strip>>;
|
|
1045
336
|
/**
|
|
1046
337
|
* チームのメンバー一覧を取得します。
|
|
1047
338
|
|
|
@@ -1054,13 +345,7 @@ export declare const listTeamMembersQueryPerPageMax = 100;
|
|
|
1054
345
|
export declare const listTeamMembersQueryParams: zod.ZodObject<{
|
|
1055
346
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
1056
347
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
1057
|
-
},
|
|
1058
|
-
page: number;
|
|
1059
|
-
perPage: number;
|
|
1060
|
-
}, {
|
|
1061
|
-
page?: number | undefined;
|
|
1062
|
-
perPage?: number | undefined;
|
|
1063
|
-
}>;
|
|
348
|
+
}, zod.core.$strip>;
|
|
1064
349
|
export declare const listTeamMembersResponseGradesItemNameMax = 255;
|
|
1065
350
|
export declare const listTeamMembersResponseGradesItemLevelMin = 0;
|
|
1066
351
|
export declare const listTeamMembersResponseGradesItemLevelMax = 255;
|
|
@@ -1081,47 +366,9 @@ export declare const listTeamMembersResponseItem: zod.ZodIntersection<zod.ZodObj
|
|
|
1081
366
|
isDefault: zod.ZodBoolean;
|
|
1082
367
|
createdAt: zod.ZodString;
|
|
1083
368
|
updatedAt: zod.ZodString;
|
|
1084
|
-
},
|
|
1085
|
-
code: string | null;
|
|
1086
|
-
name: string;
|
|
1087
|
-
id: string;
|
|
1088
|
-
level: number;
|
|
1089
|
-
createdAt: string;
|
|
1090
|
-
updatedAt: string;
|
|
1091
|
-
isDefault: boolean;
|
|
1092
|
-
}, {
|
|
1093
|
-
code: string | null;
|
|
1094
|
-
name: string;
|
|
1095
|
-
id: string;
|
|
1096
|
-
level: number;
|
|
1097
|
-
createdAt: string;
|
|
1098
|
-
updatedAt: string;
|
|
1099
|
-
isDefault: boolean;
|
|
1100
|
-
}>, "many">;
|
|
369
|
+
}, zod.core.$strip>>;
|
|
1101
370
|
leader: zod.ZodBoolean;
|
|
1102
|
-
},
|
|
1103
|
-
grades: {
|
|
1104
|
-
code: string | null;
|
|
1105
|
-
name: string;
|
|
1106
|
-
id: string;
|
|
1107
|
-
level: number;
|
|
1108
|
-
createdAt: string;
|
|
1109
|
-
updatedAt: string;
|
|
1110
|
-
isDefault: boolean;
|
|
1111
|
-
}[];
|
|
1112
|
-
leader: boolean;
|
|
1113
|
-
}, {
|
|
1114
|
-
grades: {
|
|
1115
|
-
code: string | null;
|
|
1116
|
-
name: string;
|
|
1117
|
-
id: string;
|
|
1118
|
-
level: number;
|
|
1119
|
-
createdAt: string;
|
|
1120
|
-
updatedAt: string;
|
|
1121
|
-
isDefault: boolean;
|
|
1122
|
-
}[];
|
|
1123
|
-
leader: boolean;
|
|
1124
|
-
}>, zod.ZodObject<{
|
|
371
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
1125
372
|
id: zod.ZodString;
|
|
1126
373
|
email: zod.ZodString;
|
|
1127
374
|
code: zod.ZodString;
|
|
@@ -1133,57 +380,18 @@ export declare const listTeamMembersResponseItem: zod.ZodIntersection<zod.ZodObj
|
|
|
1133
380
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
1134
381
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
1135
382
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
1136
|
-
},
|
|
1137
|
-
|
|
1138
|
-
"
|
|
1139
|
-
"
|
|
1140
|
-
|
|
1141
|
-
"
|
|
1142
|
-
"64x64": string | null;
|
|
1143
|
-
"32x32": string | null;
|
|
383
|
+
}, zod.core.$strip>;
|
|
384
|
+
status: zod.ZodEnum<{
|
|
385
|
+
invited: "invited";
|
|
386
|
+
activated: "activated";
|
|
387
|
+
suspended: "suspended";
|
|
388
|
+
deactivated: "deactivated";
|
|
1144
389
|
}>;
|
|
1145
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
1146
390
|
locale: zod.ZodString;
|
|
1147
391
|
createdAt: zod.ZodString;
|
|
1148
392
|
updatedAt: zod.ZodString;
|
|
1149
393
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1150
|
-
},
|
|
1151
|
-
code: string;
|
|
1152
|
-
id: string;
|
|
1153
|
-
image: {
|
|
1154
|
-
"100x100": string | null;
|
|
1155
|
-
"64x64": string | null;
|
|
1156
|
-
"32x32": string | null;
|
|
1157
|
-
};
|
|
1158
|
-
email: string;
|
|
1159
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1160
|
-
firstName: string;
|
|
1161
|
-
lastName: string;
|
|
1162
|
-
fullName: string;
|
|
1163
|
-
locale: string;
|
|
1164
|
-
createdAt: string;
|
|
1165
|
-
updatedAt: string;
|
|
1166
|
-
employeeId?: string | null | undefined;
|
|
1167
|
-
deactivatedAt?: string | null | undefined;
|
|
1168
|
-
}, {
|
|
1169
|
-
code: string;
|
|
1170
|
-
id: string;
|
|
1171
|
-
image: {
|
|
1172
|
-
"100x100": string | null;
|
|
1173
|
-
"64x64": string | null;
|
|
1174
|
-
"32x32": string | null;
|
|
1175
|
-
};
|
|
1176
|
-
email: string;
|
|
1177
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1178
|
-
firstName: string;
|
|
1179
|
-
lastName: string;
|
|
1180
|
-
fullName: string;
|
|
1181
|
-
locale: string;
|
|
1182
|
-
createdAt: string;
|
|
1183
|
-
updatedAt: string;
|
|
1184
|
-
employeeId?: string | null | undefined;
|
|
1185
|
-
deactivatedAt?: string | null | undefined;
|
|
1186
|
-
}>>;
|
|
394
|
+
}, zod.core.$strip>>;
|
|
1187
395
|
export declare const listTeamMembersResponse: zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
1188
396
|
grades: zod.ZodArray<zod.ZodObject<{
|
|
1189
397
|
id: zod.ZodString;
|
|
@@ -1193,47 +401,9 @@ export declare const listTeamMembersResponse: zod.ZodArray<zod.ZodIntersection<z
|
|
|
1193
401
|
isDefault: zod.ZodBoolean;
|
|
1194
402
|
createdAt: zod.ZodString;
|
|
1195
403
|
updatedAt: zod.ZodString;
|
|
1196
|
-
},
|
|
1197
|
-
code: string | null;
|
|
1198
|
-
name: string;
|
|
1199
|
-
id: string;
|
|
1200
|
-
level: number;
|
|
1201
|
-
createdAt: string;
|
|
1202
|
-
updatedAt: string;
|
|
1203
|
-
isDefault: boolean;
|
|
1204
|
-
}, {
|
|
1205
|
-
code: string | null;
|
|
1206
|
-
name: string;
|
|
1207
|
-
id: string;
|
|
1208
|
-
level: number;
|
|
1209
|
-
createdAt: string;
|
|
1210
|
-
updatedAt: string;
|
|
1211
|
-
isDefault: boolean;
|
|
1212
|
-
}>, "many">;
|
|
404
|
+
}, zod.core.$strip>>;
|
|
1213
405
|
leader: zod.ZodBoolean;
|
|
1214
|
-
},
|
|
1215
|
-
grades: {
|
|
1216
|
-
code: string | null;
|
|
1217
|
-
name: string;
|
|
1218
|
-
id: string;
|
|
1219
|
-
level: number;
|
|
1220
|
-
createdAt: string;
|
|
1221
|
-
updatedAt: string;
|
|
1222
|
-
isDefault: boolean;
|
|
1223
|
-
}[];
|
|
1224
|
-
leader: boolean;
|
|
1225
|
-
}, {
|
|
1226
|
-
grades: {
|
|
1227
|
-
code: string | null;
|
|
1228
|
-
name: string;
|
|
1229
|
-
id: string;
|
|
1230
|
-
level: number;
|
|
1231
|
-
createdAt: string;
|
|
1232
|
-
updatedAt: string;
|
|
1233
|
-
isDefault: boolean;
|
|
1234
|
-
}[];
|
|
1235
|
-
leader: boolean;
|
|
1236
|
-
}>, zod.ZodObject<{
|
|
406
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
1237
407
|
id: zod.ZodString;
|
|
1238
408
|
email: zod.ZodString;
|
|
1239
409
|
code: zod.ZodString;
|
|
@@ -1245,57 +415,18 @@ export declare const listTeamMembersResponse: zod.ZodArray<zod.ZodIntersection<z
|
|
|
1245
415
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
1246
416
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
1247
417
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
1248
|
-
},
|
|
1249
|
-
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1252
|
-
|
|
1253
|
-
"
|
|
1254
|
-
"64x64": string | null;
|
|
1255
|
-
"32x32": string | null;
|
|
418
|
+
}, zod.core.$strip>;
|
|
419
|
+
status: zod.ZodEnum<{
|
|
420
|
+
invited: "invited";
|
|
421
|
+
activated: "activated";
|
|
422
|
+
suspended: "suspended";
|
|
423
|
+
deactivated: "deactivated";
|
|
1256
424
|
}>;
|
|
1257
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
1258
425
|
locale: zod.ZodString;
|
|
1259
426
|
createdAt: zod.ZodString;
|
|
1260
427
|
updatedAt: zod.ZodString;
|
|
1261
428
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1262
|
-
},
|
|
1263
|
-
code: string;
|
|
1264
|
-
id: string;
|
|
1265
|
-
image: {
|
|
1266
|
-
"100x100": string | null;
|
|
1267
|
-
"64x64": string | null;
|
|
1268
|
-
"32x32": string | null;
|
|
1269
|
-
};
|
|
1270
|
-
email: string;
|
|
1271
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1272
|
-
firstName: string;
|
|
1273
|
-
lastName: string;
|
|
1274
|
-
fullName: string;
|
|
1275
|
-
locale: string;
|
|
1276
|
-
createdAt: string;
|
|
1277
|
-
updatedAt: string;
|
|
1278
|
-
employeeId?: string | null | undefined;
|
|
1279
|
-
deactivatedAt?: string | null | undefined;
|
|
1280
|
-
}, {
|
|
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
|
-
}>>, "many">;
|
|
429
|
+
}, zod.core.$strip>>>;
|
|
1299
430
|
/**
|
|
1300
431
|
* 指定したチームにメンバーを追加します。最大10人まで同時に追加可能です。
|
|
1301
432
|
|
|
@@ -1309,29 +440,9 @@ export declare const createTeamMembersBody: zod.ZodObject<{
|
|
|
1309
440
|
users: zod.ZodArray<zod.ZodObject<{
|
|
1310
441
|
id: zod.ZodString;
|
|
1311
442
|
leader: zod.ZodBoolean;
|
|
1312
|
-
gradeIds: zod.ZodOptional<zod.ZodArray<zod.ZodString
|
|
1313
|
-
},
|
|
1314
|
-
|
|
1315
|
-
leader: boolean;
|
|
1316
|
-
gradeIds?: string[] | undefined;
|
|
1317
|
-
}, {
|
|
1318
|
-
id: string;
|
|
1319
|
-
leader: boolean;
|
|
1320
|
-
gradeIds?: string[] | undefined;
|
|
1321
|
-
}>, "many">;
|
|
1322
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1323
|
-
users: {
|
|
1324
|
-
id: string;
|
|
1325
|
-
leader: boolean;
|
|
1326
|
-
gradeIds?: string[] | undefined;
|
|
1327
|
-
}[];
|
|
1328
|
-
}, {
|
|
1329
|
-
users: {
|
|
1330
|
-
id: string;
|
|
1331
|
-
leader: boolean;
|
|
1332
|
-
gradeIds?: string[] | undefined;
|
|
1333
|
-
}[];
|
|
1334
|
-
}>;
|
|
443
|
+
gradeIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
444
|
+
}, zod.core.$strip>>;
|
|
445
|
+
}, zod.core.$strip>;
|
|
1335
446
|
/**
|
|
1336
447
|
* 指定したチームからメンバーを削除します。最大10人まで同時に削除可能です。
|
|
1337
448
|
|
|
@@ -1342,12 +453,8 @@ export declare const createTeamMembersBody: zod.ZodObject<{
|
|
|
1342
453
|
*/
|
|
1343
454
|
export declare const deleteTeamMembersBodyUserIdsMax = 10;
|
|
1344
455
|
export declare const deleteTeamMembersBody: zod.ZodObject<{
|
|
1345
|
-
userIds: zod.ZodArray<zod.ZodString
|
|
1346
|
-
},
|
|
1347
|
-
userIds: string[];
|
|
1348
|
-
}, {
|
|
1349
|
-
userIds: string[];
|
|
1350
|
-
}>;
|
|
456
|
+
userIds: zod.ZodArray<zod.ZodString>;
|
|
457
|
+
}, zod.core.$strip>;
|
|
1351
458
|
/**
|
|
1352
459
|
* 指定したメンバーを更新します。
|
|
1353
460
|
|
|
@@ -1358,11 +465,5 @@ export declare const deleteTeamMembersBody: zod.ZodObject<{
|
|
|
1358
465
|
*/
|
|
1359
466
|
export declare const updateTeamMemberBody: zod.ZodObject<{
|
|
1360
467
|
leader: zod.ZodBoolean;
|
|
1361
|
-
gradeIds: zod.ZodArray<zod.ZodString
|
|
1362
|
-
},
|
|
1363
|
-
leader: boolean;
|
|
1364
|
-
gradeIds: string[];
|
|
1365
|
-
}, {
|
|
1366
|
-
leader: boolean;
|
|
1367
|
-
gradeIds: string[];
|
|
1368
|
-
}>;
|
|
468
|
+
gradeIds: zod.ZodArray<zod.ZodString>;
|
|
469
|
+
}, zod.core.$strip>;
|