@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
|
@@ -20,15 +20,7 @@ export declare const listRolesQueryParams: zod.ZodObject<{
|
|
|
20
20
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
21
21
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
22
22
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
23
|
-
},
|
|
24
|
-
page: number;
|
|
25
|
-
perPage: number;
|
|
26
|
-
sortBy?: string | undefined;
|
|
27
|
-
}, {
|
|
28
|
-
page?: number | undefined;
|
|
29
|
-
perPage?: number | undefined;
|
|
30
|
-
sortBy?: string | undefined;
|
|
31
|
-
}>;
|
|
23
|
+
}, zod.core.$strip>;
|
|
32
24
|
export declare const listRolesResponseNameMax = 255;
|
|
33
25
|
export declare const listRolesResponseUsersCountMin = 0;
|
|
34
26
|
export declare const listRolesResponseItem: zod.ZodObject<{
|
|
@@ -38,21 +30,7 @@ export declare const listRolesResponseItem: zod.ZodObject<{
|
|
|
38
30
|
usersCount: zod.ZodNumber;
|
|
39
31
|
createdAt: zod.ZodString;
|
|
40
32
|
updatedAt: zod.ZodString;
|
|
41
|
-
},
|
|
42
|
-
name: string;
|
|
43
|
-
id: string;
|
|
44
|
-
createdAt: string;
|
|
45
|
-
updatedAt: string;
|
|
46
|
-
usersCount: number;
|
|
47
|
-
editable: boolean;
|
|
48
|
-
}, {
|
|
49
|
-
name: string;
|
|
50
|
-
id: string;
|
|
51
|
-
createdAt: string;
|
|
52
|
-
updatedAt: string;
|
|
53
|
-
usersCount: number;
|
|
54
|
-
editable: boolean;
|
|
55
|
-
}>;
|
|
33
|
+
}, zod.core.$strip>;
|
|
56
34
|
export declare const listRolesResponse: zod.ZodArray<zod.ZodObject<{
|
|
57
35
|
id: zod.ZodString;
|
|
58
36
|
name: zod.ZodString;
|
|
@@ -60,21 +38,7 @@ export declare const listRolesResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
60
38
|
usersCount: zod.ZodNumber;
|
|
61
39
|
createdAt: zod.ZodString;
|
|
62
40
|
updatedAt: zod.ZodString;
|
|
63
|
-
},
|
|
64
|
-
name: string;
|
|
65
|
-
id: string;
|
|
66
|
-
createdAt: string;
|
|
67
|
-
updatedAt: string;
|
|
68
|
-
usersCount: number;
|
|
69
|
-
editable: boolean;
|
|
70
|
-
}, {
|
|
71
|
-
name: string;
|
|
72
|
-
id: string;
|
|
73
|
-
createdAt: string;
|
|
74
|
-
updatedAt: string;
|
|
75
|
-
usersCount: number;
|
|
76
|
-
editable: boolean;
|
|
77
|
-
}>, "many">;
|
|
41
|
+
}, zod.core.$strip>>;
|
|
78
42
|
/**
|
|
79
43
|
* 管理者ロールを作成します。
|
|
80
44
|
|
|
@@ -84,43 +48,32 @@ export declare const listRolesResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
84
48
|
export declare const createRoleBody: zod.ZodObject<{
|
|
85
49
|
name: zod.ZodString;
|
|
86
50
|
permissionList: zod.ZodArray<zod.ZodObject<{
|
|
87
|
-
permission: zod.ZodEnum<
|
|
51
|
+
permission: zod.ZodEnum<{
|
|
52
|
+
user: "user";
|
|
53
|
+
tenant: "tenant";
|
|
54
|
+
billing: "billing";
|
|
55
|
+
integration: "integration";
|
|
56
|
+
security: "security";
|
|
57
|
+
audit: "audit";
|
|
58
|
+
stats: "stats";
|
|
59
|
+
workflow: "workflow";
|
|
60
|
+
route: "route";
|
|
61
|
+
pipeline: "pipeline";
|
|
62
|
+
workflow_misc: "workflow_misc";
|
|
63
|
+
team: "team";
|
|
64
|
+
role: "role";
|
|
65
|
+
master: "master";
|
|
66
|
+
ticket_read: "ticket_read";
|
|
67
|
+
ticket_write: "ticket_write";
|
|
68
|
+
label: "label";
|
|
69
|
+
automation: "automation";
|
|
70
|
+
}>;
|
|
88
71
|
restricted: zod.ZodBoolean;
|
|
89
|
-
folderIds: zod.ZodOptional<zod.ZodArray<zod.ZodString
|
|
90
|
-
generalMasterIds: zod.ZodOptional<zod.ZodArray<zod.ZodString
|
|
91
|
-
teamIds: zod.ZodOptional<zod.ZodArray<zod.ZodString
|
|
92
|
-
},
|
|
93
|
-
|
|
94
|
-
restricted: boolean;
|
|
95
|
-
folderIds?: string[] | undefined;
|
|
96
|
-
generalMasterIds?: string[] | undefined;
|
|
97
|
-
teamIds?: string[] | undefined;
|
|
98
|
-
}, {
|
|
99
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
100
|
-
restricted: boolean;
|
|
101
|
-
folderIds?: string[] | undefined;
|
|
102
|
-
generalMasterIds?: string[] | undefined;
|
|
103
|
-
teamIds?: string[] | undefined;
|
|
104
|
-
}>, "many">;
|
|
105
|
-
}, "strip", zod.ZodTypeAny, {
|
|
106
|
-
name: string;
|
|
107
|
-
permissionList: {
|
|
108
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
109
|
-
restricted: boolean;
|
|
110
|
-
folderIds?: string[] | undefined;
|
|
111
|
-
generalMasterIds?: string[] | undefined;
|
|
112
|
-
teamIds?: string[] | undefined;
|
|
113
|
-
}[];
|
|
114
|
-
}, {
|
|
115
|
-
name: string;
|
|
116
|
-
permissionList: {
|
|
117
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
118
|
-
restricted: boolean;
|
|
119
|
-
folderIds?: string[] | undefined;
|
|
120
|
-
generalMasterIds?: string[] | undefined;
|
|
121
|
-
teamIds?: string[] | undefined;
|
|
122
|
-
}[];
|
|
123
|
-
}>;
|
|
72
|
+
folderIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
73
|
+
generalMasterIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
74
|
+
teamIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
75
|
+
}, zod.core.$strip>>;
|
|
76
|
+
}, zod.core.$strip>;
|
|
124
77
|
export declare const createRoleResponseNameMax = 255;
|
|
125
78
|
export declare const createRoleResponseUsersCountMin = 0;
|
|
126
79
|
export declare const createRoleResponsePermissionListItemFoldersItemNameMax = 255;
|
|
@@ -142,23 +95,28 @@ export declare const createRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
142
95
|
usersCount: zod.ZodNumber;
|
|
143
96
|
createdAt: zod.ZodString;
|
|
144
97
|
updatedAt: zod.ZodString;
|
|
145
|
-
},
|
|
146
|
-
name: string;
|
|
147
|
-
id: string;
|
|
148
|
-
createdAt: string;
|
|
149
|
-
updatedAt: string;
|
|
150
|
-
usersCount: number;
|
|
151
|
-
editable: boolean;
|
|
152
|
-
}, {
|
|
153
|
-
name: string;
|
|
154
|
-
id: string;
|
|
155
|
-
createdAt: string;
|
|
156
|
-
updatedAt: string;
|
|
157
|
-
usersCount: number;
|
|
158
|
-
editable: boolean;
|
|
159
|
-
}>, zod.ZodObject<{
|
|
98
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
160
99
|
permissionList: zod.ZodArray<zod.ZodObject<{
|
|
161
|
-
permission: zod.ZodEnum<
|
|
100
|
+
permission: zod.ZodEnum<{
|
|
101
|
+
user: "user";
|
|
102
|
+
tenant: "tenant";
|
|
103
|
+
billing: "billing";
|
|
104
|
+
integration: "integration";
|
|
105
|
+
security: "security";
|
|
106
|
+
audit: "audit";
|
|
107
|
+
stats: "stats";
|
|
108
|
+
workflow: "workflow";
|
|
109
|
+
route: "route";
|
|
110
|
+
pipeline: "pipeline";
|
|
111
|
+
workflow_misc: "workflow_misc";
|
|
112
|
+
team: "team";
|
|
113
|
+
role: "role";
|
|
114
|
+
master: "master";
|
|
115
|
+
ticket_read: "ticket_read";
|
|
116
|
+
ticket_write: "ticket_write";
|
|
117
|
+
label: "label";
|
|
118
|
+
automation: "automation";
|
|
119
|
+
}>;
|
|
162
120
|
restricted: zod.ZodBoolean;
|
|
163
121
|
folders: zod.ZodArray<zod.ZodObject<{
|
|
164
122
|
id: zod.ZodString;
|
|
@@ -170,27 +128,7 @@ export declare const createRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
170
128
|
pipelinesCount: zod.ZodNumber;
|
|
171
129
|
createdAt: zod.ZodString;
|
|
172
130
|
updatedAt: zod.ZodString;
|
|
173
|
-
},
|
|
174
|
-
code: string;
|
|
175
|
-
name: string;
|
|
176
|
-
id: string;
|
|
177
|
-
createdAt: string;
|
|
178
|
-
updatedAt: string;
|
|
179
|
-
workflowsCount: number;
|
|
180
|
-
routesCount: number;
|
|
181
|
-
pipelinesCount: number;
|
|
182
|
-
description?: string | null | undefined;
|
|
183
|
-
}, {
|
|
184
|
-
code: string;
|
|
185
|
-
name: string;
|
|
186
|
-
id: string;
|
|
187
|
-
createdAt: string;
|
|
188
|
-
updatedAt: string;
|
|
189
|
-
workflowsCount: number;
|
|
190
|
-
routesCount: number;
|
|
191
|
-
pipelinesCount: number;
|
|
192
|
-
description?: string | null | undefined;
|
|
193
|
-
}>, "many">;
|
|
131
|
+
}, zod.core.$strip>>;
|
|
194
132
|
generalMasters: zod.ZodArray<zod.ZodObject<{
|
|
195
133
|
id: zod.ZodString;
|
|
196
134
|
code: zod.ZodString;
|
|
@@ -203,74 +141,22 @@ export declare const createRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
203
141
|
title: zod.ZodString;
|
|
204
142
|
description: zod.ZodNullable<zod.ZodString>;
|
|
205
143
|
code: zod.ZodString;
|
|
206
|
-
fieldType: zod.ZodEnum<
|
|
144
|
+
fieldType: zod.ZodEnum<{
|
|
145
|
+
number: "number";
|
|
146
|
+
text: "text";
|
|
147
|
+
date: "date";
|
|
148
|
+
text_long: "text_long";
|
|
149
|
+
integer: "integer";
|
|
150
|
+
checkbox: "checkbox";
|
|
151
|
+
pull_down: "pull_down";
|
|
152
|
+
}>;
|
|
207
153
|
required: zod.ZodBoolean;
|
|
208
154
|
visible: zod.ZodBoolean;
|
|
209
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
155
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
210
156
|
createdAt: zod.ZodString;
|
|
211
157
|
updatedAt: zod.ZodString;
|
|
212
|
-
},
|
|
213
|
-
|
|
214
|
-
required: boolean;
|
|
215
|
-
id: string;
|
|
216
|
-
visible: boolean;
|
|
217
|
-
title: string;
|
|
218
|
-
options: string[] | null;
|
|
219
|
-
description: string | null;
|
|
220
|
-
createdAt: string;
|
|
221
|
-
updatedAt: string;
|
|
222
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
223
|
-
}, {
|
|
224
|
-
code: string;
|
|
225
|
-
required: boolean;
|
|
226
|
-
id: string;
|
|
227
|
-
visible: boolean;
|
|
228
|
-
title: string;
|
|
229
|
-
options: string[] | null;
|
|
230
|
-
description: string | null;
|
|
231
|
-
createdAt: string;
|
|
232
|
-
updatedAt: string;
|
|
233
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
234
|
-
}>, "many">;
|
|
235
|
-
}, "strip", zod.ZodTypeAny, {
|
|
236
|
-
code: string;
|
|
237
|
-
name: string;
|
|
238
|
-
id: string;
|
|
239
|
-
description: string | null;
|
|
240
|
-
createdAt: string;
|
|
241
|
-
updatedAt: string;
|
|
242
|
-
fields: {
|
|
243
|
-
code: string;
|
|
244
|
-
required: boolean;
|
|
245
|
-
id: string;
|
|
246
|
-
visible: boolean;
|
|
247
|
-
title: string;
|
|
248
|
-
options: string[] | null;
|
|
249
|
-
description: string | null;
|
|
250
|
-
createdAt: string;
|
|
251
|
-
updatedAt: string;
|
|
252
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
253
|
-
}[];
|
|
254
|
-
}, {
|
|
255
|
-
code: string;
|
|
256
|
-
name: string;
|
|
257
|
-
id: string;
|
|
258
|
-
description: string | null;
|
|
259
|
-
createdAt: string;
|
|
260
|
-
updatedAt: string;
|
|
261
|
-
fields: {
|
|
262
|
-
code: string;
|
|
263
|
-
required: boolean;
|
|
264
|
-
id: string;
|
|
265
|
-
visible: boolean;
|
|
266
|
-
title: string;
|
|
267
|
-
options: string[] | null;
|
|
268
|
-
description: string | null;
|
|
269
|
-
createdAt: string;
|
|
270
|
-
updatedAt: string;
|
|
271
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
272
|
-
}[];
|
|
273
|
-
}>, "many">;
|
|
158
|
+
}, zod.core.$strip>>;
|
|
159
|
+
}, zod.core.$strip>>;
|
|
274
160
|
teams: zod.ZodArray<zod.ZodObject<{
|
|
275
161
|
id: zod.ZodString;
|
|
276
162
|
name: zod.ZodString;
|
|
@@ -280,207 +166,9 @@ export declare const createRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
280
166
|
usersCount: zod.ZodNumber;
|
|
281
167
|
createdAt: zod.ZodString;
|
|
282
168
|
updatedAt: zod.ZodString;
|
|
283
|
-
},
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
id: string;
|
|
287
|
-
fullName: string;
|
|
288
|
-
createdAt: string;
|
|
289
|
-
updatedAt: string;
|
|
290
|
-
approveOnly: boolean;
|
|
291
|
-
usersCount: number;
|
|
292
|
-
}, {
|
|
293
|
-
code: string;
|
|
294
|
-
name: string;
|
|
295
|
-
id: string;
|
|
296
|
-
fullName: string;
|
|
297
|
-
createdAt: string;
|
|
298
|
-
updatedAt: string;
|
|
299
|
-
approveOnly: boolean;
|
|
300
|
-
usersCount: number;
|
|
301
|
-
}>, "many">;
|
|
302
|
-
}, "strip", zod.ZodTypeAny, {
|
|
303
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
304
|
-
restricted: boolean;
|
|
305
|
-
folders: {
|
|
306
|
-
code: string;
|
|
307
|
-
name: string;
|
|
308
|
-
id: string;
|
|
309
|
-
createdAt: string;
|
|
310
|
-
updatedAt: string;
|
|
311
|
-
workflowsCount: number;
|
|
312
|
-
routesCount: number;
|
|
313
|
-
pipelinesCount: number;
|
|
314
|
-
description?: string | null | undefined;
|
|
315
|
-
}[];
|
|
316
|
-
generalMasters: {
|
|
317
|
-
code: string;
|
|
318
|
-
name: string;
|
|
319
|
-
id: string;
|
|
320
|
-
description: string | null;
|
|
321
|
-
createdAt: string;
|
|
322
|
-
updatedAt: string;
|
|
323
|
-
fields: {
|
|
324
|
-
code: string;
|
|
325
|
-
required: boolean;
|
|
326
|
-
id: string;
|
|
327
|
-
visible: boolean;
|
|
328
|
-
title: string;
|
|
329
|
-
options: string[] | null;
|
|
330
|
-
description: string | null;
|
|
331
|
-
createdAt: string;
|
|
332
|
-
updatedAt: string;
|
|
333
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
334
|
-
}[];
|
|
335
|
-
}[];
|
|
336
|
-
teams: {
|
|
337
|
-
code: string;
|
|
338
|
-
name: string;
|
|
339
|
-
id: string;
|
|
340
|
-
fullName: string;
|
|
341
|
-
createdAt: string;
|
|
342
|
-
updatedAt: string;
|
|
343
|
-
approveOnly: boolean;
|
|
344
|
-
usersCount: number;
|
|
345
|
-
}[];
|
|
346
|
-
}, {
|
|
347
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
348
|
-
restricted: boolean;
|
|
349
|
-
folders: {
|
|
350
|
-
code: string;
|
|
351
|
-
name: string;
|
|
352
|
-
id: string;
|
|
353
|
-
createdAt: string;
|
|
354
|
-
updatedAt: string;
|
|
355
|
-
workflowsCount: number;
|
|
356
|
-
routesCount: number;
|
|
357
|
-
pipelinesCount: number;
|
|
358
|
-
description?: string | null | undefined;
|
|
359
|
-
}[];
|
|
360
|
-
generalMasters: {
|
|
361
|
-
code: string;
|
|
362
|
-
name: string;
|
|
363
|
-
id: string;
|
|
364
|
-
description: string | null;
|
|
365
|
-
createdAt: string;
|
|
366
|
-
updatedAt: string;
|
|
367
|
-
fields: {
|
|
368
|
-
code: string;
|
|
369
|
-
required: boolean;
|
|
370
|
-
id: string;
|
|
371
|
-
visible: boolean;
|
|
372
|
-
title: string;
|
|
373
|
-
options: string[] | null;
|
|
374
|
-
description: string | null;
|
|
375
|
-
createdAt: string;
|
|
376
|
-
updatedAt: string;
|
|
377
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
378
|
-
}[];
|
|
379
|
-
}[];
|
|
380
|
-
teams: {
|
|
381
|
-
code: string;
|
|
382
|
-
name: string;
|
|
383
|
-
id: string;
|
|
384
|
-
fullName: string;
|
|
385
|
-
createdAt: string;
|
|
386
|
-
updatedAt: string;
|
|
387
|
-
approveOnly: boolean;
|
|
388
|
-
usersCount: number;
|
|
389
|
-
}[];
|
|
390
|
-
}>, "many">;
|
|
391
|
-
}, "strip", zod.ZodTypeAny, {
|
|
392
|
-
permissionList: {
|
|
393
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
394
|
-
restricted: boolean;
|
|
395
|
-
folders: {
|
|
396
|
-
code: string;
|
|
397
|
-
name: string;
|
|
398
|
-
id: string;
|
|
399
|
-
createdAt: string;
|
|
400
|
-
updatedAt: string;
|
|
401
|
-
workflowsCount: number;
|
|
402
|
-
routesCount: number;
|
|
403
|
-
pipelinesCount: number;
|
|
404
|
-
description?: string | null | undefined;
|
|
405
|
-
}[];
|
|
406
|
-
generalMasters: {
|
|
407
|
-
code: string;
|
|
408
|
-
name: string;
|
|
409
|
-
id: string;
|
|
410
|
-
description: string | null;
|
|
411
|
-
createdAt: string;
|
|
412
|
-
updatedAt: string;
|
|
413
|
-
fields: {
|
|
414
|
-
code: string;
|
|
415
|
-
required: boolean;
|
|
416
|
-
id: string;
|
|
417
|
-
visible: boolean;
|
|
418
|
-
title: string;
|
|
419
|
-
options: string[] | null;
|
|
420
|
-
description: string | null;
|
|
421
|
-
createdAt: string;
|
|
422
|
-
updatedAt: string;
|
|
423
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
424
|
-
}[];
|
|
425
|
-
}[];
|
|
426
|
-
teams: {
|
|
427
|
-
code: string;
|
|
428
|
-
name: string;
|
|
429
|
-
id: string;
|
|
430
|
-
fullName: string;
|
|
431
|
-
createdAt: string;
|
|
432
|
-
updatedAt: string;
|
|
433
|
-
approveOnly: boolean;
|
|
434
|
-
usersCount: number;
|
|
435
|
-
}[];
|
|
436
|
-
}[];
|
|
437
|
-
}, {
|
|
438
|
-
permissionList: {
|
|
439
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
440
|
-
restricted: boolean;
|
|
441
|
-
folders: {
|
|
442
|
-
code: string;
|
|
443
|
-
name: string;
|
|
444
|
-
id: string;
|
|
445
|
-
createdAt: string;
|
|
446
|
-
updatedAt: string;
|
|
447
|
-
workflowsCount: number;
|
|
448
|
-
routesCount: number;
|
|
449
|
-
pipelinesCount: number;
|
|
450
|
-
description?: string | null | undefined;
|
|
451
|
-
}[];
|
|
452
|
-
generalMasters: {
|
|
453
|
-
code: string;
|
|
454
|
-
name: string;
|
|
455
|
-
id: string;
|
|
456
|
-
description: string | null;
|
|
457
|
-
createdAt: string;
|
|
458
|
-
updatedAt: string;
|
|
459
|
-
fields: {
|
|
460
|
-
code: string;
|
|
461
|
-
required: boolean;
|
|
462
|
-
id: string;
|
|
463
|
-
visible: boolean;
|
|
464
|
-
title: string;
|
|
465
|
-
options: string[] | null;
|
|
466
|
-
description: string | null;
|
|
467
|
-
createdAt: string;
|
|
468
|
-
updatedAt: string;
|
|
469
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
470
|
-
}[];
|
|
471
|
-
}[];
|
|
472
|
-
teams: {
|
|
473
|
-
code: string;
|
|
474
|
-
name: string;
|
|
475
|
-
id: string;
|
|
476
|
-
fullName: string;
|
|
477
|
-
createdAt: string;
|
|
478
|
-
updatedAt: string;
|
|
479
|
-
approveOnly: boolean;
|
|
480
|
-
usersCount: number;
|
|
481
|
-
}[];
|
|
482
|
-
}[];
|
|
483
|
-
}>>;
|
|
169
|
+
}, zod.core.$strip>>;
|
|
170
|
+
}, zod.core.$strip>>;
|
|
171
|
+
}, zod.core.$strip>>;
|
|
484
172
|
/**
|
|
485
173
|
* 管理者ロールを一件取得します。
|
|
486
174
|
|
|
@@ -508,23 +196,28 @@ export declare const getRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
508
196
|
usersCount: zod.ZodNumber;
|
|
509
197
|
createdAt: zod.ZodString;
|
|
510
198
|
updatedAt: zod.ZodString;
|
|
511
|
-
},
|
|
512
|
-
name: string;
|
|
513
|
-
id: string;
|
|
514
|
-
createdAt: string;
|
|
515
|
-
updatedAt: string;
|
|
516
|
-
usersCount: number;
|
|
517
|
-
editable: boolean;
|
|
518
|
-
}, {
|
|
519
|
-
name: string;
|
|
520
|
-
id: string;
|
|
521
|
-
createdAt: string;
|
|
522
|
-
updatedAt: string;
|
|
523
|
-
usersCount: number;
|
|
524
|
-
editable: boolean;
|
|
525
|
-
}>, zod.ZodObject<{
|
|
199
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
526
200
|
permissionList: zod.ZodArray<zod.ZodObject<{
|
|
527
|
-
permission: zod.ZodEnum<
|
|
201
|
+
permission: zod.ZodEnum<{
|
|
202
|
+
user: "user";
|
|
203
|
+
tenant: "tenant";
|
|
204
|
+
billing: "billing";
|
|
205
|
+
integration: "integration";
|
|
206
|
+
security: "security";
|
|
207
|
+
audit: "audit";
|
|
208
|
+
stats: "stats";
|
|
209
|
+
workflow: "workflow";
|
|
210
|
+
route: "route";
|
|
211
|
+
pipeline: "pipeline";
|
|
212
|
+
workflow_misc: "workflow_misc";
|
|
213
|
+
team: "team";
|
|
214
|
+
role: "role";
|
|
215
|
+
master: "master";
|
|
216
|
+
ticket_read: "ticket_read";
|
|
217
|
+
ticket_write: "ticket_write";
|
|
218
|
+
label: "label";
|
|
219
|
+
automation: "automation";
|
|
220
|
+
}>;
|
|
528
221
|
restricted: zod.ZodBoolean;
|
|
529
222
|
folders: zod.ZodArray<zod.ZodObject<{
|
|
530
223
|
id: zod.ZodString;
|
|
@@ -536,27 +229,7 @@ export declare const getRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
536
229
|
pipelinesCount: zod.ZodNumber;
|
|
537
230
|
createdAt: zod.ZodString;
|
|
538
231
|
updatedAt: zod.ZodString;
|
|
539
|
-
},
|
|
540
|
-
code: string;
|
|
541
|
-
name: string;
|
|
542
|
-
id: string;
|
|
543
|
-
createdAt: string;
|
|
544
|
-
updatedAt: string;
|
|
545
|
-
workflowsCount: number;
|
|
546
|
-
routesCount: number;
|
|
547
|
-
pipelinesCount: number;
|
|
548
|
-
description?: string | null | undefined;
|
|
549
|
-
}, {
|
|
550
|
-
code: string;
|
|
551
|
-
name: string;
|
|
552
|
-
id: string;
|
|
553
|
-
createdAt: string;
|
|
554
|
-
updatedAt: string;
|
|
555
|
-
workflowsCount: number;
|
|
556
|
-
routesCount: number;
|
|
557
|
-
pipelinesCount: number;
|
|
558
|
-
description?: string | null | undefined;
|
|
559
|
-
}>, "many">;
|
|
232
|
+
}, zod.core.$strip>>;
|
|
560
233
|
generalMasters: zod.ZodArray<zod.ZodObject<{
|
|
561
234
|
id: zod.ZodString;
|
|
562
235
|
code: zod.ZodString;
|
|
@@ -569,74 +242,22 @@ export declare const getRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
569
242
|
title: zod.ZodString;
|
|
570
243
|
description: zod.ZodNullable<zod.ZodString>;
|
|
571
244
|
code: zod.ZodString;
|
|
572
|
-
fieldType: zod.ZodEnum<
|
|
245
|
+
fieldType: zod.ZodEnum<{
|
|
246
|
+
number: "number";
|
|
247
|
+
text: "text";
|
|
248
|
+
date: "date";
|
|
249
|
+
text_long: "text_long";
|
|
250
|
+
integer: "integer";
|
|
251
|
+
checkbox: "checkbox";
|
|
252
|
+
pull_down: "pull_down";
|
|
253
|
+
}>;
|
|
573
254
|
required: zod.ZodBoolean;
|
|
574
255
|
visible: zod.ZodBoolean;
|
|
575
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
256
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
576
257
|
createdAt: zod.ZodString;
|
|
577
258
|
updatedAt: zod.ZodString;
|
|
578
|
-
},
|
|
579
|
-
|
|
580
|
-
required: boolean;
|
|
581
|
-
id: string;
|
|
582
|
-
visible: boolean;
|
|
583
|
-
title: string;
|
|
584
|
-
options: string[] | null;
|
|
585
|
-
description: string | null;
|
|
586
|
-
createdAt: string;
|
|
587
|
-
updatedAt: string;
|
|
588
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
589
|
-
}, {
|
|
590
|
-
code: string;
|
|
591
|
-
required: boolean;
|
|
592
|
-
id: string;
|
|
593
|
-
visible: boolean;
|
|
594
|
-
title: string;
|
|
595
|
-
options: string[] | null;
|
|
596
|
-
description: string | null;
|
|
597
|
-
createdAt: string;
|
|
598
|
-
updatedAt: string;
|
|
599
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
600
|
-
}>, "many">;
|
|
601
|
-
}, "strip", zod.ZodTypeAny, {
|
|
602
|
-
code: string;
|
|
603
|
-
name: string;
|
|
604
|
-
id: string;
|
|
605
|
-
description: string | null;
|
|
606
|
-
createdAt: string;
|
|
607
|
-
updatedAt: string;
|
|
608
|
-
fields: {
|
|
609
|
-
code: string;
|
|
610
|
-
required: boolean;
|
|
611
|
-
id: string;
|
|
612
|
-
visible: boolean;
|
|
613
|
-
title: string;
|
|
614
|
-
options: string[] | null;
|
|
615
|
-
description: string | null;
|
|
616
|
-
createdAt: string;
|
|
617
|
-
updatedAt: string;
|
|
618
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
619
|
-
}[];
|
|
620
|
-
}, {
|
|
621
|
-
code: string;
|
|
622
|
-
name: string;
|
|
623
|
-
id: string;
|
|
624
|
-
description: string | null;
|
|
625
|
-
createdAt: string;
|
|
626
|
-
updatedAt: string;
|
|
627
|
-
fields: {
|
|
628
|
-
code: string;
|
|
629
|
-
required: boolean;
|
|
630
|
-
id: string;
|
|
631
|
-
visible: boolean;
|
|
632
|
-
title: string;
|
|
633
|
-
options: string[] | null;
|
|
634
|
-
description: string | null;
|
|
635
|
-
createdAt: string;
|
|
636
|
-
updatedAt: string;
|
|
637
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
638
|
-
}[];
|
|
639
|
-
}>, "many">;
|
|
259
|
+
}, zod.core.$strip>>;
|
|
260
|
+
}, zod.core.$strip>>;
|
|
640
261
|
teams: zod.ZodArray<zod.ZodObject<{
|
|
641
262
|
id: zod.ZodString;
|
|
642
263
|
name: zod.ZodString;
|
|
@@ -646,207 +267,9 @@ export declare const getRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
646
267
|
usersCount: zod.ZodNumber;
|
|
647
268
|
createdAt: zod.ZodString;
|
|
648
269
|
updatedAt: zod.ZodString;
|
|
649
|
-
},
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
id: string;
|
|
653
|
-
fullName: string;
|
|
654
|
-
createdAt: string;
|
|
655
|
-
updatedAt: string;
|
|
656
|
-
approveOnly: boolean;
|
|
657
|
-
usersCount: number;
|
|
658
|
-
}, {
|
|
659
|
-
code: string;
|
|
660
|
-
name: string;
|
|
661
|
-
id: string;
|
|
662
|
-
fullName: string;
|
|
663
|
-
createdAt: string;
|
|
664
|
-
updatedAt: string;
|
|
665
|
-
approveOnly: boolean;
|
|
666
|
-
usersCount: number;
|
|
667
|
-
}>, "many">;
|
|
668
|
-
}, "strip", zod.ZodTypeAny, {
|
|
669
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
670
|
-
restricted: boolean;
|
|
671
|
-
folders: {
|
|
672
|
-
code: string;
|
|
673
|
-
name: string;
|
|
674
|
-
id: string;
|
|
675
|
-
createdAt: string;
|
|
676
|
-
updatedAt: string;
|
|
677
|
-
workflowsCount: number;
|
|
678
|
-
routesCount: number;
|
|
679
|
-
pipelinesCount: number;
|
|
680
|
-
description?: string | null | undefined;
|
|
681
|
-
}[];
|
|
682
|
-
generalMasters: {
|
|
683
|
-
code: string;
|
|
684
|
-
name: string;
|
|
685
|
-
id: string;
|
|
686
|
-
description: string | null;
|
|
687
|
-
createdAt: string;
|
|
688
|
-
updatedAt: string;
|
|
689
|
-
fields: {
|
|
690
|
-
code: string;
|
|
691
|
-
required: boolean;
|
|
692
|
-
id: string;
|
|
693
|
-
visible: boolean;
|
|
694
|
-
title: string;
|
|
695
|
-
options: string[] | null;
|
|
696
|
-
description: string | null;
|
|
697
|
-
createdAt: string;
|
|
698
|
-
updatedAt: string;
|
|
699
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
700
|
-
}[];
|
|
701
|
-
}[];
|
|
702
|
-
teams: {
|
|
703
|
-
code: string;
|
|
704
|
-
name: string;
|
|
705
|
-
id: string;
|
|
706
|
-
fullName: string;
|
|
707
|
-
createdAt: string;
|
|
708
|
-
updatedAt: string;
|
|
709
|
-
approveOnly: boolean;
|
|
710
|
-
usersCount: number;
|
|
711
|
-
}[];
|
|
712
|
-
}, {
|
|
713
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
714
|
-
restricted: boolean;
|
|
715
|
-
folders: {
|
|
716
|
-
code: string;
|
|
717
|
-
name: string;
|
|
718
|
-
id: string;
|
|
719
|
-
createdAt: string;
|
|
720
|
-
updatedAt: string;
|
|
721
|
-
workflowsCount: number;
|
|
722
|
-
routesCount: number;
|
|
723
|
-
pipelinesCount: number;
|
|
724
|
-
description?: string | null | undefined;
|
|
725
|
-
}[];
|
|
726
|
-
generalMasters: {
|
|
727
|
-
code: string;
|
|
728
|
-
name: string;
|
|
729
|
-
id: string;
|
|
730
|
-
description: string | null;
|
|
731
|
-
createdAt: string;
|
|
732
|
-
updatedAt: string;
|
|
733
|
-
fields: {
|
|
734
|
-
code: string;
|
|
735
|
-
required: boolean;
|
|
736
|
-
id: string;
|
|
737
|
-
visible: boolean;
|
|
738
|
-
title: string;
|
|
739
|
-
options: string[] | null;
|
|
740
|
-
description: string | null;
|
|
741
|
-
createdAt: string;
|
|
742
|
-
updatedAt: string;
|
|
743
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
744
|
-
}[];
|
|
745
|
-
}[];
|
|
746
|
-
teams: {
|
|
747
|
-
code: string;
|
|
748
|
-
name: string;
|
|
749
|
-
id: string;
|
|
750
|
-
fullName: string;
|
|
751
|
-
createdAt: string;
|
|
752
|
-
updatedAt: string;
|
|
753
|
-
approveOnly: boolean;
|
|
754
|
-
usersCount: number;
|
|
755
|
-
}[];
|
|
756
|
-
}>, "many">;
|
|
757
|
-
}, "strip", zod.ZodTypeAny, {
|
|
758
|
-
permissionList: {
|
|
759
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
760
|
-
restricted: boolean;
|
|
761
|
-
folders: {
|
|
762
|
-
code: string;
|
|
763
|
-
name: string;
|
|
764
|
-
id: string;
|
|
765
|
-
createdAt: string;
|
|
766
|
-
updatedAt: string;
|
|
767
|
-
workflowsCount: number;
|
|
768
|
-
routesCount: number;
|
|
769
|
-
pipelinesCount: number;
|
|
770
|
-
description?: string | null | undefined;
|
|
771
|
-
}[];
|
|
772
|
-
generalMasters: {
|
|
773
|
-
code: string;
|
|
774
|
-
name: string;
|
|
775
|
-
id: string;
|
|
776
|
-
description: string | null;
|
|
777
|
-
createdAt: string;
|
|
778
|
-
updatedAt: string;
|
|
779
|
-
fields: {
|
|
780
|
-
code: string;
|
|
781
|
-
required: boolean;
|
|
782
|
-
id: string;
|
|
783
|
-
visible: boolean;
|
|
784
|
-
title: string;
|
|
785
|
-
options: string[] | null;
|
|
786
|
-
description: string | null;
|
|
787
|
-
createdAt: string;
|
|
788
|
-
updatedAt: string;
|
|
789
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
790
|
-
}[];
|
|
791
|
-
}[];
|
|
792
|
-
teams: {
|
|
793
|
-
code: string;
|
|
794
|
-
name: string;
|
|
795
|
-
id: string;
|
|
796
|
-
fullName: string;
|
|
797
|
-
createdAt: string;
|
|
798
|
-
updatedAt: string;
|
|
799
|
-
approveOnly: boolean;
|
|
800
|
-
usersCount: number;
|
|
801
|
-
}[];
|
|
802
|
-
}[];
|
|
803
|
-
}, {
|
|
804
|
-
permissionList: {
|
|
805
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
806
|
-
restricted: boolean;
|
|
807
|
-
folders: {
|
|
808
|
-
code: string;
|
|
809
|
-
name: string;
|
|
810
|
-
id: string;
|
|
811
|
-
createdAt: string;
|
|
812
|
-
updatedAt: string;
|
|
813
|
-
workflowsCount: number;
|
|
814
|
-
routesCount: number;
|
|
815
|
-
pipelinesCount: number;
|
|
816
|
-
description?: string | null | undefined;
|
|
817
|
-
}[];
|
|
818
|
-
generalMasters: {
|
|
819
|
-
code: string;
|
|
820
|
-
name: string;
|
|
821
|
-
id: string;
|
|
822
|
-
description: string | null;
|
|
823
|
-
createdAt: string;
|
|
824
|
-
updatedAt: string;
|
|
825
|
-
fields: {
|
|
826
|
-
code: string;
|
|
827
|
-
required: boolean;
|
|
828
|
-
id: string;
|
|
829
|
-
visible: boolean;
|
|
830
|
-
title: string;
|
|
831
|
-
options: string[] | null;
|
|
832
|
-
description: string | null;
|
|
833
|
-
createdAt: string;
|
|
834
|
-
updatedAt: string;
|
|
835
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
836
|
-
}[];
|
|
837
|
-
}[];
|
|
838
|
-
teams: {
|
|
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
|
-
}[];
|
|
848
|
-
}[];
|
|
849
|
-
}>>;
|
|
270
|
+
}, zod.core.$strip>>;
|
|
271
|
+
}, zod.core.$strip>>;
|
|
272
|
+
}, zod.core.$strip>>;
|
|
850
273
|
/**
|
|
851
274
|
* 管理者ロールを更新します。
|
|
852
275
|
|
|
@@ -856,43 +279,32 @@ export declare const getRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
856
279
|
export declare const updateRoleBody: zod.ZodObject<{
|
|
857
280
|
name: zod.ZodOptional<zod.ZodString>;
|
|
858
281
|
permissionList: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
859
|
-
permission: zod.ZodEnum<
|
|
282
|
+
permission: zod.ZodEnum<{
|
|
283
|
+
user: "user";
|
|
284
|
+
tenant: "tenant";
|
|
285
|
+
billing: "billing";
|
|
286
|
+
integration: "integration";
|
|
287
|
+
security: "security";
|
|
288
|
+
audit: "audit";
|
|
289
|
+
stats: "stats";
|
|
290
|
+
workflow: "workflow";
|
|
291
|
+
route: "route";
|
|
292
|
+
pipeline: "pipeline";
|
|
293
|
+
workflow_misc: "workflow_misc";
|
|
294
|
+
team: "team";
|
|
295
|
+
role: "role";
|
|
296
|
+
master: "master";
|
|
297
|
+
ticket_read: "ticket_read";
|
|
298
|
+
ticket_write: "ticket_write";
|
|
299
|
+
label: "label";
|
|
300
|
+
automation: "automation";
|
|
301
|
+
}>;
|
|
860
302
|
restricted: zod.ZodBoolean;
|
|
861
|
-
folderIds: zod.ZodOptional<zod.ZodArray<zod.ZodString
|
|
862
|
-
generalMasterIds: zod.ZodOptional<zod.ZodArray<zod.ZodString
|
|
863
|
-
teamIds: zod.ZodOptional<zod.ZodArray<zod.ZodString
|
|
864
|
-
},
|
|
865
|
-
|
|
866
|
-
restricted: boolean;
|
|
867
|
-
folderIds?: string[] | undefined;
|
|
868
|
-
generalMasterIds?: string[] | undefined;
|
|
869
|
-
teamIds?: string[] | undefined;
|
|
870
|
-
}, {
|
|
871
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
872
|
-
restricted: boolean;
|
|
873
|
-
folderIds?: string[] | undefined;
|
|
874
|
-
generalMasterIds?: string[] | undefined;
|
|
875
|
-
teamIds?: string[] | undefined;
|
|
876
|
-
}>, "many">>;
|
|
877
|
-
}, "strip", zod.ZodTypeAny, {
|
|
878
|
-
name?: string | undefined;
|
|
879
|
-
permissionList?: {
|
|
880
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
881
|
-
restricted: boolean;
|
|
882
|
-
folderIds?: string[] | undefined;
|
|
883
|
-
generalMasterIds?: string[] | undefined;
|
|
884
|
-
teamIds?: string[] | undefined;
|
|
885
|
-
}[] | undefined;
|
|
886
|
-
}, {
|
|
887
|
-
name?: string | undefined;
|
|
888
|
-
permissionList?: {
|
|
889
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
890
|
-
restricted: boolean;
|
|
891
|
-
folderIds?: string[] | undefined;
|
|
892
|
-
generalMasterIds?: string[] | undefined;
|
|
893
|
-
teamIds?: string[] | undefined;
|
|
894
|
-
}[] | undefined;
|
|
895
|
-
}>;
|
|
303
|
+
folderIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
304
|
+
generalMasterIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
305
|
+
teamIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
306
|
+
}, zod.core.$strip>>>;
|
|
307
|
+
}, zod.core.$strip>;
|
|
896
308
|
export declare const updateRoleResponseNameMax = 255;
|
|
897
309
|
export declare const updateRoleResponseUsersCountMin = 0;
|
|
898
310
|
export declare const updateRoleResponsePermissionListItemFoldersItemNameMax = 255;
|
|
@@ -914,23 +326,28 @@ export declare const updateRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
914
326
|
usersCount: zod.ZodNumber;
|
|
915
327
|
createdAt: zod.ZodString;
|
|
916
328
|
updatedAt: zod.ZodString;
|
|
917
|
-
},
|
|
918
|
-
name: string;
|
|
919
|
-
id: string;
|
|
920
|
-
createdAt: string;
|
|
921
|
-
updatedAt: string;
|
|
922
|
-
usersCount: number;
|
|
923
|
-
editable: boolean;
|
|
924
|
-
}, {
|
|
925
|
-
name: string;
|
|
926
|
-
id: string;
|
|
927
|
-
createdAt: string;
|
|
928
|
-
updatedAt: string;
|
|
929
|
-
usersCount: number;
|
|
930
|
-
editable: boolean;
|
|
931
|
-
}>, zod.ZodObject<{
|
|
329
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
932
330
|
permissionList: zod.ZodArray<zod.ZodObject<{
|
|
933
|
-
permission: zod.ZodEnum<
|
|
331
|
+
permission: zod.ZodEnum<{
|
|
332
|
+
user: "user";
|
|
333
|
+
tenant: "tenant";
|
|
334
|
+
billing: "billing";
|
|
335
|
+
integration: "integration";
|
|
336
|
+
security: "security";
|
|
337
|
+
audit: "audit";
|
|
338
|
+
stats: "stats";
|
|
339
|
+
workflow: "workflow";
|
|
340
|
+
route: "route";
|
|
341
|
+
pipeline: "pipeline";
|
|
342
|
+
workflow_misc: "workflow_misc";
|
|
343
|
+
team: "team";
|
|
344
|
+
role: "role";
|
|
345
|
+
master: "master";
|
|
346
|
+
ticket_read: "ticket_read";
|
|
347
|
+
ticket_write: "ticket_write";
|
|
348
|
+
label: "label";
|
|
349
|
+
automation: "automation";
|
|
350
|
+
}>;
|
|
934
351
|
restricted: zod.ZodBoolean;
|
|
935
352
|
folders: zod.ZodArray<zod.ZodObject<{
|
|
936
353
|
id: zod.ZodString;
|
|
@@ -942,27 +359,7 @@ export declare const updateRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
942
359
|
pipelinesCount: zod.ZodNumber;
|
|
943
360
|
createdAt: zod.ZodString;
|
|
944
361
|
updatedAt: zod.ZodString;
|
|
945
|
-
},
|
|
946
|
-
code: string;
|
|
947
|
-
name: string;
|
|
948
|
-
id: string;
|
|
949
|
-
createdAt: string;
|
|
950
|
-
updatedAt: string;
|
|
951
|
-
workflowsCount: number;
|
|
952
|
-
routesCount: number;
|
|
953
|
-
pipelinesCount: number;
|
|
954
|
-
description?: string | null | undefined;
|
|
955
|
-
}, {
|
|
956
|
-
code: string;
|
|
957
|
-
name: string;
|
|
958
|
-
id: string;
|
|
959
|
-
createdAt: string;
|
|
960
|
-
updatedAt: string;
|
|
961
|
-
workflowsCount: number;
|
|
962
|
-
routesCount: number;
|
|
963
|
-
pipelinesCount: number;
|
|
964
|
-
description?: string | null | undefined;
|
|
965
|
-
}>, "many">;
|
|
362
|
+
}, zod.core.$strip>>;
|
|
966
363
|
generalMasters: zod.ZodArray<zod.ZodObject<{
|
|
967
364
|
id: zod.ZodString;
|
|
968
365
|
code: zod.ZodString;
|
|
@@ -975,74 +372,22 @@ export declare const updateRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
975
372
|
title: zod.ZodString;
|
|
976
373
|
description: zod.ZodNullable<zod.ZodString>;
|
|
977
374
|
code: zod.ZodString;
|
|
978
|
-
fieldType: zod.ZodEnum<
|
|
375
|
+
fieldType: zod.ZodEnum<{
|
|
376
|
+
number: "number";
|
|
377
|
+
text: "text";
|
|
378
|
+
date: "date";
|
|
379
|
+
text_long: "text_long";
|
|
380
|
+
integer: "integer";
|
|
381
|
+
checkbox: "checkbox";
|
|
382
|
+
pull_down: "pull_down";
|
|
383
|
+
}>;
|
|
979
384
|
required: zod.ZodBoolean;
|
|
980
385
|
visible: zod.ZodBoolean;
|
|
981
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
386
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
982
387
|
createdAt: zod.ZodString;
|
|
983
388
|
updatedAt: zod.ZodString;
|
|
984
|
-
},
|
|
985
|
-
|
|
986
|
-
required: boolean;
|
|
987
|
-
id: string;
|
|
988
|
-
visible: boolean;
|
|
989
|
-
title: string;
|
|
990
|
-
options: string[] | null;
|
|
991
|
-
description: string | null;
|
|
992
|
-
createdAt: string;
|
|
993
|
-
updatedAt: string;
|
|
994
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
995
|
-
}, {
|
|
996
|
-
code: string;
|
|
997
|
-
required: boolean;
|
|
998
|
-
id: string;
|
|
999
|
-
visible: boolean;
|
|
1000
|
-
title: string;
|
|
1001
|
-
options: string[] | null;
|
|
1002
|
-
description: string | null;
|
|
1003
|
-
createdAt: string;
|
|
1004
|
-
updatedAt: string;
|
|
1005
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1006
|
-
}>, "many">;
|
|
1007
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1008
|
-
code: string;
|
|
1009
|
-
name: string;
|
|
1010
|
-
id: string;
|
|
1011
|
-
description: string | null;
|
|
1012
|
-
createdAt: string;
|
|
1013
|
-
updatedAt: string;
|
|
1014
|
-
fields: {
|
|
1015
|
-
code: string;
|
|
1016
|
-
required: boolean;
|
|
1017
|
-
id: string;
|
|
1018
|
-
visible: boolean;
|
|
1019
|
-
title: string;
|
|
1020
|
-
options: string[] | null;
|
|
1021
|
-
description: string | null;
|
|
1022
|
-
createdAt: string;
|
|
1023
|
-
updatedAt: string;
|
|
1024
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1025
|
-
}[];
|
|
1026
|
-
}, {
|
|
1027
|
-
code: string;
|
|
1028
|
-
name: string;
|
|
1029
|
-
id: string;
|
|
1030
|
-
description: string | null;
|
|
1031
|
-
createdAt: string;
|
|
1032
|
-
updatedAt: string;
|
|
1033
|
-
fields: {
|
|
1034
|
-
code: string;
|
|
1035
|
-
required: boolean;
|
|
1036
|
-
id: string;
|
|
1037
|
-
visible: boolean;
|
|
1038
|
-
title: string;
|
|
1039
|
-
options: string[] | null;
|
|
1040
|
-
description: string | null;
|
|
1041
|
-
createdAt: string;
|
|
1042
|
-
updatedAt: string;
|
|
1043
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1044
|
-
}[];
|
|
1045
|
-
}>, "many">;
|
|
389
|
+
}, zod.core.$strip>>;
|
|
390
|
+
}, zod.core.$strip>>;
|
|
1046
391
|
teams: zod.ZodArray<zod.ZodObject<{
|
|
1047
392
|
id: zod.ZodString;
|
|
1048
393
|
name: zod.ZodString;
|
|
@@ -1052,207 +397,9 @@ export declare const updateRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
1052
397
|
usersCount: zod.ZodNumber;
|
|
1053
398
|
createdAt: zod.ZodString;
|
|
1054
399
|
updatedAt: zod.ZodString;
|
|
1055
|
-
},
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
id: string;
|
|
1059
|
-
fullName: string;
|
|
1060
|
-
createdAt: string;
|
|
1061
|
-
updatedAt: string;
|
|
1062
|
-
approveOnly: boolean;
|
|
1063
|
-
usersCount: number;
|
|
1064
|
-
}, {
|
|
1065
|
-
code: string;
|
|
1066
|
-
name: string;
|
|
1067
|
-
id: string;
|
|
1068
|
-
fullName: string;
|
|
1069
|
-
createdAt: string;
|
|
1070
|
-
updatedAt: string;
|
|
1071
|
-
approveOnly: boolean;
|
|
1072
|
-
usersCount: number;
|
|
1073
|
-
}>, "many">;
|
|
1074
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1075
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
1076
|
-
restricted: boolean;
|
|
1077
|
-
folders: {
|
|
1078
|
-
code: string;
|
|
1079
|
-
name: string;
|
|
1080
|
-
id: string;
|
|
1081
|
-
createdAt: string;
|
|
1082
|
-
updatedAt: string;
|
|
1083
|
-
workflowsCount: number;
|
|
1084
|
-
routesCount: number;
|
|
1085
|
-
pipelinesCount: number;
|
|
1086
|
-
description?: string | null | undefined;
|
|
1087
|
-
}[];
|
|
1088
|
-
generalMasters: {
|
|
1089
|
-
code: string;
|
|
1090
|
-
name: string;
|
|
1091
|
-
id: string;
|
|
1092
|
-
description: string | null;
|
|
1093
|
-
createdAt: string;
|
|
1094
|
-
updatedAt: string;
|
|
1095
|
-
fields: {
|
|
1096
|
-
code: string;
|
|
1097
|
-
required: boolean;
|
|
1098
|
-
id: string;
|
|
1099
|
-
visible: boolean;
|
|
1100
|
-
title: string;
|
|
1101
|
-
options: string[] | null;
|
|
1102
|
-
description: string | null;
|
|
1103
|
-
createdAt: string;
|
|
1104
|
-
updatedAt: string;
|
|
1105
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1106
|
-
}[];
|
|
1107
|
-
}[];
|
|
1108
|
-
teams: {
|
|
1109
|
-
code: string;
|
|
1110
|
-
name: string;
|
|
1111
|
-
id: string;
|
|
1112
|
-
fullName: string;
|
|
1113
|
-
createdAt: string;
|
|
1114
|
-
updatedAt: string;
|
|
1115
|
-
approveOnly: boolean;
|
|
1116
|
-
usersCount: number;
|
|
1117
|
-
}[];
|
|
1118
|
-
}, {
|
|
1119
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
1120
|
-
restricted: boolean;
|
|
1121
|
-
folders: {
|
|
1122
|
-
code: string;
|
|
1123
|
-
name: string;
|
|
1124
|
-
id: string;
|
|
1125
|
-
createdAt: string;
|
|
1126
|
-
updatedAt: string;
|
|
1127
|
-
workflowsCount: number;
|
|
1128
|
-
routesCount: number;
|
|
1129
|
-
pipelinesCount: number;
|
|
1130
|
-
description?: string | null | undefined;
|
|
1131
|
-
}[];
|
|
1132
|
-
generalMasters: {
|
|
1133
|
-
code: string;
|
|
1134
|
-
name: string;
|
|
1135
|
-
id: string;
|
|
1136
|
-
description: string | null;
|
|
1137
|
-
createdAt: string;
|
|
1138
|
-
updatedAt: string;
|
|
1139
|
-
fields: {
|
|
1140
|
-
code: string;
|
|
1141
|
-
required: boolean;
|
|
1142
|
-
id: string;
|
|
1143
|
-
visible: boolean;
|
|
1144
|
-
title: string;
|
|
1145
|
-
options: string[] | null;
|
|
1146
|
-
description: string | null;
|
|
1147
|
-
createdAt: string;
|
|
1148
|
-
updatedAt: string;
|
|
1149
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1150
|
-
}[];
|
|
1151
|
-
}[];
|
|
1152
|
-
teams: {
|
|
1153
|
-
code: string;
|
|
1154
|
-
name: string;
|
|
1155
|
-
id: string;
|
|
1156
|
-
fullName: string;
|
|
1157
|
-
createdAt: string;
|
|
1158
|
-
updatedAt: string;
|
|
1159
|
-
approveOnly: boolean;
|
|
1160
|
-
usersCount: number;
|
|
1161
|
-
}[];
|
|
1162
|
-
}>, "many">;
|
|
1163
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1164
|
-
permissionList: {
|
|
1165
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
1166
|
-
restricted: boolean;
|
|
1167
|
-
folders: {
|
|
1168
|
-
code: string;
|
|
1169
|
-
name: string;
|
|
1170
|
-
id: string;
|
|
1171
|
-
createdAt: string;
|
|
1172
|
-
updatedAt: string;
|
|
1173
|
-
workflowsCount: number;
|
|
1174
|
-
routesCount: number;
|
|
1175
|
-
pipelinesCount: number;
|
|
1176
|
-
description?: string | null | undefined;
|
|
1177
|
-
}[];
|
|
1178
|
-
generalMasters: {
|
|
1179
|
-
code: string;
|
|
1180
|
-
name: string;
|
|
1181
|
-
id: string;
|
|
1182
|
-
description: string | null;
|
|
1183
|
-
createdAt: string;
|
|
1184
|
-
updatedAt: string;
|
|
1185
|
-
fields: {
|
|
1186
|
-
code: string;
|
|
1187
|
-
required: boolean;
|
|
1188
|
-
id: string;
|
|
1189
|
-
visible: boolean;
|
|
1190
|
-
title: string;
|
|
1191
|
-
options: string[] | null;
|
|
1192
|
-
description: string | null;
|
|
1193
|
-
createdAt: string;
|
|
1194
|
-
updatedAt: string;
|
|
1195
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1196
|
-
}[];
|
|
1197
|
-
}[];
|
|
1198
|
-
teams: {
|
|
1199
|
-
code: string;
|
|
1200
|
-
name: string;
|
|
1201
|
-
id: string;
|
|
1202
|
-
fullName: string;
|
|
1203
|
-
createdAt: string;
|
|
1204
|
-
updatedAt: string;
|
|
1205
|
-
approveOnly: boolean;
|
|
1206
|
-
usersCount: number;
|
|
1207
|
-
}[];
|
|
1208
|
-
}[];
|
|
1209
|
-
}, {
|
|
1210
|
-
permissionList: {
|
|
1211
|
-
permission: "label" | "role" | "billing" | "user" | "tenant" | "integration" | "security" | "audit" | "stats" | "workflow" | "route" | "pipeline" | "workflow_misc" | "team" | "master" | "ticket_read" | "ticket_write" | "automation";
|
|
1212
|
-
restricted: boolean;
|
|
1213
|
-
folders: {
|
|
1214
|
-
code: string;
|
|
1215
|
-
name: string;
|
|
1216
|
-
id: string;
|
|
1217
|
-
createdAt: string;
|
|
1218
|
-
updatedAt: string;
|
|
1219
|
-
workflowsCount: number;
|
|
1220
|
-
routesCount: number;
|
|
1221
|
-
pipelinesCount: number;
|
|
1222
|
-
description?: string | null | undefined;
|
|
1223
|
-
}[];
|
|
1224
|
-
generalMasters: {
|
|
1225
|
-
code: string;
|
|
1226
|
-
name: string;
|
|
1227
|
-
id: string;
|
|
1228
|
-
description: string | null;
|
|
1229
|
-
createdAt: string;
|
|
1230
|
-
updatedAt: string;
|
|
1231
|
-
fields: {
|
|
1232
|
-
code: string;
|
|
1233
|
-
required: boolean;
|
|
1234
|
-
id: string;
|
|
1235
|
-
visible: boolean;
|
|
1236
|
-
title: string;
|
|
1237
|
-
options: string[] | null;
|
|
1238
|
-
description: string | null;
|
|
1239
|
-
createdAt: string;
|
|
1240
|
-
updatedAt: string;
|
|
1241
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1242
|
-
}[];
|
|
1243
|
-
}[];
|
|
1244
|
-
teams: {
|
|
1245
|
-
code: string;
|
|
1246
|
-
name: string;
|
|
1247
|
-
id: string;
|
|
1248
|
-
fullName: string;
|
|
1249
|
-
createdAt: string;
|
|
1250
|
-
updatedAt: string;
|
|
1251
|
-
approveOnly: boolean;
|
|
1252
|
-
usersCount: number;
|
|
1253
|
-
}[];
|
|
1254
|
-
}[];
|
|
1255
|
-
}>>;
|
|
400
|
+
}, zod.core.$strip>>;
|
|
401
|
+
}, zod.core.$strip>>;
|
|
402
|
+
}, zod.core.$strip>>;
|
|
1256
403
|
/**
|
|
1257
404
|
* 管理者ロールにメンバーを追加します。最大10人まで複数のメンバーを同時に追加可能です。
|
|
1258
405
|
|
|
@@ -1261,12 +408,8 @@ export declare const updateRoleResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
1261
408
|
*/
|
|
1262
409
|
export declare const createRoleMembersBodyUserIdsMax = 10;
|
|
1263
410
|
export declare const createRoleMembersBody: zod.ZodObject<{
|
|
1264
|
-
userIds: zod.ZodArray<zod.ZodString
|
|
1265
|
-
},
|
|
1266
|
-
userIds: string[];
|
|
1267
|
-
}, {
|
|
1268
|
-
userIds: string[];
|
|
1269
|
-
}>;
|
|
411
|
+
userIds: zod.ZodArray<zod.ZodString>;
|
|
412
|
+
}, zod.core.$strip>;
|
|
1270
413
|
/**
|
|
1271
414
|
* 管理者ロールのメンバー一覧を取得します。
|
|
1272
415
|
|
|
@@ -1279,13 +422,7 @@ export declare const listRoleMembersQueryPerPageMax = 100;
|
|
|
1279
422
|
export declare const listRoleMembersQueryParams: zod.ZodObject<{
|
|
1280
423
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
1281
424
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
1282
|
-
},
|
|
1283
|
-
page: number;
|
|
1284
|
-
perPage: number;
|
|
1285
|
-
}, {
|
|
1286
|
-
page?: number | undefined;
|
|
1287
|
-
perPage?: number | undefined;
|
|
1288
|
-
}>;
|
|
425
|
+
}, zod.core.$strip>;
|
|
1289
426
|
export declare const listRoleMembersResponseEmailMax = 255;
|
|
1290
427
|
export declare const listRoleMembersResponseCodeMax = 255;
|
|
1291
428
|
export declare const listRoleMembersResponseFirstNameMax = 255;
|
|
@@ -1304,57 +441,18 @@ export declare const listRoleMembersResponseItem: zod.ZodObject<{
|
|
|
1304
441
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
1305
442
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
1306
443
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
1307
|
-
},
|
|
1308
|
-
|
|
1309
|
-
"
|
|
1310
|
-
"
|
|
1311
|
-
|
|
1312
|
-
"
|
|
1313
|
-
"64x64": string | null;
|
|
1314
|
-
"32x32": string | null;
|
|
444
|
+
}, zod.core.$strip>;
|
|
445
|
+
status: zod.ZodEnum<{
|
|
446
|
+
invited: "invited";
|
|
447
|
+
activated: "activated";
|
|
448
|
+
suspended: "suspended";
|
|
449
|
+
deactivated: "deactivated";
|
|
1315
450
|
}>;
|
|
1316
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
1317
451
|
locale: zod.ZodString;
|
|
1318
452
|
createdAt: zod.ZodString;
|
|
1319
453
|
updatedAt: zod.ZodString;
|
|
1320
454
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1321
|
-
},
|
|
1322
|
-
code: string;
|
|
1323
|
-
id: string;
|
|
1324
|
-
image: {
|
|
1325
|
-
"100x100": string | null;
|
|
1326
|
-
"64x64": string | null;
|
|
1327
|
-
"32x32": string | null;
|
|
1328
|
-
};
|
|
1329
|
-
email: string;
|
|
1330
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1331
|
-
firstName: string;
|
|
1332
|
-
lastName: string;
|
|
1333
|
-
fullName: string;
|
|
1334
|
-
locale: string;
|
|
1335
|
-
createdAt: string;
|
|
1336
|
-
updatedAt: string;
|
|
1337
|
-
employeeId?: string | null | undefined;
|
|
1338
|
-
deactivatedAt?: string | null | undefined;
|
|
1339
|
-
}, {
|
|
1340
|
-
code: string;
|
|
1341
|
-
id: string;
|
|
1342
|
-
image: {
|
|
1343
|
-
"100x100": string | null;
|
|
1344
|
-
"64x64": string | null;
|
|
1345
|
-
"32x32": string | null;
|
|
1346
|
-
};
|
|
1347
|
-
email: string;
|
|
1348
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1349
|
-
firstName: string;
|
|
1350
|
-
lastName: string;
|
|
1351
|
-
fullName: string;
|
|
1352
|
-
locale: string;
|
|
1353
|
-
createdAt: string;
|
|
1354
|
-
updatedAt: string;
|
|
1355
|
-
employeeId?: string | null | undefined;
|
|
1356
|
-
deactivatedAt?: string | null | undefined;
|
|
1357
|
-
}>;
|
|
455
|
+
}, zod.core.$strip>;
|
|
1358
456
|
export declare const listRoleMembersResponse: zod.ZodArray<zod.ZodObject<{
|
|
1359
457
|
id: zod.ZodString;
|
|
1360
458
|
email: zod.ZodString;
|
|
@@ -1367,54 +465,15 @@ export declare const listRoleMembersResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
1367
465
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
1368
466
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
1369
467
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
1370
|
-
},
|
|
1371
|
-
|
|
1372
|
-
"
|
|
1373
|
-
"
|
|
1374
|
-
|
|
1375
|
-
"
|
|
1376
|
-
"64x64": string | null;
|
|
1377
|
-
"32x32": string | null;
|
|
468
|
+
}, zod.core.$strip>;
|
|
469
|
+
status: zod.ZodEnum<{
|
|
470
|
+
invited: "invited";
|
|
471
|
+
activated: "activated";
|
|
472
|
+
suspended: "suspended";
|
|
473
|
+
deactivated: "deactivated";
|
|
1378
474
|
}>;
|
|
1379
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
1380
475
|
locale: zod.ZodString;
|
|
1381
476
|
createdAt: zod.ZodString;
|
|
1382
477
|
updatedAt: zod.ZodString;
|
|
1383
478
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1384
|
-
},
|
|
1385
|
-
code: string;
|
|
1386
|
-
id: string;
|
|
1387
|
-
image: {
|
|
1388
|
-
"100x100": string | null;
|
|
1389
|
-
"64x64": string | null;
|
|
1390
|
-
"32x32": string | null;
|
|
1391
|
-
};
|
|
1392
|
-
email: string;
|
|
1393
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1394
|
-
firstName: string;
|
|
1395
|
-
lastName: string;
|
|
1396
|
-
fullName: string;
|
|
1397
|
-
locale: string;
|
|
1398
|
-
createdAt: string;
|
|
1399
|
-
updatedAt: string;
|
|
1400
|
-
employeeId?: string | null | undefined;
|
|
1401
|
-
deactivatedAt?: string | null | undefined;
|
|
1402
|
-
}, {
|
|
1403
|
-
code: string;
|
|
1404
|
-
id: string;
|
|
1405
|
-
image: {
|
|
1406
|
-
"100x100": string | null;
|
|
1407
|
-
"64x64": string | null;
|
|
1408
|
-
"32x32": string | null;
|
|
1409
|
-
};
|
|
1410
|
-
email: string;
|
|
1411
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1412
|
-
firstName: string;
|
|
1413
|
-
lastName: string;
|
|
1414
|
-
fullName: string;
|
|
1415
|
-
locale: string;
|
|
1416
|
-
createdAt: string;
|
|
1417
|
-
updatedAt: string;
|
|
1418
|
-
employeeId?: string | null | undefined;
|
|
1419
|
-
deactivatedAt?: string | null | undefined;
|
|
1420
|
-
}>, "many">;
|
|
479
|
+
}, zod.core.$strip>>;
|