@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 listGradesQueryParams: 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 listGradesResponseNameMax = 255;
|
|
33
25
|
export declare const listGradesResponseLevelMin = 0;
|
|
34
26
|
export declare const listGradesResponseLevelMax = 255;
|
|
@@ -42,23 +34,7 @@ export declare const listGradesResponseItem: zod.ZodObject<{
|
|
|
42
34
|
isDefault: zod.ZodBoolean;
|
|
43
35
|
createdAt: zod.ZodString;
|
|
44
36
|
updatedAt: zod.ZodString;
|
|
45
|
-
},
|
|
46
|
-
code: string | null;
|
|
47
|
-
name: string;
|
|
48
|
-
id: string;
|
|
49
|
-
level: number;
|
|
50
|
-
createdAt: string;
|
|
51
|
-
updatedAt: string;
|
|
52
|
-
isDefault: boolean;
|
|
53
|
-
}, {
|
|
54
|
-
code: string | null;
|
|
55
|
-
name: string;
|
|
56
|
-
id: string;
|
|
57
|
-
level: number;
|
|
58
|
-
createdAt: string;
|
|
59
|
-
updatedAt: string;
|
|
60
|
-
isDefault: boolean;
|
|
61
|
-
}>;
|
|
37
|
+
}, zod.core.$strip>;
|
|
62
38
|
export declare const listGradesResponse: zod.ZodArray<zod.ZodObject<{
|
|
63
39
|
id: zod.ZodString;
|
|
64
40
|
name: zod.ZodString;
|
|
@@ -67,23 +43,7 @@ export declare const listGradesResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
67
43
|
isDefault: zod.ZodBoolean;
|
|
68
44
|
createdAt: zod.ZodString;
|
|
69
45
|
updatedAt: zod.ZodString;
|
|
70
|
-
},
|
|
71
|
-
code: string | null;
|
|
72
|
-
name: string;
|
|
73
|
-
id: string;
|
|
74
|
-
level: number;
|
|
75
|
-
createdAt: string;
|
|
76
|
-
updatedAt: string;
|
|
77
|
-
isDefault: boolean;
|
|
78
|
-
}, {
|
|
79
|
-
code: string | null;
|
|
80
|
-
name: string;
|
|
81
|
-
id: string;
|
|
82
|
-
level: number;
|
|
83
|
-
createdAt: string;
|
|
84
|
-
updatedAt: string;
|
|
85
|
-
isDefault: boolean;
|
|
86
|
-
}>, "many">;
|
|
46
|
+
}, zod.core.$strip>>;
|
|
87
47
|
/**
|
|
88
48
|
* 役職を作成します。
|
|
89
49
|
|
|
@@ -98,15 +58,7 @@ export declare const createGradeBody: zod.ZodObject<{
|
|
|
98
58
|
name: zod.ZodString;
|
|
99
59
|
level: zod.ZodNumber;
|
|
100
60
|
code: zod.ZodOptional<zod.ZodString>;
|
|
101
|
-
},
|
|
102
|
-
name: string;
|
|
103
|
-
level: number;
|
|
104
|
-
code?: string | undefined;
|
|
105
|
-
}, {
|
|
106
|
-
name: string;
|
|
107
|
-
level: number;
|
|
108
|
-
code?: string | undefined;
|
|
109
|
-
}>;
|
|
61
|
+
}, zod.core.$strip>;
|
|
110
62
|
export declare const createGradeResponseNameMax = 255;
|
|
111
63
|
export declare const createGradeResponseLevelMin = 0;
|
|
112
64
|
export declare const createGradeResponseLevelMax = 255;
|
|
@@ -120,23 +72,7 @@ export declare const createGradeResponse: zod.ZodObject<{
|
|
|
120
72
|
isDefault: zod.ZodBoolean;
|
|
121
73
|
createdAt: zod.ZodString;
|
|
122
74
|
updatedAt: zod.ZodString;
|
|
123
|
-
},
|
|
124
|
-
code: string | null;
|
|
125
|
-
name: string;
|
|
126
|
-
id: string;
|
|
127
|
-
level: number;
|
|
128
|
-
createdAt: string;
|
|
129
|
-
updatedAt: string;
|
|
130
|
-
isDefault: boolean;
|
|
131
|
-
}, {
|
|
132
|
-
code: string | null;
|
|
133
|
-
name: string;
|
|
134
|
-
id: string;
|
|
135
|
-
level: number;
|
|
136
|
-
createdAt: string;
|
|
137
|
-
updatedAt: string;
|
|
138
|
-
isDefault: boolean;
|
|
139
|
-
}>;
|
|
75
|
+
}, zod.core.$strip>;
|
|
140
76
|
/**
|
|
141
77
|
* 役職を一件取得します。
|
|
142
78
|
|
|
@@ -156,23 +92,7 @@ export declare const getGradeResponse: zod.ZodObject<{
|
|
|
156
92
|
isDefault: zod.ZodBoolean;
|
|
157
93
|
createdAt: zod.ZodString;
|
|
158
94
|
updatedAt: zod.ZodString;
|
|
159
|
-
},
|
|
160
|
-
code: string | null;
|
|
161
|
-
name: string;
|
|
162
|
-
id: string;
|
|
163
|
-
level: number;
|
|
164
|
-
createdAt: string;
|
|
165
|
-
updatedAt: string;
|
|
166
|
-
isDefault: boolean;
|
|
167
|
-
}, {
|
|
168
|
-
code: string | null;
|
|
169
|
-
name: string;
|
|
170
|
-
id: string;
|
|
171
|
-
level: number;
|
|
172
|
-
createdAt: string;
|
|
173
|
-
updatedAt: string;
|
|
174
|
-
isDefault: boolean;
|
|
175
|
-
}>;
|
|
95
|
+
}, zod.core.$strip>;
|
|
176
96
|
/**
|
|
177
97
|
* 役職を更新します。
|
|
178
98
|
|
|
@@ -186,15 +106,7 @@ export declare const updateGradeBody: zod.ZodObject<{
|
|
|
186
106
|
name: zod.ZodOptional<zod.ZodString>;
|
|
187
107
|
level: zod.ZodOptional<zod.ZodNumber>;
|
|
188
108
|
code: zod.ZodOptional<zod.ZodString>;
|
|
189
|
-
},
|
|
190
|
-
code?: string | undefined;
|
|
191
|
-
name?: string | undefined;
|
|
192
|
-
level?: number | undefined;
|
|
193
|
-
}, {
|
|
194
|
-
code?: string | undefined;
|
|
195
|
-
name?: string | undefined;
|
|
196
|
-
level?: number | undefined;
|
|
197
|
-
}>;
|
|
109
|
+
}, zod.core.$strip>;
|
|
198
110
|
export declare const updateGradeResponseNameMax = 255;
|
|
199
111
|
export declare const updateGradeResponseLevelMin = 0;
|
|
200
112
|
export declare const updateGradeResponseLevelMax = 255;
|
|
@@ -208,20 +120,4 @@ export declare const updateGradeResponse: zod.ZodObject<{
|
|
|
208
120
|
isDefault: zod.ZodBoolean;
|
|
209
121
|
createdAt: zod.ZodString;
|
|
210
122
|
updatedAt: zod.ZodString;
|
|
211
|
-
},
|
|
212
|
-
code: string | null;
|
|
213
|
-
name: string;
|
|
214
|
-
id: string;
|
|
215
|
-
level: number;
|
|
216
|
-
createdAt: string;
|
|
217
|
-
updatedAt: string;
|
|
218
|
-
isDefault: boolean;
|
|
219
|
-
}, {
|
|
220
|
-
code: string | null;
|
|
221
|
-
name: string;
|
|
222
|
-
id: string;
|
|
223
|
-
level: number;
|
|
224
|
-
createdAt: string;
|
|
225
|
-
updatedAt: string;
|
|
226
|
-
isDefault: boolean;
|
|
227
|
-
}>;
|
|
123
|
+
}, zod.core.$strip>;
|
|
@@ -23,15 +23,7 @@ export declare const listOrganizationChartsQueryParams: zod.ZodObject<{
|
|
|
23
23
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
24
24
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
25
25
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
26
|
-
},
|
|
27
|
-
page: number;
|
|
28
|
-
perPage: number;
|
|
29
|
-
sortBy?: string | undefined;
|
|
30
|
-
}, {
|
|
31
|
-
page?: number | undefined;
|
|
32
|
-
perPage?: number | undefined;
|
|
33
|
-
sortBy?: string | undefined;
|
|
34
|
-
}>;
|
|
26
|
+
}, zod.core.$strip>;
|
|
35
27
|
export declare const listOrganizationChartsResponseNameMax = 255;
|
|
36
28
|
export declare const listOrganizationChartsResponseItem: zod.ZodObject<{
|
|
37
29
|
id: zod.ZodString;
|
|
@@ -46,46 +38,8 @@ export declare const listOrganizationChartsResponseItem: zod.ZodObject<{
|
|
|
46
38
|
dueOn: zod.ZodString;
|
|
47
39
|
createdAt: zod.ZodString;
|
|
48
40
|
updatedAt: zod.ZodString;
|
|
49
|
-
},
|
|
50
|
-
|
|
51
|
-
createdAt: string;
|
|
52
|
-
updatedAt: string;
|
|
53
|
-
dueOn: string;
|
|
54
|
-
}, {
|
|
55
|
-
id: string;
|
|
56
|
-
createdAt: string;
|
|
57
|
-
updatedAt: string;
|
|
58
|
-
dueOn: string;
|
|
59
|
-
}>>;
|
|
60
|
-
}, "strip", zod.ZodTypeAny, {
|
|
61
|
-
name: string;
|
|
62
|
-
id: string;
|
|
63
|
-
createdAt: string;
|
|
64
|
-
updatedAt: string;
|
|
65
|
-
current: boolean;
|
|
66
|
-
teamsCount: number;
|
|
67
|
-
membershipsCount: number;
|
|
68
|
-
activationPlan: {
|
|
69
|
-
id: string;
|
|
70
|
-
createdAt: string;
|
|
71
|
-
updatedAt: string;
|
|
72
|
-
dueOn: string;
|
|
73
|
-
} | null;
|
|
74
|
-
}, {
|
|
75
|
-
name: string;
|
|
76
|
-
id: string;
|
|
77
|
-
createdAt: string;
|
|
78
|
-
updatedAt: string;
|
|
79
|
-
current: boolean;
|
|
80
|
-
teamsCount: number;
|
|
81
|
-
membershipsCount: number;
|
|
82
|
-
activationPlan: {
|
|
83
|
-
id: string;
|
|
84
|
-
createdAt: string;
|
|
85
|
-
updatedAt: string;
|
|
86
|
-
dueOn: string;
|
|
87
|
-
} | null;
|
|
88
|
-
}>;
|
|
41
|
+
}, zod.core.$strip>>;
|
|
42
|
+
}, zod.core.$strip>;
|
|
89
43
|
export declare const listOrganizationChartsResponse: zod.ZodArray<zod.ZodObject<{
|
|
90
44
|
id: zod.ZodString;
|
|
91
45
|
name: zod.ZodString;
|
|
@@ -99,46 +53,8 @@ export declare const listOrganizationChartsResponse: zod.ZodArray<zod.ZodObject<
|
|
|
99
53
|
dueOn: zod.ZodString;
|
|
100
54
|
createdAt: zod.ZodString;
|
|
101
55
|
updatedAt: zod.ZodString;
|
|
102
|
-
},
|
|
103
|
-
|
|
104
|
-
createdAt: string;
|
|
105
|
-
updatedAt: string;
|
|
106
|
-
dueOn: string;
|
|
107
|
-
}, {
|
|
108
|
-
id: string;
|
|
109
|
-
createdAt: string;
|
|
110
|
-
updatedAt: string;
|
|
111
|
-
dueOn: string;
|
|
112
|
-
}>>;
|
|
113
|
-
}, "strip", zod.ZodTypeAny, {
|
|
114
|
-
name: string;
|
|
115
|
-
id: string;
|
|
116
|
-
createdAt: string;
|
|
117
|
-
updatedAt: string;
|
|
118
|
-
current: boolean;
|
|
119
|
-
teamsCount: number;
|
|
120
|
-
membershipsCount: number;
|
|
121
|
-
activationPlan: {
|
|
122
|
-
id: string;
|
|
123
|
-
createdAt: string;
|
|
124
|
-
updatedAt: string;
|
|
125
|
-
dueOn: string;
|
|
126
|
-
} | null;
|
|
127
|
-
}, {
|
|
128
|
-
name: string;
|
|
129
|
-
id: string;
|
|
130
|
-
createdAt: string;
|
|
131
|
-
updatedAt: string;
|
|
132
|
-
current: boolean;
|
|
133
|
-
teamsCount: number;
|
|
134
|
-
membershipsCount: number;
|
|
135
|
-
activationPlan: {
|
|
136
|
-
id: string;
|
|
137
|
-
createdAt: string;
|
|
138
|
-
updatedAt: string;
|
|
139
|
-
dueOn: string;
|
|
140
|
-
} | null;
|
|
141
|
-
}>, "many">;
|
|
56
|
+
}, zod.core.$strip>>;
|
|
57
|
+
}, zod.core.$strip>>;
|
|
142
58
|
/**
|
|
143
59
|
* 組織図を作成します。
|
|
144
60
|
|
|
@@ -147,11 +63,7 @@ export declare const listOrganizationChartsResponse: zod.ZodArray<zod.ZodObject<
|
|
|
147
63
|
*/
|
|
148
64
|
export declare const createOrganizationChartBody: zod.ZodObject<{
|
|
149
65
|
name: zod.ZodString;
|
|
150
|
-
},
|
|
151
|
-
name: string;
|
|
152
|
-
}, {
|
|
153
|
-
name: string;
|
|
154
|
-
}>;
|
|
66
|
+
}, zod.core.$strip>;
|
|
155
67
|
export declare const createOrganizationChartResponseNameMax = 255;
|
|
156
68
|
export declare const createOrganizationChartResponse: zod.ZodObject<{
|
|
157
69
|
id: zod.ZodString;
|
|
@@ -166,46 +78,8 @@ export declare const createOrganizationChartResponse: zod.ZodObject<{
|
|
|
166
78
|
dueOn: zod.ZodString;
|
|
167
79
|
createdAt: zod.ZodString;
|
|
168
80
|
updatedAt: zod.ZodString;
|
|
169
|
-
},
|
|
170
|
-
|
|
171
|
-
createdAt: string;
|
|
172
|
-
updatedAt: string;
|
|
173
|
-
dueOn: string;
|
|
174
|
-
}, {
|
|
175
|
-
id: string;
|
|
176
|
-
createdAt: string;
|
|
177
|
-
updatedAt: string;
|
|
178
|
-
dueOn: string;
|
|
179
|
-
}>>;
|
|
180
|
-
}, "strip", zod.ZodTypeAny, {
|
|
181
|
-
name: string;
|
|
182
|
-
id: string;
|
|
183
|
-
createdAt: string;
|
|
184
|
-
updatedAt: string;
|
|
185
|
-
current: boolean;
|
|
186
|
-
teamsCount: number;
|
|
187
|
-
membershipsCount: number;
|
|
188
|
-
activationPlan: {
|
|
189
|
-
id: string;
|
|
190
|
-
createdAt: string;
|
|
191
|
-
updatedAt: string;
|
|
192
|
-
dueOn: string;
|
|
193
|
-
} | null;
|
|
194
|
-
}, {
|
|
195
|
-
name: string;
|
|
196
|
-
id: string;
|
|
197
|
-
createdAt: string;
|
|
198
|
-
updatedAt: string;
|
|
199
|
-
current: boolean;
|
|
200
|
-
teamsCount: number;
|
|
201
|
-
membershipsCount: number;
|
|
202
|
-
activationPlan: {
|
|
203
|
-
id: string;
|
|
204
|
-
createdAt: string;
|
|
205
|
-
updatedAt: string;
|
|
206
|
-
dueOn: string;
|
|
207
|
-
} | null;
|
|
208
|
-
}>;
|
|
81
|
+
}, zod.core.$strip>>;
|
|
82
|
+
}, zod.core.$strip>;
|
|
209
83
|
/**
|
|
210
84
|
* 組織図を一件取得します。
|
|
211
85
|
|
|
@@ -226,46 +100,8 @@ export declare const getOrganizationChartResponse: zod.ZodObject<{
|
|
|
226
100
|
dueOn: zod.ZodString;
|
|
227
101
|
createdAt: zod.ZodString;
|
|
228
102
|
updatedAt: zod.ZodString;
|
|
229
|
-
},
|
|
230
|
-
|
|
231
|
-
createdAt: string;
|
|
232
|
-
updatedAt: string;
|
|
233
|
-
dueOn: string;
|
|
234
|
-
}, {
|
|
235
|
-
id: string;
|
|
236
|
-
createdAt: string;
|
|
237
|
-
updatedAt: string;
|
|
238
|
-
dueOn: string;
|
|
239
|
-
}>>;
|
|
240
|
-
}, "strip", zod.ZodTypeAny, {
|
|
241
|
-
name: string;
|
|
242
|
-
id: string;
|
|
243
|
-
createdAt: string;
|
|
244
|
-
updatedAt: string;
|
|
245
|
-
current: boolean;
|
|
246
|
-
teamsCount: number;
|
|
247
|
-
membershipsCount: number;
|
|
248
|
-
activationPlan: {
|
|
249
|
-
id: string;
|
|
250
|
-
createdAt: string;
|
|
251
|
-
updatedAt: string;
|
|
252
|
-
dueOn: string;
|
|
253
|
-
} | null;
|
|
254
|
-
}, {
|
|
255
|
-
name: string;
|
|
256
|
-
id: string;
|
|
257
|
-
createdAt: string;
|
|
258
|
-
updatedAt: string;
|
|
259
|
-
current: boolean;
|
|
260
|
-
teamsCount: number;
|
|
261
|
-
membershipsCount: number;
|
|
262
|
-
activationPlan: {
|
|
263
|
-
id: string;
|
|
264
|
-
createdAt: string;
|
|
265
|
-
updatedAt: string;
|
|
266
|
-
dueOn: string;
|
|
267
|
-
} | null;
|
|
268
|
-
}>;
|
|
103
|
+
}, zod.core.$strip>>;
|
|
104
|
+
}, zod.core.$strip>;
|
|
269
105
|
/**
|
|
270
106
|
* 組織図を更新します。
|
|
271
107
|
|
|
@@ -274,11 +110,7 @@ export declare const getOrganizationChartResponse: zod.ZodObject<{
|
|
|
274
110
|
*/
|
|
275
111
|
export declare const updateOrganizationChartBody: zod.ZodObject<{
|
|
276
112
|
name: zod.ZodString;
|
|
277
|
-
},
|
|
278
|
-
name: string;
|
|
279
|
-
}, {
|
|
280
|
-
name: string;
|
|
281
|
-
}>;
|
|
113
|
+
}, zod.core.$strip>;
|
|
282
114
|
export declare const updateOrganizationChartResponseNameMax = 255;
|
|
283
115
|
export declare const updateOrganizationChartResponse: zod.ZodObject<{
|
|
284
116
|
id: zod.ZodString;
|
|
@@ -293,46 +125,8 @@ export declare const updateOrganizationChartResponse: zod.ZodObject<{
|
|
|
293
125
|
dueOn: zod.ZodString;
|
|
294
126
|
createdAt: zod.ZodString;
|
|
295
127
|
updatedAt: zod.ZodString;
|
|
296
|
-
},
|
|
297
|
-
|
|
298
|
-
createdAt: string;
|
|
299
|
-
updatedAt: string;
|
|
300
|
-
dueOn: string;
|
|
301
|
-
}, {
|
|
302
|
-
id: string;
|
|
303
|
-
createdAt: string;
|
|
304
|
-
updatedAt: string;
|
|
305
|
-
dueOn: string;
|
|
306
|
-
}>>;
|
|
307
|
-
}, "strip", zod.ZodTypeAny, {
|
|
308
|
-
name: string;
|
|
309
|
-
id: string;
|
|
310
|
-
createdAt: string;
|
|
311
|
-
updatedAt: string;
|
|
312
|
-
current: boolean;
|
|
313
|
-
teamsCount: number;
|
|
314
|
-
membershipsCount: number;
|
|
315
|
-
activationPlan: {
|
|
316
|
-
id: string;
|
|
317
|
-
createdAt: string;
|
|
318
|
-
updatedAt: string;
|
|
319
|
-
dueOn: string;
|
|
320
|
-
} | null;
|
|
321
|
-
}, {
|
|
322
|
-
name: string;
|
|
323
|
-
id: string;
|
|
324
|
-
createdAt: string;
|
|
325
|
-
updatedAt: string;
|
|
326
|
-
current: boolean;
|
|
327
|
-
teamsCount: number;
|
|
328
|
-
membershipsCount: number;
|
|
329
|
-
activationPlan: {
|
|
330
|
-
id: string;
|
|
331
|
-
createdAt: string;
|
|
332
|
-
updatedAt: string;
|
|
333
|
-
dueOn: string;
|
|
334
|
-
} | null;
|
|
335
|
-
}>;
|
|
128
|
+
}, zod.core.$strip>>;
|
|
129
|
+
}, zod.core.$strip>;
|
|
336
130
|
/**
|
|
337
131
|
* 現在有効になっている組織図を取得します。
|
|
338
132
|
|
|
@@ -353,46 +147,8 @@ export declare const getCurrentOrganizationChartResponse: zod.ZodObject<{
|
|
|
353
147
|
dueOn: zod.ZodString;
|
|
354
148
|
createdAt: zod.ZodString;
|
|
355
149
|
updatedAt: zod.ZodString;
|
|
356
|
-
},
|
|
357
|
-
|
|
358
|
-
createdAt: string;
|
|
359
|
-
updatedAt: string;
|
|
360
|
-
dueOn: string;
|
|
361
|
-
}, {
|
|
362
|
-
id: string;
|
|
363
|
-
createdAt: string;
|
|
364
|
-
updatedAt: string;
|
|
365
|
-
dueOn: string;
|
|
366
|
-
}>>;
|
|
367
|
-
}, "strip", zod.ZodTypeAny, {
|
|
368
|
-
name: string;
|
|
369
|
-
id: string;
|
|
370
|
-
createdAt: string;
|
|
371
|
-
updatedAt: string;
|
|
372
|
-
current: boolean;
|
|
373
|
-
teamsCount: number;
|
|
374
|
-
membershipsCount: number;
|
|
375
|
-
activationPlan: {
|
|
376
|
-
id: string;
|
|
377
|
-
createdAt: string;
|
|
378
|
-
updatedAt: string;
|
|
379
|
-
dueOn: string;
|
|
380
|
-
} | null;
|
|
381
|
-
}, {
|
|
382
|
-
name: string;
|
|
383
|
-
id: string;
|
|
384
|
-
createdAt: string;
|
|
385
|
-
updatedAt: string;
|
|
386
|
-
current: boolean;
|
|
387
|
-
teamsCount: number;
|
|
388
|
-
membershipsCount: number;
|
|
389
|
-
activationPlan: {
|
|
390
|
-
id: string;
|
|
391
|
-
createdAt: string;
|
|
392
|
-
updatedAt: string;
|
|
393
|
-
dueOn: string;
|
|
394
|
-
} | null;
|
|
395
|
-
}>;
|
|
150
|
+
}, zod.core.$strip>>;
|
|
151
|
+
}, zod.core.$strip>;
|
|
396
152
|
/**
|
|
397
153
|
* 指定した組織図を有効化し、ワークフローで使用する組織図を切り替えます。
|
|
398
154
|
他の組織図に有効化の予定がある場合、それらの予定は削除されます。
|
|
@@ -404,11 +160,7 @@ export declare const getCurrentOrganizationChartResponse: zod.ZodObject<{
|
|
|
404
160
|
*/
|
|
405
161
|
export declare const activateOrganizationChartBody: zod.ZodObject<{
|
|
406
162
|
dueOn: zod.ZodOptional<zod.ZodString>;
|
|
407
|
-
},
|
|
408
|
-
dueOn?: string | undefined;
|
|
409
|
-
}, {
|
|
410
|
-
dueOn?: string | undefined;
|
|
411
|
-
}>;
|
|
163
|
+
}, zod.core.$strip>;
|
|
412
164
|
export declare const activateOrganizationChartResponseNameMax = 255;
|
|
413
165
|
export declare const activateOrganizationChartResponse: zod.ZodObject<{
|
|
414
166
|
id: zod.ZodString;
|
|
@@ -423,43 +175,5 @@ export declare const activateOrganizationChartResponse: zod.ZodObject<{
|
|
|
423
175
|
dueOn: zod.ZodString;
|
|
424
176
|
createdAt: zod.ZodString;
|
|
425
177
|
updatedAt: zod.ZodString;
|
|
426
|
-
},
|
|
427
|
-
|
|
428
|
-
createdAt: string;
|
|
429
|
-
updatedAt: string;
|
|
430
|
-
dueOn: string;
|
|
431
|
-
}, {
|
|
432
|
-
id: string;
|
|
433
|
-
createdAt: string;
|
|
434
|
-
updatedAt: string;
|
|
435
|
-
dueOn: string;
|
|
436
|
-
}>>;
|
|
437
|
-
}, "strip", zod.ZodTypeAny, {
|
|
438
|
-
name: string;
|
|
439
|
-
id: string;
|
|
440
|
-
createdAt: string;
|
|
441
|
-
updatedAt: string;
|
|
442
|
-
current: boolean;
|
|
443
|
-
teamsCount: number;
|
|
444
|
-
membershipsCount: number;
|
|
445
|
-
activationPlan: {
|
|
446
|
-
id: string;
|
|
447
|
-
createdAt: string;
|
|
448
|
-
updatedAt: string;
|
|
449
|
-
dueOn: string;
|
|
450
|
-
} | null;
|
|
451
|
-
}, {
|
|
452
|
-
name: string;
|
|
453
|
-
id: string;
|
|
454
|
-
createdAt: string;
|
|
455
|
-
updatedAt: string;
|
|
456
|
-
current: boolean;
|
|
457
|
-
teamsCount: number;
|
|
458
|
-
membershipsCount: number;
|
|
459
|
-
activationPlan: {
|
|
460
|
-
id: string;
|
|
461
|
-
createdAt: string;
|
|
462
|
-
updatedAt: string;
|
|
463
|
-
dueOn: string;
|
|
464
|
-
} | null;
|
|
465
|
-
}>;
|
|
178
|
+
}, zod.core.$strip>>;
|
|
179
|
+
}, zod.core.$strip>;
|