@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
|
@@ -18,21 +18,12 @@ export declare const listRoutesQueryParams: zod.ZodObject<{
|
|
|
18
18
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
19
19
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
20
20
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
21
|
-
status: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<
|
|
21
|
+
status: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<{
|
|
22
|
+
error: "error";
|
|
23
|
+
visible: "visible";
|
|
24
|
+
}>>>;
|
|
22
25
|
folderId: zod.ZodOptional<zod.ZodString>;
|
|
23
|
-
},
|
|
24
|
-
page: number;
|
|
25
|
-
perPage: number;
|
|
26
|
-
status?: ("error" | "visible")[] | undefined;
|
|
27
|
-
sortBy?: string | undefined;
|
|
28
|
-
folderId?: string | undefined;
|
|
29
|
-
}, {
|
|
30
|
-
page?: number | undefined;
|
|
31
|
-
status?: ("error" | "visible")[] | undefined;
|
|
32
|
-
perPage?: number | undefined;
|
|
33
|
-
sortBy?: string | undefined;
|
|
34
|
-
folderId?: string | undefined;
|
|
35
|
-
}>;
|
|
26
|
+
}, zod.core.$strip>;
|
|
36
27
|
export declare const listRoutesResponseAuthorEmailMax = 255;
|
|
37
28
|
export declare const listRoutesResponseAuthorCodeMax = 255;
|
|
38
29
|
export declare const listRoutesResponseAuthorFirstNameMax = 255;
|
|
@@ -53,7 +44,11 @@ export declare const listRoutesResponseFolderPipelinesCountMin = 0;
|
|
|
53
44
|
export declare const listRoutesResponseItem: zod.ZodObject<{
|
|
54
45
|
id: zod.ZodString;
|
|
55
46
|
code: zod.ZodString;
|
|
56
|
-
status: zod.ZodEnum<
|
|
47
|
+
status: zod.ZodEnum<{
|
|
48
|
+
error: "error";
|
|
49
|
+
visible: "visible";
|
|
50
|
+
deleted: "deleted";
|
|
51
|
+
}>;
|
|
57
52
|
versionId: zod.ZodString;
|
|
58
53
|
versionNumber: zod.ZodNumber;
|
|
59
54
|
name: zod.ZodString;
|
|
@@ -72,57 +67,18 @@ export declare const listRoutesResponseItem: zod.ZodObject<{
|
|
|
72
67
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
73
68
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
74
69
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
75
|
-
},
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
"
|
|
81
|
-
"64x64": string | null;
|
|
82
|
-
"32x32": string | null;
|
|
70
|
+
}, zod.core.$strip>;
|
|
71
|
+
status: zod.ZodEnum<{
|
|
72
|
+
invited: "invited";
|
|
73
|
+
activated: "activated";
|
|
74
|
+
suspended: "suspended";
|
|
75
|
+
deactivated: "deactivated";
|
|
83
76
|
}>;
|
|
84
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
85
77
|
locale: zod.ZodString;
|
|
86
78
|
createdAt: zod.ZodString;
|
|
87
79
|
updatedAt: zod.ZodString;
|
|
88
80
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
89
|
-
},
|
|
90
|
-
code: string;
|
|
91
|
-
id: string;
|
|
92
|
-
image: {
|
|
93
|
-
"100x100": string | null;
|
|
94
|
-
"64x64": string | null;
|
|
95
|
-
"32x32": string | null;
|
|
96
|
-
};
|
|
97
|
-
email: string;
|
|
98
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
99
|
-
firstName: string;
|
|
100
|
-
lastName: string;
|
|
101
|
-
fullName: string;
|
|
102
|
-
locale: string;
|
|
103
|
-
createdAt: string;
|
|
104
|
-
updatedAt: string;
|
|
105
|
-
employeeId?: string | null | undefined;
|
|
106
|
-
deactivatedAt?: string | null | undefined;
|
|
107
|
-
}, {
|
|
108
|
-
code: string;
|
|
109
|
-
id: string;
|
|
110
|
-
image: {
|
|
111
|
-
"100x100": string | null;
|
|
112
|
-
"64x64": string | null;
|
|
113
|
-
"32x32": string | null;
|
|
114
|
-
};
|
|
115
|
-
email: string;
|
|
116
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
117
|
-
firstName: string;
|
|
118
|
-
lastName: string;
|
|
119
|
-
fullName: string;
|
|
120
|
-
locale: string;
|
|
121
|
-
createdAt: string;
|
|
122
|
-
updatedAt: string;
|
|
123
|
-
employeeId?: string | null | undefined;
|
|
124
|
-
deactivatedAt?: string | null | undefined;
|
|
125
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
81
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
126
82
|
versionAuthor: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
127
83
|
id: zod.ZodString;
|
|
128
84
|
email: zod.ZodString;
|
|
@@ -135,57 +91,18 @@ export declare const listRoutesResponseItem: zod.ZodObject<{
|
|
|
135
91
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
136
92
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
137
93
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
138
|
-
},
|
|
139
|
-
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
|
|
143
|
-
"
|
|
144
|
-
"64x64": string | null;
|
|
145
|
-
"32x32": string | null;
|
|
94
|
+
}, zod.core.$strip>;
|
|
95
|
+
status: zod.ZodEnum<{
|
|
96
|
+
invited: "invited";
|
|
97
|
+
activated: "activated";
|
|
98
|
+
suspended: "suspended";
|
|
99
|
+
deactivated: "deactivated";
|
|
146
100
|
}>;
|
|
147
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
148
101
|
locale: zod.ZodString;
|
|
149
102
|
createdAt: zod.ZodString;
|
|
150
103
|
updatedAt: zod.ZodString;
|
|
151
104
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
152
|
-
},
|
|
153
|
-
code: string;
|
|
154
|
-
id: string;
|
|
155
|
-
image: {
|
|
156
|
-
"100x100": string | null;
|
|
157
|
-
"64x64": string | null;
|
|
158
|
-
"32x32": string | null;
|
|
159
|
-
};
|
|
160
|
-
email: string;
|
|
161
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
162
|
-
firstName: string;
|
|
163
|
-
lastName: string;
|
|
164
|
-
fullName: string;
|
|
165
|
-
locale: string;
|
|
166
|
-
createdAt: string;
|
|
167
|
-
updatedAt: string;
|
|
168
|
-
employeeId?: string | null | undefined;
|
|
169
|
-
deactivatedAt?: string | null | undefined;
|
|
170
|
-
}, {
|
|
171
|
-
code: string;
|
|
172
|
-
id: string;
|
|
173
|
-
image: {
|
|
174
|
-
"100x100": string | null;
|
|
175
|
-
"64x64": string | null;
|
|
176
|
-
"32x32": string | null;
|
|
177
|
-
};
|
|
178
|
-
email: string;
|
|
179
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
180
|
-
firstName: string;
|
|
181
|
-
lastName: string;
|
|
182
|
-
fullName: string;
|
|
183
|
-
locale: string;
|
|
184
|
-
createdAt: string;
|
|
185
|
-
updatedAt: string;
|
|
186
|
-
employeeId?: string | null | undefined;
|
|
187
|
-
deactivatedAt?: string | null | undefined;
|
|
188
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
105
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
189
106
|
folder: zod.ZodObject<{
|
|
190
107
|
id: zod.ZodString;
|
|
191
108
|
name: zod.ZodString;
|
|
@@ -196,78 +113,16 @@ export declare const listRoutesResponseItem: zod.ZodObject<{
|
|
|
196
113
|
pipelinesCount: zod.ZodNumber;
|
|
197
114
|
createdAt: zod.ZodString;
|
|
198
115
|
updatedAt: zod.ZodString;
|
|
199
|
-
},
|
|
200
|
-
|
|
201
|
-
name: string;
|
|
202
|
-
id: string;
|
|
203
|
-
createdAt: string;
|
|
204
|
-
updatedAt: string;
|
|
205
|
-
workflowsCount: number;
|
|
206
|
-
routesCount: number;
|
|
207
|
-
pipelinesCount: number;
|
|
208
|
-
description?: string | null | undefined;
|
|
209
|
-
}, {
|
|
210
|
-
code: string;
|
|
211
|
-
name: string;
|
|
212
|
-
id: string;
|
|
213
|
-
createdAt: string;
|
|
214
|
-
updatedAt: string;
|
|
215
|
-
workflowsCount: number;
|
|
216
|
-
routesCount: number;
|
|
217
|
-
pipelinesCount: number;
|
|
218
|
-
description?: string | null | undefined;
|
|
219
|
-
}>;
|
|
220
|
-
}, "strip", zod.ZodTypeAny, {
|
|
221
|
-
code: string;
|
|
222
|
-
name: string;
|
|
223
|
-
id: string;
|
|
224
|
-
description: string;
|
|
225
|
-
status: "error" | "visible" | "deleted";
|
|
226
|
-
createdAt: string;
|
|
227
|
-
updatedAt: string;
|
|
228
|
-
versionId: string;
|
|
229
|
-
versionNumber: number;
|
|
230
|
-
folder: {
|
|
231
|
-
code: string;
|
|
232
|
-
name: string;
|
|
233
|
-
id: string;
|
|
234
|
-
createdAt: string;
|
|
235
|
-
updatedAt: string;
|
|
236
|
-
workflowsCount: number;
|
|
237
|
-
routesCount: number;
|
|
238
|
-
pipelinesCount: number;
|
|
239
|
-
description?: string | null | undefined;
|
|
240
|
-
};
|
|
241
|
-
author?: any;
|
|
242
|
-
versionAuthor?: any;
|
|
243
|
-
}, {
|
|
244
|
-
code: string;
|
|
245
|
-
name: string;
|
|
246
|
-
id: string;
|
|
247
|
-
description: string;
|
|
248
|
-
status: "error" | "visible" | "deleted";
|
|
249
|
-
createdAt: string;
|
|
250
|
-
updatedAt: string;
|
|
251
|
-
versionId: string;
|
|
252
|
-
versionNumber: number;
|
|
253
|
-
folder: {
|
|
254
|
-
code: string;
|
|
255
|
-
name: string;
|
|
256
|
-
id: string;
|
|
257
|
-
createdAt: string;
|
|
258
|
-
updatedAt: string;
|
|
259
|
-
workflowsCount: number;
|
|
260
|
-
routesCount: number;
|
|
261
|
-
pipelinesCount: number;
|
|
262
|
-
description?: string | null | undefined;
|
|
263
|
-
};
|
|
264
|
-
author?: any;
|
|
265
|
-
versionAuthor?: any;
|
|
266
|
-
}>;
|
|
116
|
+
}, zod.core.$strip>;
|
|
117
|
+
}, zod.core.$strip>;
|
|
267
118
|
export declare const listRoutesResponse: zod.ZodArray<zod.ZodObject<{
|
|
268
119
|
id: zod.ZodString;
|
|
269
120
|
code: zod.ZodString;
|
|
270
|
-
status: zod.ZodEnum<
|
|
121
|
+
status: zod.ZodEnum<{
|
|
122
|
+
error: "error";
|
|
123
|
+
visible: "visible";
|
|
124
|
+
deleted: "deleted";
|
|
125
|
+
}>;
|
|
271
126
|
versionId: zod.ZodString;
|
|
272
127
|
versionNumber: zod.ZodNumber;
|
|
273
128
|
name: zod.ZodString;
|
|
@@ -286,57 +141,18 @@ export declare const listRoutesResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
286
141
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
287
142
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
288
143
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
289
|
-
},
|
|
290
|
-
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
|
|
294
|
-
"
|
|
295
|
-
"64x64": string | null;
|
|
296
|
-
"32x32": string | null;
|
|
144
|
+
}, zod.core.$strip>;
|
|
145
|
+
status: zod.ZodEnum<{
|
|
146
|
+
invited: "invited";
|
|
147
|
+
activated: "activated";
|
|
148
|
+
suspended: "suspended";
|
|
149
|
+
deactivated: "deactivated";
|
|
297
150
|
}>;
|
|
298
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
299
151
|
locale: zod.ZodString;
|
|
300
152
|
createdAt: zod.ZodString;
|
|
301
153
|
updatedAt: zod.ZodString;
|
|
302
154
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
303
|
-
},
|
|
304
|
-
code: string;
|
|
305
|
-
id: string;
|
|
306
|
-
image: {
|
|
307
|
-
"100x100": string | null;
|
|
308
|
-
"64x64": string | null;
|
|
309
|
-
"32x32": string | null;
|
|
310
|
-
};
|
|
311
|
-
email: string;
|
|
312
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
313
|
-
firstName: string;
|
|
314
|
-
lastName: string;
|
|
315
|
-
fullName: string;
|
|
316
|
-
locale: string;
|
|
317
|
-
createdAt: string;
|
|
318
|
-
updatedAt: string;
|
|
319
|
-
employeeId?: string | null | undefined;
|
|
320
|
-
deactivatedAt?: string | null | undefined;
|
|
321
|
-
}, {
|
|
322
|
-
code: string;
|
|
323
|
-
id: string;
|
|
324
|
-
image: {
|
|
325
|
-
"100x100": string | null;
|
|
326
|
-
"64x64": string | null;
|
|
327
|
-
"32x32": string | null;
|
|
328
|
-
};
|
|
329
|
-
email: string;
|
|
330
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
331
|
-
firstName: string;
|
|
332
|
-
lastName: string;
|
|
333
|
-
fullName: string;
|
|
334
|
-
locale: string;
|
|
335
|
-
createdAt: string;
|
|
336
|
-
updatedAt: string;
|
|
337
|
-
employeeId?: string | null | undefined;
|
|
338
|
-
deactivatedAt?: string | null | undefined;
|
|
339
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
155
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
340
156
|
versionAuthor: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
341
157
|
id: zod.ZodString;
|
|
342
158
|
email: zod.ZodString;
|
|
@@ -349,57 +165,18 @@ export declare const listRoutesResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
349
165
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
350
166
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
351
167
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
352
|
-
},
|
|
353
|
-
|
|
354
|
-
"
|
|
355
|
-
"
|
|
356
|
-
|
|
357
|
-
"
|
|
358
|
-
"64x64": string | null;
|
|
359
|
-
"32x32": string | null;
|
|
168
|
+
}, zod.core.$strip>;
|
|
169
|
+
status: zod.ZodEnum<{
|
|
170
|
+
invited: "invited";
|
|
171
|
+
activated: "activated";
|
|
172
|
+
suspended: "suspended";
|
|
173
|
+
deactivated: "deactivated";
|
|
360
174
|
}>;
|
|
361
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
362
175
|
locale: zod.ZodString;
|
|
363
176
|
createdAt: zod.ZodString;
|
|
364
177
|
updatedAt: zod.ZodString;
|
|
365
178
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
366
|
-
},
|
|
367
|
-
code: string;
|
|
368
|
-
id: string;
|
|
369
|
-
image: {
|
|
370
|
-
"100x100": string | null;
|
|
371
|
-
"64x64": string | null;
|
|
372
|
-
"32x32": string | null;
|
|
373
|
-
};
|
|
374
|
-
email: string;
|
|
375
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
376
|
-
firstName: string;
|
|
377
|
-
lastName: string;
|
|
378
|
-
fullName: string;
|
|
379
|
-
locale: string;
|
|
380
|
-
createdAt: string;
|
|
381
|
-
updatedAt: string;
|
|
382
|
-
employeeId?: string | null | undefined;
|
|
383
|
-
deactivatedAt?: string | null | undefined;
|
|
384
|
-
}, {
|
|
385
|
-
code: string;
|
|
386
|
-
id: string;
|
|
387
|
-
image: {
|
|
388
|
-
"100x100": string | null;
|
|
389
|
-
"64x64": string | null;
|
|
390
|
-
"32x32": string | null;
|
|
391
|
-
};
|
|
392
|
-
email: string;
|
|
393
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
394
|
-
firstName: string;
|
|
395
|
-
lastName: string;
|
|
396
|
-
fullName: string;
|
|
397
|
-
locale: string;
|
|
398
|
-
createdAt: string;
|
|
399
|
-
updatedAt: string;
|
|
400
|
-
employeeId?: string | null | undefined;
|
|
401
|
-
deactivatedAt?: string | null | undefined;
|
|
402
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
179
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
403
180
|
folder: zod.ZodObject<{
|
|
404
181
|
id: zod.ZodString;
|
|
405
182
|
name: zod.ZodString;
|
|
@@ -410,74 +187,8 @@ export declare const listRoutesResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
410
187
|
pipelinesCount: zod.ZodNumber;
|
|
411
188
|
createdAt: zod.ZodString;
|
|
412
189
|
updatedAt: zod.ZodString;
|
|
413
|
-
},
|
|
414
|
-
|
|
415
|
-
name: string;
|
|
416
|
-
id: string;
|
|
417
|
-
createdAt: string;
|
|
418
|
-
updatedAt: string;
|
|
419
|
-
workflowsCount: number;
|
|
420
|
-
routesCount: number;
|
|
421
|
-
pipelinesCount: number;
|
|
422
|
-
description?: string | null | undefined;
|
|
423
|
-
}, {
|
|
424
|
-
code: string;
|
|
425
|
-
name: string;
|
|
426
|
-
id: string;
|
|
427
|
-
createdAt: string;
|
|
428
|
-
updatedAt: string;
|
|
429
|
-
workflowsCount: number;
|
|
430
|
-
routesCount: number;
|
|
431
|
-
pipelinesCount: number;
|
|
432
|
-
description?: string | null | undefined;
|
|
433
|
-
}>;
|
|
434
|
-
}, "strip", zod.ZodTypeAny, {
|
|
435
|
-
code: string;
|
|
436
|
-
name: string;
|
|
437
|
-
id: string;
|
|
438
|
-
description: string;
|
|
439
|
-
status: "error" | "visible" | "deleted";
|
|
440
|
-
createdAt: string;
|
|
441
|
-
updatedAt: string;
|
|
442
|
-
versionId: string;
|
|
443
|
-
versionNumber: number;
|
|
444
|
-
folder: {
|
|
445
|
-
code: string;
|
|
446
|
-
name: string;
|
|
447
|
-
id: string;
|
|
448
|
-
createdAt: string;
|
|
449
|
-
updatedAt: string;
|
|
450
|
-
workflowsCount: number;
|
|
451
|
-
routesCount: number;
|
|
452
|
-
pipelinesCount: number;
|
|
453
|
-
description?: string | null | undefined;
|
|
454
|
-
};
|
|
455
|
-
author?: any;
|
|
456
|
-
versionAuthor?: any;
|
|
457
|
-
}, {
|
|
458
|
-
code: string;
|
|
459
|
-
name: string;
|
|
460
|
-
id: string;
|
|
461
|
-
description: string;
|
|
462
|
-
status: "error" | "visible" | "deleted";
|
|
463
|
-
createdAt: string;
|
|
464
|
-
updatedAt: string;
|
|
465
|
-
versionId: string;
|
|
466
|
-
versionNumber: number;
|
|
467
|
-
folder: {
|
|
468
|
-
code: string;
|
|
469
|
-
name: string;
|
|
470
|
-
id: string;
|
|
471
|
-
createdAt: string;
|
|
472
|
-
updatedAt: string;
|
|
473
|
-
workflowsCount: number;
|
|
474
|
-
routesCount: number;
|
|
475
|
-
pipelinesCount: number;
|
|
476
|
-
description?: string | null | undefined;
|
|
477
|
-
};
|
|
478
|
-
author?: any;
|
|
479
|
-
versionAuthor?: any;
|
|
480
|
-
}>, "many">;
|
|
190
|
+
}, zod.core.$strip>;
|
|
191
|
+
}, zod.core.$strip>>;
|
|
481
192
|
/**
|
|
482
193
|
* 指定した経路を取得します。
|
|
483
194
|
* @summary 経路を取得
|
|
@@ -529,7 +240,11 @@ export declare const getRouteResponseStepsItemRouteStepConditionRouteStepConditi
|
|
|
529
240
|
export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
530
241
|
id: zod.ZodString;
|
|
531
242
|
code: zod.ZodString;
|
|
532
|
-
status: zod.ZodEnum<
|
|
243
|
+
status: zod.ZodEnum<{
|
|
244
|
+
error: "error";
|
|
245
|
+
visible: "visible";
|
|
246
|
+
deleted: "deleted";
|
|
247
|
+
}>;
|
|
533
248
|
versionId: zod.ZodString;
|
|
534
249
|
versionNumber: zod.ZodNumber;
|
|
535
250
|
name: zod.ZodString;
|
|
@@ -548,57 +263,18 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
548
263
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
549
264
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
550
265
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
551
|
-
},
|
|
552
|
-
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
|
|
556
|
-
"
|
|
557
|
-
"64x64": string | null;
|
|
558
|
-
"32x32": string | null;
|
|
266
|
+
}, zod.core.$strip>;
|
|
267
|
+
status: zod.ZodEnum<{
|
|
268
|
+
invited: "invited";
|
|
269
|
+
activated: "activated";
|
|
270
|
+
suspended: "suspended";
|
|
271
|
+
deactivated: "deactivated";
|
|
559
272
|
}>;
|
|
560
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
561
273
|
locale: zod.ZodString;
|
|
562
274
|
createdAt: zod.ZodString;
|
|
563
275
|
updatedAt: zod.ZodString;
|
|
564
276
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
565
|
-
},
|
|
566
|
-
code: string;
|
|
567
|
-
id: string;
|
|
568
|
-
image: {
|
|
569
|
-
"100x100": string | null;
|
|
570
|
-
"64x64": string | null;
|
|
571
|
-
"32x32": string | null;
|
|
572
|
-
};
|
|
573
|
-
email: string;
|
|
574
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
575
|
-
firstName: string;
|
|
576
|
-
lastName: string;
|
|
577
|
-
fullName: string;
|
|
578
|
-
locale: string;
|
|
579
|
-
createdAt: string;
|
|
580
|
-
updatedAt: string;
|
|
581
|
-
employeeId?: string | null | undefined;
|
|
582
|
-
deactivatedAt?: string | null | undefined;
|
|
583
|
-
}, {
|
|
584
|
-
code: string;
|
|
585
|
-
id: string;
|
|
586
|
-
image: {
|
|
587
|
-
"100x100": string | null;
|
|
588
|
-
"64x64": string | null;
|
|
589
|
-
"32x32": string | null;
|
|
590
|
-
};
|
|
591
|
-
email: string;
|
|
592
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
593
|
-
firstName: string;
|
|
594
|
-
lastName: string;
|
|
595
|
-
fullName: string;
|
|
596
|
-
locale: string;
|
|
597
|
-
createdAt: string;
|
|
598
|
-
updatedAt: string;
|
|
599
|
-
employeeId?: string | null | undefined;
|
|
600
|
-
deactivatedAt?: string | null | undefined;
|
|
601
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
277
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
602
278
|
versionAuthor: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
603
279
|
id: zod.ZodString;
|
|
604
280
|
email: zod.ZodString;
|
|
@@ -611,57 +287,18 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
611
287
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
612
288
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
613
289
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
614
|
-
},
|
|
615
|
-
|
|
616
|
-
"
|
|
617
|
-
"
|
|
618
|
-
|
|
619
|
-
"
|
|
620
|
-
"64x64": string | null;
|
|
621
|
-
"32x32": string | null;
|
|
290
|
+
}, zod.core.$strip>;
|
|
291
|
+
status: zod.ZodEnum<{
|
|
292
|
+
invited: "invited";
|
|
293
|
+
activated: "activated";
|
|
294
|
+
suspended: "suspended";
|
|
295
|
+
deactivated: "deactivated";
|
|
622
296
|
}>;
|
|
623
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
624
297
|
locale: zod.ZodString;
|
|
625
298
|
createdAt: zod.ZodString;
|
|
626
299
|
updatedAt: zod.ZodString;
|
|
627
300
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
628
|
-
},
|
|
629
|
-
code: string;
|
|
630
|
-
id: string;
|
|
631
|
-
image: {
|
|
632
|
-
"100x100": string | null;
|
|
633
|
-
"64x64": string | null;
|
|
634
|
-
"32x32": string | null;
|
|
635
|
-
};
|
|
636
|
-
email: string;
|
|
637
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
638
|
-
firstName: string;
|
|
639
|
-
lastName: string;
|
|
640
|
-
fullName: string;
|
|
641
|
-
locale: string;
|
|
642
|
-
createdAt: string;
|
|
643
|
-
updatedAt: string;
|
|
644
|
-
employeeId?: string | null | undefined;
|
|
645
|
-
deactivatedAt?: string | null | undefined;
|
|
646
|
-
}, {
|
|
647
|
-
code: string;
|
|
648
|
-
id: string;
|
|
649
|
-
image: {
|
|
650
|
-
"100x100": string | null;
|
|
651
|
-
"64x64": string | null;
|
|
652
|
-
"32x32": string | null;
|
|
653
|
-
};
|
|
654
|
-
email: string;
|
|
655
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
656
|
-
firstName: string;
|
|
657
|
-
lastName: string;
|
|
658
|
-
fullName: string;
|
|
659
|
-
locale: string;
|
|
660
|
-
createdAt: string;
|
|
661
|
-
updatedAt: string;
|
|
662
|
-
employeeId?: string | null | undefined;
|
|
663
|
-
deactivatedAt?: string | null | undefined;
|
|
664
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
301
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
665
302
|
folder: zod.ZodObject<{
|
|
666
303
|
id: zod.ZodString;
|
|
667
304
|
name: zod.ZodString;
|
|
@@ -672,84 +309,34 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
672
309
|
pipelinesCount: zod.ZodNumber;
|
|
673
310
|
createdAt: zod.ZodString;
|
|
674
311
|
updatedAt: zod.ZodString;
|
|
675
|
-
},
|
|
676
|
-
|
|
677
|
-
name: string;
|
|
678
|
-
id: string;
|
|
679
|
-
createdAt: string;
|
|
680
|
-
updatedAt: string;
|
|
681
|
-
workflowsCount: number;
|
|
682
|
-
routesCount: number;
|
|
683
|
-
pipelinesCount: number;
|
|
684
|
-
description?: string | null | undefined;
|
|
685
|
-
}, {
|
|
686
|
-
code: string;
|
|
687
|
-
name: string;
|
|
688
|
-
id: string;
|
|
689
|
-
createdAt: string;
|
|
690
|
-
updatedAt: string;
|
|
691
|
-
workflowsCount: number;
|
|
692
|
-
routesCount: number;
|
|
693
|
-
pipelinesCount: number;
|
|
694
|
-
description?: string | null | undefined;
|
|
695
|
-
}>;
|
|
696
|
-
}, "strip", zod.ZodTypeAny, {
|
|
697
|
-
code: string;
|
|
698
|
-
name: string;
|
|
699
|
-
id: string;
|
|
700
|
-
description: string;
|
|
701
|
-
status: "error" | "visible" | "deleted";
|
|
702
|
-
createdAt: string;
|
|
703
|
-
updatedAt: string;
|
|
704
|
-
versionId: string;
|
|
705
|
-
versionNumber: number;
|
|
706
|
-
folder: {
|
|
707
|
-
code: string;
|
|
708
|
-
name: string;
|
|
709
|
-
id: string;
|
|
710
|
-
createdAt: string;
|
|
711
|
-
updatedAt: string;
|
|
712
|
-
workflowsCount: number;
|
|
713
|
-
routesCount: number;
|
|
714
|
-
pipelinesCount: number;
|
|
715
|
-
description?: string | null | undefined;
|
|
716
|
-
};
|
|
717
|
-
author?: any;
|
|
718
|
-
versionAuthor?: any;
|
|
719
|
-
}, {
|
|
720
|
-
code: string;
|
|
721
|
-
name: string;
|
|
722
|
-
id: string;
|
|
723
|
-
description: string;
|
|
724
|
-
status: "error" | "visible" | "deleted";
|
|
725
|
-
createdAt: string;
|
|
726
|
-
updatedAt: string;
|
|
727
|
-
versionId: string;
|
|
728
|
-
versionNumber: number;
|
|
729
|
-
folder: {
|
|
730
|
-
code: string;
|
|
731
|
-
name: string;
|
|
732
|
-
id: string;
|
|
733
|
-
createdAt: string;
|
|
734
|
-
updatedAt: string;
|
|
735
|
-
workflowsCount: number;
|
|
736
|
-
routesCount: number;
|
|
737
|
-
pipelinesCount: number;
|
|
738
|
-
description?: string | null | undefined;
|
|
739
|
-
};
|
|
740
|
-
author?: any;
|
|
741
|
-
versionAuthor?: any;
|
|
742
|
-
}>, zod.ZodObject<{
|
|
312
|
+
}, zod.core.$strip>;
|
|
313
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
743
314
|
steps: zod.ZodArray<zod.ZodObject<{
|
|
744
315
|
id: zod.ZodString;
|
|
745
316
|
stepOrder: zod.ZodNumber;
|
|
746
|
-
stepType: zod.ZodEnum<
|
|
317
|
+
stepType: zod.ZodEnum<{
|
|
318
|
+
user: "user";
|
|
319
|
+
team: "team";
|
|
320
|
+
author: "author";
|
|
321
|
+
manager: "manager";
|
|
322
|
+
author_customizable: "author_customizable";
|
|
323
|
+
assignee_customizable: "assignee_customizable";
|
|
324
|
+
dynamic_team: "dynamic_team";
|
|
325
|
+
}>;
|
|
747
326
|
title: zod.ZodString;
|
|
748
|
-
actionType: zod.ZodEnum<
|
|
327
|
+
actionType: zod.ZodEnum<{
|
|
328
|
+
none: "none";
|
|
329
|
+
approve: "approve";
|
|
330
|
+
confirm: "confirm";
|
|
331
|
+
}>;
|
|
749
332
|
instruction: zod.ZodNullable<zod.ZodString>;
|
|
750
333
|
requiredApprovalsNumber: zod.ZodNumber;
|
|
751
334
|
requiredApprovalsPercent: zod.ZodNumber;
|
|
752
|
-
fallbackType: zod.ZodNullable<zod.ZodEnum<
|
|
335
|
+
fallbackType: zod.ZodNullable<zod.ZodEnum<{
|
|
336
|
+
direct_manager: "direct_manager";
|
|
337
|
+
higher_manager: "higher_manager";
|
|
338
|
+
skip: "skip";
|
|
339
|
+
}>>;
|
|
753
340
|
allowSelfApproval: zod.ZodBoolean;
|
|
754
341
|
minCustomAssignees: zod.ZodNullable<zod.ZodNumber>;
|
|
755
342
|
approverAssignmentInstruction: zod.ZodNullable<zod.ZodString>;
|
|
@@ -765,57 +352,18 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
765
352
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
766
353
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
767
354
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
768
|
-
},
|
|
769
|
-
|
|
770
|
-
"
|
|
771
|
-
"
|
|
772
|
-
|
|
773
|
-
"
|
|
774
|
-
"64x64": string | null;
|
|
775
|
-
"32x32": string | null;
|
|
355
|
+
}, zod.core.$strip>;
|
|
356
|
+
status: zod.ZodEnum<{
|
|
357
|
+
invited: "invited";
|
|
358
|
+
activated: "activated";
|
|
359
|
+
suspended: "suspended";
|
|
360
|
+
deactivated: "deactivated";
|
|
776
361
|
}>;
|
|
777
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
778
362
|
locale: zod.ZodString;
|
|
779
363
|
createdAt: zod.ZodString;
|
|
780
364
|
updatedAt: zod.ZodString;
|
|
781
365
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
782
|
-
},
|
|
783
|
-
code: string;
|
|
784
|
-
id: string;
|
|
785
|
-
image: {
|
|
786
|
-
"100x100": string | null;
|
|
787
|
-
"64x64": string | null;
|
|
788
|
-
"32x32": string | null;
|
|
789
|
-
};
|
|
790
|
-
email: string;
|
|
791
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
792
|
-
firstName: string;
|
|
793
|
-
lastName: string;
|
|
794
|
-
fullName: string;
|
|
795
|
-
locale: string;
|
|
796
|
-
createdAt: string;
|
|
797
|
-
updatedAt: string;
|
|
798
|
-
employeeId?: string | null | undefined;
|
|
799
|
-
deactivatedAt?: string | null | undefined;
|
|
800
|
-
}, {
|
|
801
|
-
code: string;
|
|
802
|
-
id: string;
|
|
803
|
-
image: {
|
|
804
|
-
"100x100": string | null;
|
|
805
|
-
"64x64": string | null;
|
|
806
|
-
"32x32": string | null;
|
|
807
|
-
};
|
|
808
|
-
email: string;
|
|
809
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
810
|
-
firstName: string;
|
|
811
|
-
lastName: string;
|
|
812
|
-
fullName: string;
|
|
813
|
-
locale: string;
|
|
814
|
-
createdAt: string;
|
|
815
|
-
updatedAt: string;
|
|
816
|
-
employeeId?: string | null | undefined;
|
|
817
|
-
deactivatedAt?: string | null | undefined;
|
|
818
|
-
}>, "many">;
|
|
366
|
+
}, zod.core.$strip>>;
|
|
819
367
|
targets: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
820
368
|
team: zod.ZodOptional<zod.ZodObject<{
|
|
821
369
|
id: zod.ZodString;
|
|
@@ -826,25 +374,7 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
826
374
|
usersCount: zod.ZodNumber;
|
|
827
375
|
createdAt: zod.ZodString;
|
|
828
376
|
updatedAt: zod.ZodString;
|
|
829
|
-
},
|
|
830
|
-
code: string;
|
|
831
|
-
name: string;
|
|
832
|
-
id: string;
|
|
833
|
-
fullName: string;
|
|
834
|
-
createdAt: string;
|
|
835
|
-
updatedAt: string;
|
|
836
|
-
approveOnly: boolean;
|
|
837
|
-
usersCount: number;
|
|
838
|
-
}, {
|
|
839
|
-
code: string;
|
|
840
|
-
name: string;
|
|
841
|
-
id: string;
|
|
842
|
-
fullName: string;
|
|
843
|
-
createdAt: string;
|
|
844
|
-
updatedAt: string;
|
|
845
|
-
approveOnly: boolean;
|
|
846
|
-
usersCount: number;
|
|
847
|
-
}>>;
|
|
377
|
+
}, zod.core.$strip>>;
|
|
848
378
|
descendants: zod.ZodOptional<zod.ZodBoolean>;
|
|
849
379
|
gradeSymbol: zod.ZodOptional<zod.ZodString>;
|
|
850
380
|
grades: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
@@ -855,79 +385,32 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
855
385
|
isDefault: zod.ZodBoolean;
|
|
856
386
|
createdAt: zod.ZodString;
|
|
857
387
|
updatedAt: zod.ZodString;
|
|
858
|
-
},
|
|
859
|
-
code: string | null;
|
|
860
|
-
name: string;
|
|
861
|
-
id: string;
|
|
862
|
-
level: number;
|
|
863
|
-
createdAt: string;
|
|
864
|
-
updatedAt: string;
|
|
865
|
-
isDefault: boolean;
|
|
866
|
-
}, {
|
|
867
|
-
code: string | null;
|
|
868
|
-
name: string;
|
|
869
|
-
id: string;
|
|
870
|
-
level: number;
|
|
871
|
-
createdAt: string;
|
|
872
|
-
updatedAt: string;
|
|
873
|
-
isDefault: boolean;
|
|
874
|
-
}>, "many">>;
|
|
388
|
+
}, zod.core.$strip>>>;
|
|
875
389
|
variable: zod.ZodOptional<zod.ZodString>;
|
|
876
|
-
},
|
|
877
|
-
variable?: string | undefined;
|
|
878
|
-
team?: {
|
|
879
|
-
code: string;
|
|
880
|
-
name: string;
|
|
881
|
-
id: string;
|
|
882
|
-
fullName: string;
|
|
883
|
-
createdAt: string;
|
|
884
|
-
updatedAt: string;
|
|
885
|
-
approveOnly: boolean;
|
|
886
|
-
usersCount: number;
|
|
887
|
-
} | undefined;
|
|
888
|
-
grades?: {
|
|
889
|
-
code: string | null;
|
|
890
|
-
name: string;
|
|
891
|
-
id: string;
|
|
892
|
-
level: number;
|
|
893
|
-
createdAt: string;
|
|
894
|
-
updatedAt: string;
|
|
895
|
-
isDefault: boolean;
|
|
896
|
-
}[] | undefined;
|
|
897
|
-
descendants?: boolean | undefined;
|
|
898
|
-
gradeSymbol?: string | undefined;
|
|
899
|
-
}, {
|
|
900
|
-
variable?: string | undefined;
|
|
901
|
-
team?: {
|
|
902
|
-
code: string;
|
|
903
|
-
name: string;
|
|
904
|
-
id: string;
|
|
905
|
-
fullName: string;
|
|
906
|
-
createdAt: string;
|
|
907
|
-
updatedAt: string;
|
|
908
|
-
approveOnly: boolean;
|
|
909
|
-
usersCount: number;
|
|
910
|
-
} | undefined;
|
|
911
|
-
grades?: {
|
|
912
|
-
code: string | null;
|
|
913
|
-
name: string;
|
|
914
|
-
id: string;
|
|
915
|
-
level: number;
|
|
916
|
-
createdAt: string;
|
|
917
|
-
updatedAt: string;
|
|
918
|
-
isDefault: boolean;
|
|
919
|
-
}[] | undefined;
|
|
920
|
-
descendants?: boolean | undefined;
|
|
921
|
-
gradeSymbol?: string | undefined;
|
|
922
|
-
}>, "many">>;
|
|
390
|
+
}, zod.core.$strip>>>;
|
|
923
391
|
routeStepCondition: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
924
392
|
id: zod.ZodOptional<zod.ZodString>;
|
|
925
|
-
conditionType: zod.ZodOptional<zod.ZodEnum<
|
|
926
|
-
|
|
393
|
+
conditionType: zod.ZodOptional<zod.ZodEnum<{
|
|
394
|
+
always: "always";
|
|
395
|
+
conditional: "conditional";
|
|
396
|
+
conditional_skip: "conditional_skip";
|
|
397
|
+
}>>;
|
|
398
|
+
combinationType: zod.ZodOptional<zod.ZodEnum<{
|
|
399
|
+
any: "any";
|
|
400
|
+
all: "all";
|
|
401
|
+
}>>;
|
|
927
402
|
routeStepConditionFields: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
928
403
|
id: zod.ZodOptional<zod.ZodString>;
|
|
929
404
|
variable: zod.ZodOptional<zod.ZodString>;
|
|
930
|
-
fieldKey: zod.ZodOptional<zod.ZodEnum<
|
|
405
|
+
fieldKey: zod.ZodOptional<zod.ZodEnum<{
|
|
406
|
+
author_grade: "author_grade";
|
|
407
|
+
author_team: "author_team";
|
|
408
|
+
text_variable: "text_variable";
|
|
409
|
+
number_variable: "number_variable";
|
|
410
|
+
checkbox_variable: "checkbox_variable";
|
|
411
|
+
general_master_variable: "general_master_variable";
|
|
412
|
+
other_variable: "other_variable";
|
|
413
|
+
}>>;
|
|
931
414
|
symbol: zod.ZodOptional<zod.ZodString>;
|
|
932
415
|
value: zod.ZodOptional<zod.ZodString>;
|
|
933
416
|
grade: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -938,23 +421,7 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
938
421
|
isDefault: zod.ZodBoolean;
|
|
939
422
|
createdAt: zod.ZodString;
|
|
940
423
|
updatedAt: zod.ZodString;
|
|
941
|
-
},
|
|
942
|
-
code: string | null;
|
|
943
|
-
name: string;
|
|
944
|
-
id: string;
|
|
945
|
-
level: number;
|
|
946
|
-
createdAt: string;
|
|
947
|
-
updatedAt: string;
|
|
948
|
-
isDefault: boolean;
|
|
949
|
-
}, {
|
|
950
|
-
code: string | null;
|
|
951
|
-
name: string;
|
|
952
|
-
id: string;
|
|
953
|
-
level: number;
|
|
954
|
-
createdAt: string;
|
|
955
|
-
updatedAt: string;
|
|
956
|
-
isDefault: boolean;
|
|
957
|
-
}>>;
|
|
424
|
+
}, zod.core.$strip>>;
|
|
958
425
|
team: zod.ZodOptional<zod.ZodObject<{
|
|
959
426
|
id: zod.ZodString;
|
|
960
427
|
name: zod.ZodString;
|
|
@@ -964,25 +431,7 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
964
431
|
usersCount: zod.ZodNumber;
|
|
965
432
|
createdAt: zod.ZodString;
|
|
966
433
|
updatedAt: zod.ZodString;
|
|
967
|
-
},
|
|
968
|
-
code: string;
|
|
969
|
-
name: string;
|
|
970
|
-
id: string;
|
|
971
|
-
fullName: string;
|
|
972
|
-
createdAt: string;
|
|
973
|
-
updatedAt: string;
|
|
974
|
-
approveOnly: boolean;
|
|
975
|
-
usersCount: number;
|
|
976
|
-
}, {
|
|
977
|
-
code: string;
|
|
978
|
-
name: string;
|
|
979
|
-
id: string;
|
|
980
|
-
fullName: string;
|
|
981
|
-
createdAt: string;
|
|
982
|
-
updatedAt: string;
|
|
983
|
-
approveOnly: boolean;
|
|
984
|
-
usersCount: number;
|
|
985
|
-
}>>;
|
|
434
|
+
}, zod.core.$strip>>;
|
|
986
435
|
generalMasterItem: zod.ZodOptional<zod.ZodObject<{
|
|
987
436
|
id: zod.ZodString;
|
|
988
437
|
code: zod.ZodString;
|
|
@@ -994,7 +443,7 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
994
443
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
995
444
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
996
445
|
id: zod.ZodString;
|
|
997
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
446
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
998
447
|
createdAt: zod.ZodString;
|
|
999
448
|
updatedAt: zod.ZodString;
|
|
1000
449
|
field: zod.ZodObject<{
|
|
@@ -1002,585 +451,25 @@ export declare const getRouteResponse: zod.ZodIntersection<zod.ZodObject<{
|
|
|
1002
451
|
title: zod.ZodString;
|
|
1003
452
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1004
453
|
code: zod.ZodString;
|
|
1005
|
-
fieldType: zod.ZodEnum<
|
|
454
|
+
fieldType: zod.ZodEnum<{
|
|
455
|
+
number: "number";
|
|
456
|
+
text: "text";
|
|
457
|
+
date: "date";
|
|
458
|
+
text_long: "text_long";
|
|
459
|
+
integer: "integer";
|
|
460
|
+
checkbox: "checkbox";
|
|
461
|
+
pull_down: "pull_down";
|
|
462
|
+
}>;
|
|
1006
463
|
required: zod.ZodBoolean;
|
|
1007
464
|
visible: zod.ZodBoolean;
|
|
1008
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
465
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1009
466
|
createdAt: zod.ZodString;
|
|
1010
467
|
updatedAt: zod.ZodString;
|
|
1011
|
-
},
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
title: string;
|
|
1017
|
-
options: string[] | null;
|
|
1018
|
-
description: string | null;
|
|
1019
|
-
createdAt: string;
|
|
1020
|
-
updatedAt: string;
|
|
1021
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1022
|
-
}, {
|
|
1023
|
-
code: string;
|
|
1024
|
-
required: boolean;
|
|
1025
|
-
id: string;
|
|
1026
|
-
visible: boolean;
|
|
1027
|
-
title: string;
|
|
1028
|
-
options: string[] | null;
|
|
1029
|
-
description: string | null;
|
|
1030
|
-
createdAt: string;
|
|
1031
|
-
updatedAt: string;
|
|
1032
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1033
|
-
}>;
|
|
1034
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1035
|
-
id: string;
|
|
1036
|
-
value: string | string[] | null;
|
|
1037
|
-
field: {
|
|
1038
|
-
code: string;
|
|
1039
|
-
required: boolean;
|
|
1040
|
-
id: string;
|
|
1041
|
-
visible: boolean;
|
|
1042
|
-
title: string;
|
|
1043
|
-
options: string[] | null;
|
|
1044
|
-
description: string | null;
|
|
1045
|
-
createdAt: string;
|
|
1046
|
-
updatedAt: string;
|
|
1047
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1048
|
-
};
|
|
1049
|
-
createdAt: string;
|
|
1050
|
-
updatedAt: string;
|
|
1051
|
-
}, {
|
|
1052
|
-
id: string;
|
|
1053
|
-
value: string | string[] | null;
|
|
1054
|
-
field: {
|
|
1055
|
-
code: string;
|
|
1056
|
-
required: boolean;
|
|
1057
|
-
id: string;
|
|
1058
|
-
visible: boolean;
|
|
1059
|
-
title: string;
|
|
1060
|
-
options: string[] | null;
|
|
1061
|
-
description: string | null;
|
|
1062
|
-
createdAt: string;
|
|
1063
|
-
updatedAt: string;
|
|
1064
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1065
|
-
};
|
|
1066
|
-
createdAt: string;
|
|
1067
|
-
updatedAt: string;
|
|
1068
|
-
}>, "many">;
|
|
1069
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1070
|
-
code: string;
|
|
1071
|
-
name: string;
|
|
1072
|
-
id: string;
|
|
1073
|
-
description: string | null;
|
|
1074
|
-
createdAt: string;
|
|
1075
|
-
updatedAt: string;
|
|
1076
|
-
startsOn: string | null;
|
|
1077
|
-
endsOn: string | null;
|
|
1078
|
-
inputs: {
|
|
1079
|
-
id: string;
|
|
1080
|
-
value: string | string[] | null;
|
|
1081
|
-
field: {
|
|
1082
|
-
code: string;
|
|
1083
|
-
required: boolean;
|
|
1084
|
-
id: string;
|
|
1085
|
-
visible: boolean;
|
|
1086
|
-
title: string;
|
|
1087
|
-
options: string[] | null;
|
|
1088
|
-
description: string | null;
|
|
1089
|
-
createdAt: string;
|
|
1090
|
-
updatedAt: string;
|
|
1091
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1092
|
-
};
|
|
1093
|
-
createdAt: string;
|
|
1094
|
-
updatedAt: string;
|
|
1095
|
-
}[];
|
|
1096
|
-
}, {
|
|
1097
|
-
code: string;
|
|
1098
|
-
name: string;
|
|
1099
|
-
id: string;
|
|
1100
|
-
description: string | null;
|
|
1101
|
-
createdAt: string;
|
|
1102
|
-
updatedAt: string;
|
|
1103
|
-
startsOn: string | null;
|
|
1104
|
-
endsOn: string | null;
|
|
1105
|
-
inputs: {
|
|
1106
|
-
id: string;
|
|
1107
|
-
value: string | string[] | null;
|
|
1108
|
-
field: {
|
|
1109
|
-
code: string;
|
|
1110
|
-
required: boolean;
|
|
1111
|
-
id: string;
|
|
1112
|
-
visible: boolean;
|
|
1113
|
-
title: string;
|
|
1114
|
-
options: string[] | null;
|
|
1115
|
-
description: string | null;
|
|
1116
|
-
createdAt: string;
|
|
1117
|
-
updatedAt: string;
|
|
1118
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1119
|
-
};
|
|
1120
|
-
createdAt: string;
|
|
1121
|
-
updatedAt: string;
|
|
1122
|
-
}[];
|
|
1123
|
-
}>>;
|
|
1124
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1125
|
-
symbol?: string | undefined;
|
|
1126
|
-
variable?: string | undefined;
|
|
1127
|
-
id?: string | undefined;
|
|
1128
|
-
value?: string | undefined;
|
|
1129
|
-
team?: {
|
|
1130
|
-
code: string;
|
|
1131
|
-
name: string;
|
|
1132
|
-
id: string;
|
|
1133
|
-
fullName: string;
|
|
1134
|
-
createdAt: string;
|
|
1135
|
-
updatedAt: string;
|
|
1136
|
-
approveOnly: boolean;
|
|
1137
|
-
usersCount: number;
|
|
1138
|
-
} | undefined;
|
|
1139
|
-
fieldKey?: "author_grade" | "author_team" | "text_variable" | "number_variable" | "checkbox_variable" | "general_master_variable" | "other_variable" | undefined;
|
|
1140
|
-
grade?: {
|
|
1141
|
-
code: string | null;
|
|
1142
|
-
name: string;
|
|
1143
|
-
id: string;
|
|
1144
|
-
level: number;
|
|
1145
|
-
createdAt: string;
|
|
1146
|
-
updatedAt: string;
|
|
1147
|
-
isDefault: boolean;
|
|
1148
|
-
} | undefined;
|
|
1149
|
-
generalMasterItem?: {
|
|
1150
|
-
code: string;
|
|
1151
|
-
name: string;
|
|
1152
|
-
id: string;
|
|
1153
|
-
description: string | null;
|
|
1154
|
-
createdAt: string;
|
|
1155
|
-
updatedAt: string;
|
|
1156
|
-
startsOn: string | null;
|
|
1157
|
-
endsOn: string | null;
|
|
1158
|
-
inputs: {
|
|
1159
|
-
id: string;
|
|
1160
|
-
value: string | string[] | null;
|
|
1161
|
-
field: {
|
|
1162
|
-
code: string;
|
|
1163
|
-
required: boolean;
|
|
1164
|
-
id: string;
|
|
1165
|
-
visible: boolean;
|
|
1166
|
-
title: string;
|
|
1167
|
-
options: string[] | null;
|
|
1168
|
-
description: string | null;
|
|
1169
|
-
createdAt: string;
|
|
1170
|
-
updatedAt: string;
|
|
1171
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1172
|
-
};
|
|
1173
|
-
createdAt: string;
|
|
1174
|
-
updatedAt: string;
|
|
1175
|
-
}[];
|
|
1176
|
-
} | undefined;
|
|
1177
|
-
}, {
|
|
1178
|
-
symbol?: string | undefined;
|
|
1179
|
-
variable?: string | undefined;
|
|
1180
|
-
id?: string | undefined;
|
|
1181
|
-
value?: string | undefined;
|
|
1182
|
-
team?: {
|
|
1183
|
-
code: string;
|
|
1184
|
-
name: string;
|
|
1185
|
-
id: string;
|
|
1186
|
-
fullName: string;
|
|
1187
|
-
createdAt: string;
|
|
1188
|
-
updatedAt: string;
|
|
1189
|
-
approveOnly: boolean;
|
|
1190
|
-
usersCount: number;
|
|
1191
|
-
} | undefined;
|
|
1192
|
-
fieldKey?: "author_grade" | "author_team" | "text_variable" | "number_variable" | "checkbox_variable" | "general_master_variable" | "other_variable" | undefined;
|
|
1193
|
-
grade?: {
|
|
1194
|
-
code: string | null;
|
|
1195
|
-
name: string;
|
|
1196
|
-
id: string;
|
|
1197
|
-
level: number;
|
|
1198
|
-
createdAt: string;
|
|
1199
|
-
updatedAt: string;
|
|
1200
|
-
isDefault: boolean;
|
|
1201
|
-
} | undefined;
|
|
1202
|
-
generalMasterItem?: {
|
|
1203
|
-
code: string;
|
|
1204
|
-
name: string;
|
|
1205
|
-
id: string;
|
|
1206
|
-
description: string | null;
|
|
1207
|
-
createdAt: string;
|
|
1208
|
-
updatedAt: string;
|
|
1209
|
-
startsOn: string | null;
|
|
1210
|
-
endsOn: string | null;
|
|
1211
|
-
inputs: {
|
|
1212
|
-
id: string;
|
|
1213
|
-
value: string | string[] | null;
|
|
1214
|
-
field: {
|
|
1215
|
-
code: string;
|
|
1216
|
-
required: boolean;
|
|
1217
|
-
id: string;
|
|
1218
|
-
visible: boolean;
|
|
1219
|
-
title: string;
|
|
1220
|
-
options: string[] | null;
|
|
1221
|
-
description: string | null;
|
|
1222
|
-
createdAt: string;
|
|
1223
|
-
updatedAt: string;
|
|
1224
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1225
|
-
};
|
|
1226
|
-
createdAt: string;
|
|
1227
|
-
updatedAt: string;
|
|
1228
|
-
}[];
|
|
1229
|
-
} | undefined;
|
|
1230
|
-
}>, zod.ZodObject<{}, "strip", zod.ZodTypeAny, {}, {}>]>>;
|
|
1231
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1232
|
-
id?: string | undefined;
|
|
1233
|
-
conditionType?: "always" | "conditional" | "conditional_skip" | undefined;
|
|
1234
|
-
combinationType?: "all" | "any" | undefined;
|
|
1235
|
-
routeStepConditionFields?: {
|
|
1236
|
-
symbol?: string | undefined;
|
|
1237
|
-
variable?: string | undefined;
|
|
1238
|
-
id?: string | undefined;
|
|
1239
|
-
value?: string | undefined;
|
|
1240
|
-
team?: {
|
|
1241
|
-
code: string;
|
|
1242
|
-
name: string;
|
|
1243
|
-
id: string;
|
|
1244
|
-
fullName: string;
|
|
1245
|
-
createdAt: string;
|
|
1246
|
-
updatedAt: string;
|
|
1247
|
-
approveOnly: boolean;
|
|
1248
|
-
usersCount: number;
|
|
1249
|
-
} | undefined;
|
|
1250
|
-
fieldKey?: "author_grade" | "author_team" | "text_variable" | "number_variable" | "checkbox_variable" | "general_master_variable" | "other_variable" | undefined;
|
|
1251
|
-
grade?: {
|
|
1252
|
-
code: string | null;
|
|
1253
|
-
name: string;
|
|
1254
|
-
id: string;
|
|
1255
|
-
level: number;
|
|
1256
|
-
createdAt: string;
|
|
1257
|
-
updatedAt: string;
|
|
1258
|
-
isDefault: boolean;
|
|
1259
|
-
} | undefined;
|
|
1260
|
-
generalMasterItem?: {
|
|
1261
|
-
code: string;
|
|
1262
|
-
name: string;
|
|
1263
|
-
id: string;
|
|
1264
|
-
description: string | null;
|
|
1265
|
-
createdAt: string;
|
|
1266
|
-
updatedAt: string;
|
|
1267
|
-
startsOn: string | null;
|
|
1268
|
-
endsOn: string | null;
|
|
1269
|
-
inputs: {
|
|
1270
|
-
id: string;
|
|
1271
|
-
value: string | string[] | null;
|
|
1272
|
-
field: {
|
|
1273
|
-
code: string;
|
|
1274
|
-
required: boolean;
|
|
1275
|
-
id: string;
|
|
1276
|
-
visible: boolean;
|
|
1277
|
-
title: string;
|
|
1278
|
-
options: string[] | null;
|
|
1279
|
-
description: string | null;
|
|
1280
|
-
createdAt: string;
|
|
1281
|
-
updatedAt: string;
|
|
1282
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1283
|
-
};
|
|
1284
|
-
createdAt: string;
|
|
1285
|
-
updatedAt: string;
|
|
1286
|
-
}[];
|
|
1287
|
-
} | undefined;
|
|
1288
|
-
} | {} | undefined;
|
|
1289
|
-
}, {
|
|
1290
|
-
id?: string | undefined;
|
|
1291
|
-
conditionType?: "always" | "conditional" | "conditional_skip" | undefined;
|
|
1292
|
-
combinationType?: "all" | "any" | undefined;
|
|
1293
|
-
routeStepConditionFields?: {
|
|
1294
|
-
symbol?: string | undefined;
|
|
1295
|
-
variable?: string | undefined;
|
|
1296
|
-
id?: string | undefined;
|
|
1297
|
-
value?: string | undefined;
|
|
1298
|
-
team?: {
|
|
1299
|
-
code: string;
|
|
1300
|
-
name: string;
|
|
1301
|
-
id: string;
|
|
1302
|
-
fullName: string;
|
|
1303
|
-
createdAt: string;
|
|
1304
|
-
updatedAt: string;
|
|
1305
|
-
approveOnly: boolean;
|
|
1306
|
-
usersCount: number;
|
|
1307
|
-
} | undefined;
|
|
1308
|
-
fieldKey?: "author_grade" | "author_team" | "text_variable" | "number_variable" | "checkbox_variable" | "general_master_variable" | "other_variable" | undefined;
|
|
1309
|
-
grade?: {
|
|
1310
|
-
code: string | null;
|
|
1311
|
-
name: string;
|
|
1312
|
-
id: string;
|
|
1313
|
-
level: number;
|
|
1314
|
-
createdAt: string;
|
|
1315
|
-
updatedAt: string;
|
|
1316
|
-
isDefault: boolean;
|
|
1317
|
-
} | undefined;
|
|
1318
|
-
generalMasterItem?: {
|
|
1319
|
-
code: string;
|
|
1320
|
-
name: string;
|
|
1321
|
-
id: string;
|
|
1322
|
-
description: string | null;
|
|
1323
|
-
createdAt: string;
|
|
1324
|
-
updatedAt: string;
|
|
1325
|
-
startsOn: string | null;
|
|
1326
|
-
endsOn: string | null;
|
|
1327
|
-
inputs: {
|
|
1328
|
-
id: string;
|
|
1329
|
-
value: string | string[] | null;
|
|
1330
|
-
field: {
|
|
1331
|
-
code: string;
|
|
1332
|
-
required: boolean;
|
|
1333
|
-
id: string;
|
|
1334
|
-
visible: boolean;
|
|
1335
|
-
title: string;
|
|
1336
|
-
options: string[] | null;
|
|
1337
|
-
description: string | null;
|
|
1338
|
-
createdAt: string;
|
|
1339
|
-
updatedAt: string;
|
|
1340
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1341
|
-
};
|
|
1342
|
-
createdAt: string;
|
|
1343
|
-
updatedAt: string;
|
|
1344
|
-
}[];
|
|
1345
|
-
} | undefined;
|
|
1346
|
-
} | {} | undefined;
|
|
1347
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
468
|
+
}, zod.core.$strip>;
|
|
469
|
+
}, zod.core.$strip>>;
|
|
470
|
+
}, zod.core.$strip>>;
|
|
471
|
+
}, zod.core.$strip>, zod.ZodObject<{}, zod.core.$strip>]>>;
|
|
472
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
1348
473
|
code: zod.ZodString;
|
|
1349
|
-
},
|
|
1350
|
-
|
|
1351
|
-
id: string;
|
|
1352
|
-
title: string;
|
|
1353
|
-
users: {
|
|
1354
|
-
code: string;
|
|
1355
|
-
id: string;
|
|
1356
|
-
image: {
|
|
1357
|
-
"100x100": string | null;
|
|
1358
|
-
"64x64": string | null;
|
|
1359
|
-
"32x32": string | null;
|
|
1360
|
-
};
|
|
1361
|
-
email: string;
|
|
1362
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1363
|
-
firstName: string;
|
|
1364
|
-
lastName: string;
|
|
1365
|
-
fullName: string;
|
|
1366
|
-
locale: string;
|
|
1367
|
-
createdAt: string;
|
|
1368
|
-
updatedAt: string;
|
|
1369
|
-
employeeId?: string | null | undefined;
|
|
1370
|
-
deactivatedAt?: string | null | undefined;
|
|
1371
|
-
}[];
|
|
1372
|
-
stepOrder: number;
|
|
1373
|
-
stepType: "user" | "team" | "author" | "manager" | "author_customizable" | "assignee_customizable" | "dynamic_team";
|
|
1374
|
-
actionType: "none" | "confirm" | "approve";
|
|
1375
|
-
instruction: string | null;
|
|
1376
|
-
requiredApprovalsNumber: number;
|
|
1377
|
-
requiredApprovalsPercent: number;
|
|
1378
|
-
fallbackType: "direct_manager" | "higher_manager" | "skip" | null;
|
|
1379
|
-
allowSelfApproval: boolean;
|
|
1380
|
-
minCustomAssignees: number | null;
|
|
1381
|
-
approverAssignmentInstruction: string | null;
|
|
1382
|
-
targets?: {
|
|
1383
|
-
variable?: string | undefined;
|
|
1384
|
-
team?: {
|
|
1385
|
-
code: string;
|
|
1386
|
-
name: string;
|
|
1387
|
-
id: string;
|
|
1388
|
-
fullName: string;
|
|
1389
|
-
createdAt: string;
|
|
1390
|
-
updatedAt: string;
|
|
1391
|
-
approveOnly: boolean;
|
|
1392
|
-
usersCount: number;
|
|
1393
|
-
} | undefined;
|
|
1394
|
-
grades?: {
|
|
1395
|
-
code: string | null;
|
|
1396
|
-
name: string;
|
|
1397
|
-
id: string;
|
|
1398
|
-
level: number;
|
|
1399
|
-
createdAt: string;
|
|
1400
|
-
updatedAt: string;
|
|
1401
|
-
isDefault: boolean;
|
|
1402
|
-
}[] | undefined;
|
|
1403
|
-
descendants?: boolean | undefined;
|
|
1404
|
-
gradeSymbol?: string | undefined;
|
|
1405
|
-
}[] | undefined;
|
|
1406
|
-
routeStepCondition?: any;
|
|
1407
|
-
}, {
|
|
1408
|
-
code: string;
|
|
1409
|
-
id: string;
|
|
1410
|
-
title: string;
|
|
1411
|
-
users: {
|
|
1412
|
-
code: string;
|
|
1413
|
-
id: string;
|
|
1414
|
-
image: {
|
|
1415
|
-
"100x100": string | null;
|
|
1416
|
-
"64x64": string | null;
|
|
1417
|
-
"32x32": string | null;
|
|
1418
|
-
};
|
|
1419
|
-
email: string;
|
|
1420
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1421
|
-
firstName: string;
|
|
1422
|
-
lastName: string;
|
|
1423
|
-
fullName: string;
|
|
1424
|
-
locale: string;
|
|
1425
|
-
createdAt: string;
|
|
1426
|
-
updatedAt: string;
|
|
1427
|
-
employeeId?: string | null | undefined;
|
|
1428
|
-
deactivatedAt?: string | null | undefined;
|
|
1429
|
-
}[];
|
|
1430
|
-
stepOrder: number;
|
|
1431
|
-
stepType: "user" | "team" | "author" | "manager" | "author_customizable" | "assignee_customizable" | "dynamic_team";
|
|
1432
|
-
actionType: "none" | "confirm" | "approve";
|
|
1433
|
-
instruction: string | null;
|
|
1434
|
-
requiredApprovalsNumber: number;
|
|
1435
|
-
requiredApprovalsPercent: number;
|
|
1436
|
-
fallbackType: "direct_manager" | "higher_manager" | "skip" | null;
|
|
1437
|
-
allowSelfApproval: boolean;
|
|
1438
|
-
minCustomAssignees: number | null;
|
|
1439
|
-
approverAssignmentInstruction: string | null;
|
|
1440
|
-
targets?: {
|
|
1441
|
-
variable?: string | undefined;
|
|
1442
|
-
team?: {
|
|
1443
|
-
code: string;
|
|
1444
|
-
name: string;
|
|
1445
|
-
id: string;
|
|
1446
|
-
fullName: string;
|
|
1447
|
-
createdAt: string;
|
|
1448
|
-
updatedAt: string;
|
|
1449
|
-
approveOnly: boolean;
|
|
1450
|
-
usersCount: number;
|
|
1451
|
-
} | undefined;
|
|
1452
|
-
grades?: {
|
|
1453
|
-
code: string | null;
|
|
1454
|
-
name: string;
|
|
1455
|
-
id: string;
|
|
1456
|
-
level: number;
|
|
1457
|
-
createdAt: string;
|
|
1458
|
-
updatedAt: string;
|
|
1459
|
-
isDefault: boolean;
|
|
1460
|
-
}[] | undefined;
|
|
1461
|
-
descendants?: boolean | undefined;
|
|
1462
|
-
gradeSymbol?: string | undefined;
|
|
1463
|
-
}[] | undefined;
|
|
1464
|
-
routeStepCondition?: any;
|
|
1465
|
-
}>, "many">;
|
|
1466
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1467
|
-
steps: {
|
|
1468
|
-
code: string;
|
|
1469
|
-
id: string;
|
|
1470
|
-
title: string;
|
|
1471
|
-
users: {
|
|
1472
|
-
code: string;
|
|
1473
|
-
id: string;
|
|
1474
|
-
image: {
|
|
1475
|
-
"100x100": string | null;
|
|
1476
|
-
"64x64": string | null;
|
|
1477
|
-
"32x32": string | null;
|
|
1478
|
-
};
|
|
1479
|
-
email: string;
|
|
1480
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1481
|
-
firstName: string;
|
|
1482
|
-
lastName: string;
|
|
1483
|
-
fullName: string;
|
|
1484
|
-
locale: string;
|
|
1485
|
-
createdAt: string;
|
|
1486
|
-
updatedAt: string;
|
|
1487
|
-
employeeId?: string | null | undefined;
|
|
1488
|
-
deactivatedAt?: string | null | undefined;
|
|
1489
|
-
}[];
|
|
1490
|
-
stepOrder: number;
|
|
1491
|
-
stepType: "user" | "team" | "author" | "manager" | "author_customizable" | "assignee_customizable" | "dynamic_team";
|
|
1492
|
-
actionType: "none" | "confirm" | "approve";
|
|
1493
|
-
instruction: string | null;
|
|
1494
|
-
requiredApprovalsNumber: number;
|
|
1495
|
-
requiredApprovalsPercent: number;
|
|
1496
|
-
fallbackType: "direct_manager" | "higher_manager" | "skip" | null;
|
|
1497
|
-
allowSelfApproval: boolean;
|
|
1498
|
-
minCustomAssignees: number | null;
|
|
1499
|
-
approverAssignmentInstruction: string | null;
|
|
1500
|
-
targets?: {
|
|
1501
|
-
variable?: string | undefined;
|
|
1502
|
-
team?: {
|
|
1503
|
-
code: string;
|
|
1504
|
-
name: string;
|
|
1505
|
-
id: string;
|
|
1506
|
-
fullName: string;
|
|
1507
|
-
createdAt: string;
|
|
1508
|
-
updatedAt: string;
|
|
1509
|
-
approveOnly: boolean;
|
|
1510
|
-
usersCount: number;
|
|
1511
|
-
} | undefined;
|
|
1512
|
-
grades?: {
|
|
1513
|
-
code: string | null;
|
|
1514
|
-
name: string;
|
|
1515
|
-
id: string;
|
|
1516
|
-
level: number;
|
|
1517
|
-
createdAt: string;
|
|
1518
|
-
updatedAt: string;
|
|
1519
|
-
isDefault: boolean;
|
|
1520
|
-
}[] | undefined;
|
|
1521
|
-
descendants?: boolean | undefined;
|
|
1522
|
-
gradeSymbol?: string | undefined;
|
|
1523
|
-
}[] | undefined;
|
|
1524
|
-
routeStepCondition?: any;
|
|
1525
|
-
}[];
|
|
1526
|
-
}, {
|
|
1527
|
-
steps: {
|
|
1528
|
-
code: string;
|
|
1529
|
-
id: string;
|
|
1530
|
-
title: string;
|
|
1531
|
-
users: {
|
|
1532
|
-
code: string;
|
|
1533
|
-
id: string;
|
|
1534
|
-
image: {
|
|
1535
|
-
"100x100": string | null;
|
|
1536
|
-
"64x64": string | null;
|
|
1537
|
-
"32x32": string | null;
|
|
1538
|
-
};
|
|
1539
|
-
email: string;
|
|
1540
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
1541
|
-
firstName: string;
|
|
1542
|
-
lastName: string;
|
|
1543
|
-
fullName: string;
|
|
1544
|
-
locale: string;
|
|
1545
|
-
createdAt: string;
|
|
1546
|
-
updatedAt: string;
|
|
1547
|
-
employeeId?: string | null | undefined;
|
|
1548
|
-
deactivatedAt?: string | null | undefined;
|
|
1549
|
-
}[];
|
|
1550
|
-
stepOrder: number;
|
|
1551
|
-
stepType: "user" | "team" | "author" | "manager" | "author_customizable" | "assignee_customizable" | "dynamic_team";
|
|
1552
|
-
actionType: "none" | "confirm" | "approve";
|
|
1553
|
-
instruction: string | null;
|
|
1554
|
-
requiredApprovalsNumber: number;
|
|
1555
|
-
requiredApprovalsPercent: number;
|
|
1556
|
-
fallbackType: "direct_manager" | "higher_manager" | "skip" | null;
|
|
1557
|
-
allowSelfApproval: boolean;
|
|
1558
|
-
minCustomAssignees: number | null;
|
|
1559
|
-
approverAssignmentInstruction: string | null;
|
|
1560
|
-
targets?: {
|
|
1561
|
-
variable?: string | undefined;
|
|
1562
|
-
team?: {
|
|
1563
|
-
code: string;
|
|
1564
|
-
name: string;
|
|
1565
|
-
id: string;
|
|
1566
|
-
fullName: string;
|
|
1567
|
-
createdAt: string;
|
|
1568
|
-
updatedAt: string;
|
|
1569
|
-
approveOnly: boolean;
|
|
1570
|
-
usersCount: number;
|
|
1571
|
-
} | undefined;
|
|
1572
|
-
grades?: {
|
|
1573
|
-
code: string | null;
|
|
1574
|
-
name: string;
|
|
1575
|
-
id: string;
|
|
1576
|
-
level: number;
|
|
1577
|
-
createdAt: string;
|
|
1578
|
-
updatedAt: string;
|
|
1579
|
-
isDefault: boolean;
|
|
1580
|
-
}[] | undefined;
|
|
1581
|
-
descendants?: boolean | undefined;
|
|
1582
|
-
gradeSymbol?: string | undefined;
|
|
1583
|
-
}[] | undefined;
|
|
1584
|
-
routeStepCondition?: any;
|
|
1585
|
-
}[];
|
|
1586
|
-
}>>;
|
|
474
|
+
}, zod.core.$strip>>;
|
|
475
|
+
}, zod.core.$strip>>;
|