@kickflow/mcp-server 1.0.5 → 1.0.7
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/kickflow-api/generated/api-definitions.js +817 -817
- package/dist/kickflow-api/generated/api-definitions.js.map +1 -1
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.d.ts +17 -17
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.js +90 -42
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.js.map +1 -1
- package/dist/kickflow-api/generated/category/category.zod.d.ts +9 -9
- package/dist/kickflow-api/generated/category/category.zod.js +50 -31
- package/dist/kickflow-api/generated/category/category.zod.js.map +1 -1
- package/dist/kickflow-api/generated/comment/comment.zod.d.ts +67 -67
- package/dist/kickflow-api/generated/comment/comment.zod.js +492 -247
- package/dist/kickflow-api/generated/comment/comment.zod.js.map +1 -1
- package/dist/kickflow-api/generated/file/file.zod.d.ts +4 -4
- package/dist/kickflow-api/generated/file/file.zod.js +13 -13
- package/dist/kickflow-api/generated/file/file.zod.js.map +1 -1
- package/dist/kickflow-api/generated/folder/folder.zod.d.ts +56 -56
- package/dist/kickflow-api/generated/folder/folder.zod.js +374 -179
- package/dist/kickflow-api/generated/folder/folder.zod.js.map +1 -1
- package/dist/kickflow-api/generated/general-master/general-master.zod.d.ts +24 -24
- package/dist/kickflow-api/generated/general-master/general-master.zod.js +607 -267
- package/dist/kickflow-api/generated/general-master/general-master.zod.js.map +1 -1
- package/dist/kickflow-api/generated/grade/grade.zod.d.ts +17 -17
- package/dist/kickflow-api/generated/grade/grade.zod.js +157 -59
- package/dist/kickflow-api/generated/grade/grade.zod.js.map +1 -1
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.js +1 -6
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.js.map +1 -1
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.d.ts +1282 -1715
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.js +44 -105
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.js.map +1 -1
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.d.ts +20 -20
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.js +189 -116
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.js.map +1 -1
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.d.ts +82 -82
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.js +670 -286
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.js.map +1 -1
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.d.ts +82 -82
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.js +670 -286
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.js.map +1 -1
- package/dist/kickflow-api/generated/role/role.zod.d.ts +69 -69
- package/dist/kickflow-api/generated/role/role.zod.js +753 -281
- package/dist/kickflow-api/generated/role/role.zod.js.map +1 -1
- package/dist/kickflow-api/generated/route/route.zod.d.ts +96 -96
- package/dist/kickflow-api/generated/route/route.zod.js +795 -312
- package/dist/kickflow-api/generated/route/route.zod.js.map +1 -1
- package/dist/kickflow-api/generated/team/team.zod.d.ts +123 -123
- package/dist/kickflow-api/generated/team/team.zod.js +775 -373
- package/dist/kickflow-api/generated/team/team.zod.js.map +1 -1
- package/dist/kickflow-api/generated/ticket/ticket.zod.d.ts +9012 -9010
- package/dist/kickflow-api/generated/ticket/ticket.zod.js +130998 -41639
- package/dist/kickflow-api/generated/ticket/ticket.zod.js.map +1 -1
- package/dist/kickflow-api/generated/user/user.zod.d.ts +98 -98
- package/dist/kickflow-api/generated/user/user.zod.js +593 -291
- package/dist/kickflow-api/generated/user/user.zod.js.map +1 -1
- package/dist/kickflow-api/generated/workflow/workflow.zod.d.ts +178 -178
- package/dist/kickflow-api/generated/workflow/workflow.zod.js +2384 -810
- package/dist/kickflow-api/generated/workflow/workflow.zod.js.map +1 -1
- package/dist/kickflow-api/schema-registry.js +6 -2
- package/dist/kickflow-api/schema-registry.js.map +1 -1
- package/package.json +9 -9
|
@@ -1,12 +1,25 @@
|
|
|
1
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
2
1
|
export const UserStatus = {
|
|
3
2
|
invited: 'invited',
|
|
4
3
|
activated: 'activated',
|
|
5
4
|
suspended: 'suspended',
|
|
6
5
|
deactivated: 'deactivated',
|
|
7
6
|
};
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
export const WorkflowStatus = {
|
|
8
|
+
visible: 'visible',
|
|
9
|
+
invisible: 'invisible',
|
|
10
|
+
deleted: 'deleted',
|
|
11
|
+
};
|
|
12
|
+
export const WorkflowVisibleToManager = {
|
|
13
|
+
none: 'none',
|
|
14
|
+
direct: 'direct',
|
|
15
|
+
all: 'all',
|
|
16
|
+
};
|
|
17
|
+
export const WorkflowTitleInputMode = {
|
|
18
|
+
none: 'none',
|
|
19
|
+
input: 'input',
|
|
20
|
+
calculate: 'calculate',
|
|
21
|
+
};
|
|
22
|
+
export const RoleDetailPermissionListItemPermission = {
|
|
10
23
|
tenant: 'tenant',
|
|
11
24
|
billing: 'billing',
|
|
12
25
|
integration: 'integration',
|
|
@@ -26,7 +39,15 @@ export const RoleDetailAllOfPermissionListItemPermission = {
|
|
|
26
39
|
label: 'label',
|
|
27
40
|
automation: 'automation',
|
|
28
41
|
};
|
|
29
|
-
|
|
42
|
+
export const GeneralMasterFieldFieldType = {
|
|
43
|
+
text: 'text',
|
|
44
|
+
text_long: 'text_long',
|
|
45
|
+
number: 'number',
|
|
46
|
+
integer: 'integer',
|
|
47
|
+
checkbox: 'checkbox',
|
|
48
|
+
pull_down: 'pull_down',
|
|
49
|
+
date: 'date',
|
|
50
|
+
};
|
|
30
51
|
export const RoleCreateBodyPermissionListItemPermission = {
|
|
31
52
|
tenant: 'tenant',
|
|
32
53
|
billing: 'billing',
|
|
@@ -47,7 +68,6 @@ export const RoleCreateBodyPermissionListItemPermission = {
|
|
|
47
68
|
label: 'label',
|
|
48
69
|
automation: 'automation',
|
|
49
70
|
};
|
|
50
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
51
71
|
export const RoleUpdateBodyPermissionListItemPermission = {
|
|
52
72
|
tenant: 'tenant',
|
|
53
73
|
billing: 'billing',
|
|
@@ -68,46 +88,10 @@ export const RoleUpdateBodyPermissionListItemPermission = {
|
|
|
68
88
|
label: 'label',
|
|
69
89
|
automation: 'automation',
|
|
70
90
|
};
|
|
71
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
72
|
-
export const GeneralMasterFieldFieldType = {
|
|
73
|
-
text: 'text',
|
|
74
|
-
text_long: 'text_long',
|
|
75
|
-
number: 'number',
|
|
76
|
-
integer: 'integer',
|
|
77
|
-
checkbox: 'checkbox',
|
|
78
|
-
pull_down: 'pull_down',
|
|
79
|
-
date: 'date',
|
|
80
|
-
};
|
|
81
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
82
|
-
export const WorkflowStatus = {
|
|
83
|
-
visible: 'visible',
|
|
84
|
-
invisible: 'invisible',
|
|
85
|
-
deleted: 'deleted',
|
|
86
|
-
};
|
|
87
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
88
|
-
export const WorkflowVisibleToManager = {
|
|
89
|
-
none: 'none',
|
|
90
|
-
direct: 'direct',
|
|
91
|
-
all: 'all',
|
|
92
|
-
};
|
|
93
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
94
|
-
export const WorkflowTitleInputMode = {
|
|
95
|
-
none: 'none',
|
|
96
|
-
input: 'input',
|
|
97
|
-
calculate: 'calculate',
|
|
98
|
-
};
|
|
99
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
100
91
|
export const SectionListItemSectionType = {
|
|
101
92
|
form: 'form',
|
|
102
93
|
slip: 'slip',
|
|
103
94
|
};
|
|
104
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
105
|
-
export const SectionListItemCombinationType = {
|
|
106
|
-
all: 'all',
|
|
107
|
-
any: 'any',
|
|
108
|
-
custom: 'custom',
|
|
109
|
-
};
|
|
110
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
111
95
|
export const FormFieldFieldType = {
|
|
112
96
|
text: 'text',
|
|
113
97
|
text_long: 'text_long',
|
|
@@ -125,12 +109,10 @@ export const FormFieldFieldType = {
|
|
|
125
109
|
button_api: 'button_api',
|
|
126
110
|
button_kintone: 'button_kintone',
|
|
127
111
|
};
|
|
128
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
129
112
|
export const FormFieldSize = {
|
|
130
113
|
full: 'full',
|
|
131
114
|
half: 'half',
|
|
132
115
|
};
|
|
133
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
134
116
|
export const ExternalApiSettingHttpMethod = {
|
|
135
117
|
get: 'get',
|
|
136
118
|
post: 'post',
|
|
@@ -138,7 +120,18 @@ export const ExternalApiSettingHttpMethod = {
|
|
|
138
120
|
delete: 'delete',
|
|
139
121
|
patch: 'patch',
|
|
140
122
|
};
|
|
141
|
-
|
|
123
|
+
export const GeneralMasterSearchFilterFieldType = {
|
|
124
|
+
free_word: 'free_word',
|
|
125
|
+
name: 'name',
|
|
126
|
+
code: 'code',
|
|
127
|
+
description: 'description',
|
|
128
|
+
custom_field: 'custom_field',
|
|
129
|
+
};
|
|
130
|
+
export const SectionListItemCombinationType = {
|
|
131
|
+
all: 'all',
|
|
132
|
+
any: 'any',
|
|
133
|
+
custom: 'custom',
|
|
134
|
+
};
|
|
142
135
|
export const SlipFieldFieldType = {
|
|
143
136
|
text: 'text',
|
|
144
137
|
number: 'number',
|
|
@@ -153,19 +146,21 @@ export const SlipFieldFieldType = {
|
|
|
153
146
|
team: 'team',
|
|
154
147
|
ticket: 'ticket',
|
|
155
148
|
};
|
|
156
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
157
149
|
export const WorkflowRouteConditionConditionType = {
|
|
158
150
|
always: 'always',
|
|
159
151
|
field: 'field',
|
|
160
152
|
field_otherwise: 'field_otherwise',
|
|
161
153
|
};
|
|
162
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
163
154
|
export const WorkflowRouteConditionCombinationType = {
|
|
164
155
|
all: 'all',
|
|
165
156
|
any: 'any',
|
|
166
157
|
custom: 'custom',
|
|
167
158
|
};
|
|
168
|
-
|
|
159
|
+
export const RouteStatus = {
|
|
160
|
+
visible: 'visible',
|
|
161
|
+
deleted: 'deleted',
|
|
162
|
+
error: 'error',
|
|
163
|
+
};
|
|
169
164
|
export const WorkflowRouteConditionFieldSymbol = {
|
|
170
165
|
equal: 'equal',
|
|
171
166
|
not_equal: 'not_equal',
|
|
@@ -179,13 +174,6 @@ export const WorkflowRouteConditionFieldSymbol = {
|
|
|
179
174
|
is_not_empty: 'is_not_empty',
|
|
180
175
|
descendants_or_equal: 'descendants_or_equal',
|
|
181
176
|
};
|
|
182
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
183
|
-
export const RouteStatus = {
|
|
184
|
-
visible: 'visible',
|
|
185
|
-
deleted: 'deleted',
|
|
186
|
-
error: 'error',
|
|
187
|
-
};
|
|
188
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
189
177
|
export const RouteStepStepType = {
|
|
190
178
|
author: 'author',
|
|
191
179
|
manager: 'manager',
|
|
@@ -196,33 +184,20 @@ export const RouteStepStepType = {
|
|
|
196
184
|
dynamic_team: 'dynamic_team',
|
|
197
185
|
dynamic_user: 'dynamic_user',
|
|
198
186
|
};
|
|
199
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
200
187
|
export const RouteStepActionType = {
|
|
201
188
|
approve: 'approve',
|
|
202
189
|
confirm: 'confirm',
|
|
203
190
|
none: 'none',
|
|
204
191
|
};
|
|
205
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
206
|
-
export const RouteStepTargetGradeSymbol = {
|
|
207
|
-
equal: 'equal',
|
|
208
|
-
greater_than: 'greater_than',
|
|
209
|
-
greater_than_or_equal: 'greater_than_or_equal',
|
|
210
|
-
less_than: 'less_than',
|
|
211
|
-
less_than_or_equal: 'less_than_or_equal',
|
|
212
|
-
any_of: 'any_of',
|
|
213
|
-
};
|
|
214
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
215
192
|
export const RouteStepConditionConditionType = {
|
|
216
193
|
always: 'always',
|
|
217
194
|
conditional: 'conditional',
|
|
218
195
|
conditional_skip: 'conditional_skip',
|
|
219
196
|
};
|
|
220
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
221
197
|
export const RouteStepConditionCombinationType = {
|
|
222
198
|
all: 'all',
|
|
223
199
|
any: 'any',
|
|
224
200
|
};
|
|
225
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
226
201
|
export const RouteStepConditionFieldFieldKey = {
|
|
227
202
|
author_grade: 'author_grade',
|
|
228
203
|
author_team: 'author_team',
|
|
@@ -232,7 +207,6 @@ export const RouteStepConditionFieldFieldKey = {
|
|
|
232
207
|
general_master_variable: 'general_master_variable',
|
|
233
208
|
other_variable: 'other_variable',
|
|
234
209
|
};
|
|
235
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
236
210
|
export const RouteStepConditionFieldSymbol = {
|
|
237
211
|
equal: 'equal',
|
|
238
212
|
not_equal: 'not_equal',
|
|
@@ -247,7 +221,6 @@ export const RouteStepConditionFieldSymbol = {
|
|
|
247
221
|
descendants_or_equal: 'descendants_or_equal',
|
|
248
222
|
not_descendants_or_equal: 'not_descendants_or_equal',
|
|
249
223
|
};
|
|
250
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
251
224
|
export const TicketStatus = {
|
|
252
225
|
draft: 'draft',
|
|
253
226
|
in_progress: 'in_progress',
|
|
@@ -257,36 +230,19 @@ export const TicketStatus = {
|
|
|
257
230
|
denied: 'denied',
|
|
258
231
|
permanently_deleted: 'permanently_deleted',
|
|
259
232
|
};
|
|
260
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
261
233
|
export const TicketForcedPublicType = {
|
|
262
234
|
follow_workflow: 'follow_workflow',
|
|
263
235
|
forced_public: 'forced_public',
|
|
264
236
|
forced_private: 'forced_private',
|
|
265
237
|
};
|
|
266
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
267
|
-
export const TicketDetailAllOfCloudSignDocumentAnyOfStatus = {
|
|
268
|
-
draft: 'draft',
|
|
269
|
-
in_progress: 'in_progress',
|
|
270
|
-
rejected: 'rejected',
|
|
271
|
-
template: 'template',
|
|
272
|
-
imported: 'imported',
|
|
273
|
-
completed: 'completed',
|
|
274
|
-
};
|
|
275
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
276
238
|
export const TicketStepActionType = {
|
|
277
239
|
approve: 'approve',
|
|
278
240
|
confirm: 'confirm',
|
|
279
241
|
none: 'none',
|
|
280
242
|
};
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
free_word: 'free_word',
|
|
284
|
-
name: 'name',
|
|
285
|
-
code: 'code',
|
|
286
|
-
description: 'description',
|
|
287
|
-
custom_field: 'custom_field',
|
|
243
|
+
export const AuditLogSystemType = {
|
|
244
|
+
automation: 'automation',
|
|
288
245
|
};
|
|
289
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
290
246
|
export const CreateGeneralMasterBodyFieldsItemFieldType = {
|
|
291
247
|
text: 'text',
|
|
292
248
|
text_long: 'text_long',
|
|
@@ -296,27 +252,15 @@ export const CreateGeneralMasterBodyFieldsItemFieldType = {
|
|
|
296
252
|
pull_down: 'pull_down',
|
|
297
253
|
date: 'date',
|
|
298
254
|
};
|
|
299
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
300
|
-
export const ListTicketsStatusOneOfItem = {
|
|
301
|
-
draft: 'draft',
|
|
302
|
-
in_progress: 'in_progress',
|
|
303
|
-
rejected: 'rejected',
|
|
304
|
-
completed: 'completed',
|
|
305
|
-
denied: 'denied',
|
|
306
|
-
archived: 'archived',
|
|
307
|
-
};
|
|
308
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
309
255
|
export const ListTicketsAssigneeStatusItem = {
|
|
310
256
|
all: 'all',
|
|
311
257
|
current: 'current',
|
|
312
258
|
approved: 'approved',
|
|
313
259
|
};
|
|
314
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
315
260
|
export const CreateTicketBodyStatus = {
|
|
316
261
|
draft: 'draft',
|
|
317
262
|
in_progress: 'in_progress',
|
|
318
263
|
};
|
|
319
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
320
264
|
export const ListTasksStatusItem = {
|
|
321
265
|
draft: 'draft',
|
|
322
266
|
in_progress: 'in_progress',
|
|
@@ -324,30 +268,25 @@ export const ListTasksStatusItem = {
|
|
|
324
268
|
completed: 'completed',
|
|
325
269
|
deleted: 'deleted',
|
|
326
270
|
};
|
|
327
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
328
271
|
export const ListTasksPending = {
|
|
329
272
|
true: 'true',
|
|
330
273
|
false: 'false',
|
|
331
274
|
};
|
|
332
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
333
275
|
export const UpdateTicketBodyStatus = {
|
|
334
276
|
draft: 'draft',
|
|
335
277
|
in_progress: 'in_progress',
|
|
336
278
|
rejected: 'rejected',
|
|
337
279
|
};
|
|
338
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
339
280
|
export const ListUsersStatusItem = {
|
|
340
281
|
invited: 'invited',
|
|
341
282
|
activated: 'activated',
|
|
342
283
|
suspended: 'suspended',
|
|
343
284
|
deactivated: 'deactivated',
|
|
344
285
|
};
|
|
345
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
346
286
|
export const ListRoutesStatusItem = {
|
|
347
287
|
visible: 'visible',
|
|
348
288
|
error: 'error',
|
|
349
289
|
};
|
|
350
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
351
290
|
export const ListWorkflowsStatusItem = {
|
|
352
291
|
visible: 'visible',
|
|
353
292
|
invisible: 'invisible',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kickflowRESTAPIV1.schemas.js","sourceRoot":"","sources":["../../../src/kickflow-api/generated/kickflowRESTAPIV1.schemas.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"kickflowRESTAPIV1.schemas.js","sourceRoot":"","sources":["../../../src/kickflow-api/generated/kickflowRESTAPIV1.schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,13 +12,13 @@ export declare const listOrganizationChartsQueryPageDefault = 1;
|
|
|
12
12
|
export declare const listOrganizationChartsQueryPerPageDefault = 25;
|
|
13
13
|
export declare const listOrganizationChartsQueryPerPageMax = 100;
|
|
14
14
|
export declare const listOrganizationChartsQuerySortByRegExp: RegExp;
|
|
15
|
-
export declare const
|
|
15
|
+
export declare const ListOrganizationChartsQueryParams: zod.ZodObject<{
|
|
16
16
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
17
17
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
18
18
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
19
19
|
}, zod.z.core.$strip>;
|
|
20
20
|
export declare const listOrganizationChartsResponseNameMax = 300;
|
|
21
|
-
export declare const
|
|
21
|
+
export declare const ListOrganizationChartsResponseItem: zod.ZodObject<{
|
|
22
22
|
id: zod.ZodUUID;
|
|
23
23
|
name: zod.ZodString;
|
|
24
24
|
current: zod.ZodBoolean;
|
|
@@ -33,7 +33,7 @@ export declare const listOrganizationChartsResponseItem: zod.ZodObject<{
|
|
|
33
33
|
updatedAt: zod.z.ZodISODateTime;
|
|
34
34
|
}, zod.z.core.$strip>>;
|
|
35
35
|
}, zod.z.core.$strip>;
|
|
36
|
-
export declare const
|
|
36
|
+
export declare const ListOrganizationChartsResponse: zod.ZodArray<zod.ZodObject<{
|
|
37
37
|
id: zod.ZodUUID;
|
|
38
38
|
name: zod.ZodString;
|
|
39
39
|
current: zod.ZodBoolean;
|
|
@@ -54,11 +54,11 @@ export declare const listOrganizationChartsResponse: zod.ZodArray<zod.ZodObject<
|
|
|
54
54
|
このAPIの実行には、チームの管理権限が必要です。
|
|
55
55
|
* @summary 組織図を作成
|
|
56
56
|
*/
|
|
57
|
-
export declare const
|
|
57
|
+
export declare const CreateOrganizationChartBody: zod.ZodObject<{
|
|
58
58
|
name: zod.ZodString;
|
|
59
59
|
}, zod.z.core.$strip>;
|
|
60
|
-
export declare const
|
|
61
|
-
export declare const
|
|
60
|
+
export declare const createOrganizationChartResponseOneNameMax = 300;
|
|
61
|
+
export declare const CreateOrganizationChartResponse: zod.ZodObject<{
|
|
62
62
|
id: zod.ZodUUID;
|
|
63
63
|
name: zod.ZodString;
|
|
64
64
|
current: zod.ZodBoolean;
|
|
@@ -82,7 +82,7 @@ export declare const createOrganizationChartResponse: zod.ZodObject<{
|
|
|
82
82
|
注意:組織図の削除は時間がかかることがあるため、削除は非同期で実行されます。削除の完了前にレスポンスを返すので注意してください。
|
|
83
83
|
* @summary 組織図を削除
|
|
84
84
|
*/
|
|
85
|
-
export declare const
|
|
85
|
+
export declare const DeleteOrganizationChartParams: zod.ZodObject<{
|
|
86
86
|
organizationChartId: zod.ZodUUID;
|
|
87
87
|
}, zod.z.core.$strip>;
|
|
88
88
|
/**
|
|
@@ -91,11 +91,11 @@ export declare const deleteOrganizationChartParams: zod.ZodObject<{
|
|
|
91
91
|
このAPIの実行には、チームの管理権限が必要です。
|
|
92
92
|
* @summary 組織図を取得
|
|
93
93
|
*/
|
|
94
|
-
export declare const
|
|
94
|
+
export declare const GetOrganizationChartParams: zod.ZodObject<{
|
|
95
95
|
organizationChartId: zod.ZodUUID;
|
|
96
96
|
}, zod.z.core.$strip>;
|
|
97
|
-
export declare const
|
|
98
|
-
export declare const
|
|
97
|
+
export declare const getOrganizationChartResponseOneNameMax = 300;
|
|
98
|
+
export declare const GetOrganizationChartResponse: zod.ZodObject<{
|
|
99
99
|
id: zod.ZodUUID;
|
|
100
100
|
name: zod.ZodString;
|
|
101
101
|
current: zod.ZodBoolean;
|
|
@@ -116,14 +116,14 @@ export declare const getOrganizationChartResponse: zod.ZodObject<{
|
|
|
116
116
|
このAPIの実行には、チームの管理権限が必要です。
|
|
117
117
|
* @summary 組織図を更新
|
|
118
118
|
*/
|
|
119
|
-
export declare const
|
|
119
|
+
export declare const UpdateOrganizationChartParams: zod.ZodObject<{
|
|
120
120
|
organizationChartId: zod.ZodUUID;
|
|
121
121
|
}, zod.z.core.$strip>;
|
|
122
|
-
export declare const
|
|
122
|
+
export declare const UpdateOrganizationChartBody: zod.ZodObject<{
|
|
123
123
|
name: zod.ZodString;
|
|
124
124
|
}, zod.z.core.$strip>;
|
|
125
|
-
export declare const
|
|
126
|
-
export declare const
|
|
125
|
+
export declare const updateOrganizationChartResponseOneNameMax = 300;
|
|
126
|
+
export declare const UpdateOrganizationChartResponse: zod.ZodObject<{
|
|
127
127
|
id: zod.ZodUUID;
|
|
128
128
|
name: zod.ZodString;
|
|
129
129
|
current: zod.ZodBoolean;
|
|
@@ -144,8 +144,8 @@ export declare const updateOrganizationChartResponse: zod.ZodObject<{
|
|
|
144
144
|
このAPIの実行には、チームの管理権限が必要です。
|
|
145
145
|
* @summary 現在の組織図を取得
|
|
146
146
|
*/
|
|
147
|
-
export declare const
|
|
148
|
-
export declare const
|
|
147
|
+
export declare const getCurrentOrganizationChartResponseOneNameMax = 300;
|
|
148
|
+
export declare const GetCurrentOrganizationChartResponse: zod.ZodObject<{
|
|
149
149
|
id: zod.ZodUUID;
|
|
150
150
|
name: zod.ZodString;
|
|
151
151
|
current: zod.ZodBoolean;
|
|
@@ -169,14 +169,14 @@ export declare const getCurrentOrganizationChartResponse: zod.ZodObject<{
|
|
|
169
169
|
注意:組織図の有効化は時間がかかることがあるため、有効化は非同期で実行されます。有効化の完了前にレスポンスを返すので注意してください。
|
|
170
170
|
* @summary 組織図を有効化
|
|
171
171
|
*/
|
|
172
|
-
export declare const
|
|
172
|
+
export declare const ActivateOrganizationChartParams: zod.ZodObject<{
|
|
173
173
|
organizationChartId: zod.ZodUUID;
|
|
174
174
|
}, zod.z.core.$strip>;
|
|
175
|
-
export declare const
|
|
175
|
+
export declare const ActivateOrganizationChartBody: zod.ZodObject<{
|
|
176
176
|
dueOn: zod.ZodOptional<zod.z.ZodISODate>;
|
|
177
177
|
}, zod.z.core.$strip>;
|
|
178
|
-
export declare const
|
|
179
|
-
export declare const
|
|
178
|
+
export declare const activateOrganizationChartResponseOneNameMax = 300;
|
|
179
|
+
export declare const ActivateOrganizationChartResponse: zod.ZodObject<{
|
|
180
180
|
id: zod.ZodUUID;
|
|
181
181
|
name: zod.ZodString;
|
|
182
182
|
current: zod.ZodBoolean;
|