@kickflow/mcp-server 1.0.6 → 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 +1243 -1679
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.js +44 -96
- 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 +91 -91
- 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 +8808 -8808
- package/dist/kickflow-api/generated/ticket/ticket.zod.js +130997 -41640
- 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 +175 -175
- 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 +7 -7
|
@@ -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,24 +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
192
|
export const RouteStepConditionConditionType = {
|
|
207
193
|
always: 'always',
|
|
208
194
|
conditional: 'conditional',
|
|
209
195
|
conditional_skip: 'conditional_skip',
|
|
210
196
|
};
|
|
211
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
212
197
|
export const RouteStepConditionCombinationType = {
|
|
213
198
|
all: 'all',
|
|
214
199
|
any: 'any',
|
|
215
200
|
};
|
|
216
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
217
201
|
export const RouteStepConditionFieldFieldKey = {
|
|
218
202
|
author_grade: 'author_grade',
|
|
219
203
|
author_team: 'author_team',
|
|
@@ -223,7 +207,6 @@ export const RouteStepConditionFieldFieldKey = {
|
|
|
223
207
|
general_master_variable: 'general_master_variable',
|
|
224
208
|
other_variable: 'other_variable',
|
|
225
209
|
};
|
|
226
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
227
210
|
export const RouteStepConditionFieldSymbol = {
|
|
228
211
|
equal: 'equal',
|
|
229
212
|
not_equal: 'not_equal',
|
|
@@ -238,7 +221,6 @@ export const RouteStepConditionFieldSymbol = {
|
|
|
238
221
|
descendants_or_equal: 'descendants_or_equal',
|
|
239
222
|
not_descendants_or_equal: 'not_descendants_or_equal',
|
|
240
223
|
};
|
|
241
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
242
224
|
export const TicketStatus = {
|
|
243
225
|
draft: 'draft',
|
|
244
226
|
in_progress: 'in_progress',
|
|
@@ -248,36 +230,19 @@ export const TicketStatus = {
|
|
|
248
230
|
denied: 'denied',
|
|
249
231
|
permanently_deleted: 'permanently_deleted',
|
|
250
232
|
};
|
|
251
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
252
233
|
export const TicketForcedPublicType = {
|
|
253
234
|
follow_workflow: 'follow_workflow',
|
|
254
235
|
forced_public: 'forced_public',
|
|
255
236
|
forced_private: 'forced_private',
|
|
256
237
|
};
|
|
257
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
258
|
-
export const TicketDetailAllOfCloudSignDocumentAnyOfStatus = {
|
|
259
|
-
draft: 'draft',
|
|
260
|
-
in_progress: 'in_progress',
|
|
261
|
-
rejected: 'rejected',
|
|
262
|
-
template: 'template',
|
|
263
|
-
imported: 'imported',
|
|
264
|
-
completed: 'completed',
|
|
265
|
-
};
|
|
266
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
267
238
|
export const TicketStepActionType = {
|
|
268
239
|
approve: 'approve',
|
|
269
240
|
confirm: 'confirm',
|
|
270
241
|
none: 'none',
|
|
271
242
|
};
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
free_word: 'free_word',
|
|
275
|
-
name: 'name',
|
|
276
|
-
code: 'code',
|
|
277
|
-
description: 'description',
|
|
278
|
-
custom_field: 'custom_field',
|
|
243
|
+
export const AuditLogSystemType = {
|
|
244
|
+
automation: 'automation',
|
|
279
245
|
};
|
|
280
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
281
246
|
export const CreateGeneralMasterBodyFieldsItemFieldType = {
|
|
282
247
|
text: 'text',
|
|
283
248
|
text_long: 'text_long',
|
|
@@ -287,27 +252,15 @@ export const CreateGeneralMasterBodyFieldsItemFieldType = {
|
|
|
287
252
|
pull_down: 'pull_down',
|
|
288
253
|
date: 'date',
|
|
289
254
|
};
|
|
290
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
291
|
-
export const ListTicketsStatusOneOfItem = {
|
|
292
|
-
draft: 'draft',
|
|
293
|
-
in_progress: 'in_progress',
|
|
294
|
-
rejected: 'rejected',
|
|
295
|
-
completed: 'completed',
|
|
296
|
-
denied: 'denied',
|
|
297
|
-
archived: 'archived',
|
|
298
|
-
};
|
|
299
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
300
255
|
export const ListTicketsAssigneeStatusItem = {
|
|
301
256
|
all: 'all',
|
|
302
257
|
current: 'current',
|
|
303
258
|
approved: 'approved',
|
|
304
259
|
};
|
|
305
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
306
260
|
export const CreateTicketBodyStatus = {
|
|
307
261
|
draft: 'draft',
|
|
308
262
|
in_progress: 'in_progress',
|
|
309
263
|
};
|
|
310
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
311
264
|
export const ListTasksStatusItem = {
|
|
312
265
|
draft: 'draft',
|
|
313
266
|
in_progress: 'in_progress',
|
|
@@ -315,30 +268,25 @@ export const ListTasksStatusItem = {
|
|
|
315
268
|
completed: 'completed',
|
|
316
269
|
deleted: 'deleted',
|
|
317
270
|
};
|
|
318
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
319
271
|
export const ListTasksPending = {
|
|
320
272
|
true: 'true',
|
|
321
273
|
false: 'false',
|
|
322
274
|
};
|
|
323
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
324
275
|
export const UpdateTicketBodyStatus = {
|
|
325
276
|
draft: 'draft',
|
|
326
277
|
in_progress: 'in_progress',
|
|
327
278
|
rejected: 'rejected',
|
|
328
279
|
};
|
|
329
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
330
280
|
export const ListUsersStatusItem = {
|
|
331
281
|
invited: 'invited',
|
|
332
282
|
activated: 'activated',
|
|
333
283
|
suspended: 'suspended',
|
|
334
284
|
deactivated: 'deactivated',
|
|
335
285
|
};
|
|
336
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
337
286
|
export const ListRoutesStatusItem = {
|
|
338
287
|
visible: 'visible',
|
|
339
288
|
error: 'error',
|
|
340
289
|
};
|
|
341
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
342
290
|
export const ListWorkflowsStatusItem = {
|
|
343
291
|
visible: 'visible',
|
|
344
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;
|