@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,18 +18,11 @@ export declare const listWorkflowsQueryParams: 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<
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
sortBy?: string | undefined;
|
|
27
|
-
}, {
|
|
28
|
-
page?: number | undefined;
|
|
29
|
-
status?: ("visible" | "invisible")[] | undefined;
|
|
30
|
-
perPage?: number | undefined;
|
|
31
|
-
sortBy?: string | undefined;
|
|
32
|
-
}>;
|
|
21
|
+
status: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<{
|
|
22
|
+
visible: "visible";
|
|
23
|
+
invisible: "invisible";
|
|
24
|
+
}>>>;
|
|
25
|
+
}, zod.core.$strip>;
|
|
33
26
|
export declare const listWorkflowsResponseCodeRegExp: RegExp;
|
|
34
27
|
export declare const listWorkflowsResponsePublicTicketDefault = false;
|
|
35
28
|
export declare const listWorkflowsResponseVisibleToTeamMembersDefault = false;
|
|
@@ -59,16 +52,28 @@ export declare const listWorkflowsResponseItem: zod.ZodObject<{
|
|
|
59
52
|
versionNumber: zod.ZodNumber;
|
|
60
53
|
name: zod.ZodString;
|
|
61
54
|
description: zod.ZodString;
|
|
62
|
-
status: zod.ZodEnum<
|
|
55
|
+
status: zod.ZodEnum<{
|
|
56
|
+
visible: "visible";
|
|
57
|
+
invisible: "invisible";
|
|
58
|
+
deleted: "deleted";
|
|
59
|
+
}>;
|
|
63
60
|
publicTicket: zod.ZodBoolean;
|
|
64
|
-
visibleToManager: zod.ZodEnum<
|
|
61
|
+
visibleToManager: zod.ZodEnum<{
|
|
62
|
+
none: "none";
|
|
63
|
+
direct: "direct";
|
|
64
|
+
all: "all";
|
|
65
|
+
}>;
|
|
65
66
|
visibleToTeamMembers: zod.ZodBoolean;
|
|
66
67
|
titleDescription: zod.ZodNullable<zod.ZodString>;
|
|
67
68
|
ticketNumberFormat: zod.ZodNullable<zod.ZodString>;
|
|
68
69
|
overwritable: zod.ZodBoolean;
|
|
69
70
|
createdAt: zod.ZodString;
|
|
70
71
|
updatedAt: zod.ZodString;
|
|
71
|
-
titleInputMode: zod.ZodEnum<
|
|
72
|
+
titleInputMode: zod.ZodEnum<{
|
|
73
|
+
input: "input";
|
|
74
|
+
none: "none";
|
|
75
|
+
calculate: "calculate";
|
|
76
|
+
}>;
|
|
72
77
|
titleFormula: zod.ZodNullable<zod.ZodString>;
|
|
73
78
|
allowEditingOfViewers: zod.ZodDefault<zod.ZodBoolean>;
|
|
74
79
|
author: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
@@ -83,57 +88,18 @@ export declare const listWorkflowsResponseItem: zod.ZodObject<{
|
|
|
83
88
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
84
89
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
85
90
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
86
|
-
},
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
"
|
|
92
|
-
"64x64": string | null;
|
|
93
|
-
"32x32": string | null;
|
|
91
|
+
}, zod.core.$strip>;
|
|
92
|
+
status: zod.ZodEnum<{
|
|
93
|
+
invited: "invited";
|
|
94
|
+
activated: "activated";
|
|
95
|
+
suspended: "suspended";
|
|
96
|
+
deactivated: "deactivated";
|
|
94
97
|
}>;
|
|
95
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
96
98
|
locale: zod.ZodString;
|
|
97
99
|
createdAt: zod.ZodString;
|
|
98
100
|
updatedAt: zod.ZodString;
|
|
99
101
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
100
|
-
},
|
|
101
|
-
code: string;
|
|
102
|
-
id: string;
|
|
103
|
-
image: {
|
|
104
|
-
"100x100": string | null;
|
|
105
|
-
"64x64": string | null;
|
|
106
|
-
"32x32": string | null;
|
|
107
|
-
};
|
|
108
|
-
email: string;
|
|
109
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
110
|
-
firstName: string;
|
|
111
|
-
lastName: string;
|
|
112
|
-
fullName: string;
|
|
113
|
-
locale: string;
|
|
114
|
-
createdAt: string;
|
|
115
|
-
updatedAt: string;
|
|
116
|
-
employeeId?: string | null | undefined;
|
|
117
|
-
deactivatedAt?: string | null | undefined;
|
|
118
|
-
}, {
|
|
119
|
-
code: string;
|
|
120
|
-
id: string;
|
|
121
|
-
image: {
|
|
122
|
-
"100x100": string | null;
|
|
123
|
-
"64x64": string | null;
|
|
124
|
-
"32x32": string | null;
|
|
125
|
-
};
|
|
126
|
-
email: string;
|
|
127
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
128
|
-
firstName: string;
|
|
129
|
-
lastName: string;
|
|
130
|
-
fullName: string;
|
|
131
|
-
locale: string;
|
|
132
|
-
createdAt: string;
|
|
133
|
-
updatedAt: string;
|
|
134
|
-
employeeId?: string | null | undefined;
|
|
135
|
-
deactivatedAt?: string | null | undefined;
|
|
136
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
102
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
137
103
|
versionAuthor: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
138
104
|
id: zod.ZodString;
|
|
139
105
|
email: zod.ZodString;
|
|
@@ -146,57 +112,18 @@ export declare const listWorkflowsResponseItem: zod.ZodObject<{
|
|
|
146
112
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
147
113
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
148
114
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
149
|
-
},
|
|
150
|
-
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
"
|
|
155
|
-
"64x64": string | null;
|
|
156
|
-
"32x32": string | null;
|
|
115
|
+
}, zod.core.$strip>;
|
|
116
|
+
status: zod.ZodEnum<{
|
|
117
|
+
invited: "invited";
|
|
118
|
+
activated: "activated";
|
|
119
|
+
suspended: "suspended";
|
|
120
|
+
deactivated: "deactivated";
|
|
157
121
|
}>;
|
|
158
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
159
122
|
locale: zod.ZodString;
|
|
160
123
|
createdAt: zod.ZodString;
|
|
161
124
|
updatedAt: zod.ZodString;
|
|
162
125
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
163
|
-
},
|
|
164
|
-
code: string;
|
|
165
|
-
id: string;
|
|
166
|
-
image: {
|
|
167
|
-
"100x100": string | null;
|
|
168
|
-
"64x64": string | null;
|
|
169
|
-
"32x32": string | null;
|
|
170
|
-
};
|
|
171
|
-
email: string;
|
|
172
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
173
|
-
firstName: string;
|
|
174
|
-
lastName: string;
|
|
175
|
-
fullName: string;
|
|
176
|
-
locale: string;
|
|
177
|
-
createdAt: string;
|
|
178
|
-
updatedAt: string;
|
|
179
|
-
employeeId?: string | null | undefined;
|
|
180
|
-
deactivatedAt?: string | null | undefined;
|
|
181
|
-
}, {
|
|
182
|
-
code: string;
|
|
183
|
-
id: string;
|
|
184
|
-
image: {
|
|
185
|
-
"100x100": string | null;
|
|
186
|
-
"64x64": string | null;
|
|
187
|
-
"32x32": string | null;
|
|
188
|
-
};
|
|
189
|
-
email: string;
|
|
190
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
191
|
-
firstName: string;
|
|
192
|
-
lastName: string;
|
|
193
|
-
fullName: string;
|
|
194
|
-
locale: string;
|
|
195
|
-
createdAt: string;
|
|
196
|
-
updatedAt: string;
|
|
197
|
-
employeeId?: string | null | undefined;
|
|
198
|
-
deactivatedAt?: string | null | undefined;
|
|
199
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
126
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
200
127
|
folder: zod.ZodObject<{
|
|
201
128
|
id: zod.ZodString;
|
|
202
129
|
name: zod.ZodString;
|
|
@@ -207,120 +134,14 @@ export declare const listWorkflowsResponseItem: zod.ZodObject<{
|
|
|
207
134
|
pipelinesCount: zod.ZodNumber;
|
|
208
135
|
createdAt: zod.ZodString;
|
|
209
136
|
updatedAt: zod.ZodString;
|
|
210
|
-
},
|
|
211
|
-
code: string;
|
|
212
|
-
name: string;
|
|
213
|
-
id: string;
|
|
214
|
-
createdAt: string;
|
|
215
|
-
updatedAt: string;
|
|
216
|
-
workflowsCount: number;
|
|
217
|
-
routesCount: number;
|
|
218
|
-
pipelinesCount: number;
|
|
219
|
-
description?: string | null | undefined;
|
|
220
|
-
}, {
|
|
221
|
-
code: string;
|
|
222
|
-
name: string;
|
|
223
|
-
id: string;
|
|
224
|
-
createdAt: string;
|
|
225
|
-
updatedAt: string;
|
|
226
|
-
workflowsCount: number;
|
|
227
|
-
routesCount: number;
|
|
228
|
-
pipelinesCount: number;
|
|
229
|
-
description?: string | null | undefined;
|
|
230
|
-
}>;
|
|
137
|
+
}, zod.core.$strip>;
|
|
231
138
|
categories: zod.ZodArray<zod.ZodObject<{
|
|
232
139
|
id: zod.ZodString;
|
|
233
140
|
name: zod.ZodString;
|
|
234
141
|
createdAt: zod.ZodString;
|
|
235
142
|
updatedAt: zod.ZodString;
|
|
236
|
-
},
|
|
237
|
-
|
|
238
|
-
id: string;
|
|
239
|
-
createdAt: string;
|
|
240
|
-
updatedAt: string;
|
|
241
|
-
}, {
|
|
242
|
-
name: string;
|
|
243
|
-
id: string;
|
|
244
|
-
createdAt: string;
|
|
245
|
-
updatedAt: string;
|
|
246
|
-
}>, "many">;
|
|
247
|
-
}, "strip", zod.ZodTypeAny, {
|
|
248
|
-
code: string;
|
|
249
|
-
name: string;
|
|
250
|
-
id: string;
|
|
251
|
-
description: string;
|
|
252
|
-
status: "visible" | "invisible" | "deleted";
|
|
253
|
-
createdAt: string;
|
|
254
|
-
updatedAt: string;
|
|
255
|
-
versionId: string;
|
|
256
|
-
versionNumber: number;
|
|
257
|
-
publicTicket: boolean;
|
|
258
|
-
visibleToManager: "direct" | "all" | "none";
|
|
259
|
-
visibleToTeamMembers: boolean;
|
|
260
|
-
titleDescription: string | null;
|
|
261
|
-
ticketNumberFormat: string | null;
|
|
262
|
-
overwritable: boolean;
|
|
263
|
-
titleInputMode: "input" | "none" | "calculate";
|
|
264
|
-
titleFormula: string | null;
|
|
265
|
-
allowEditingOfViewers: boolean;
|
|
266
|
-
folder: {
|
|
267
|
-
code: string;
|
|
268
|
-
name: string;
|
|
269
|
-
id: string;
|
|
270
|
-
createdAt: string;
|
|
271
|
-
updatedAt: string;
|
|
272
|
-
workflowsCount: number;
|
|
273
|
-
routesCount: number;
|
|
274
|
-
pipelinesCount: number;
|
|
275
|
-
description?: string | null | undefined;
|
|
276
|
-
};
|
|
277
|
-
categories: {
|
|
278
|
-
name: string;
|
|
279
|
-
id: string;
|
|
280
|
-
createdAt: string;
|
|
281
|
-
updatedAt: string;
|
|
282
|
-
}[];
|
|
283
|
-
author?: any;
|
|
284
|
-
versionAuthor?: any;
|
|
285
|
-
}, {
|
|
286
|
-
code: string;
|
|
287
|
-
name: string;
|
|
288
|
-
id: string;
|
|
289
|
-
description: string;
|
|
290
|
-
status: "visible" | "invisible" | "deleted";
|
|
291
|
-
createdAt: string;
|
|
292
|
-
updatedAt: string;
|
|
293
|
-
versionId: string;
|
|
294
|
-
versionNumber: number;
|
|
295
|
-
publicTicket: boolean;
|
|
296
|
-
visibleToManager: "direct" | "all" | "none";
|
|
297
|
-
visibleToTeamMembers: boolean;
|
|
298
|
-
titleDescription: string | null;
|
|
299
|
-
ticketNumberFormat: string | null;
|
|
300
|
-
overwritable: boolean;
|
|
301
|
-
titleInputMode: "input" | "none" | "calculate";
|
|
302
|
-
titleFormula: string | null;
|
|
303
|
-
folder: {
|
|
304
|
-
code: string;
|
|
305
|
-
name: string;
|
|
306
|
-
id: string;
|
|
307
|
-
createdAt: string;
|
|
308
|
-
updatedAt: string;
|
|
309
|
-
workflowsCount: number;
|
|
310
|
-
routesCount: number;
|
|
311
|
-
pipelinesCount: number;
|
|
312
|
-
description?: string | null | undefined;
|
|
313
|
-
};
|
|
314
|
-
categories: {
|
|
315
|
-
name: string;
|
|
316
|
-
id: string;
|
|
317
|
-
createdAt: string;
|
|
318
|
-
updatedAt: string;
|
|
319
|
-
}[];
|
|
320
|
-
author?: any;
|
|
321
|
-
allowEditingOfViewers?: boolean | undefined;
|
|
322
|
-
versionAuthor?: any;
|
|
323
|
-
}>;
|
|
143
|
+
}, zod.core.$strip>>;
|
|
144
|
+
}, zod.core.$strip>;
|
|
324
145
|
export declare const listWorkflowsResponse: zod.ZodArray<zod.ZodObject<{
|
|
325
146
|
id: zod.ZodString;
|
|
326
147
|
code: zod.ZodString;
|
|
@@ -328,16 +149,28 @@ export declare const listWorkflowsResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
328
149
|
versionNumber: zod.ZodNumber;
|
|
329
150
|
name: zod.ZodString;
|
|
330
151
|
description: zod.ZodString;
|
|
331
|
-
status: zod.ZodEnum<
|
|
152
|
+
status: zod.ZodEnum<{
|
|
153
|
+
visible: "visible";
|
|
154
|
+
invisible: "invisible";
|
|
155
|
+
deleted: "deleted";
|
|
156
|
+
}>;
|
|
332
157
|
publicTicket: zod.ZodBoolean;
|
|
333
|
-
visibleToManager: zod.ZodEnum<
|
|
158
|
+
visibleToManager: zod.ZodEnum<{
|
|
159
|
+
none: "none";
|
|
160
|
+
direct: "direct";
|
|
161
|
+
all: "all";
|
|
162
|
+
}>;
|
|
334
163
|
visibleToTeamMembers: zod.ZodBoolean;
|
|
335
164
|
titleDescription: zod.ZodNullable<zod.ZodString>;
|
|
336
165
|
ticketNumberFormat: zod.ZodNullable<zod.ZodString>;
|
|
337
166
|
overwritable: zod.ZodBoolean;
|
|
338
167
|
createdAt: zod.ZodString;
|
|
339
168
|
updatedAt: zod.ZodString;
|
|
340
|
-
titleInputMode: zod.ZodEnum<
|
|
169
|
+
titleInputMode: zod.ZodEnum<{
|
|
170
|
+
input: "input";
|
|
171
|
+
none: "none";
|
|
172
|
+
calculate: "calculate";
|
|
173
|
+
}>;
|
|
341
174
|
titleFormula: zod.ZodNullable<zod.ZodString>;
|
|
342
175
|
allowEditingOfViewers: zod.ZodDefault<zod.ZodBoolean>;
|
|
343
176
|
author: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
@@ -352,57 +185,18 @@ export declare const listWorkflowsResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
352
185
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
353
186
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
354
187
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
355
|
-
},
|
|
356
|
-
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
|
|
360
|
-
"
|
|
361
|
-
"64x64": string | null;
|
|
362
|
-
"32x32": string | null;
|
|
188
|
+
}, zod.core.$strip>;
|
|
189
|
+
status: zod.ZodEnum<{
|
|
190
|
+
invited: "invited";
|
|
191
|
+
activated: "activated";
|
|
192
|
+
suspended: "suspended";
|
|
193
|
+
deactivated: "deactivated";
|
|
363
194
|
}>;
|
|
364
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
365
195
|
locale: zod.ZodString;
|
|
366
196
|
createdAt: zod.ZodString;
|
|
367
197
|
updatedAt: zod.ZodString;
|
|
368
198
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
369
|
-
},
|
|
370
|
-
code: string;
|
|
371
|
-
id: string;
|
|
372
|
-
image: {
|
|
373
|
-
"100x100": string | null;
|
|
374
|
-
"64x64": string | null;
|
|
375
|
-
"32x32": string | null;
|
|
376
|
-
};
|
|
377
|
-
email: string;
|
|
378
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
379
|
-
firstName: string;
|
|
380
|
-
lastName: string;
|
|
381
|
-
fullName: string;
|
|
382
|
-
locale: string;
|
|
383
|
-
createdAt: string;
|
|
384
|
-
updatedAt: string;
|
|
385
|
-
employeeId?: string | null | undefined;
|
|
386
|
-
deactivatedAt?: string | null | undefined;
|
|
387
|
-
}, {
|
|
388
|
-
code: string;
|
|
389
|
-
id: string;
|
|
390
|
-
image: {
|
|
391
|
-
"100x100": string | null;
|
|
392
|
-
"64x64": string | null;
|
|
393
|
-
"32x32": string | null;
|
|
394
|
-
};
|
|
395
|
-
email: string;
|
|
396
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
397
|
-
firstName: string;
|
|
398
|
-
lastName: string;
|
|
399
|
-
fullName: string;
|
|
400
|
-
locale: string;
|
|
401
|
-
createdAt: string;
|
|
402
|
-
updatedAt: string;
|
|
403
|
-
employeeId?: string | null | undefined;
|
|
404
|
-
deactivatedAt?: string | null | undefined;
|
|
405
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
199
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
406
200
|
versionAuthor: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
407
201
|
id: zod.ZodString;
|
|
408
202
|
email: zod.ZodString;
|
|
@@ -415,57 +209,18 @@ export declare const listWorkflowsResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
415
209
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
416
210
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
417
211
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
418
|
-
},
|
|
419
|
-
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
|
|
423
|
-
"
|
|
424
|
-
"64x64": string | null;
|
|
425
|
-
"32x32": string | null;
|
|
212
|
+
}, zod.core.$strip>;
|
|
213
|
+
status: zod.ZodEnum<{
|
|
214
|
+
invited: "invited";
|
|
215
|
+
activated: "activated";
|
|
216
|
+
suspended: "suspended";
|
|
217
|
+
deactivated: "deactivated";
|
|
426
218
|
}>;
|
|
427
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
428
219
|
locale: zod.ZodString;
|
|
429
220
|
createdAt: zod.ZodString;
|
|
430
221
|
updatedAt: zod.ZodString;
|
|
431
222
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
432
|
-
},
|
|
433
|
-
code: string;
|
|
434
|
-
id: string;
|
|
435
|
-
image: {
|
|
436
|
-
"100x100": string | null;
|
|
437
|
-
"64x64": string | null;
|
|
438
|
-
"32x32": string | null;
|
|
439
|
-
};
|
|
440
|
-
email: string;
|
|
441
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
442
|
-
firstName: string;
|
|
443
|
-
lastName: string;
|
|
444
|
-
fullName: string;
|
|
445
|
-
locale: string;
|
|
446
|
-
createdAt: string;
|
|
447
|
-
updatedAt: string;
|
|
448
|
-
employeeId?: string | null | undefined;
|
|
449
|
-
deactivatedAt?: string | null | undefined;
|
|
450
|
-
}, {
|
|
451
|
-
code: string;
|
|
452
|
-
id: string;
|
|
453
|
-
image: {
|
|
454
|
-
"100x100": string | null;
|
|
455
|
-
"64x64": string | null;
|
|
456
|
-
"32x32": string | null;
|
|
457
|
-
};
|
|
458
|
-
email: string;
|
|
459
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
460
|
-
firstName: string;
|
|
461
|
-
lastName: string;
|
|
462
|
-
fullName: string;
|
|
463
|
-
locale: string;
|
|
464
|
-
createdAt: string;
|
|
465
|
-
updatedAt: string;
|
|
466
|
-
employeeId?: string | null | undefined;
|
|
467
|
-
deactivatedAt?: string | null | undefined;
|
|
468
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
223
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
469
224
|
folder: zod.ZodObject<{
|
|
470
225
|
id: zod.ZodString;
|
|
471
226
|
name: zod.ZodString;
|
|
@@ -476,120 +231,14 @@ export declare const listWorkflowsResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
476
231
|
pipelinesCount: zod.ZodNumber;
|
|
477
232
|
createdAt: zod.ZodString;
|
|
478
233
|
updatedAt: zod.ZodString;
|
|
479
|
-
},
|
|
480
|
-
code: string;
|
|
481
|
-
name: string;
|
|
482
|
-
id: string;
|
|
483
|
-
createdAt: string;
|
|
484
|
-
updatedAt: string;
|
|
485
|
-
workflowsCount: number;
|
|
486
|
-
routesCount: number;
|
|
487
|
-
pipelinesCount: number;
|
|
488
|
-
description?: string | null | undefined;
|
|
489
|
-
}, {
|
|
490
|
-
code: string;
|
|
491
|
-
name: string;
|
|
492
|
-
id: string;
|
|
493
|
-
createdAt: string;
|
|
494
|
-
updatedAt: string;
|
|
495
|
-
workflowsCount: number;
|
|
496
|
-
routesCount: number;
|
|
497
|
-
pipelinesCount: number;
|
|
498
|
-
description?: string | null | undefined;
|
|
499
|
-
}>;
|
|
234
|
+
}, zod.core.$strip>;
|
|
500
235
|
categories: zod.ZodArray<zod.ZodObject<{
|
|
501
236
|
id: zod.ZodString;
|
|
502
237
|
name: zod.ZodString;
|
|
503
238
|
createdAt: zod.ZodString;
|
|
504
239
|
updatedAt: zod.ZodString;
|
|
505
|
-
},
|
|
506
|
-
|
|
507
|
-
id: string;
|
|
508
|
-
createdAt: string;
|
|
509
|
-
updatedAt: string;
|
|
510
|
-
}, {
|
|
511
|
-
name: string;
|
|
512
|
-
id: string;
|
|
513
|
-
createdAt: string;
|
|
514
|
-
updatedAt: string;
|
|
515
|
-
}>, "many">;
|
|
516
|
-
}, "strip", zod.ZodTypeAny, {
|
|
517
|
-
code: string;
|
|
518
|
-
name: string;
|
|
519
|
-
id: string;
|
|
520
|
-
description: string;
|
|
521
|
-
status: "visible" | "invisible" | "deleted";
|
|
522
|
-
createdAt: string;
|
|
523
|
-
updatedAt: string;
|
|
524
|
-
versionId: string;
|
|
525
|
-
versionNumber: number;
|
|
526
|
-
publicTicket: boolean;
|
|
527
|
-
visibleToManager: "direct" | "all" | "none";
|
|
528
|
-
visibleToTeamMembers: boolean;
|
|
529
|
-
titleDescription: string | null;
|
|
530
|
-
ticketNumberFormat: string | null;
|
|
531
|
-
overwritable: boolean;
|
|
532
|
-
titleInputMode: "input" | "none" | "calculate";
|
|
533
|
-
titleFormula: string | null;
|
|
534
|
-
allowEditingOfViewers: boolean;
|
|
535
|
-
folder: {
|
|
536
|
-
code: string;
|
|
537
|
-
name: string;
|
|
538
|
-
id: string;
|
|
539
|
-
createdAt: string;
|
|
540
|
-
updatedAt: string;
|
|
541
|
-
workflowsCount: number;
|
|
542
|
-
routesCount: number;
|
|
543
|
-
pipelinesCount: number;
|
|
544
|
-
description?: string | null | undefined;
|
|
545
|
-
};
|
|
546
|
-
categories: {
|
|
547
|
-
name: string;
|
|
548
|
-
id: string;
|
|
549
|
-
createdAt: string;
|
|
550
|
-
updatedAt: string;
|
|
551
|
-
}[];
|
|
552
|
-
author?: any;
|
|
553
|
-
versionAuthor?: any;
|
|
554
|
-
}, {
|
|
555
|
-
code: string;
|
|
556
|
-
name: string;
|
|
557
|
-
id: string;
|
|
558
|
-
description: string;
|
|
559
|
-
status: "visible" | "invisible" | "deleted";
|
|
560
|
-
createdAt: string;
|
|
561
|
-
updatedAt: string;
|
|
562
|
-
versionId: string;
|
|
563
|
-
versionNumber: number;
|
|
564
|
-
publicTicket: boolean;
|
|
565
|
-
visibleToManager: "direct" | "all" | "none";
|
|
566
|
-
visibleToTeamMembers: boolean;
|
|
567
|
-
titleDescription: string | null;
|
|
568
|
-
ticketNumberFormat: string | null;
|
|
569
|
-
overwritable: boolean;
|
|
570
|
-
titleInputMode: "input" | "none" | "calculate";
|
|
571
|
-
titleFormula: string | null;
|
|
572
|
-
folder: {
|
|
573
|
-
code: string;
|
|
574
|
-
name: string;
|
|
575
|
-
id: string;
|
|
576
|
-
createdAt: string;
|
|
577
|
-
updatedAt: string;
|
|
578
|
-
workflowsCount: number;
|
|
579
|
-
routesCount: number;
|
|
580
|
-
pipelinesCount: number;
|
|
581
|
-
description?: string | null | undefined;
|
|
582
|
-
};
|
|
583
|
-
categories: {
|
|
584
|
-
name: string;
|
|
585
|
-
id: string;
|
|
586
|
-
createdAt: string;
|
|
587
|
-
updatedAt: string;
|
|
588
|
-
}[];
|
|
589
|
-
author?: any;
|
|
590
|
-
allowEditingOfViewers?: boolean | undefined;
|
|
591
|
-
versionAuthor?: any;
|
|
592
|
-
}>, "many">;
|
|
240
|
+
}, zod.core.$strip>>;
|
|
241
|
+
}, zod.core.$strip>>;
|
|
593
242
|
/**
|
|
594
243
|
* 指定したIDのワークフローを取得します。
|
|
595
244
|
* @summary ワークフローを取得
|
|
@@ -717,16 +366,28 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
717
366
|
versionNumber: zod.ZodNumber;
|
|
718
367
|
name: zod.ZodString;
|
|
719
368
|
description: zod.ZodString;
|
|
720
|
-
status: zod.ZodEnum<
|
|
369
|
+
status: zod.ZodEnum<{
|
|
370
|
+
visible: "visible";
|
|
371
|
+
invisible: "invisible";
|
|
372
|
+
deleted: "deleted";
|
|
373
|
+
}>;
|
|
721
374
|
publicTicket: zod.ZodBoolean;
|
|
722
|
-
visibleToManager: zod.ZodEnum<
|
|
375
|
+
visibleToManager: zod.ZodEnum<{
|
|
376
|
+
none: "none";
|
|
377
|
+
direct: "direct";
|
|
378
|
+
all: "all";
|
|
379
|
+
}>;
|
|
723
380
|
visibleToTeamMembers: zod.ZodBoolean;
|
|
724
381
|
titleDescription: zod.ZodNullable<zod.ZodString>;
|
|
725
382
|
ticketNumberFormat: zod.ZodNullable<zod.ZodString>;
|
|
726
383
|
overwritable: zod.ZodBoolean;
|
|
727
384
|
createdAt: zod.ZodString;
|
|
728
385
|
updatedAt: zod.ZodString;
|
|
729
|
-
titleInputMode: zod.ZodEnum<
|
|
386
|
+
titleInputMode: zod.ZodEnum<{
|
|
387
|
+
input: "input";
|
|
388
|
+
none: "none";
|
|
389
|
+
calculate: "calculate";
|
|
390
|
+
}>;
|
|
730
391
|
titleFormula: zod.ZodNullable<zod.ZodString>;
|
|
731
392
|
allowEditingOfViewers: zod.ZodDefault<zod.ZodBoolean>;
|
|
732
393
|
author: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
@@ -741,57 +402,18 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
741
402
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
742
403
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
743
404
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
744
|
-
},
|
|
745
|
-
|
|
746
|
-
"
|
|
747
|
-
"
|
|
748
|
-
|
|
749
|
-
"
|
|
750
|
-
"64x64": string | null;
|
|
751
|
-
"32x32": string | null;
|
|
405
|
+
}, zod.core.$strip>;
|
|
406
|
+
status: zod.ZodEnum<{
|
|
407
|
+
invited: "invited";
|
|
408
|
+
activated: "activated";
|
|
409
|
+
suspended: "suspended";
|
|
410
|
+
deactivated: "deactivated";
|
|
752
411
|
}>;
|
|
753
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
754
412
|
locale: zod.ZodString;
|
|
755
413
|
createdAt: zod.ZodString;
|
|
756
414
|
updatedAt: zod.ZodString;
|
|
757
415
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
758
|
-
},
|
|
759
|
-
code: string;
|
|
760
|
-
id: string;
|
|
761
|
-
image: {
|
|
762
|
-
"100x100": string | null;
|
|
763
|
-
"64x64": string | null;
|
|
764
|
-
"32x32": string | null;
|
|
765
|
-
};
|
|
766
|
-
email: string;
|
|
767
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
768
|
-
firstName: string;
|
|
769
|
-
lastName: string;
|
|
770
|
-
fullName: string;
|
|
771
|
-
locale: string;
|
|
772
|
-
createdAt: string;
|
|
773
|
-
updatedAt: string;
|
|
774
|
-
employeeId?: string | null | undefined;
|
|
775
|
-
deactivatedAt?: string | null | undefined;
|
|
776
|
-
}, {
|
|
777
|
-
code: string;
|
|
778
|
-
id: string;
|
|
779
|
-
image: {
|
|
780
|
-
"100x100": string | null;
|
|
781
|
-
"64x64": string | null;
|
|
782
|
-
"32x32": string | null;
|
|
783
|
-
};
|
|
784
|
-
email: string;
|
|
785
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
786
|
-
firstName: string;
|
|
787
|
-
lastName: string;
|
|
788
|
-
fullName: string;
|
|
789
|
-
locale: string;
|
|
790
|
-
createdAt: string;
|
|
791
|
-
updatedAt: string;
|
|
792
|
-
employeeId?: string | null | undefined;
|
|
793
|
-
deactivatedAt?: string | null | undefined;
|
|
794
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
416
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
795
417
|
versionAuthor: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
796
418
|
id: zod.ZodString;
|
|
797
419
|
email: zod.ZodString;
|
|
@@ -804,57 +426,18 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
804
426
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
805
427
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
806
428
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
807
|
-
},
|
|
808
|
-
|
|
809
|
-
"
|
|
810
|
-
"
|
|
811
|
-
|
|
812
|
-
"
|
|
813
|
-
"64x64": string | null;
|
|
814
|
-
"32x32": string | null;
|
|
429
|
+
}, zod.core.$strip>;
|
|
430
|
+
status: zod.ZodEnum<{
|
|
431
|
+
invited: "invited";
|
|
432
|
+
activated: "activated";
|
|
433
|
+
suspended: "suspended";
|
|
434
|
+
deactivated: "deactivated";
|
|
815
435
|
}>;
|
|
816
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
817
436
|
locale: zod.ZodString;
|
|
818
437
|
createdAt: zod.ZodString;
|
|
819
438
|
updatedAt: zod.ZodString;
|
|
820
439
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
821
|
-
},
|
|
822
|
-
code: string;
|
|
823
|
-
id: string;
|
|
824
|
-
image: {
|
|
825
|
-
"100x100": string | null;
|
|
826
|
-
"64x64": string | null;
|
|
827
|
-
"32x32": string | null;
|
|
828
|
-
};
|
|
829
|
-
email: string;
|
|
830
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
831
|
-
firstName: string;
|
|
832
|
-
lastName: string;
|
|
833
|
-
fullName: string;
|
|
834
|
-
locale: string;
|
|
835
|
-
createdAt: string;
|
|
836
|
-
updatedAt: string;
|
|
837
|
-
employeeId?: string | null | undefined;
|
|
838
|
-
deactivatedAt?: string | null | undefined;
|
|
839
|
-
}, {
|
|
840
|
-
code: string;
|
|
841
|
-
id: string;
|
|
842
|
-
image: {
|
|
843
|
-
"100x100": string | null;
|
|
844
|
-
"64x64": string | null;
|
|
845
|
-
"32x32": string | null;
|
|
846
|
-
};
|
|
847
|
-
email: string;
|
|
848
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
849
|
-
firstName: string;
|
|
850
|
-
lastName: string;
|
|
851
|
-
fullName: string;
|
|
852
|
-
locale: string;
|
|
853
|
-
createdAt: string;
|
|
854
|
-
updatedAt: string;
|
|
855
|
-
employeeId?: string | null | undefined;
|
|
856
|
-
deactivatedAt?: string | null | undefined;
|
|
857
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
440
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
858
441
|
folder: zod.ZodObject<{
|
|
859
442
|
id: zod.ZodString;
|
|
860
443
|
name: zod.ZodString;
|
|
@@ -865,122 +448,19 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
865
448
|
pipelinesCount: zod.ZodNumber;
|
|
866
449
|
createdAt: zod.ZodString;
|
|
867
450
|
updatedAt: zod.ZodString;
|
|
868
|
-
},
|
|
869
|
-
code: string;
|
|
870
|
-
name: string;
|
|
871
|
-
id: string;
|
|
872
|
-
createdAt: string;
|
|
873
|
-
updatedAt: string;
|
|
874
|
-
workflowsCount: number;
|
|
875
|
-
routesCount: number;
|
|
876
|
-
pipelinesCount: number;
|
|
877
|
-
description?: string | null | undefined;
|
|
878
|
-
}, {
|
|
879
|
-
code: string;
|
|
880
|
-
name: string;
|
|
881
|
-
id: string;
|
|
882
|
-
createdAt: string;
|
|
883
|
-
updatedAt: string;
|
|
884
|
-
workflowsCount: number;
|
|
885
|
-
routesCount: number;
|
|
886
|
-
pipelinesCount: number;
|
|
887
|
-
description?: string | null | undefined;
|
|
888
|
-
}>;
|
|
451
|
+
}, zod.core.$strip>;
|
|
889
452
|
categories: zod.ZodArray<zod.ZodObject<{
|
|
890
453
|
id: zod.ZodString;
|
|
891
454
|
name: zod.ZodString;
|
|
892
455
|
createdAt: zod.ZodString;
|
|
893
456
|
updatedAt: zod.ZodString;
|
|
894
|
-
},
|
|
895
|
-
|
|
896
|
-
id: string;
|
|
897
|
-
createdAt: string;
|
|
898
|
-
updatedAt: string;
|
|
899
|
-
}, {
|
|
900
|
-
name: string;
|
|
901
|
-
id: string;
|
|
902
|
-
createdAt: string;
|
|
903
|
-
updatedAt: string;
|
|
904
|
-
}>, "many">;
|
|
905
|
-
}, "strip", zod.ZodTypeAny, {
|
|
906
|
-
code: string;
|
|
907
|
-
name: string;
|
|
908
|
-
id: string;
|
|
909
|
-
description: string;
|
|
910
|
-
status: "visible" | "invisible" | "deleted";
|
|
911
|
-
createdAt: string;
|
|
912
|
-
updatedAt: string;
|
|
913
|
-
versionId: string;
|
|
914
|
-
versionNumber: number;
|
|
915
|
-
publicTicket: boolean;
|
|
916
|
-
visibleToManager: "direct" | "all" | "none";
|
|
917
|
-
visibleToTeamMembers: boolean;
|
|
918
|
-
titleDescription: string | null;
|
|
919
|
-
ticketNumberFormat: string | null;
|
|
920
|
-
overwritable: boolean;
|
|
921
|
-
titleInputMode: "input" | "none" | "calculate";
|
|
922
|
-
titleFormula: string | null;
|
|
923
|
-
allowEditingOfViewers: boolean;
|
|
924
|
-
folder: {
|
|
925
|
-
code: string;
|
|
926
|
-
name: string;
|
|
927
|
-
id: string;
|
|
928
|
-
createdAt: string;
|
|
929
|
-
updatedAt: string;
|
|
930
|
-
workflowsCount: number;
|
|
931
|
-
routesCount: number;
|
|
932
|
-
pipelinesCount: number;
|
|
933
|
-
description?: string | null | undefined;
|
|
934
|
-
};
|
|
935
|
-
categories: {
|
|
936
|
-
name: string;
|
|
937
|
-
id: string;
|
|
938
|
-
createdAt: string;
|
|
939
|
-
updatedAt: string;
|
|
940
|
-
}[];
|
|
941
|
-
author?: any;
|
|
942
|
-
versionAuthor?: any;
|
|
943
|
-
}, {
|
|
944
|
-
code: string;
|
|
945
|
-
name: string;
|
|
946
|
-
id: string;
|
|
947
|
-
description: string;
|
|
948
|
-
status: "visible" | "invisible" | "deleted";
|
|
949
|
-
createdAt: string;
|
|
950
|
-
updatedAt: string;
|
|
951
|
-
versionId: string;
|
|
952
|
-
versionNumber: number;
|
|
953
|
-
publicTicket: boolean;
|
|
954
|
-
visibleToManager: "direct" | "all" | "none";
|
|
955
|
-
visibleToTeamMembers: boolean;
|
|
956
|
-
titleDescription: string | null;
|
|
957
|
-
ticketNumberFormat: string | null;
|
|
958
|
-
overwritable: boolean;
|
|
959
|
-
titleInputMode: "input" | "none" | "calculate";
|
|
960
|
-
titleFormula: string | null;
|
|
961
|
-
folder: {
|
|
962
|
-
code: string;
|
|
963
|
-
name: string;
|
|
964
|
-
id: string;
|
|
965
|
-
createdAt: string;
|
|
966
|
-
updatedAt: string;
|
|
967
|
-
workflowsCount: number;
|
|
968
|
-
routesCount: number;
|
|
969
|
-
pipelinesCount: number;
|
|
970
|
-
description?: string | null | undefined;
|
|
971
|
-
};
|
|
972
|
-
categories: {
|
|
973
|
-
name: string;
|
|
974
|
-
id: string;
|
|
975
|
-
createdAt: string;
|
|
976
|
-
updatedAt: string;
|
|
977
|
-
}[];
|
|
978
|
-
author?: any;
|
|
979
|
-
allowEditingOfViewers?: boolean | undefined;
|
|
980
|
-
versionAuthor?: any;
|
|
981
|
-
}>, zod.ZodObject<{
|
|
457
|
+
}, zod.core.$strip>>;
|
|
458
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
982
459
|
sectionList: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
983
|
-
sectionType: zod.ZodEnum<
|
|
460
|
+
sectionType: zod.ZodEnum<{
|
|
461
|
+
form: "form";
|
|
462
|
+
slip: "slip";
|
|
463
|
+
}>;
|
|
984
464
|
title: zod.ZodNullable<zod.ZodString>;
|
|
985
465
|
description: zod.ZodNullable<zod.ZodString>;
|
|
986
466
|
id: zod.ZodOptional<zod.ZodString>;
|
|
@@ -988,13 +468,32 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
988
468
|
id: zod.ZodString;
|
|
989
469
|
title: zod.ZodString;
|
|
990
470
|
description: zod.ZodNullable<zod.ZodString>;
|
|
991
|
-
fieldType: zod.ZodEnum<
|
|
471
|
+
fieldType: zod.ZodEnum<{
|
|
472
|
+
number: "number";
|
|
473
|
+
text: "text";
|
|
474
|
+
date: "date";
|
|
475
|
+
file: "file";
|
|
476
|
+
user: "user";
|
|
477
|
+
team: "team";
|
|
478
|
+
master: "master";
|
|
479
|
+
text_long: "text_long";
|
|
480
|
+
integer: "integer";
|
|
481
|
+
checkbox: "checkbox";
|
|
482
|
+
pull_down: "pull_down";
|
|
483
|
+
ticket: "ticket";
|
|
484
|
+
calculation: "calculation";
|
|
485
|
+
button_api: "button_api";
|
|
486
|
+
button_kintone: "button_kintone";
|
|
487
|
+
}>;
|
|
992
488
|
required: zod.ZodBoolean;
|
|
993
489
|
approver: zod.ZodBoolean;
|
|
994
490
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
995
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
491
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
996
492
|
code: zod.ZodString;
|
|
997
|
-
size: zod.ZodEnum<
|
|
493
|
+
size: zod.ZodEnum<{
|
|
494
|
+
full: "full";
|
|
495
|
+
half: "half";
|
|
496
|
+
}>;
|
|
998
497
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
999
498
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
1000
499
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
@@ -1008,55 +507,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1008
507
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
1009
508
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1010
509
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1011
|
-
},
|
|
1012
|
-
code: string;
|
|
1013
|
-
required: boolean;
|
|
1014
|
-
id: string;
|
|
1015
|
-
title: string;
|
|
1016
|
-
prefix: string | null;
|
|
1017
|
-
options: string[] | null;
|
|
1018
|
-
size: "full" | "half";
|
|
1019
|
-
description: string | null;
|
|
1020
|
-
minLength: number | null;
|
|
1021
|
-
maxLength: number | null;
|
|
1022
|
-
defaultValue: string | null;
|
|
1023
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1024
|
-
approver: boolean;
|
|
1025
|
-
regexpFormat: string | null;
|
|
1026
|
-
formula: string | null;
|
|
1027
|
-
minValue: number | null;
|
|
1028
|
-
maxValue: number | null;
|
|
1029
|
-
decimalDigit: number | null;
|
|
1030
|
-
delimited: boolean | null;
|
|
1031
|
-
suffix: string | null;
|
|
1032
|
-
hidden?: boolean | null | undefined;
|
|
1033
|
-
author?: boolean | undefined;
|
|
1034
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1035
|
-
}, {
|
|
1036
|
-
code: string;
|
|
1037
|
-
required: boolean;
|
|
1038
|
-
id: string;
|
|
1039
|
-
title: string;
|
|
1040
|
-
prefix: string | null;
|
|
1041
|
-
options: string[] | null;
|
|
1042
|
-
size: "full" | "half";
|
|
1043
|
-
description: string | null;
|
|
1044
|
-
minLength: number | null;
|
|
1045
|
-
maxLength: number | null;
|
|
1046
|
-
defaultValue: string | null;
|
|
1047
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1048
|
-
approver: boolean;
|
|
1049
|
-
regexpFormat: string | null;
|
|
1050
|
-
formula: string | null;
|
|
1051
|
-
minValue: number | null;
|
|
1052
|
-
maxValue: number | null;
|
|
1053
|
-
decimalDigit: number | null;
|
|
1054
|
-
delimited: boolean | null;
|
|
1055
|
-
suffix: string | null;
|
|
1056
|
-
hidden?: boolean | null | undefined;
|
|
1057
|
-
author?: boolean | undefined;
|
|
1058
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1059
|
-
}>, zod.ZodObject<{
|
|
510
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
1060
511
|
generalMaster: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
1061
512
|
id: zod.ZodString;
|
|
1062
513
|
code: zod.ZodString;
|
|
@@ -1069,74 +520,22 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1069
520
|
title: zod.ZodString;
|
|
1070
521
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1071
522
|
code: zod.ZodString;
|
|
1072
|
-
fieldType: zod.ZodEnum<
|
|
523
|
+
fieldType: zod.ZodEnum<{
|
|
524
|
+
number: "number";
|
|
525
|
+
text: "text";
|
|
526
|
+
date: "date";
|
|
527
|
+
text_long: "text_long";
|
|
528
|
+
integer: "integer";
|
|
529
|
+
checkbox: "checkbox";
|
|
530
|
+
pull_down: "pull_down";
|
|
531
|
+
}>;
|
|
1073
532
|
required: zod.ZodBoolean;
|
|
1074
533
|
visible: zod.ZodBoolean;
|
|
1075
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
534
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1076
535
|
createdAt: zod.ZodString;
|
|
1077
536
|
updatedAt: zod.ZodString;
|
|
1078
|
-
},
|
|
1079
|
-
|
|
1080
|
-
required: boolean;
|
|
1081
|
-
id: string;
|
|
1082
|
-
visible: boolean;
|
|
1083
|
-
title: string;
|
|
1084
|
-
options: string[] | null;
|
|
1085
|
-
description: string | null;
|
|
1086
|
-
createdAt: string;
|
|
1087
|
-
updatedAt: string;
|
|
1088
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1089
|
-
}, {
|
|
1090
|
-
code: string;
|
|
1091
|
-
required: boolean;
|
|
1092
|
-
id: string;
|
|
1093
|
-
visible: boolean;
|
|
1094
|
-
title: string;
|
|
1095
|
-
options: string[] | null;
|
|
1096
|
-
description: string | null;
|
|
1097
|
-
createdAt: string;
|
|
1098
|
-
updatedAt: string;
|
|
1099
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1100
|
-
}>, "many">;
|
|
1101
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1102
|
-
code: string;
|
|
1103
|
-
name: string;
|
|
1104
|
-
id: string;
|
|
1105
|
-
description: string | null;
|
|
1106
|
-
createdAt: string;
|
|
1107
|
-
updatedAt: string;
|
|
1108
|
-
fields: {
|
|
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
|
-
}, {
|
|
1121
|
-
code: string;
|
|
1122
|
-
name: string;
|
|
1123
|
-
id: string;
|
|
1124
|
-
description: string | null;
|
|
1125
|
-
createdAt: string;
|
|
1126
|
-
updatedAt: string;
|
|
1127
|
-
fields: {
|
|
1128
|
-
code: string;
|
|
1129
|
-
required: boolean;
|
|
1130
|
-
id: string;
|
|
1131
|
-
visible: boolean;
|
|
1132
|
-
title: string;
|
|
1133
|
-
options: string[] | null;
|
|
1134
|
-
description: string | null;
|
|
1135
|
-
createdAt: string;
|
|
1136
|
-
updatedAt: string;
|
|
1137
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1138
|
-
}[];
|
|
1139
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
537
|
+
}, zod.core.$strip>>;
|
|
538
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
1140
539
|
defaultGeneralMasterItem: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
1141
540
|
id: zod.ZodString;
|
|
1142
541
|
code: zod.ZodString;
|
|
@@ -1148,7 +547,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1148
547
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
1149
548
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
1150
549
|
id: zod.ZodString;
|
|
1151
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
550
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
1152
551
|
createdAt: zod.ZodString;
|
|
1153
552
|
updatedAt: zod.ZodString;
|
|
1154
553
|
field: zod.ZodObject<{
|
|
@@ -1156,139 +555,37 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1156
555
|
title: zod.ZodString;
|
|
1157
556
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1158
557
|
code: zod.ZodString;
|
|
1159
|
-
fieldType: zod.ZodEnum<
|
|
558
|
+
fieldType: zod.ZodEnum<{
|
|
559
|
+
number: "number";
|
|
560
|
+
text: "text";
|
|
561
|
+
date: "date";
|
|
562
|
+
text_long: "text_long";
|
|
563
|
+
integer: "integer";
|
|
564
|
+
checkbox: "checkbox";
|
|
565
|
+
pull_down: "pull_down";
|
|
566
|
+
}>;
|
|
1160
567
|
required: zod.ZodBoolean;
|
|
1161
568
|
visible: zod.ZodBoolean;
|
|
1162
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
569
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1163
570
|
createdAt: zod.ZodString;
|
|
1164
571
|
updatedAt: zod.ZodString;
|
|
1165
|
-
},
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
id: string;
|
|
1169
|
-
visible: boolean;
|
|
1170
|
-
title: string;
|
|
1171
|
-
options: string[] | null;
|
|
1172
|
-
description: string | null;
|
|
1173
|
-
createdAt: string;
|
|
1174
|
-
updatedAt: string;
|
|
1175
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1176
|
-
}, {
|
|
1177
|
-
code: string;
|
|
1178
|
-
required: boolean;
|
|
1179
|
-
id: string;
|
|
1180
|
-
visible: boolean;
|
|
1181
|
-
title: string;
|
|
1182
|
-
options: string[] | null;
|
|
1183
|
-
description: string | null;
|
|
1184
|
-
createdAt: string;
|
|
1185
|
-
updatedAt: string;
|
|
1186
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1187
|
-
}>;
|
|
1188
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1189
|
-
id: string;
|
|
1190
|
-
value: string | string[] | null;
|
|
1191
|
-
field: {
|
|
1192
|
-
code: string;
|
|
1193
|
-
required: boolean;
|
|
1194
|
-
id: string;
|
|
1195
|
-
visible: boolean;
|
|
1196
|
-
title: string;
|
|
1197
|
-
options: string[] | null;
|
|
1198
|
-
description: string | null;
|
|
1199
|
-
createdAt: string;
|
|
1200
|
-
updatedAt: string;
|
|
1201
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1202
|
-
};
|
|
1203
|
-
createdAt: string;
|
|
1204
|
-
updatedAt: string;
|
|
1205
|
-
}, {
|
|
1206
|
-
id: string;
|
|
1207
|
-
value: string | string[] | null;
|
|
1208
|
-
field: {
|
|
1209
|
-
code: string;
|
|
1210
|
-
required: boolean;
|
|
1211
|
-
id: string;
|
|
1212
|
-
visible: boolean;
|
|
1213
|
-
title: string;
|
|
1214
|
-
options: string[] | null;
|
|
1215
|
-
description: string | null;
|
|
1216
|
-
createdAt: string;
|
|
1217
|
-
updatedAt: string;
|
|
1218
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1219
|
-
};
|
|
1220
|
-
createdAt: string;
|
|
1221
|
-
updatedAt: string;
|
|
1222
|
-
}>, "many">;
|
|
1223
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1224
|
-
code: string;
|
|
1225
|
-
name: string;
|
|
1226
|
-
id: string;
|
|
1227
|
-
description: string | null;
|
|
1228
|
-
createdAt: string;
|
|
1229
|
-
updatedAt: string;
|
|
1230
|
-
startsOn: string | null;
|
|
1231
|
-
endsOn: string | null;
|
|
1232
|
-
inputs: {
|
|
1233
|
-
id: string;
|
|
1234
|
-
value: string | string[] | null;
|
|
1235
|
-
field: {
|
|
1236
|
-
code: string;
|
|
1237
|
-
required: boolean;
|
|
1238
|
-
id: string;
|
|
1239
|
-
visible: boolean;
|
|
1240
|
-
title: string;
|
|
1241
|
-
options: string[] | null;
|
|
1242
|
-
description: string | null;
|
|
1243
|
-
createdAt: string;
|
|
1244
|
-
updatedAt: string;
|
|
1245
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1246
|
-
};
|
|
1247
|
-
createdAt: string;
|
|
1248
|
-
updatedAt: string;
|
|
1249
|
-
}[];
|
|
1250
|
-
}, {
|
|
1251
|
-
code: string;
|
|
1252
|
-
name: string;
|
|
1253
|
-
id: string;
|
|
1254
|
-
description: string | null;
|
|
1255
|
-
createdAt: string;
|
|
1256
|
-
updatedAt: string;
|
|
1257
|
-
startsOn: string | null;
|
|
1258
|
-
endsOn: string | null;
|
|
1259
|
-
inputs: {
|
|
1260
|
-
id: string;
|
|
1261
|
-
value: string | string[] | null;
|
|
1262
|
-
field: {
|
|
1263
|
-
code: string;
|
|
1264
|
-
required: boolean;
|
|
1265
|
-
id: string;
|
|
1266
|
-
visible: boolean;
|
|
1267
|
-
title: string;
|
|
1268
|
-
options: string[] | null;
|
|
1269
|
-
description: string | null;
|
|
1270
|
-
createdAt: string;
|
|
1271
|
-
updatedAt: string;
|
|
1272
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1273
|
-
};
|
|
1274
|
-
createdAt: string;
|
|
1275
|
-
updatedAt: string;
|
|
1276
|
-
}[];
|
|
1277
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
572
|
+
}, zod.core.$strip>;
|
|
573
|
+
}, zod.core.$strip>>;
|
|
574
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
1278
575
|
externalApiSetting: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
1279
576
|
id: zod.ZodString;
|
|
1280
|
-
httpMethod: zod.ZodEnum<
|
|
577
|
+
httpMethod: zod.ZodEnum<{
|
|
578
|
+
delete: "delete";
|
|
579
|
+
get: "get";
|
|
580
|
+
post: "post";
|
|
581
|
+
put: "put";
|
|
582
|
+
patch: "patch";
|
|
583
|
+
}>;
|
|
1281
584
|
url: zod.ZodString;
|
|
1282
585
|
headers: zod.ZodArray<zod.ZodObject<{
|
|
1283
586
|
key: zod.ZodString;
|
|
1284
587
|
value: zod.ZodString;
|
|
1285
|
-
},
|
|
1286
|
-
key: string;
|
|
1287
|
-
value: string;
|
|
1288
|
-
}, {
|
|
1289
|
-
key: string;
|
|
1290
|
-
value: string;
|
|
1291
|
-
}>, "many">;
|
|
588
|
+
}, zod.core.$strip>>;
|
|
1292
589
|
responseArray: zod.ZodBoolean;
|
|
1293
590
|
arrayJsonPath: zod.ZodNullable<zod.ZodString>;
|
|
1294
591
|
mappings: zod.ZodArray<zod.ZodObject<{
|
|
@@ -1296,13 +593,32 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1296
593
|
id: zod.ZodString;
|
|
1297
594
|
title: zod.ZodString;
|
|
1298
595
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1299
|
-
fieldType: zod.ZodEnum<
|
|
596
|
+
fieldType: zod.ZodEnum<{
|
|
597
|
+
number: "number";
|
|
598
|
+
text: "text";
|
|
599
|
+
date: "date";
|
|
600
|
+
file: "file";
|
|
601
|
+
user: "user";
|
|
602
|
+
team: "team";
|
|
603
|
+
master: "master";
|
|
604
|
+
text_long: "text_long";
|
|
605
|
+
integer: "integer";
|
|
606
|
+
checkbox: "checkbox";
|
|
607
|
+
pull_down: "pull_down";
|
|
608
|
+
ticket: "ticket";
|
|
609
|
+
calculation: "calculation";
|
|
610
|
+
button_api: "button_api";
|
|
611
|
+
button_kintone: "button_kintone";
|
|
612
|
+
}>;
|
|
1300
613
|
required: zod.ZodBoolean;
|
|
1301
614
|
approver: zod.ZodBoolean;
|
|
1302
615
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
1303
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
616
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1304
617
|
code: zod.ZodString;
|
|
1305
|
-
size: zod.ZodEnum<
|
|
618
|
+
size: zod.ZodEnum<{
|
|
619
|
+
full: "full";
|
|
620
|
+
half: "half";
|
|
621
|
+
}>;
|
|
1306
622
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
1307
623
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
1308
624
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
@@ -1316,211 +632,44 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1316
632
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
1317
633
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1318
634
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1319
|
-
},
|
|
1320
|
-
code: string;
|
|
1321
|
-
required: boolean;
|
|
1322
|
-
id: string;
|
|
1323
|
-
title: string;
|
|
1324
|
-
prefix: string | null;
|
|
1325
|
-
options: string[] | null;
|
|
1326
|
-
size: "full" | "half";
|
|
1327
|
-
description: string | null;
|
|
1328
|
-
minLength: number | null;
|
|
1329
|
-
maxLength: number | null;
|
|
1330
|
-
defaultValue: string | null;
|
|
1331
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1332
|
-
approver: boolean;
|
|
1333
|
-
regexpFormat: string | null;
|
|
1334
|
-
formula: string | null;
|
|
1335
|
-
minValue: number | null;
|
|
1336
|
-
maxValue: number | null;
|
|
1337
|
-
decimalDigit: number | null;
|
|
1338
|
-
delimited: boolean | null;
|
|
1339
|
-
suffix: string | null;
|
|
1340
|
-
hidden?: boolean | null | undefined;
|
|
1341
|
-
author?: boolean | undefined;
|
|
1342
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1343
|
-
}, {
|
|
1344
|
-
code: string;
|
|
1345
|
-
required: boolean;
|
|
1346
|
-
id: string;
|
|
1347
|
-
title: string;
|
|
1348
|
-
prefix: string | null;
|
|
1349
|
-
options: string[] | null;
|
|
1350
|
-
size: "full" | "half";
|
|
1351
|
-
description: string | null;
|
|
1352
|
-
minLength: number | null;
|
|
1353
|
-
maxLength: number | null;
|
|
1354
|
-
defaultValue: string | null;
|
|
1355
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1356
|
-
approver: boolean;
|
|
1357
|
-
regexpFormat: string | null;
|
|
1358
|
-
formula: string | null;
|
|
1359
|
-
minValue: number | null;
|
|
1360
|
-
maxValue: number | null;
|
|
1361
|
-
decimalDigit: number | null;
|
|
1362
|
-
delimited: boolean | null;
|
|
1363
|
-
suffix: string | null;
|
|
1364
|
-
hidden?: boolean | null | undefined;
|
|
1365
|
-
author?: boolean | undefined;
|
|
1366
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1367
|
-
}>;
|
|
635
|
+
}, zod.core.$strip>;
|
|
1368
636
|
jsonPath: zod.ZodString;
|
|
1369
637
|
displayInTable: zod.ZodBoolean;
|
|
1370
638
|
title: zod.ZodNullable<zod.ZodString>;
|
|
1371
|
-
},
|
|
1372
|
-
|
|
1373
|
-
formField: {
|
|
1374
|
-
code: string;
|
|
1375
|
-
required: boolean;
|
|
1376
|
-
id: string;
|
|
1377
|
-
title: string;
|
|
1378
|
-
prefix: string | null;
|
|
1379
|
-
options: string[] | null;
|
|
1380
|
-
size: "full" | "half";
|
|
1381
|
-
description: string | null;
|
|
1382
|
-
minLength: number | null;
|
|
1383
|
-
maxLength: number | null;
|
|
1384
|
-
defaultValue: string | null;
|
|
1385
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1386
|
-
approver: boolean;
|
|
1387
|
-
regexpFormat: string | null;
|
|
1388
|
-
formula: string | null;
|
|
1389
|
-
minValue: number | null;
|
|
1390
|
-
maxValue: number | null;
|
|
1391
|
-
decimalDigit: number | null;
|
|
1392
|
-
delimited: boolean | null;
|
|
1393
|
-
suffix: string | null;
|
|
1394
|
-
hidden?: boolean | null | undefined;
|
|
1395
|
-
author?: boolean | undefined;
|
|
1396
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1397
|
-
};
|
|
1398
|
-
jsonPath: string;
|
|
1399
|
-
displayInTable: boolean;
|
|
1400
|
-
}, {
|
|
1401
|
-
title: string | null;
|
|
1402
|
-
formField: {
|
|
1403
|
-
code: string;
|
|
1404
|
-
required: boolean;
|
|
1405
|
-
id: string;
|
|
1406
|
-
title: string;
|
|
1407
|
-
prefix: string | null;
|
|
1408
|
-
options: string[] | null;
|
|
1409
|
-
size: "full" | "half";
|
|
1410
|
-
description: string | null;
|
|
1411
|
-
minLength: number | null;
|
|
1412
|
-
maxLength: number | null;
|
|
1413
|
-
defaultValue: string | null;
|
|
1414
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1415
|
-
approver: boolean;
|
|
1416
|
-
regexpFormat: string | null;
|
|
1417
|
-
formula: string | null;
|
|
1418
|
-
minValue: number | null;
|
|
1419
|
-
maxValue: number | null;
|
|
1420
|
-
decimalDigit: number | null;
|
|
1421
|
-
delimited: boolean | null;
|
|
1422
|
-
suffix: string | null;
|
|
1423
|
-
hidden?: boolean | null | undefined;
|
|
1424
|
-
author?: boolean | undefined;
|
|
1425
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1426
|
-
};
|
|
1427
|
-
jsonPath: string;
|
|
1428
|
-
displayInTable: boolean;
|
|
1429
|
-
}>, "many">;
|
|
1430
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1431
|
-
id: string;
|
|
1432
|
-
url: string;
|
|
1433
|
-
headers: {
|
|
1434
|
-
key: string;
|
|
1435
|
-
value: string;
|
|
1436
|
-
}[];
|
|
1437
|
-
httpMethod: "get" | "delete" | "post" | "put" | "patch";
|
|
1438
|
-
responseArray: boolean;
|
|
1439
|
-
arrayJsonPath: string | null;
|
|
1440
|
-
mappings: {
|
|
1441
|
-
title: string | null;
|
|
1442
|
-
formField: {
|
|
1443
|
-
code: string;
|
|
1444
|
-
required: boolean;
|
|
1445
|
-
id: string;
|
|
1446
|
-
title: string;
|
|
1447
|
-
prefix: string | null;
|
|
1448
|
-
options: string[] | null;
|
|
1449
|
-
size: "full" | "half";
|
|
1450
|
-
description: string | null;
|
|
1451
|
-
minLength: number | null;
|
|
1452
|
-
maxLength: number | null;
|
|
1453
|
-
defaultValue: string | null;
|
|
1454
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1455
|
-
approver: boolean;
|
|
1456
|
-
regexpFormat: string | null;
|
|
1457
|
-
formula: string | null;
|
|
1458
|
-
minValue: number | null;
|
|
1459
|
-
maxValue: number | null;
|
|
1460
|
-
decimalDigit: number | null;
|
|
1461
|
-
delimited: boolean | null;
|
|
1462
|
-
suffix: string | null;
|
|
1463
|
-
hidden?: boolean | null | undefined;
|
|
1464
|
-
author?: boolean | undefined;
|
|
1465
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1466
|
-
};
|
|
1467
|
-
jsonPath: string;
|
|
1468
|
-
displayInTable: boolean;
|
|
1469
|
-
}[];
|
|
1470
|
-
}, {
|
|
1471
|
-
id: string;
|
|
1472
|
-
url: string;
|
|
1473
|
-
headers: {
|
|
1474
|
-
key: string;
|
|
1475
|
-
value: string;
|
|
1476
|
-
}[];
|
|
1477
|
-
httpMethod: "get" | "delete" | "post" | "put" | "patch";
|
|
1478
|
-
responseArray: boolean;
|
|
1479
|
-
arrayJsonPath: string | null;
|
|
1480
|
-
mappings: {
|
|
1481
|
-
title: string | null;
|
|
1482
|
-
formField: {
|
|
1483
|
-
code: string;
|
|
1484
|
-
required: boolean;
|
|
1485
|
-
id: string;
|
|
1486
|
-
title: string;
|
|
1487
|
-
prefix: string | null;
|
|
1488
|
-
options: string[] | null;
|
|
1489
|
-
size: "full" | "half";
|
|
1490
|
-
description: string | null;
|
|
1491
|
-
minLength: number | null;
|
|
1492
|
-
maxLength: number | null;
|
|
1493
|
-
defaultValue: string | null;
|
|
1494
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1495
|
-
approver: boolean;
|
|
1496
|
-
regexpFormat: string | null;
|
|
1497
|
-
formula: string | null;
|
|
1498
|
-
minValue: number | null;
|
|
1499
|
-
maxValue: number | null;
|
|
1500
|
-
decimalDigit: number | null;
|
|
1501
|
-
delimited: boolean | null;
|
|
1502
|
-
suffix: string | null;
|
|
1503
|
-
hidden?: boolean | null | undefined;
|
|
1504
|
-
author?: boolean | undefined;
|
|
1505
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1506
|
-
};
|
|
1507
|
-
jsonPath: string;
|
|
1508
|
-
displayInTable: boolean;
|
|
1509
|
-
}[];
|
|
1510
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
639
|
+
}, zod.core.$strip>>;
|
|
640
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
1511
641
|
kintoneAppSetting: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
1512
642
|
id: zod.ZodString;
|
|
1513
643
|
formField: zod.ZodObject<{
|
|
1514
644
|
id: zod.ZodString;
|
|
1515
645
|
title: zod.ZodString;
|
|
1516
646
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1517
|
-
fieldType: zod.ZodEnum<
|
|
647
|
+
fieldType: zod.ZodEnum<{
|
|
648
|
+
number: "number";
|
|
649
|
+
text: "text";
|
|
650
|
+
date: "date";
|
|
651
|
+
file: "file";
|
|
652
|
+
user: "user";
|
|
653
|
+
team: "team";
|
|
654
|
+
master: "master";
|
|
655
|
+
text_long: "text_long";
|
|
656
|
+
integer: "integer";
|
|
657
|
+
checkbox: "checkbox";
|
|
658
|
+
pull_down: "pull_down";
|
|
659
|
+
ticket: "ticket";
|
|
660
|
+
calculation: "calculation";
|
|
661
|
+
button_api: "button_api";
|
|
662
|
+
button_kintone: "button_kintone";
|
|
663
|
+
}>;
|
|
1518
664
|
required: zod.ZodBoolean;
|
|
1519
665
|
approver: zod.ZodBoolean;
|
|
1520
666
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
1521
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
667
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1522
668
|
code: zod.ZodString;
|
|
1523
|
-
size: zod.ZodEnum<
|
|
669
|
+
size: zod.ZodEnum<{
|
|
670
|
+
full: "full";
|
|
671
|
+
half: "half";
|
|
672
|
+
}>;
|
|
1524
673
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
1525
674
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
1526
675
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
@@ -1534,71 +683,13 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1534
683
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
1535
684
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1536
685
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1537
|
-
},
|
|
1538
|
-
code: string;
|
|
1539
|
-
required: boolean;
|
|
1540
|
-
id: string;
|
|
1541
|
-
title: string;
|
|
1542
|
-
prefix: string | null;
|
|
1543
|
-
options: string[] | null;
|
|
1544
|
-
size: "full" | "half";
|
|
1545
|
-
description: string | null;
|
|
1546
|
-
minLength: number | null;
|
|
1547
|
-
maxLength: number | null;
|
|
1548
|
-
defaultValue: string | null;
|
|
1549
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1550
|
-
approver: boolean;
|
|
1551
|
-
regexpFormat: string | null;
|
|
1552
|
-
formula: string | null;
|
|
1553
|
-
minValue: number | null;
|
|
1554
|
-
maxValue: number | null;
|
|
1555
|
-
decimalDigit: number | null;
|
|
1556
|
-
delimited: boolean | null;
|
|
1557
|
-
suffix: string | null;
|
|
1558
|
-
hidden?: boolean | null | undefined;
|
|
1559
|
-
author?: boolean | undefined;
|
|
1560
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1561
|
-
}, {
|
|
1562
|
-
code: string;
|
|
1563
|
-
required: boolean;
|
|
1564
|
-
id: string;
|
|
1565
|
-
title: string;
|
|
1566
|
-
prefix: string | null;
|
|
1567
|
-
options: string[] | null;
|
|
1568
|
-
size: "full" | "half";
|
|
1569
|
-
description: string | null;
|
|
1570
|
-
minLength: number | null;
|
|
1571
|
-
maxLength: number | null;
|
|
1572
|
-
defaultValue: string | null;
|
|
1573
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1574
|
-
approver: boolean;
|
|
1575
|
-
regexpFormat: string | null;
|
|
1576
|
-
formula: string | null;
|
|
1577
|
-
minValue: number | null;
|
|
1578
|
-
maxValue: number | null;
|
|
1579
|
-
decimalDigit: number | null;
|
|
1580
|
-
delimited: boolean | null;
|
|
1581
|
-
suffix: string | null;
|
|
1582
|
-
hidden?: boolean | null | undefined;
|
|
1583
|
-
author?: boolean | undefined;
|
|
1584
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1585
|
-
}>;
|
|
686
|
+
}, zod.core.$strip>;
|
|
1586
687
|
kintoneApp: zod.ZodObject<{
|
|
1587
688
|
id: zod.ZodString;
|
|
1588
689
|
name: zod.ZodString;
|
|
1589
690
|
domain: zod.ZodString;
|
|
1590
691
|
appId: zod.ZodString;
|
|
1591
|
-
},
|
|
1592
|
-
name: string;
|
|
1593
|
-
id: string;
|
|
1594
|
-
domain: string;
|
|
1595
|
-
appId: string;
|
|
1596
|
-
}, {
|
|
1597
|
-
name: string;
|
|
1598
|
-
id: string;
|
|
1599
|
-
domain: string;
|
|
1600
|
-
appId: string;
|
|
1601
|
-
}>;
|
|
692
|
+
}, zod.core.$strip>;
|
|
1602
693
|
mappings: zod.ZodArray<zod.ZodObject<{
|
|
1603
694
|
id: zod.ZodString;
|
|
1604
695
|
displayInTable: zod.ZodBoolean;
|
|
@@ -1609,13 +700,32 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1609
700
|
id: zod.ZodString;
|
|
1610
701
|
title: zod.ZodString;
|
|
1611
702
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1612
|
-
fieldType: zod.ZodEnum<
|
|
703
|
+
fieldType: zod.ZodEnum<{
|
|
704
|
+
number: "number";
|
|
705
|
+
text: "text";
|
|
706
|
+
date: "date";
|
|
707
|
+
file: "file";
|
|
708
|
+
user: "user";
|
|
709
|
+
team: "team";
|
|
710
|
+
master: "master";
|
|
711
|
+
text_long: "text_long";
|
|
712
|
+
integer: "integer";
|
|
713
|
+
checkbox: "checkbox";
|
|
714
|
+
pull_down: "pull_down";
|
|
715
|
+
ticket: "ticket";
|
|
716
|
+
calculation: "calculation";
|
|
717
|
+
button_api: "button_api";
|
|
718
|
+
button_kintone: "button_kintone";
|
|
719
|
+
}>;
|
|
1613
720
|
required: zod.ZodBoolean;
|
|
1614
721
|
approver: zod.ZodBoolean;
|
|
1615
722
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
1616
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
723
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1617
724
|
code: zod.ZodString;
|
|
1618
|
-
size: zod.ZodEnum<
|
|
725
|
+
size: zod.ZodEnum<{
|
|
726
|
+
full: "full";
|
|
727
|
+
half: "half";
|
|
728
|
+
}>;
|
|
1619
729
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
1620
730
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
1621
731
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
@@ -1629,249 +739,9 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1629
739
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
1630
740
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1631
741
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1632
|
-
},
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
id: string;
|
|
1636
|
-
title: string;
|
|
1637
|
-
prefix: string | null;
|
|
1638
|
-
options: string[] | null;
|
|
1639
|
-
size: "full" | "half";
|
|
1640
|
-
description: string | null;
|
|
1641
|
-
minLength: number | null;
|
|
1642
|
-
maxLength: number | null;
|
|
1643
|
-
defaultValue: string | null;
|
|
1644
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1645
|
-
approver: boolean;
|
|
1646
|
-
regexpFormat: string | null;
|
|
1647
|
-
formula: string | null;
|
|
1648
|
-
minValue: number | null;
|
|
1649
|
-
maxValue: number | null;
|
|
1650
|
-
decimalDigit: number | null;
|
|
1651
|
-
delimited: boolean | null;
|
|
1652
|
-
suffix: string | null;
|
|
1653
|
-
hidden?: boolean | null | undefined;
|
|
1654
|
-
author?: boolean | undefined;
|
|
1655
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1656
|
-
}, {
|
|
1657
|
-
code: string;
|
|
1658
|
-
required: boolean;
|
|
1659
|
-
id: string;
|
|
1660
|
-
title: string;
|
|
1661
|
-
prefix: string | null;
|
|
1662
|
-
options: string[] | null;
|
|
1663
|
-
size: "full" | "half";
|
|
1664
|
-
description: string | null;
|
|
1665
|
-
minLength: number | null;
|
|
1666
|
-
maxLength: number | null;
|
|
1667
|
-
defaultValue: string | null;
|
|
1668
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1669
|
-
approver: boolean;
|
|
1670
|
-
regexpFormat: string | null;
|
|
1671
|
-
formula: string | null;
|
|
1672
|
-
minValue: number | null;
|
|
1673
|
-
maxValue: number | null;
|
|
1674
|
-
decimalDigit: number | null;
|
|
1675
|
-
delimited: boolean | null;
|
|
1676
|
-
suffix: string | null;
|
|
1677
|
-
hidden?: boolean | null | undefined;
|
|
1678
|
-
author?: boolean | undefined;
|
|
1679
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1680
|
-
}>;
|
|
1681
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1682
|
-
id: string;
|
|
1683
|
-
formField: {
|
|
1684
|
-
code: string;
|
|
1685
|
-
required: boolean;
|
|
1686
|
-
id: string;
|
|
1687
|
-
title: string;
|
|
1688
|
-
prefix: string | null;
|
|
1689
|
-
options: string[] | null;
|
|
1690
|
-
size: "full" | "half";
|
|
1691
|
-
description: string | null;
|
|
1692
|
-
minLength: number | null;
|
|
1693
|
-
maxLength: number | null;
|
|
1694
|
-
defaultValue: string | null;
|
|
1695
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1696
|
-
approver: boolean;
|
|
1697
|
-
regexpFormat: string | null;
|
|
1698
|
-
formula: string | null;
|
|
1699
|
-
minValue: number | null;
|
|
1700
|
-
maxValue: number | null;
|
|
1701
|
-
decimalDigit: number | null;
|
|
1702
|
-
delimited: boolean | null;
|
|
1703
|
-
suffix: string | null;
|
|
1704
|
-
hidden?: boolean | null | undefined;
|
|
1705
|
-
author?: boolean | undefined;
|
|
1706
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1707
|
-
};
|
|
1708
|
-
displayInTable: boolean;
|
|
1709
|
-
kintoneFieldCode: string;
|
|
1710
|
-
kintoneFieldName: string;
|
|
1711
|
-
kintoneFieldType: string;
|
|
1712
|
-
}, {
|
|
1713
|
-
id: string;
|
|
1714
|
-
formField: {
|
|
1715
|
-
code: string;
|
|
1716
|
-
required: boolean;
|
|
1717
|
-
id: string;
|
|
1718
|
-
title: string;
|
|
1719
|
-
prefix: string | null;
|
|
1720
|
-
options: string[] | null;
|
|
1721
|
-
size: "full" | "half";
|
|
1722
|
-
description: string | null;
|
|
1723
|
-
minLength: number | null;
|
|
1724
|
-
maxLength: number | null;
|
|
1725
|
-
defaultValue: string | null;
|
|
1726
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1727
|
-
approver: boolean;
|
|
1728
|
-
regexpFormat: string | null;
|
|
1729
|
-
formula: string | null;
|
|
1730
|
-
minValue: number | null;
|
|
1731
|
-
maxValue: number | null;
|
|
1732
|
-
decimalDigit: number | null;
|
|
1733
|
-
delimited: boolean | null;
|
|
1734
|
-
suffix: string | null;
|
|
1735
|
-
hidden?: boolean | null | undefined;
|
|
1736
|
-
author?: boolean | undefined;
|
|
1737
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1738
|
-
};
|
|
1739
|
-
displayInTable: boolean;
|
|
1740
|
-
kintoneFieldCode: string;
|
|
1741
|
-
kintoneFieldName: string;
|
|
1742
|
-
kintoneFieldType: string;
|
|
1743
|
-
}>, "many">;
|
|
1744
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1745
|
-
id: string;
|
|
1746
|
-
formField: {
|
|
1747
|
-
code: string;
|
|
1748
|
-
required: boolean;
|
|
1749
|
-
id: string;
|
|
1750
|
-
title: string;
|
|
1751
|
-
prefix: string | null;
|
|
1752
|
-
options: string[] | null;
|
|
1753
|
-
size: "full" | "half";
|
|
1754
|
-
description: string | null;
|
|
1755
|
-
minLength: number | null;
|
|
1756
|
-
maxLength: number | null;
|
|
1757
|
-
defaultValue: string | null;
|
|
1758
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1759
|
-
approver: boolean;
|
|
1760
|
-
regexpFormat: string | null;
|
|
1761
|
-
formula: string | null;
|
|
1762
|
-
minValue: number | null;
|
|
1763
|
-
maxValue: number | null;
|
|
1764
|
-
decimalDigit: number | null;
|
|
1765
|
-
delimited: boolean | null;
|
|
1766
|
-
suffix: string | null;
|
|
1767
|
-
hidden?: boolean | null | undefined;
|
|
1768
|
-
author?: boolean | undefined;
|
|
1769
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1770
|
-
};
|
|
1771
|
-
mappings: {
|
|
1772
|
-
id: string;
|
|
1773
|
-
formField: {
|
|
1774
|
-
code: string;
|
|
1775
|
-
required: boolean;
|
|
1776
|
-
id: string;
|
|
1777
|
-
title: string;
|
|
1778
|
-
prefix: string | null;
|
|
1779
|
-
options: string[] | null;
|
|
1780
|
-
size: "full" | "half";
|
|
1781
|
-
description: string | null;
|
|
1782
|
-
minLength: number | null;
|
|
1783
|
-
maxLength: number | null;
|
|
1784
|
-
defaultValue: string | null;
|
|
1785
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1786
|
-
approver: boolean;
|
|
1787
|
-
regexpFormat: string | null;
|
|
1788
|
-
formula: string | null;
|
|
1789
|
-
minValue: number | null;
|
|
1790
|
-
maxValue: number | null;
|
|
1791
|
-
decimalDigit: number | null;
|
|
1792
|
-
delimited: boolean | null;
|
|
1793
|
-
suffix: string | null;
|
|
1794
|
-
hidden?: boolean | null | undefined;
|
|
1795
|
-
author?: boolean | undefined;
|
|
1796
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1797
|
-
};
|
|
1798
|
-
displayInTable: boolean;
|
|
1799
|
-
kintoneFieldCode: string;
|
|
1800
|
-
kintoneFieldName: string;
|
|
1801
|
-
kintoneFieldType: string;
|
|
1802
|
-
}[];
|
|
1803
|
-
kintoneApp: {
|
|
1804
|
-
name: string;
|
|
1805
|
-
id: string;
|
|
1806
|
-
domain: string;
|
|
1807
|
-
appId: string;
|
|
1808
|
-
};
|
|
1809
|
-
}, {
|
|
1810
|
-
id: string;
|
|
1811
|
-
formField: {
|
|
1812
|
-
code: string;
|
|
1813
|
-
required: boolean;
|
|
1814
|
-
id: string;
|
|
1815
|
-
title: string;
|
|
1816
|
-
prefix: string | null;
|
|
1817
|
-
options: string[] | null;
|
|
1818
|
-
size: "full" | "half";
|
|
1819
|
-
description: string | null;
|
|
1820
|
-
minLength: number | null;
|
|
1821
|
-
maxLength: number | null;
|
|
1822
|
-
defaultValue: string | null;
|
|
1823
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1824
|
-
approver: boolean;
|
|
1825
|
-
regexpFormat: string | null;
|
|
1826
|
-
formula: string | null;
|
|
1827
|
-
minValue: number | null;
|
|
1828
|
-
maxValue: number | null;
|
|
1829
|
-
decimalDigit: number | null;
|
|
1830
|
-
delimited: boolean | null;
|
|
1831
|
-
suffix: string | null;
|
|
1832
|
-
hidden?: boolean | null | undefined;
|
|
1833
|
-
author?: boolean | undefined;
|
|
1834
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1835
|
-
};
|
|
1836
|
-
mappings: {
|
|
1837
|
-
id: string;
|
|
1838
|
-
formField: {
|
|
1839
|
-
code: string;
|
|
1840
|
-
required: boolean;
|
|
1841
|
-
id: string;
|
|
1842
|
-
title: string;
|
|
1843
|
-
prefix: string | null;
|
|
1844
|
-
options: string[] | null;
|
|
1845
|
-
size: "full" | "half";
|
|
1846
|
-
description: string | null;
|
|
1847
|
-
minLength: number | null;
|
|
1848
|
-
maxLength: number | null;
|
|
1849
|
-
defaultValue: string | null;
|
|
1850
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1851
|
-
approver: boolean;
|
|
1852
|
-
regexpFormat: string | null;
|
|
1853
|
-
formula: string | null;
|
|
1854
|
-
minValue: number | null;
|
|
1855
|
-
maxValue: number | null;
|
|
1856
|
-
decimalDigit: number | null;
|
|
1857
|
-
delimited: boolean | null;
|
|
1858
|
-
suffix: string | null;
|
|
1859
|
-
hidden?: boolean | null | undefined;
|
|
1860
|
-
author?: boolean | undefined;
|
|
1861
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1862
|
-
};
|
|
1863
|
-
displayInTable: boolean;
|
|
1864
|
-
kintoneFieldCode: string;
|
|
1865
|
-
kintoneFieldName: string;
|
|
1866
|
-
kintoneFieldType: string;
|
|
1867
|
-
}[];
|
|
1868
|
-
kintoneApp: {
|
|
1869
|
-
name: string;
|
|
1870
|
-
id: string;
|
|
1871
|
-
domain: string;
|
|
1872
|
-
appId: string;
|
|
1873
|
-
};
|
|
1874
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
742
|
+
}, zod.core.$strip>;
|
|
743
|
+
}, zod.core.$strip>>;
|
|
744
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
1875
745
|
climberCloudSetting: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
1876
746
|
id: zod.ZodString;
|
|
1877
747
|
contentsId: zod.ZodOptional<zod.ZodString>;
|
|
@@ -1879,13 +749,32 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1879
749
|
id: zod.ZodString;
|
|
1880
750
|
title: zod.ZodString;
|
|
1881
751
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1882
|
-
fieldType: zod.ZodEnum<
|
|
752
|
+
fieldType: zod.ZodEnum<{
|
|
753
|
+
number: "number";
|
|
754
|
+
text: "text";
|
|
755
|
+
date: "date";
|
|
756
|
+
file: "file";
|
|
757
|
+
user: "user";
|
|
758
|
+
team: "team";
|
|
759
|
+
master: "master";
|
|
760
|
+
text_long: "text_long";
|
|
761
|
+
integer: "integer";
|
|
762
|
+
checkbox: "checkbox";
|
|
763
|
+
pull_down: "pull_down";
|
|
764
|
+
ticket: "ticket";
|
|
765
|
+
calculation: "calculation";
|
|
766
|
+
button_api: "button_api";
|
|
767
|
+
button_kintone: "button_kintone";
|
|
768
|
+
}>;
|
|
1883
769
|
required: zod.ZodBoolean;
|
|
1884
770
|
approver: zod.ZodBoolean;
|
|
1885
771
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
1886
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
772
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1887
773
|
code: zod.ZodString;
|
|
1888
|
-
size: zod.ZodEnum<
|
|
774
|
+
size: zod.ZodEnum<{
|
|
775
|
+
full: "full";
|
|
776
|
+
half: "half";
|
|
777
|
+
}>;
|
|
1889
778
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
1890
779
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
1891
780
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
@@ -1899,67 +788,38 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1899
788
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
1900
789
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1901
790
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1902
|
-
},
|
|
1903
|
-
code: string;
|
|
1904
|
-
required: boolean;
|
|
1905
|
-
id: string;
|
|
1906
|
-
title: string;
|
|
1907
|
-
prefix: string | null;
|
|
1908
|
-
options: string[] | null;
|
|
1909
|
-
size: "full" | "half";
|
|
1910
|
-
description: string | null;
|
|
1911
|
-
minLength: number | null;
|
|
1912
|
-
maxLength: number | null;
|
|
1913
|
-
defaultValue: string | null;
|
|
1914
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1915
|
-
approver: boolean;
|
|
1916
|
-
regexpFormat: string | null;
|
|
1917
|
-
formula: string | null;
|
|
1918
|
-
minValue: number | null;
|
|
1919
|
-
maxValue: number | null;
|
|
1920
|
-
decimalDigit: number | null;
|
|
1921
|
-
delimited: boolean | null;
|
|
1922
|
-
suffix: string | null;
|
|
1923
|
-
hidden?: boolean | null | undefined;
|
|
1924
|
-
author?: boolean | undefined;
|
|
1925
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1926
|
-
}, {
|
|
1927
|
-
code: string;
|
|
1928
|
-
required: boolean;
|
|
1929
|
-
id: string;
|
|
1930
|
-
title: string;
|
|
1931
|
-
prefix: string | null;
|
|
1932
|
-
options: string[] | null;
|
|
1933
|
-
size: "full" | "half";
|
|
1934
|
-
description: string | null;
|
|
1935
|
-
minLength: number | null;
|
|
1936
|
-
maxLength: number | null;
|
|
1937
|
-
defaultValue: string | null;
|
|
1938
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1939
|
-
approver: boolean;
|
|
1940
|
-
regexpFormat: string | null;
|
|
1941
|
-
formula: string | null;
|
|
1942
|
-
minValue: number | null;
|
|
1943
|
-
maxValue: number | null;
|
|
1944
|
-
decimalDigit: number | null;
|
|
1945
|
-
delimited: boolean | null;
|
|
1946
|
-
suffix: string | null;
|
|
1947
|
-
hidden?: boolean | null | undefined;
|
|
1948
|
-
author?: boolean | undefined;
|
|
1949
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
1950
|
-
}>>;
|
|
791
|
+
}, zod.core.$strip>>;
|
|
1951
792
|
mappings: zod.ZodArray<zod.ZodObject<{
|
|
1952
793
|
formField: zod.ZodObject<{
|
|
1953
794
|
id: zod.ZodString;
|
|
1954
795
|
title: zod.ZodString;
|
|
1955
796
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1956
|
-
fieldType: zod.ZodEnum<
|
|
797
|
+
fieldType: zod.ZodEnum<{
|
|
798
|
+
number: "number";
|
|
799
|
+
text: "text";
|
|
800
|
+
date: "date";
|
|
801
|
+
file: "file";
|
|
802
|
+
user: "user";
|
|
803
|
+
team: "team";
|
|
804
|
+
master: "master";
|
|
805
|
+
text_long: "text_long";
|
|
806
|
+
integer: "integer";
|
|
807
|
+
checkbox: "checkbox";
|
|
808
|
+
pull_down: "pull_down";
|
|
809
|
+
ticket: "ticket";
|
|
810
|
+
calculation: "calculation";
|
|
811
|
+
button_api: "button_api";
|
|
812
|
+
button_kintone: "button_kintone";
|
|
813
|
+
}>;
|
|
1957
814
|
required: zod.ZodBoolean;
|
|
1958
815
|
approver: zod.ZodBoolean;
|
|
1959
816
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
1960
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
817
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1961
818
|
code: zod.ZodString;
|
|
1962
|
-
size: zod.ZodEnum<
|
|
819
|
+
size: zod.ZodEnum<{
|
|
820
|
+
full: "full";
|
|
821
|
+
half: "half";
|
|
822
|
+
}>;
|
|
1963
823
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
1964
824
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
1965
825
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
@@ -1973,247 +833,34 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
1973
833
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
1974
834
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1975
835
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1976
|
-
},
|
|
1977
|
-
code: string;
|
|
1978
|
-
required: boolean;
|
|
1979
|
-
id: string;
|
|
1980
|
-
title: string;
|
|
1981
|
-
prefix: string | null;
|
|
1982
|
-
options: string[] | null;
|
|
1983
|
-
size: "full" | "half";
|
|
1984
|
-
description: string | null;
|
|
1985
|
-
minLength: number | null;
|
|
1986
|
-
maxLength: number | null;
|
|
1987
|
-
defaultValue: string | null;
|
|
1988
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
1989
|
-
approver: boolean;
|
|
1990
|
-
regexpFormat: string | null;
|
|
1991
|
-
formula: string | null;
|
|
1992
|
-
minValue: number | null;
|
|
1993
|
-
maxValue: number | null;
|
|
1994
|
-
decimalDigit: number | null;
|
|
1995
|
-
delimited: boolean | null;
|
|
1996
|
-
suffix: string | null;
|
|
1997
|
-
hidden?: boolean | null | undefined;
|
|
1998
|
-
author?: boolean | undefined;
|
|
1999
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2000
|
-
}, {
|
|
2001
|
-
code: string;
|
|
2002
|
-
required: boolean;
|
|
2003
|
-
id: string;
|
|
2004
|
-
title: string;
|
|
2005
|
-
prefix: string | null;
|
|
2006
|
-
options: string[] | null;
|
|
2007
|
-
size: "full" | "half";
|
|
2008
|
-
description: string | null;
|
|
2009
|
-
minLength: number | null;
|
|
2010
|
-
maxLength: number | null;
|
|
2011
|
-
defaultValue: string | null;
|
|
2012
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2013
|
-
approver: boolean;
|
|
2014
|
-
regexpFormat: string | null;
|
|
2015
|
-
formula: string | null;
|
|
2016
|
-
minValue: number | null;
|
|
2017
|
-
maxValue: number | null;
|
|
2018
|
-
decimalDigit: number | null;
|
|
2019
|
-
delimited: boolean | null;
|
|
2020
|
-
suffix: string | null;
|
|
2021
|
-
hidden?: boolean | null | undefined;
|
|
2022
|
-
author?: boolean | undefined;
|
|
2023
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2024
|
-
}>;
|
|
836
|
+
}, zod.core.$strip>;
|
|
2025
837
|
order: zod.ZodNumber;
|
|
2026
|
-
},
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
code: string;
|
|
2030
|
-
required: boolean;
|
|
2031
|
-
id: string;
|
|
2032
|
-
title: string;
|
|
2033
|
-
prefix: string | null;
|
|
2034
|
-
options: string[] | null;
|
|
2035
|
-
size: "full" | "half";
|
|
2036
|
-
description: string | null;
|
|
2037
|
-
minLength: number | null;
|
|
2038
|
-
maxLength: number | null;
|
|
2039
|
-
defaultValue: string | null;
|
|
2040
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2041
|
-
approver: boolean;
|
|
2042
|
-
regexpFormat: string | null;
|
|
2043
|
-
formula: string | null;
|
|
2044
|
-
minValue: number | null;
|
|
2045
|
-
maxValue: number | null;
|
|
2046
|
-
decimalDigit: number | null;
|
|
2047
|
-
delimited: boolean | null;
|
|
2048
|
-
suffix: string | null;
|
|
2049
|
-
hidden?: boolean | null | undefined;
|
|
2050
|
-
author?: boolean | undefined;
|
|
2051
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2052
|
-
};
|
|
2053
|
-
}, {
|
|
2054
|
-
order: number;
|
|
2055
|
-
formField: {
|
|
2056
|
-
code: string;
|
|
2057
|
-
required: boolean;
|
|
2058
|
-
id: string;
|
|
2059
|
-
title: string;
|
|
2060
|
-
prefix: string | null;
|
|
2061
|
-
options: string[] | null;
|
|
2062
|
-
size: "full" | "half";
|
|
2063
|
-
description: string | null;
|
|
2064
|
-
minLength: number | null;
|
|
2065
|
-
maxLength: number | null;
|
|
2066
|
-
defaultValue: string | null;
|
|
2067
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2068
|
-
approver: boolean;
|
|
2069
|
-
regexpFormat: string | null;
|
|
2070
|
-
formula: string | null;
|
|
2071
|
-
minValue: number | null;
|
|
2072
|
-
maxValue: number | null;
|
|
2073
|
-
decimalDigit: number | null;
|
|
2074
|
-
delimited: boolean | null;
|
|
2075
|
-
suffix: string | null;
|
|
2076
|
-
hidden?: boolean | null | undefined;
|
|
2077
|
-
author?: boolean | undefined;
|
|
2078
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2079
|
-
};
|
|
2080
|
-
}>, "many">;
|
|
2081
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2082
|
-
id: string;
|
|
2083
|
-
mappings: {
|
|
2084
|
-
order: number;
|
|
2085
|
-
formField: {
|
|
2086
|
-
code: string;
|
|
2087
|
-
required: boolean;
|
|
2088
|
-
id: string;
|
|
2089
|
-
title: string;
|
|
2090
|
-
prefix: string | null;
|
|
2091
|
-
options: string[] | null;
|
|
2092
|
-
size: "full" | "half";
|
|
2093
|
-
description: string | null;
|
|
2094
|
-
minLength: number | null;
|
|
2095
|
-
maxLength: number | null;
|
|
2096
|
-
defaultValue: string | null;
|
|
2097
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2098
|
-
approver: boolean;
|
|
2099
|
-
regexpFormat: string | null;
|
|
2100
|
-
formula: string | null;
|
|
2101
|
-
minValue: number | null;
|
|
2102
|
-
maxValue: number | null;
|
|
2103
|
-
decimalDigit: number | null;
|
|
2104
|
-
delimited: boolean | null;
|
|
2105
|
-
suffix: string | null;
|
|
2106
|
-
hidden?: boolean | null | undefined;
|
|
2107
|
-
author?: boolean | undefined;
|
|
2108
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2109
|
-
};
|
|
2110
|
-
}[];
|
|
2111
|
-
formField?: {
|
|
2112
|
-
code: string;
|
|
2113
|
-
required: boolean;
|
|
2114
|
-
id: string;
|
|
2115
|
-
title: string;
|
|
2116
|
-
prefix: string | null;
|
|
2117
|
-
options: string[] | null;
|
|
2118
|
-
size: "full" | "half";
|
|
2119
|
-
description: string | null;
|
|
2120
|
-
minLength: number | null;
|
|
2121
|
-
maxLength: number | null;
|
|
2122
|
-
defaultValue: string | null;
|
|
2123
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2124
|
-
approver: boolean;
|
|
2125
|
-
regexpFormat: string | null;
|
|
2126
|
-
formula: string | null;
|
|
2127
|
-
minValue: number | null;
|
|
2128
|
-
maxValue: number | null;
|
|
2129
|
-
decimalDigit: number | null;
|
|
2130
|
-
delimited: boolean | null;
|
|
2131
|
-
suffix: string | null;
|
|
2132
|
-
hidden?: boolean | null | undefined;
|
|
2133
|
-
author?: boolean | undefined;
|
|
2134
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2135
|
-
} | undefined;
|
|
2136
|
-
contentsId?: string | undefined;
|
|
2137
|
-
}, {
|
|
2138
|
-
id: string;
|
|
2139
|
-
mappings: {
|
|
2140
|
-
order: number;
|
|
2141
|
-
formField: {
|
|
2142
|
-
code: string;
|
|
2143
|
-
required: boolean;
|
|
2144
|
-
id: string;
|
|
2145
|
-
title: string;
|
|
2146
|
-
prefix: string | null;
|
|
2147
|
-
options: string[] | null;
|
|
2148
|
-
size: "full" | "half";
|
|
2149
|
-
description: string | null;
|
|
2150
|
-
minLength: number | null;
|
|
2151
|
-
maxLength: number | null;
|
|
2152
|
-
defaultValue: string | null;
|
|
2153
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2154
|
-
approver: boolean;
|
|
2155
|
-
regexpFormat: string | null;
|
|
2156
|
-
formula: string | null;
|
|
2157
|
-
minValue: number | null;
|
|
2158
|
-
maxValue: number | null;
|
|
2159
|
-
decimalDigit: number | null;
|
|
2160
|
-
delimited: boolean | null;
|
|
2161
|
-
suffix: string | null;
|
|
2162
|
-
hidden?: boolean | null | undefined;
|
|
2163
|
-
author?: boolean | undefined;
|
|
2164
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2165
|
-
};
|
|
2166
|
-
}[];
|
|
2167
|
-
formField?: {
|
|
2168
|
-
code: string;
|
|
2169
|
-
required: boolean;
|
|
2170
|
-
id: string;
|
|
2171
|
-
title: string;
|
|
2172
|
-
prefix: string | null;
|
|
2173
|
-
options: string[] | null;
|
|
2174
|
-
size: "full" | "half";
|
|
2175
|
-
description: string | null;
|
|
2176
|
-
minLength: number | null;
|
|
2177
|
-
maxLength: number | null;
|
|
2178
|
-
defaultValue: string | null;
|
|
2179
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2180
|
-
approver: boolean;
|
|
2181
|
-
regexpFormat: string | null;
|
|
2182
|
-
formula: string | null;
|
|
2183
|
-
minValue: number | null;
|
|
2184
|
-
maxValue: number | null;
|
|
2185
|
-
decimalDigit: number | null;
|
|
2186
|
-
delimited: boolean | null;
|
|
2187
|
-
suffix: string | null;
|
|
2188
|
-
hidden?: boolean | null | undefined;
|
|
2189
|
-
author?: boolean | undefined;
|
|
2190
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2191
|
-
} | undefined;
|
|
2192
|
-
contentsId?: string | undefined;
|
|
2193
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
2194
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2195
|
-
generalMaster?: any;
|
|
2196
|
-
defaultGeneralMasterItem?: any;
|
|
2197
|
-
externalApiSetting?: any;
|
|
2198
|
-
kintoneAppSetting?: any;
|
|
2199
|
-
climberCloudSetting?: any;
|
|
2200
|
-
}, {
|
|
2201
|
-
generalMaster?: any;
|
|
2202
|
-
defaultGeneralMasterItem?: any;
|
|
2203
|
-
externalApiSetting?: any;
|
|
2204
|
-
kintoneAppSetting?: any;
|
|
2205
|
-
climberCloudSetting?: any;
|
|
2206
|
-
}>>, "many">>;
|
|
838
|
+
}, zod.core.$strip>>;
|
|
839
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
840
|
+
}, zod.core.$strip>>>>;
|
|
2207
841
|
conditional: zod.ZodOptional<zod.ZodBoolean>;
|
|
2208
842
|
conditionAllOf: zod.ZodOptional<zod.ZodBoolean>;
|
|
2209
843
|
slipFields: zod.ZodOptional<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
2210
844
|
id: zod.ZodString;
|
|
2211
|
-
fieldType: zod.ZodEnum<
|
|
845
|
+
fieldType: zod.ZodEnum<{
|
|
846
|
+
number: "number";
|
|
847
|
+
text: "text";
|
|
848
|
+
date: "date";
|
|
849
|
+
file: "file";
|
|
850
|
+
user: "user";
|
|
851
|
+
team: "team";
|
|
852
|
+
master: "master";
|
|
853
|
+
integer: "integer";
|
|
854
|
+
checkbox: "checkbox";
|
|
855
|
+
pull_down: "pull_down";
|
|
856
|
+
ticket: "ticket";
|
|
857
|
+
calculation: "calculation";
|
|
858
|
+
}>;
|
|
2212
859
|
code: zod.ZodString;
|
|
2213
860
|
title: zod.ZodString;
|
|
2214
861
|
required: zod.ZodBoolean;
|
|
2215
862
|
showTotal: zod.ZodBoolean;
|
|
2216
|
-
options: zod.ZodArray<zod.ZodString
|
|
863
|
+
options: zod.ZodArray<zod.ZodString>;
|
|
2217
864
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
2218
865
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
2219
866
|
maxValue: zod.ZodNullable<zod.ZodNumber>;
|
|
@@ -2221,58 +868,14 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
2221
868
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
2222
869
|
decimalDigit: zod.ZodNullable<zod.ZodNumber>;
|
|
2223
870
|
delimited: zod.ZodNullable<zod.ZodBoolean>;
|
|
2224
|
-
allowedExtensions: zod.ZodArray<zod.ZodString
|
|
871
|
+
allowedExtensions: zod.ZodArray<zod.ZodString>;
|
|
2225
872
|
prefix: zod.ZodNullable<zod.ZodString>;
|
|
2226
873
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
2227
874
|
approver: zod.ZodBoolean;
|
|
2228
875
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
2229
876
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
2230
877
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
2231
|
-
},
|
|
2232
|
-
code: string;
|
|
2233
|
-
required: boolean;
|
|
2234
|
-
id: string;
|
|
2235
|
-
title: string;
|
|
2236
|
-
prefix: string | null;
|
|
2237
|
-
options: string[];
|
|
2238
|
-
defaultValue: string | null;
|
|
2239
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "checkbox" | "pull_down" | "ticket" | "calculation";
|
|
2240
|
-
approver: boolean;
|
|
2241
|
-
regexpFormat: string | null;
|
|
2242
|
-
formula: string | null;
|
|
2243
|
-
minValue: number | null;
|
|
2244
|
-
maxValue: number | null;
|
|
2245
|
-
decimalDigit: number | null;
|
|
2246
|
-
delimited: boolean | null;
|
|
2247
|
-
suffix: string | null;
|
|
2248
|
-
showTotal: boolean;
|
|
2249
|
-
allowedExtensions: string[];
|
|
2250
|
-
hidden?: boolean | null | undefined;
|
|
2251
|
-
author?: boolean | undefined;
|
|
2252
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2253
|
-
}, {
|
|
2254
|
-
code: string;
|
|
2255
|
-
required: boolean;
|
|
2256
|
-
id: string;
|
|
2257
|
-
title: string;
|
|
2258
|
-
prefix: string | null;
|
|
2259
|
-
options: string[];
|
|
2260
|
-
defaultValue: string | null;
|
|
2261
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "checkbox" | "pull_down" | "ticket" | "calculation";
|
|
2262
|
-
approver: boolean;
|
|
2263
|
-
regexpFormat: string | null;
|
|
2264
|
-
formula: string | null;
|
|
2265
|
-
minValue: number | null;
|
|
2266
|
-
maxValue: number | null;
|
|
2267
|
-
decimalDigit: number | null;
|
|
2268
|
-
delimited: boolean | null;
|
|
2269
|
-
suffix: string | null;
|
|
2270
|
-
showTotal: boolean;
|
|
2271
|
-
allowedExtensions: string[];
|
|
2272
|
-
hidden?: boolean | null | undefined;
|
|
2273
|
-
author?: boolean | undefined;
|
|
2274
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2275
|
-
}>, zod.ZodObject<{
|
|
878
|
+
}, zod.core.$strip>, zod.ZodObject<{
|
|
2276
879
|
generalMaster: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
2277
880
|
id: zod.ZodString;
|
|
2278
881
|
code: zod.ZodString;
|
|
@@ -2285,74 +888,22 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
2285
888
|
title: zod.ZodString;
|
|
2286
889
|
description: zod.ZodNullable<zod.ZodString>;
|
|
2287
890
|
code: zod.ZodString;
|
|
2288
|
-
fieldType: zod.ZodEnum<
|
|
891
|
+
fieldType: zod.ZodEnum<{
|
|
892
|
+
number: "number";
|
|
893
|
+
text: "text";
|
|
894
|
+
date: "date";
|
|
895
|
+
text_long: "text_long";
|
|
896
|
+
integer: "integer";
|
|
897
|
+
checkbox: "checkbox";
|
|
898
|
+
pull_down: "pull_down";
|
|
899
|
+
}>;
|
|
2289
900
|
required: zod.ZodBoolean;
|
|
2290
901
|
visible: zod.ZodBoolean;
|
|
2291
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
902
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
2292
903
|
createdAt: zod.ZodString;
|
|
2293
904
|
updatedAt: zod.ZodString;
|
|
2294
|
-
},
|
|
2295
|
-
|
|
2296
|
-
required: boolean;
|
|
2297
|
-
id: string;
|
|
2298
|
-
visible: boolean;
|
|
2299
|
-
title: string;
|
|
2300
|
-
options: string[] | null;
|
|
2301
|
-
description: string | null;
|
|
2302
|
-
createdAt: string;
|
|
2303
|
-
updatedAt: string;
|
|
2304
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2305
|
-
}, {
|
|
2306
|
-
code: string;
|
|
2307
|
-
required: boolean;
|
|
2308
|
-
id: string;
|
|
2309
|
-
visible: boolean;
|
|
2310
|
-
title: string;
|
|
2311
|
-
options: string[] | null;
|
|
2312
|
-
description: string | null;
|
|
2313
|
-
createdAt: string;
|
|
2314
|
-
updatedAt: string;
|
|
2315
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2316
|
-
}>, "many">;
|
|
2317
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2318
|
-
code: string;
|
|
2319
|
-
name: string;
|
|
2320
|
-
id: string;
|
|
2321
|
-
description: string | null;
|
|
2322
|
-
createdAt: string;
|
|
2323
|
-
updatedAt: string;
|
|
2324
|
-
fields: {
|
|
2325
|
-
code: string;
|
|
2326
|
-
required: boolean;
|
|
2327
|
-
id: string;
|
|
2328
|
-
visible: boolean;
|
|
2329
|
-
title: string;
|
|
2330
|
-
options: string[] | null;
|
|
2331
|
-
description: string | null;
|
|
2332
|
-
createdAt: string;
|
|
2333
|
-
updatedAt: string;
|
|
2334
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2335
|
-
}[];
|
|
2336
|
-
}, {
|
|
2337
|
-
code: string;
|
|
2338
|
-
name: string;
|
|
2339
|
-
id: string;
|
|
2340
|
-
description: string | null;
|
|
2341
|
-
createdAt: string;
|
|
2342
|
-
updatedAt: string;
|
|
2343
|
-
fields: {
|
|
2344
|
-
code: string;
|
|
2345
|
-
required: boolean;
|
|
2346
|
-
id: string;
|
|
2347
|
-
visible: boolean;
|
|
2348
|
-
title: string;
|
|
2349
|
-
options: string[] | null;
|
|
2350
|
-
description: string | null;
|
|
2351
|
-
createdAt: string;
|
|
2352
|
-
updatedAt: string;
|
|
2353
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2354
|
-
}[];
|
|
2355
|
-
}>, zod.ZodNullable<zod.ZodObject<{}, "strip", zod.ZodTypeAny, {}, {}>>]>>>;
|
|
905
|
+
}, zod.core.$strip>>;
|
|
906
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodObject<{}, zod.core.$strip>>]>>>;
|
|
2356
907
|
defaultGeneralMasterItem: zod.ZodOptional<zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
2357
908
|
id: zod.ZodString;
|
|
2358
909
|
code: zod.ZodString;
|
|
@@ -2364,7 +915,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
2364
915
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
2365
916
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
2366
917
|
id: zod.ZodString;
|
|
2367
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
918
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
2368
919
|
createdAt: zod.ZodString;
|
|
2369
920
|
updatedAt: zod.ZodString;
|
|
2370
921
|
field: zod.ZodObject<{
|
|
@@ -2372,445 +923,25 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
2372
923
|
title: zod.ZodString;
|
|
2373
924
|
description: zod.ZodNullable<zod.ZodString>;
|
|
2374
925
|
code: zod.ZodString;
|
|
2375
|
-
fieldType: zod.ZodEnum<
|
|
926
|
+
fieldType: zod.ZodEnum<{
|
|
927
|
+
number: "number";
|
|
928
|
+
text: "text";
|
|
929
|
+
date: "date";
|
|
930
|
+
text_long: "text_long";
|
|
931
|
+
integer: "integer";
|
|
932
|
+
checkbox: "checkbox";
|
|
933
|
+
pull_down: "pull_down";
|
|
934
|
+
}>;
|
|
2376
935
|
required: zod.ZodBoolean;
|
|
2377
936
|
visible: zod.ZodBoolean;
|
|
2378
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
937
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
2379
938
|
createdAt: zod.ZodString;
|
|
2380
939
|
updatedAt: zod.ZodString;
|
|
2381
|
-
},
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
title: string;
|
|
2387
|
-
options: string[] | null;
|
|
2388
|
-
description: string | null;
|
|
2389
|
-
createdAt: string;
|
|
2390
|
-
updatedAt: string;
|
|
2391
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2392
|
-
}, {
|
|
2393
|
-
code: string;
|
|
2394
|
-
required: boolean;
|
|
2395
|
-
id: string;
|
|
2396
|
-
visible: boolean;
|
|
2397
|
-
title: string;
|
|
2398
|
-
options: string[] | null;
|
|
2399
|
-
description: string | null;
|
|
2400
|
-
createdAt: string;
|
|
2401
|
-
updatedAt: string;
|
|
2402
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2403
|
-
}>;
|
|
2404
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2405
|
-
id: string;
|
|
2406
|
-
value: string | string[] | null;
|
|
2407
|
-
field: {
|
|
2408
|
-
code: string;
|
|
2409
|
-
required: boolean;
|
|
2410
|
-
id: string;
|
|
2411
|
-
visible: boolean;
|
|
2412
|
-
title: string;
|
|
2413
|
-
options: string[] | null;
|
|
2414
|
-
description: string | null;
|
|
2415
|
-
createdAt: string;
|
|
2416
|
-
updatedAt: string;
|
|
2417
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2418
|
-
};
|
|
2419
|
-
createdAt: string;
|
|
2420
|
-
updatedAt: string;
|
|
2421
|
-
}, {
|
|
2422
|
-
id: string;
|
|
2423
|
-
value: string | string[] | null;
|
|
2424
|
-
field: {
|
|
2425
|
-
code: string;
|
|
2426
|
-
required: boolean;
|
|
2427
|
-
id: string;
|
|
2428
|
-
visible: boolean;
|
|
2429
|
-
title: string;
|
|
2430
|
-
options: string[] | null;
|
|
2431
|
-
description: string | null;
|
|
2432
|
-
createdAt: string;
|
|
2433
|
-
updatedAt: string;
|
|
2434
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2435
|
-
};
|
|
2436
|
-
createdAt: string;
|
|
2437
|
-
updatedAt: string;
|
|
2438
|
-
}>, "many">;
|
|
2439
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2440
|
-
code: string;
|
|
2441
|
-
name: string;
|
|
2442
|
-
id: string;
|
|
2443
|
-
description: string | null;
|
|
2444
|
-
createdAt: string;
|
|
2445
|
-
updatedAt: string;
|
|
2446
|
-
startsOn: string | null;
|
|
2447
|
-
endsOn: string | null;
|
|
2448
|
-
inputs: {
|
|
2449
|
-
id: string;
|
|
2450
|
-
value: string | string[] | null;
|
|
2451
|
-
field: {
|
|
2452
|
-
code: string;
|
|
2453
|
-
required: boolean;
|
|
2454
|
-
id: string;
|
|
2455
|
-
visible: boolean;
|
|
2456
|
-
title: string;
|
|
2457
|
-
options: string[] | null;
|
|
2458
|
-
description: string | null;
|
|
2459
|
-
createdAt: string;
|
|
2460
|
-
updatedAt: string;
|
|
2461
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2462
|
-
};
|
|
2463
|
-
createdAt: string;
|
|
2464
|
-
updatedAt: string;
|
|
2465
|
-
}[];
|
|
2466
|
-
}, {
|
|
2467
|
-
code: string;
|
|
2468
|
-
name: string;
|
|
2469
|
-
id: string;
|
|
2470
|
-
description: string | null;
|
|
2471
|
-
createdAt: string;
|
|
2472
|
-
updatedAt: string;
|
|
2473
|
-
startsOn: string | null;
|
|
2474
|
-
endsOn: string | null;
|
|
2475
|
-
inputs: {
|
|
2476
|
-
id: string;
|
|
2477
|
-
value: string | string[] | null;
|
|
2478
|
-
field: {
|
|
2479
|
-
code: string;
|
|
2480
|
-
required: boolean;
|
|
2481
|
-
id: string;
|
|
2482
|
-
visible: boolean;
|
|
2483
|
-
title: string;
|
|
2484
|
-
options: string[] | null;
|
|
2485
|
-
description: string | null;
|
|
2486
|
-
createdAt: string;
|
|
2487
|
-
updatedAt: string;
|
|
2488
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2489
|
-
};
|
|
2490
|
-
createdAt: string;
|
|
2491
|
-
updatedAt: string;
|
|
2492
|
-
}[];
|
|
2493
|
-
}>, zod.ZodNullable<zod.ZodObject<{}, "strip", zod.ZodTypeAny, {}, {}>>]>>>;
|
|
2494
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2495
|
-
generalMaster?: {
|
|
2496
|
-
code: string;
|
|
2497
|
-
name: string;
|
|
2498
|
-
id: string;
|
|
2499
|
-
description: string | null;
|
|
2500
|
-
createdAt: string;
|
|
2501
|
-
updatedAt: string;
|
|
2502
|
-
fields: {
|
|
2503
|
-
code: string;
|
|
2504
|
-
required: boolean;
|
|
2505
|
-
id: string;
|
|
2506
|
-
visible: boolean;
|
|
2507
|
-
title: string;
|
|
2508
|
-
options: string[] | null;
|
|
2509
|
-
description: string | null;
|
|
2510
|
-
createdAt: string;
|
|
2511
|
-
updatedAt: string;
|
|
2512
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2513
|
-
}[];
|
|
2514
|
-
} | {} | null | undefined;
|
|
2515
|
-
defaultGeneralMasterItem?: {
|
|
2516
|
-
code: string;
|
|
2517
|
-
name: string;
|
|
2518
|
-
id: string;
|
|
2519
|
-
description: string | null;
|
|
2520
|
-
createdAt: string;
|
|
2521
|
-
updatedAt: string;
|
|
2522
|
-
startsOn: string | null;
|
|
2523
|
-
endsOn: string | null;
|
|
2524
|
-
inputs: {
|
|
2525
|
-
id: string;
|
|
2526
|
-
value: string | string[] | null;
|
|
2527
|
-
field: {
|
|
2528
|
-
code: string;
|
|
2529
|
-
required: boolean;
|
|
2530
|
-
id: string;
|
|
2531
|
-
visible: boolean;
|
|
2532
|
-
title: string;
|
|
2533
|
-
options: string[] | null;
|
|
2534
|
-
description: string | null;
|
|
2535
|
-
createdAt: string;
|
|
2536
|
-
updatedAt: string;
|
|
2537
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2538
|
-
};
|
|
2539
|
-
createdAt: string;
|
|
2540
|
-
updatedAt: string;
|
|
2541
|
-
}[];
|
|
2542
|
-
} | {} | null | undefined;
|
|
2543
|
-
}, {
|
|
2544
|
-
generalMaster?: {
|
|
2545
|
-
code: string;
|
|
2546
|
-
name: string;
|
|
2547
|
-
id: string;
|
|
2548
|
-
description: string | null;
|
|
2549
|
-
createdAt: string;
|
|
2550
|
-
updatedAt: string;
|
|
2551
|
-
fields: {
|
|
2552
|
-
code: string;
|
|
2553
|
-
required: boolean;
|
|
2554
|
-
id: string;
|
|
2555
|
-
visible: boolean;
|
|
2556
|
-
title: string;
|
|
2557
|
-
options: string[] | null;
|
|
2558
|
-
description: string | null;
|
|
2559
|
-
createdAt: string;
|
|
2560
|
-
updatedAt: string;
|
|
2561
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2562
|
-
}[];
|
|
2563
|
-
} | {} | null | undefined;
|
|
2564
|
-
defaultGeneralMasterItem?: {
|
|
2565
|
-
code: string;
|
|
2566
|
-
name: string;
|
|
2567
|
-
id: string;
|
|
2568
|
-
description: string | null;
|
|
2569
|
-
createdAt: string;
|
|
2570
|
-
updatedAt: string;
|
|
2571
|
-
startsOn: string | null;
|
|
2572
|
-
endsOn: string | null;
|
|
2573
|
-
inputs: {
|
|
2574
|
-
id: string;
|
|
2575
|
-
value: string | string[] | null;
|
|
2576
|
-
field: {
|
|
2577
|
-
code: string;
|
|
2578
|
-
required: boolean;
|
|
2579
|
-
id: string;
|
|
2580
|
-
visible: boolean;
|
|
2581
|
-
title: string;
|
|
2582
|
-
options: string[] | null;
|
|
2583
|
-
description: string | null;
|
|
2584
|
-
createdAt: string;
|
|
2585
|
-
updatedAt: string;
|
|
2586
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2587
|
-
};
|
|
2588
|
-
createdAt: string;
|
|
2589
|
-
updatedAt: string;
|
|
2590
|
-
}[];
|
|
2591
|
-
} | {} | null | undefined;
|
|
2592
|
-
}>>, "many">>;
|
|
2593
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2594
|
-
title: string | null;
|
|
2595
|
-
description: string | null;
|
|
2596
|
-
sectionType: "form" | "slip";
|
|
2597
|
-
conditional?: boolean | undefined;
|
|
2598
|
-
id?: string | undefined;
|
|
2599
|
-
formFields?: ({
|
|
2600
|
-
code: string;
|
|
2601
|
-
required: boolean;
|
|
2602
|
-
id: string;
|
|
2603
|
-
title: string;
|
|
2604
|
-
prefix: string | null;
|
|
2605
|
-
options: string[] | null;
|
|
2606
|
-
size: "full" | "half";
|
|
2607
|
-
description: string | null;
|
|
2608
|
-
minLength: number | null;
|
|
2609
|
-
maxLength: number | null;
|
|
2610
|
-
defaultValue: string | null;
|
|
2611
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2612
|
-
approver: boolean;
|
|
2613
|
-
regexpFormat: string | null;
|
|
2614
|
-
formula: string | null;
|
|
2615
|
-
minValue: number | null;
|
|
2616
|
-
maxValue: number | null;
|
|
2617
|
-
decimalDigit: number | null;
|
|
2618
|
-
delimited: boolean | null;
|
|
2619
|
-
suffix: string | null;
|
|
2620
|
-
hidden?: boolean | null | undefined;
|
|
2621
|
-
author?: boolean | undefined;
|
|
2622
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2623
|
-
} & {
|
|
2624
|
-
generalMaster?: any;
|
|
2625
|
-
defaultGeneralMasterItem?: any;
|
|
2626
|
-
externalApiSetting?: any;
|
|
2627
|
-
kintoneAppSetting?: any;
|
|
2628
|
-
climberCloudSetting?: any;
|
|
2629
|
-
})[] | undefined;
|
|
2630
|
-
conditionAllOf?: boolean | undefined;
|
|
2631
|
-
slipFields?: ({
|
|
2632
|
-
code: string;
|
|
2633
|
-
required: boolean;
|
|
2634
|
-
id: string;
|
|
2635
|
-
title: string;
|
|
2636
|
-
prefix: string | null;
|
|
2637
|
-
options: string[];
|
|
2638
|
-
defaultValue: string | null;
|
|
2639
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "checkbox" | "pull_down" | "ticket" | "calculation";
|
|
2640
|
-
approver: boolean;
|
|
2641
|
-
regexpFormat: string | null;
|
|
2642
|
-
formula: string | null;
|
|
2643
|
-
minValue: number | null;
|
|
2644
|
-
maxValue: number | null;
|
|
2645
|
-
decimalDigit: number | null;
|
|
2646
|
-
delimited: boolean | null;
|
|
2647
|
-
suffix: string | null;
|
|
2648
|
-
showTotal: boolean;
|
|
2649
|
-
allowedExtensions: string[];
|
|
2650
|
-
hidden?: boolean | null | undefined;
|
|
2651
|
-
author?: boolean | undefined;
|
|
2652
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2653
|
-
} & {
|
|
2654
|
-
generalMaster?: {
|
|
2655
|
-
code: string;
|
|
2656
|
-
name: string;
|
|
2657
|
-
id: string;
|
|
2658
|
-
description: string | null;
|
|
2659
|
-
createdAt: string;
|
|
2660
|
-
updatedAt: string;
|
|
2661
|
-
fields: {
|
|
2662
|
-
code: string;
|
|
2663
|
-
required: boolean;
|
|
2664
|
-
id: string;
|
|
2665
|
-
visible: boolean;
|
|
2666
|
-
title: string;
|
|
2667
|
-
options: string[] | null;
|
|
2668
|
-
description: string | null;
|
|
2669
|
-
createdAt: string;
|
|
2670
|
-
updatedAt: string;
|
|
2671
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2672
|
-
}[];
|
|
2673
|
-
} | {} | null | undefined;
|
|
2674
|
-
defaultGeneralMasterItem?: {
|
|
2675
|
-
code: string;
|
|
2676
|
-
name: string;
|
|
2677
|
-
id: string;
|
|
2678
|
-
description: string | null;
|
|
2679
|
-
createdAt: string;
|
|
2680
|
-
updatedAt: string;
|
|
2681
|
-
startsOn: string | null;
|
|
2682
|
-
endsOn: string | null;
|
|
2683
|
-
inputs: {
|
|
2684
|
-
id: string;
|
|
2685
|
-
value: string | string[] | null;
|
|
2686
|
-
field: {
|
|
2687
|
-
code: string;
|
|
2688
|
-
required: boolean;
|
|
2689
|
-
id: string;
|
|
2690
|
-
visible: boolean;
|
|
2691
|
-
title: string;
|
|
2692
|
-
options: string[] | null;
|
|
2693
|
-
description: string | null;
|
|
2694
|
-
createdAt: string;
|
|
2695
|
-
updatedAt: string;
|
|
2696
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2697
|
-
};
|
|
2698
|
-
createdAt: string;
|
|
2699
|
-
updatedAt: string;
|
|
2700
|
-
}[];
|
|
2701
|
-
} | {} | null | undefined;
|
|
2702
|
-
})[] | undefined;
|
|
2703
|
-
}, {
|
|
2704
|
-
title: string | null;
|
|
2705
|
-
description: string | null;
|
|
2706
|
-
sectionType: "form" | "slip";
|
|
2707
|
-
conditional?: boolean | undefined;
|
|
2708
|
-
id?: string | undefined;
|
|
2709
|
-
formFields?: ({
|
|
2710
|
-
code: string;
|
|
2711
|
-
required: boolean;
|
|
2712
|
-
id: string;
|
|
2713
|
-
title: string;
|
|
2714
|
-
prefix: string | null;
|
|
2715
|
-
options: string[] | null;
|
|
2716
|
-
size: "full" | "half";
|
|
2717
|
-
description: string | null;
|
|
2718
|
-
minLength: number | null;
|
|
2719
|
-
maxLength: number | null;
|
|
2720
|
-
defaultValue: string | null;
|
|
2721
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2722
|
-
approver: boolean;
|
|
2723
|
-
regexpFormat: string | null;
|
|
2724
|
-
formula: string | null;
|
|
2725
|
-
minValue: number | null;
|
|
2726
|
-
maxValue: number | null;
|
|
2727
|
-
decimalDigit: number | null;
|
|
2728
|
-
delimited: boolean | null;
|
|
2729
|
-
suffix: string | null;
|
|
2730
|
-
hidden?: boolean | null | undefined;
|
|
2731
|
-
author?: boolean | undefined;
|
|
2732
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2733
|
-
} & {
|
|
2734
|
-
generalMaster?: any;
|
|
2735
|
-
defaultGeneralMasterItem?: any;
|
|
2736
|
-
externalApiSetting?: any;
|
|
2737
|
-
kintoneAppSetting?: any;
|
|
2738
|
-
climberCloudSetting?: any;
|
|
2739
|
-
})[] | undefined;
|
|
2740
|
-
conditionAllOf?: boolean | undefined;
|
|
2741
|
-
slipFields?: ({
|
|
2742
|
-
code: string;
|
|
2743
|
-
required: boolean;
|
|
2744
|
-
id: string;
|
|
2745
|
-
title: string;
|
|
2746
|
-
prefix: string | null;
|
|
2747
|
-
options: string[];
|
|
2748
|
-
defaultValue: string | null;
|
|
2749
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "checkbox" | "pull_down" | "ticket" | "calculation";
|
|
2750
|
-
approver: boolean;
|
|
2751
|
-
regexpFormat: string | null;
|
|
2752
|
-
formula: string | null;
|
|
2753
|
-
minValue: number | null;
|
|
2754
|
-
maxValue: number | null;
|
|
2755
|
-
decimalDigit: number | null;
|
|
2756
|
-
delimited: boolean | null;
|
|
2757
|
-
suffix: string | null;
|
|
2758
|
-
showTotal: boolean;
|
|
2759
|
-
allowedExtensions: string[];
|
|
2760
|
-
hidden?: boolean | null | undefined;
|
|
2761
|
-
author?: boolean | undefined;
|
|
2762
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2763
|
-
} & {
|
|
2764
|
-
generalMaster?: {
|
|
2765
|
-
code: string;
|
|
2766
|
-
name: string;
|
|
2767
|
-
id: string;
|
|
2768
|
-
description: string | null;
|
|
2769
|
-
createdAt: string;
|
|
2770
|
-
updatedAt: string;
|
|
2771
|
-
fields: {
|
|
2772
|
-
code: string;
|
|
2773
|
-
required: boolean;
|
|
2774
|
-
id: string;
|
|
2775
|
-
visible: boolean;
|
|
2776
|
-
title: string;
|
|
2777
|
-
options: string[] | null;
|
|
2778
|
-
description: string | null;
|
|
2779
|
-
createdAt: string;
|
|
2780
|
-
updatedAt: string;
|
|
2781
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2782
|
-
}[];
|
|
2783
|
-
} | {} | null | undefined;
|
|
2784
|
-
defaultGeneralMasterItem?: {
|
|
2785
|
-
code: string;
|
|
2786
|
-
name: string;
|
|
2787
|
-
id: string;
|
|
2788
|
-
description: string | null;
|
|
2789
|
-
createdAt: string;
|
|
2790
|
-
updatedAt: string;
|
|
2791
|
-
startsOn: string | null;
|
|
2792
|
-
endsOn: string | null;
|
|
2793
|
-
inputs: {
|
|
2794
|
-
id: string;
|
|
2795
|
-
value: string | string[] | null;
|
|
2796
|
-
field: {
|
|
2797
|
-
code: string;
|
|
2798
|
-
required: boolean;
|
|
2799
|
-
id: string;
|
|
2800
|
-
visible: boolean;
|
|
2801
|
-
title: string;
|
|
2802
|
-
options: string[] | null;
|
|
2803
|
-
description: string | null;
|
|
2804
|
-
createdAt: string;
|
|
2805
|
-
updatedAt: string;
|
|
2806
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
2807
|
-
};
|
|
2808
|
-
createdAt: string;
|
|
2809
|
-
updatedAt: string;
|
|
2810
|
-
}[];
|
|
2811
|
-
} | {} | null | undefined;
|
|
2812
|
-
})[] | undefined;
|
|
2813
|
-
}>, "many">>;
|
|
940
|
+
}, zod.core.$strip>;
|
|
941
|
+
}, zod.core.$strip>>;
|
|
942
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodObject<{}, zod.core.$strip>>]>>>;
|
|
943
|
+
}, zod.core.$strip>>>>;
|
|
944
|
+
}, zod.core.$strip>>>;
|
|
2814
945
|
ticketViewers: zod.ZodArray<zod.ZodObject<{
|
|
2815
946
|
id: zod.ZodString;
|
|
2816
947
|
user: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
@@ -2825,57 +956,18 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
2825
956
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
2826
957
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
2827
958
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
2828
|
-
},
|
|
2829
|
-
|
|
2830
|
-
"
|
|
2831
|
-
"
|
|
2832
|
-
|
|
2833
|
-
"
|
|
2834
|
-
"64x64": string | null;
|
|
2835
|
-
"32x32": string | null;
|
|
959
|
+
}, zod.core.$strip>;
|
|
960
|
+
status: zod.ZodEnum<{
|
|
961
|
+
invited: "invited";
|
|
962
|
+
activated: "activated";
|
|
963
|
+
suspended: "suspended";
|
|
964
|
+
deactivated: "deactivated";
|
|
2836
965
|
}>;
|
|
2837
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
2838
966
|
locale: zod.ZodString;
|
|
2839
967
|
createdAt: zod.ZodString;
|
|
2840
968
|
updatedAt: zod.ZodString;
|
|
2841
969
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2842
|
-
},
|
|
2843
|
-
code: string;
|
|
2844
|
-
id: string;
|
|
2845
|
-
image: {
|
|
2846
|
-
"100x100": string | null;
|
|
2847
|
-
"64x64": string | null;
|
|
2848
|
-
"32x32": string | null;
|
|
2849
|
-
};
|
|
2850
|
-
email: string;
|
|
2851
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
2852
|
-
firstName: string;
|
|
2853
|
-
lastName: string;
|
|
2854
|
-
fullName: string;
|
|
2855
|
-
locale: string;
|
|
2856
|
-
createdAt: string;
|
|
2857
|
-
updatedAt: string;
|
|
2858
|
-
employeeId?: string | null | undefined;
|
|
2859
|
-
deactivatedAt?: string | null | undefined;
|
|
2860
|
-
}, {
|
|
2861
|
-
code: string;
|
|
2862
|
-
id: string;
|
|
2863
|
-
image: {
|
|
2864
|
-
"100x100": string | null;
|
|
2865
|
-
"64x64": string | null;
|
|
2866
|
-
"32x32": string | null;
|
|
2867
|
-
};
|
|
2868
|
-
email: string;
|
|
2869
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
2870
|
-
firstName: string;
|
|
2871
|
-
lastName: string;
|
|
2872
|
-
fullName: string;
|
|
2873
|
-
locale: string;
|
|
2874
|
-
createdAt: string;
|
|
2875
|
-
updatedAt: string;
|
|
2876
|
-
employeeId?: string | null | undefined;
|
|
2877
|
-
deactivatedAt?: string | null | undefined;
|
|
2878
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
970
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
2879
971
|
team: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
2880
972
|
id: zod.ZodString;
|
|
2881
973
|
name: zod.ZodString;
|
|
@@ -2885,25 +977,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
2885
977
|
usersCount: zod.ZodNumber;
|
|
2886
978
|
createdAt: zod.ZodString;
|
|
2887
979
|
updatedAt: zod.ZodString;
|
|
2888
|
-
},
|
|
2889
|
-
code: string;
|
|
2890
|
-
name: string;
|
|
2891
|
-
id: string;
|
|
2892
|
-
fullName: string;
|
|
2893
|
-
createdAt: string;
|
|
2894
|
-
updatedAt: string;
|
|
2895
|
-
approveOnly: boolean;
|
|
2896
|
-
usersCount: number;
|
|
2897
|
-
}, {
|
|
2898
|
-
code: string;
|
|
2899
|
-
name: string;
|
|
2900
|
-
id: string;
|
|
2901
|
-
fullName: string;
|
|
2902
|
-
createdAt: string;
|
|
2903
|
-
updatedAt: string;
|
|
2904
|
-
approveOnly: boolean;
|
|
2905
|
-
usersCount: number;
|
|
2906
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
980
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
2907
981
|
grade: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
2908
982
|
id: zod.ZodString;
|
|
2909
983
|
name: zod.ZodString;
|
|
@@ -2912,293 +986,33 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
2912
986
|
isDefault: zod.ZodBoolean;
|
|
2913
987
|
createdAt: zod.ZodString;
|
|
2914
988
|
updatedAt: zod.ZodString;
|
|
2915
|
-
},
|
|
2916
|
-
|
|
2917
|
-
name: string;
|
|
2918
|
-
id: string;
|
|
2919
|
-
level: number;
|
|
2920
|
-
createdAt: string;
|
|
2921
|
-
updatedAt: string;
|
|
2922
|
-
isDefault: boolean;
|
|
2923
|
-
}, {
|
|
2924
|
-
code: string | null;
|
|
2925
|
-
name: string;
|
|
2926
|
-
id: string;
|
|
2927
|
-
level: number;
|
|
2928
|
-
createdAt: string;
|
|
2929
|
-
updatedAt: string;
|
|
2930
|
-
isDefault: boolean;
|
|
2931
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
2932
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2933
|
-
id: string;
|
|
2934
|
-
user?: any;
|
|
2935
|
-
team?: any;
|
|
2936
|
-
grade?: any;
|
|
2937
|
-
}, {
|
|
2938
|
-
id: string;
|
|
2939
|
-
user?: any;
|
|
2940
|
-
team?: any;
|
|
2941
|
-
grade?: any;
|
|
2942
|
-
}>, "many">;
|
|
989
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
990
|
+
}, zod.core.$strip>>;
|
|
2943
991
|
cloudSignSetting: zod.ZodUnion<[zod.ZodObject<{
|
|
2944
992
|
required: zod.ZodBoolean;
|
|
2945
|
-
},
|
|
2946
|
-
|
|
2947
|
-
}, {
|
|
2948
|
-
required: boolean;
|
|
2949
|
-
}>, zod.ZodNullable<zod.ZodObject<{}, "strip", zod.ZodTypeAny, {}, {}>>]>;
|
|
2950
|
-
}, "strip", zod.ZodTypeAny, {
|
|
2951
|
-
ticketViewers: {
|
|
2952
|
-
id: string;
|
|
2953
|
-
user?: any;
|
|
2954
|
-
team?: any;
|
|
2955
|
-
grade?: any;
|
|
2956
|
-
}[];
|
|
2957
|
-
cloudSignSetting: {
|
|
2958
|
-
required: boolean;
|
|
2959
|
-
} | {} | null;
|
|
2960
|
-
sectionList?: {
|
|
2961
|
-
title: string | null;
|
|
2962
|
-
description: string | null;
|
|
2963
|
-
sectionType: "form" | "slip";
|
|
2964
|
-
conditional?: boolean | undefined;
|
|
2965
|
-
id?: string | undefined;
|
|
2966
|
-
formFields?: ({
|
|
2967
|
-
code: string;
|
|
2968
|
-
required: boolean;
|
|
2969
|
-
id: string;
|
|
2970
|
-
title: string;
|
|
2971
|
-
prefix: string | null;
|
|
2972
|
-
options: string[] | null;
|
|
2973
|
-
size: "full" | "half";
|
|
2974
|
-
description: string | null;
|
|
2975
|
-
minLength: number | null;
|
|
2976
|
-
maxLength: number | null;
|
|
2977
|
-
defaultValue: string | null;
|
|
2978
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
2979
|
-
approver: boolean;
|
|
2980
|
-
regexpFormat: string | null;
|
|
2981
|
-
formula: string | null;
|
|
2982
|
-
minValue: number | null;
|
|
2983
|
-
maxValue: number | null;
|
|
2984
|
-
decimalDigit: number | null;
|
|
2985
|
-
delimited: boolean | null;
|
|
2986
|
-
suffix: string | null;
|
|
2987
|
-
hidden?: boolean | null | undefined;
|
|
2988
|
-
author?: boolean | undefined;
|
|
2989
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
2990
|
-
} & {
|
|
2991
|
-
generalMaster?: any;
|
|
2992
|
-
defaultGeneralMasterItem?: any;
|
|
2993
|
-
externalApiSetting?: any;
|
|
2994
|
-
kintoneAppSetting?: any;
|
|
2995
|
-
climberCloudSetting?: any;
|
|
2996
|
-
})[] | undefined;
|
|
2997
|
-
conditionAllOf?: boolean | undefined;
|
|
2998
|
-
slipFields?: ({
|
|
2999
|
-
code: string;
|
|
3000
|
-
required: boolean;
|
|
3001
|
-
id: string;
|
|
3002
|
-
title: string;
|
|
3003
|
-
prefix: string | null;
|
|
3004
|
-
options: string[];
|
|
3005
|
-
defaultValue: string | null;
|
|
3006
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "checkbox" | "pull_down" | "ticket" | "calculation";
|
|
3007
|
-
approver: boolean;
|
|
3008
|
-
regexpFormat: string | null;
|
|
3009
|
-
formula: string | null;
|
|
3010
|
-
minValue: number | null;
|
|
3011
|
-
maxValue: number | null;
|
|
3012
|
-
decimalDigit: number | null;
|
|
3013
|
-
delimited: boolean | null;
|
|
3014
|
-
suffix: string | null;
|
|
3015
|
-
showTotal: boolean;
|
|
3016
|
-
allowedExtensions: string[];
|
|
3017
|
-
hidden?: boolean | null | undefined;
|
|
3018
|
-
author?: boolean | undefined;
|
|
3019
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3020
|
-
} & {
|
|
3021
|
-
generalMaster?: {
|
|
3022
|
-
code: string;
|
|
3023
|
-
name: string;
|
|
3024
|
-
id: string;
|
|
3025
|
-
description: string | null;
|
|
3026
|
-
createdAt: string;
|
|
3027
|
-
updatedAt: string;
|
|
3028
|
-
fields: {
|
|
3029
|
-
code: string;
|
|
3030
|
-
required: boolean;
|
|
3031
|
-
id: string;
|
|
3032
|
-
visible: boolean;
|
|
3033
|
-
title: string;
|
|
3034
|
-
options: string[] | null;
|
|
3035
|
-
description: string | null;
|
|
3036
|
-
createdAt: string;
|
|
3037
|
-
updatedAt: string;
|
|
3038
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3039
|
-
}[];
|
|
3040
|
-
} | {} | null | undefined;
|
|
3041
|
-
defaultGeneralMasterItem?: {
|
|
3042
|
-
code: string;
|
|
3043
|
-
name: string;
|
|
3044
|
-
id: string;
|
|
3045
|
-
description: string | null;
|
|
3046
|
-
createdAt: string;
|
|
3047
|
-
updatedAt: string;
|
|
3048
|
-
startsOn: string | null;
|
|
3049
|
-
endsOn: string | null;
|
|
3050
|
-
inputs: {
|
|
3051
|
-
id: string;
|
|
3052
|
-
value: string | string[] | null;
|
|
3053
|
-
field: {
|
|
3054
|
-
code: string;
|
|
3055
|
-
required: boolean;
|
|
3056
|
-
id: string;
|
|
3057
|
-
visible: boolean;
|
|
3058
|
-
title: string;
|
|
3059
|
-
options: string[] | null;
|
|
3060
|
-
description: string | null;
|
|
3061
|
-
createdAt: string;
|
|
3062
|
-
updatedAt: string;
|
|
3063
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3064
|
-
};
|
|
3065
|
-
createdAt: string;
|
|
3066
|
-
updatedAt: string;
|
|
3067
|
-
}[];
|
|
3068
|
-
} | {} | null | undefined;
|
|
3069
|
-
})[] | undefined;
|
|
3070
|
-
}[] | undefined;
|
|
3071
|
-
}, {
|
|
3072
|
-
ticketViewers: {
|
|
3073
|
-
id: string;
|
|
3074
|
-
user?: any;
|
|
3075
|
-
team?: any;
|
|
3076
|
-
grade?: any;
|
|
3077
|
-
}[];
|
|
3078
|
-
cloudSignSetting: {
|
|
3079
|
-
required: boolean;
|
|
3080
|
-
} | {} | null;
|
|
3081
|
-
sectionList?: {
|
|
3082
|
-
title: string | null;
|
|
3083
|
-
description: string | null;
|
|
3084
|
-
sectionType: "form" | "slip";
|
|
3085
|
-
conditional?: boolean | undefined;
|
|
3086
|
-
id?: string | undefined;
|
|
3087
|
-
formFields?: ({
|
|
3088
|
-
code: string;
|
|
3089
|
-
required: boolean;
|
|
3090
|
-
id: string;
|
|
3091
|
-
title: string;
|
|
3092
|
-
prefix: string | null;
|
|
3093
|
-
options: string[] | null;
|
|
3094
|
-
size: "full" | "half";
|
|
3095
|
-
description: string | null;
|
|
3096
|
-
minLength: number | null;
|
|
3097
|
-
maxLength: number | null;
|
|
3098
|
-
defaultValue: string | null;
|
|
3099
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3100
|
-
approver: boolean;
|
|
3101
|
-
regexpFormat: string | null;
|
|
3102
|
-
formula: string | null;
|
|
3103
|
-
minValue: number | null;
|
|
3104
|
-
maxValue: number | null;
|
|
3105
|
-
decimalDigit: number | null;
|
|
3106
|
-
delimited: boolean | null;
|
|
3107
|
-
suffix: string | null;
|
|
3108
|
-
hidden?: boolean | null | undefined;
|
|
3109
|
-
author?: boolean | undefined;
|
|
3110
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3111
|
-
} & {
|
|
3112
|
-
generalMaster?: any;
|
|
3113
|
-
defaultGeneralMasterItem?: any;
|
|
3114
|
-
externalApiSetting?: any;
|
|
3115
|
-
kintoneAppSetting?: any;
|
|
3116
|
-
climberCloudSetting?: any;
|
|
3117
|
-
})[] | undefined;
|
|
3118
|
-
conditionAllOf?: boolean | undefined;
|
|
3119
|
-
slipFields?: ({
|
|
3120
|
-
code: string;
|
|
3121
|
-
required: boolean;
|
|
3122
|
-
id: string;
|
|
3123
|
-
title: string;
|
|
3124
|
-
prefix: string | null;
|
|
3125
|
-
options: string[];
|
|
3126
|
-
defaultValue: string | null;
|
|
3127
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "checkbox" | "pull_down" | "ticket" | "calculation";
|
|
3128
|
-
approver: boolean;
|
|
3129
|
-
regexpFormat: string | null;
|
|
3130
|
-
formula: string | null;
|
|
3131
|
-
minValue: number | null;
|
|
3132
|
-
maxValue: number | null;
|
|
3133
|
-
decimalDigit: number | null;
|
|
3134
|
-
delimited: boolean | null;
|
|
3135
|
-
suffix: string | null;
|
|
3136
|
-
showTotal: boolean;
|
|
3137
|
-
allowedExtensions: string[];
|
|
3138
|
-
hidden?: boolean | null | undefined;
|
|
3139
|
-
author?: boolean | undefined;
|
|
3140
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3141
|
-
} & {
|
|
3142
|
-
generalMaster?: {
|
|
3143
|
-
code: string;
|
|
3144
|
-
name: string;
|
|
3145
|
-
id: string;
|
|
3146
|
-
description: string | null;
|
|
3147
|
-
createdAt: string;
|
|
3148
|
-
updatedAt: string;
|
|
3149
|
-
fields: {
|
|
3150
|
-
code: string;
|
|
3151
|
-
required: boolean;
|
|
3152
|
-
id: string;
|
|
3153
|
-
visible: boolean;
|
|
3154
|
-
title: string;
|
|
3155
|
-
options: string[] | null;
|
|
3156
|
-
description: string | null;
|
|
3157
|
-
createdAt: string;
|
|
3158
|
-
updatedAt: string;
|
|
3159
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3160
|
-
}[];
|
|
3161
|
-
} | {} | null | undefined;
|
|
3162
|
-
defaultGeneralMasterItem?: {
|
|
3163
|
-
code: string;
|
|
3164
|
-
name: string;
|
|
3165
|
-
id: string;
|
|
3166
|
-
description: string | null;
|
|
3167
|
-
createdAt: string;
|
|
3168
|
-
updatedAt: string;
|
|
3169
|
-
startsOn: string | null;
|
|
3170
|
-
endsOn: string | null;
|
|
3171
|
-
inputs: {
|
|
3172
|
-
id: string;
|
|
3173
|
-
value: string | string[] | null;
|
|
3174
|
-
field: {
|
|
3175
|
-
code: string;
|
|
3176
|
-
required: boolean;
|
|
3177
|
-
id: string;
|
|
3178
|
-
visible: boolean;
|
|
3179
|
-
title: string;
|
|
3180
|
-
options: string[] | null;
|
|
3181
|
-
description: string | null;
|
|
3182
|
-
createdAt: string;
|
|
3183
|
-
updatedAt: string;
|
|
3184
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3185
|
-
};
|
|
3186
|
-
createdAt: string;
|
|
3187
|
-
updatedAt: string;
|
|
3188
|
-
}[];
|
|
3189
|
-
} | {} | null | undefined;
|
|
3190
|
-
})[] | undefined;
|
|
3191
|
-
}[] | undefined;
|
|
3192
|
-
}>>, zod.ZodObject<{
|
|
993
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodObject<{}, zod.core.$strip>>]>;
|
|
994
|
+
}, zod.core.$strip>>, zod.ZodObject<{
|
|
3193
995
|
routeConditions: zod.ZodArray<zod.ZodObject<{
|
|
3194
996
|
id: zod.ZodString;
|
|
3195
|
-
conditionType: zod.ZodEnum<
|
|
3196
|
-
|
|
997
|
+
conditionType: zod.ZodEnum<{
|
|
998
|
+
always: "always";
|
|
999
|
+
field: "field";
|
|
1000
|
+
field_otherwise: "field_otherwise";
|
|
1001
|
+
}>;
|
|
1002
|
+
combinationType: zod.ZodEnum<{
|
|
1003
|
+
any: "any";
|
|
1004
|
+
custom: "custom";
|
|
1005
|
+
all: "all";
|
|
1006
|
+
}>;
|
|
3197
1007
|
combinationExpression: zod.ZodString;
|
|
3198
1008
|
route: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
3199
1009
|
id: zod.ZodString;
|
|
3200
1010
|
code: zod.ZodString;
|
|
3201
|
-
status: zod.ZodEnum<
|
|
1011
|
+
status: zod.ZodEnum<{
|
|
1012
|
+
error: "error";
|
|
1013
|
+
visible: "visible";
|
|
1014
|
+
deleted: "deleted";
|
|
1015
|
+
}>;
|
|
3202
1016
|
versionId: zod.ZodString;
|
|
3203
1017
|
versionNumber: zod.ZodNumber;
|
|
3204
1018
|
name: zod.ZodString;
|
|
@@ -3217,57 +1031,18 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3217
1031
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
3218
1032
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
3219
1033
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
3220
|
-
},
|
|
3221
|
-
|
|
3222
|
-
"
|
|
3223
|
-
"
|
|
3224
|
-
|
|
3225
|
-
"
|
|
3226
|
-
"64x64": string | null;
|
|
3227
|
-
"32x32": string | null;
|
|
1034
|
+
}, zod.core.$strip>;
|
|
1035
|
+
status: zod.ZodEnum<{
|
|
1036
|
+
invited: "invited";
|
|
1037
|
+
activated: "activated";
|
|
1038
|
+
suspended: "suspended";
|
|
1039
|
+
deactivated: "deactivated";
|
|
3228
1040
|
}>;
|
|
3229
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
3230
1041
|
locale: zod.ZodString;
|
|
3231
1042
|
createdAt: zod.ZodString;
|
|
3232
1043
|
updatedAt: zod.ZodString;
|
|
3233
1044
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3234
|
-
},
|
|
3235
|
-
code: string;
|
|
3236
|
-
id: string;
|
|
3237
|
-
image: {
|
|
3238
|
-
"100x100": string | null;
|
|
3239
|
-
"64x64": string | null;
|
|
3240
|
-
"32x32": string | null;
|
|
3241
|
-
};
|
|
3242
|
-
email: string;
|
|
3243
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
3244
|
-
firstName: string;
|
|
3245
|
-
lastName: string;
|
|
3246
|
-
fullName: string;
|
|
3247
|
-
locale: string;
|
|
3248
|
-
createdAt: string;
|
|
3249
|
-
updatedAt: string;
|
|
3250
|
-
employeeId?: string | null | undefined;
|
|
3251
|
-
deactivatedAt?: string | null | undefined;
|
|
3252
|
-
}, {
|
|
3253
|
-
code: string;
|
|
3254
|
-
id: string;
|
|
3255
|
-
image: {
|
|
3256
|
-
"100x100": string | null;
|
|
3257
|
-
"64x64": string | null;
|
|
3258
|
-
"32x32": string | null;
|
|
3259
|
-
};
|
|
3260
|
-
email: string;
|
|
3261
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
3262
|
-
firstName: string;
|
|
3263
|
-
lastName: string;
|
|
3264
|
-
fullName: string;
|
|
3265
|
-
locale: string;
|
|
3266
|
-
createdAt: string;
|
|
3267
|
-
updatedAt: string;
|
|
3268
|
-
employeeId?: string | null | undefined;
|
|
3269
|
-
deactivatedAt?: string | null | undefined;
|
|
3270
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
1045
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>>;
|
|
3271
1046
|
versionAuthor: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
3272
1047
|
id: zod.ZodString;
|
|
3273
1048
|
email: zod.ZodString;
|
|
@@ -3280,57 +1055,18 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3280
1055
|
"100x100": zod.ZodNullable<zod.ZodString>;
|
|
3281
1056
|
"64x64": zod.ZodNullable<zod.ZodString>;
|
|
3282
1057
|
"32x32": zod.ZodNullable<zod.ZodString>;
|
|
3283
|
-
},
|
|
3284
|
-
|
|
3285
|
-
"
|
|
3286
|
-
"
|
|
3287
|
-
|
|
3288
|
-
"
|
|
3289
|
-
"64x64": string | null;
|
|
3290
|
-
"32x32": string | null;
|
|
1058
|
+
}, zod.core.$strip>;
|
|
1059
|
+
status: zod.ZodEnum<{
|
|
1060
|
+
invited: "invited";
|
|
1061
|
+
activated: "activated";
|
|
1062
|
+
suspended: "suspended";
|
|
1063
|
+
deactivated: "deactivated";
|
|
3291
1064
|
}>;
|
|
3292
|
-
status: zod.ZodEnum<["invited", "activated", "suspended", "deactivated"]>;
|
|
3293
1065
|
locale: zod.ZodString;
|
|
3294
1066
|
createdAt: zod.ZodString;
|
|
3295
1067
|
updatedAt: zod.ZodString;
|
|
3296
1068
|
deactivatedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3297
|
-
},
|
|
3298
|
-
code: string;
|
|
3299
|
-
id: string;
|
|
3300
|
-
image: {
|
|
3301
|
-
"100x100": string | null;
|
|
3302
|
-
"64x64": string | null;
|
|
3303
|
-
"32x32": string | null;
|
|
3304
|
-
};
|
|
3305
|
-
email: string;
|
|
3306
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
3307
|
-
firstName: string;
|
|
3308
|
-
lastName: string;
|
|
3309
|
-
fullName: string;
|
|
3310
|
-
locale: string;
|
|
3311
|
-
createdAt: string;
|
|
3312
|
-
updatedAt: string;
|
|
3313
|
-
employeeId?: string | null | undefined;
|
|
3314
|
-
deactivatedAt?: string | null | undefined;
|
|
3315
|
-
}, {
|
|
3316
|
-
code: string;
|
|
3317
|
-
id: string;
|
|
3318
|
-
image: {
|
|
3319
|
-
"100x100": string | null;
|
|
3320
|
-
"64x64": string | null;
|
|
3321
|
-
"32x32": string | null;
|
|
3322
|
-
};
|
|
3323
|
-
email: string;
|
|
3324
|
-
status: "suspended" | "activated" | "invited" | "deactivated";
|
|
3325
|
-
firstName: string;
|
|
3326
|
-
lastName: string;
|
|
3327
|
-
fullName: string;
|
|
3328
|
-
locale: string;
|
|
3329
|
-
createdAt: string;
|
|
3330
|
-
updatedAt: string;
|
|
3331
|
-
employeeId?: string | null | undefined;
|
|
3332
|
-
deactivatedAt?: string | null | undefined;
|
|
3333
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
1069
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
3334
1070
|
folder: zod.ZodObject<{
|
|
3335
1071
|
id: zod.ZodString;
|
|
3336
1072
|
name: zod.ZodString;
|
|
@@ -3341,74 +1077,8 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3341
1077
|
pipelinesCount: zod.ZodNumber;
|
|
3342
1078
|
createdAt: zod.ZodString;
|
|
3343
1079
|
updatedAt: zod.ZodString;
|
|
3344
|
-
},
|
|
3345
|
-
|
|
3346
|
-
name: string;
|
|
3347
|
-
id: string;
|
|
3348
|
-
createdAt: string;
|
|
3349
|
-
updatedAt: string;
|
|
3350
|
-
workflowsCount: number;
|
|
3351
|
-
routesCount: number;
|
|
3352
|
-
pipelinesCount: number;
|
|
3353
|
-
description?: string | null | undefined;
|
|
3354
|
-
}, {
|
|
3355
|
-
code: string;
|
|
3356
|
-
name: string;
|
|
3357
|
-
id: string;
|
|
3358
|
-
createdAt: string;
|
|
3359
|
-
updatedAt: string;
|
|
3360
|
-
workflowsCount: number;
|
|
3361
|
-
routesCount: number;
|
|
3362
|
-
pipelinesCount: number;
|
|
3363
|
-
description?: string | null | undefined;
|
|
3364
|
-
}>;
|
|
3365
|
-
}, "strip", zod.ZodTypeAny, {
|
|
3366
|
-
code: string;
|
|
3367
|
-
name: string;
|
|
3368
|
-
id: string;
|
|
3369
|
-
description: string;
|
|
3370
|
-
status: "error" | "visible" | "deleted";
|
|
3371
|
-
createdAt: string;
|
|
3372
|
-
updatedAt: string;
|
|
3373
|
-
versionId: string;
|
|
3374
|
-
versionNumber: number;
|
|
3375
|
-
folder: {
|
|
3376
|
-
code: string;
|
|
3377
|
-
name: string;
|
|
3378
|
-
id: string;
|
|
3379
|
-
createdAt: string;
|
|
3380
|
-
updatedAt: string;
|
|
3381
|
-
workflowsCount: number;
|
|
3382
|
-
routesCount: number;
|
|
3383
|
-
pipelinesCount: number;
|
|
3384
|
-
description?: string | null | undefined;
|
|
3385
|
-
};
|
|
3386
|
-
author?: any;
|
|
3387
|
-
versionAuthor?: any;
|
|
3388
|
-
}, {
|
|
3389
|
-
code: string;
|
|
3390
|
-
name: string;
|
|
3391
|
-
id: string;
|
|
3392
|
-
description: string;
|
|
3393
|
-
status: "error" | "visible" | "deleted";
|
|
3394
|
-
createdAt: string;
|
|
3395
|
-
updatedAt: string;
|
|
3396
|
-
versionId: string;
|
|
3397
|
-
versionNumber: number;
|
|
3398
|
-
folder: {
|
|
3399
|
-
code: string;
|
|
3400
|
-
name: string;
|
|
3401
|
-
id: string;
|
|
3402
|
-
createdAt: string;
|
|
3403
|
-
updatedAt: string;
|
|
3404
|
-
workflowsCount: number;
|
|
3405
|
-
routesCount: number;
|
|
3406
|
-
pipelinesCount: number;
|
|
3407
|
-
description?: string | null | undefined;
|
|
3408
|
-
};
|
|
3409
|
-
author?: any;
|
|
3410
|
-
versionAuthor?: any;
|
|
3411
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
1080
|
+
}, zod.core.$strip>;
|
|
1081
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
3412
1082
|
conditionFields: zod.ZodArray<zod.ZodObject<{
|
|
3413
1083
|
id: zod.ZodString;
|
|
3414
1084
|
symbol: zod.ZodString;
|
|
@@ -3417,13 +1087,32 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3417
1087
|
id: zod.ZodString;
|
|
3418
1088
|
title: zod.ZodString;
|
|
3419
1089
|
description: zod.ZodNullable<zod.ZodString>;
|
|
3420
|
-
fieldType: zod.ZodEnum<
|
|
1090
|
+
fieldType: zod.ZodEnum<{
|
|
1091
|
+
number: "number";
|
|
1092
|
+
text: "text";
|
|
1093
|
+
date: "date";
|
|
1094
|
+
file: "file";
|
|
1095
|
+
user: "user";
|
|
1096
|
+
team: "team";
|
|
1097
|
+
master: "master";
|
|
1098
|
+
text_long: "text_long";
|
|
1099
|
+
integer: "integer";
|
|
1100
|
+
checkbox: "checkbox";
|
|
1101
|
+
pull_down: "pull_down";
|
|
1102
|
+
ticket: "ticket";
|
|
1103
|
+
calculation: "calculation";
|
|
1104
|
+
button_api: "button_api";
|
|
1105
|
+
button_kintone: "button_kintone";
|
|
1106
|
+
}>;
|
|
3421
1107
|
required: zod.ZodBoolean;
|
|
3422
1108
|
approver: zod.ZodBoolean;
|
|
3423
1109
|
author: zod.ZodOptional<zod.ZodBoolean>;
|
|
3424
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
1110
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
3425
1111
|
code: zod.ZodString;
|
|
3426
|
-
size: zod.ZodEnum<
|
|
1112
|
+
size: zod.ZodEnum<{
|
|
1113
|
+
full: "full";
|
|
1114
|
+
half: "half";
|
|
1115
|
+
}>;
|
|
3427
1116
|
regexpFormat: zod.ZodNullable<zod.ZodString>;
|
|
3428
1117
|
formula: zod.ZodNullable<zod.ZodString>;
|
|
3429
1118
|
defaultValue: zod.ZodNullable<zod.ZodString>;
|
|
@@ -3437,55 +1126,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3437
1126
|
suffix: zod.ZodNullable<zod.ZodString>;
|
|
3438
1127
|
hidden: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
3439
1128
|
readonlyOnUi: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
3440
|
-
},
|
|
3441
|
-
code: string;
|
|
3442
|
-
required: boolean;
|
|
3443
|
-
id: string;
|
|
3444
|
-
title: string;
|
|
3445
|
-
prefix: string | null;
|
|
3446
|
-
options: string[] | null;
|
|
3447
|
-
size: "full" | "half";
|
|
3448
|
-
description: string | null;
|
|
3449
|
-
minLength: number | null;
|
|
3450
|
-
maxLength: number | null;
|
|
3451
|
-
defaultValue: string | null;
|
|
3452
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3453
|
-
approver: boolean;
|
|
3454
|
-
regexpFormat: string | null;
|
|
3455
|
-
formula: string | null;
|
|
3456
|
-
minValue: number | null;
|
|
3457
|
-
maxValue: number | null;
|
|
3458
|
-
decimalDigit: number | null;
|
|
3459
|
-
delimited: boolean | null;
|
|
3460
|
-
suffix: string | null;
|
|
3461
|
-
hidden?: boolean | null | undefined;
|
|
3462
|
-
author?: boolean | undefined;
|
|
3463
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3464
|
-
}, {
|
|
3465
|
-
code: string;
|
|
3466
|
-
required: boolean;
|
|
3467
|
-
id: string;
|
|
3468
|
-
title: string;
|
|
3469
|
-
prefix: string | null;
|
|
3470
|
-
options: string[] | null;
|
|
3471
|
-
size: "full" | "half";
|
|
3472
|
-
description: string | null;
|
|
3473
|
-
minLength: number | null;
|
|
3474
|
-
maxLength: number | null;
|
|
3475
|
-
defaultValue: string | null;
|
|
3476
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3477
|
-
approver: boolean;
|
|
3478
|
-
regexpFormat: string | null;
|
|
3479
|
-
formula: string | null;
|
|
3480
|
-
minValue: number | null;
|
|
3481
|
-
maxValue: number | null;
|
|
3482
|
-
decimalDigit: number | null;
|
|
3483
|
-
delimited: boolean | null;
|
|
3484
|
-
suffix: string | null;
|
|
3485
|
-
hidden?: boolean | null | undefined;
|
|
3486
|
-
author?: boolean | undefined;
|
|
3487
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3488
|
-
}>;
|
|
1129
|
+
}, zod.core.$strip>;
|
|
3489
1130
|
grade: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
3490
1131
|
id: zod.ZodString;
|
|
3491
1132
|
name: zod.ZodString;
|
|
@@ -3494,23 +1135,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3494
1135
|
isDefault: zod.ZodBoolean;
|
|
3495
1136
|
createdAt: zod.ZodString;
|
|
3496
1137
|
updatedAt: zod.ZodString;
|
|
3497
|
-
},
|
|
3498
|
-
code: string | null;
|
|
3499
|
-
name: string;
|
|
3500
|
-
id: string;
|
|
3501
|
-
level: number;
|
|
3502
|
-
createdAt: string;
|
|
3503
|
-
updatedAt: string;
|
|
3504
|
-
isDefault: boolean;
|
|
3505
|
-
}, {
|
|
3506
|
-
code: string | null;
|
|
3507
|
-
name: string;
|
|
3508
|
-
id: string;
|
|
3509
|
-
level: number;
|
|
3510
|
-
createdAt: string;
|
|
3511
|
-
updatedAt: string;
|
|
3512
|
-
isDefault: boolean;
|
|
3513
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
1138
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
3514
1139
|
team: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
3515
1140
|
id: zod.ZodString;
|
|
3516
1141
|
name: zod.ZodString;
|
|
@@ -3520,25 +1145,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3520
1145
|
usersCount: zod.ZodNumber;
|
|
3521
1146
|
createdAt: zod.ZodString;
|
|
3522
1147
|
updatedAt: zod.ZodString;
|
|
3523
|
-
},
|
|
3524
|
-
code: string;
|
|
3525
|
-
name: string;
|
|
3526
|
-
id: string;
|
|
3527
|
-
fullName: string;
|
|
3528
|
-
createdAt: string;
|
|
3529
|
-
updatedAt: string;
|
|
3530
|
-
approveOnly: boolean;
|
|
3531
|
-
usersCount: number;
|
|
3532
|
-
}, {
|
|
3533
|
-
code: string;
|
|
3534
|
-
name: string;
|
|
3535
|
-
id: string;
|
|
3536
|
-
fullName: string;
|
|
3537
|
-
createdAt: string;
|
|
3538
|
-
updatedAt: string;
|
|
3539
|
-
approveOnly: boolean;
|
|
3540
|
-
usersCount: number;
|
|
3541
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
1148
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
3542
1149
|
generalMasterItem: zod.ZodNullable<zod.ZodUnion<[zod.ZodObject<{
|
|
3543
1150
|
id: zod.ZodString;
|
|
3544
1151
|
code: zod.ZodString;
|
|
@@ -3550,7 +1157,7 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3550
1157
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
3551
1158
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
3552
1159
|
id: zod.ZodString;
|
|
3553
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
1160
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
3554
1161
|
createdAt: zod.ZodString;
|
|
3555
1162
|
updatedAt: zod.ZodString;
|
|
3556
1163
|
field: zod.ZodObject<{
|
|
@@ -3558,354 +1165,24 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
3558
1165
|
title: zod.ZodString;
|
|
3559
1166
|
description: zod.ZodNullable<zod.ZodString>;
|
|
3560
1167
|
code: zod.ZodString;
|
|
3561
|
-
fieldType: zod.ZodEnum<
|
|
1168
|
+
fieldType: zod.ZodEnum<{
|
|
1169
|
+
number: "number";
|
|
1170
|
+
text: "text";
|
|
1171
|
+
date: "date";
|
|
1172
|
+
text_long: "text_long";
|
|
1173
|
+
integer: "integer";
|
|
1174
|
+
checkbox: "checkbox";
|
|
1175
|
+
pull_down: "pull_down";
|
|
1176
|
+
}>;
|
|
3562
1177
|
required: zod.ZodBoolean;
|
|
3563
1178
|
visible: zod.ZodBoolean;
|
|
3564
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
1179
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
3565
1180
|
createdAt: zod.ZodString;
|
|
3566
1181
|
updatedAt: zod.ZodString;
|
|
3567
|
-
},
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
visible: boolean;
|
|
3572
|
-
title: string;
|
|
3573
|
-
options: string[] | null;
|
|
3574
|
-
description: string | null;
|
|
3575
|
-
createdAt: string;
|
|
3576
|
-
updatedAt: string;
|
|
3577
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3578
|
-
}, {
|
|
3579
|
-
code: string;
|
|
3580
|
-
required: boolean;
|
|
3581
|
-
id: string;
|
|
3582
|
-
visible: boolean;
|
|
3583
|
-
title: string;
|
|
3584
|
-
options: string[] | null;
|
|
3585
|
-
description: string | null;
|
|
3586
|
-
createdAt: string;
|
|
3587
|
-
updatedAt: string;
|
|
3588
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3589
|
-
}>;
|
|
3590
|
-
}, "strip", zod.ZodTypeAny, {
|
|
3591
|
-
id: string;
|
|
3592
|
-
value: string | string[] | null;
|
|
3593
|
-
field: {
|
|
3594
|
-
code: string;
|
|
3595
|
-
required: boolean;
|
|
3596
|
-
id: string;
|
|
3597
|
-
visible: boolean;
|
|
3598
|
-
title: string;
|
|
3599
|
-
options: string[] | null;
|
|
3600
|
-
description: string | null;
|
|
3601
|
-
createdAt: string;
|
|
3602
|
-
updatedAt: string;
|
|
3603
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3604
|
-
};
|
|
3605
|
-
createdAt: string;
|
|
3606
|
-
updatedAt: string;
|
|
3607
|
-
}, {
|
|
3608
|
-
id: string;
|
|
3609
|
-
value: string | string[] | null;
|
|
3610
|
-
field: {
|
|
3611
|
-
code: string;
|
|
3612
|
-
required: boolean;
|
|
3613
|
-
id: string;
|
|
3614
|
-
visible: boolean;
|
|
3615
|
-
title: string;
|
|
3616
|
-
options: string[] | null;
|
|
3617
|
-
description: string | null;
|
|
3618
|
-
createdAt: string;
|
|
3619
|
-
updatedAt: string;
|
|
3620
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3621
|
-
};
|
|
3622
|
-
createdAt: string;
|
|
3623
|
-
updatedAt: string;
|
|
3624
|
-
}>, "many">;
|
|
3625
|
-
}, "strip", zod.ZodTypeAny, {
|
|
3626
|
-
code: string;
|
|
3627
|
-
name: string;
|
|
3628
|
-
id: string;
|
|
3629
|
-
description: string | null;
|
|
3630
|
-
createdAt: string;
|
|
3631
|
-
updatedAt: string;
|
|
3632
|
-
startsOn: string | null;
|
|
3633
|
-
endsOn: string | null;
|
|
3634
|
-
inputs: {
|
|
3635
|
-
id: string;
|
|
3636
|
-
value: string | string[] | null;
|
|
3637
|
-
field: {
|
|
3638
|
-
code: string;
|
|
3639
|
-
required: boolean;
|
|
3640
|
-
id: string;
|
|
3641
|
-
visible: boolean;
|
|
3642
|
-
title: string;
|
|
3643
|
-
options: string[] | null;
|
|
3644
|
-
description: string | null;
|
|
3645
|
-
createdAt: string;
|
|
3646
|
-
updatedAt: string;
|
|
3647
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3648
|
-
};
|
|
3649
|
-
createdAt: string;
|
|
3650
|
-
updatedAt: string;
|
|
3651
|
-
}[];
|
|
3652
|
-
}, {
|
|
3653
|
-
code: string;
|
|
3654
|
-
name: string;
|
|
3655
|
-
id: string;
|
|
3656
|
-
description: string | null;
|
|
3657
|
-
createdAt: string;
|
|
3658
|
-
updatedAt: string;
|
|
3659
|
-
startsOn: string | null;
|
|
3660
|
-
endsOn: string | null;
|
|
3661
|
-
inputs: {
|
|
3662
|
-
id: string;
|
|
3663
|
-
value: string | string[] | null;
|
|
3664
|
-
field: {
|
|
3665
|
-
code: string;
|
|
3666
|
-
required: boolean;
|
|
3667
|
-
id: string;
|
|
3668
|
-
visible: boolean;
|
|
3669
|
-
title: string;
|
|
3670
|
-
options: string[] | null;
|
|
3671
|
-
description: string | null;
|
|
3672
|
-
createdAt: string;
|
|
3673
|
-
updatedAt: string;
|
|
3674
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
3675
|
-
};
|
|
3676
|
-
createdAt: string;
|
|
3677
|
-
updatedAt: string;
|
|
3678
|
-
}[];
|
|
3679
|
-
}>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
3680
|
-
}, "strip", zod.ZodTypeAny, {
|
|
3681
|
-
symbol: string;
|
|
3682
|
-
id: string;
|
|
3683
|
-
value: string | null;
|
|
3684
|
-
formField: {
|
|
3685
|
-
code: string;
|
|
3686
|
-
required: boolean;
|
|
3687
|
-
id: string;
|
|
3688
|
-
title: string;
|
|
3689
|
-
prefix: string | null;
|
|
3690
|
-
options: string[] | null;
|
|
3691
|
-
size: "full" | "half";
|
|
3692
|
-
description: string | null;
|
|
3693
|
-
minLength: number | null;
|
|
3694
|
-
maxLength: number | null;
|
|
3695
|
-
defaultValue: string | null;
|
|
3696
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3697
|
-
approver: boolean;
|
|
3698
|
-
regexpFormat: string | null;
|
|
3699
|
-
formula: string | null;
|
|
3700
|
-
minValue: number | null;
|
|
3701
|
-
maxValue: number | null;
|
|
3702
|
-
decimalDigit: number | null;
|
|
3703
|
-
delimited: boolean | null;
|
|
3704
|
-
suffix: string | null;
|
|
3705
|
-
hidden?: boolean | null | undefined;
|
|
3706
|
-
author?: boolean | undefined;
|
|
3707
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3708
|
-
};
|
|
3709
|
-
team?: any;
|
|
3710
|
-
grade?: any;
|
|
3711
|
-
generalMasterItem?: any;
|
|
3712
|
-
}, {
|
|
3713
|
-
symbol: string;
|
|
3714
|
-
id: string;
|
|
3715
|
-
value: string | null;
|
|
3716
|
-
formField: {
|
|
3717
|
-
code: string;
|
|
3718
|
-
required: boolean;
|
|
3719
|
-
id: string;
|
|
3720
|
-
title: string;
|
|
3721
|
-
prefix: string | null;
|
|
3722
|
-
options: string[] | null;
|
|
3723
|
-
size: "full" | "half";
|
|
3724
|
-
description: string | null;
|
|
3725
|
-
minLength: number | null;
|
|
3726
|
-
maxLength: number | null;
|
|
3727
|
-
defaultValue: string | null;
|
|
3728
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3729
|
-
approver: boolean;
|
|
3730
|
-
regexpFormat: string | null;
|
|
3731
|
-
formula: string | null;
|
|
3732
|
-
minValue: number | null;
|
|
3733
|
-
maxValue: number | null;
|
|
3734
|
-
decimalDigit: number | null;
|
|
3735
|
-
delimited: boolean | null;
|
|
3736
|
-
suffix: string | null;
|
|
3737
|
-
hidden?: boolean | null | undefined;
|
|
3738
|
-
author?: boolean | undefined;
|
|
3739
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3740
|
-
};
|
|
3741
|
-
team?: any;
|
|
3742
|
-
grade?: any;
|
|
3743
|
-
generalMasterItem?: any;
|
|
3744
|
-
}>, "many">;
|
|
1182
|
+
}, zod.core.$strip>;
|
|
1183
|
+
}, zod.core.$strip>>;
|
|
1184
|
+
}, zod.core.$strip>, zod.ZodNullable<zod.ZodAny>]>>;
|
|
1185
|
+
}, zod.core.$strip>>;
|
|
3745
1186
|
errorMessage: zod.ZodNullable<zod.ZodString>;
|
|
3746
|
-
},
|
|
3747
|
-
|
|
3748
|
-
conditionType: "always" | "field" | "field_otherwise";
|
|
3749
|
-
combinationType: "all" | "custom" | "any";
|
|
3750
|
-
combinationExpression: string;
|
|
3751
|
-
conditionFields: {
|
|
3752
|
-
symbol: string;
|
|
3753
|
-
id: string;
|
|
3754
|
-
value: string | null;
|
|
3755
|
-
formField: {
|
|
3756
|
-
code: string;
|
|
3757
|
-
required: boolean;
|
|
3758
|
-
id: string;
|
|
3759
|
-
title: string;
|
|
3760
|
-
prefix: string | null;
|
|
3761
|
-
options: string[] | null;
|
|
3762
|
-
size: "full" | "half";
|
|
3763
|
-
description: string | null;
|
|
3764
|
-
minLength: number | null;
|
|
3765
|
-
maxLength: number | null;
|
|
3766
|
-
defaultValue: string | null;
|
|
3767
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3768
|
-
approver: boolean;
|
|
3769
|
-
regexpFormat: string | null;
|
|
3770
|
-
formula: string | null;
|
|
3771
|
-
minValue: number | null;
|
|
3772
|
-
maxValue: number | null;
|
|
3773
|
-
decimalDigit: number | null;
|
|
3774
|
-
delimited: boolean | null;
|
|
3775
|
-
suffix: string | null;
|
|
3776
|
-
hidden?: boolean | null | undefined;
|
|
3777
|
-
author?: boolean | undefined;
|
|
3778
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3779
|
-
};
|
|
3780
|
-
team?: any;
|
|
3781
|
-
grade?: any;
|
|
3782
|
-
generalMasterItem?: any;
|
|
3783
|
-
}[];
|
|
3784
|
-
errorMessage: string | null;
|
|
3785
|
-
route?: any;
|
|
3786
|
-
}, {
|
|
3787
|
-
id: string;
|
|
3788
|
-
conditionType: "always" | "field" | "field_otherwise";
|
|
3789
|
-
combinationType: "all" | "custom" | "any";
|
|
3790
|
-
combinationExpression: string;
|
|
3791
|
-
conditionFields: {
|
|
3792
|
-
symbol: string;
|
|
3793
|
-
id: string;
|
|
3794
|
-
value: string | null;
|
|
3795
|
-
formField: {
|
|
3796
|
-
code: string;
|
|
3797
|
-
required: boolean;
|
|
3798
|
-
id: string;
|
|
3799
|
-
title: string;
|
|
3800
|
-
prefix: string | null;
|
|
3801
|
-
options: string[] | null;
|
|
3802
|
-
size: "full" | "half";
|
|
3803
|
-
description: string | null;
|
|
3804
|
-
minLength: number | null;
|
|
3805
|
-
maxLength: number | null;
|
|
3806
|
-
defaultValue: string | null;
|
|
3807
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3808
|
-
approver: boolean;
|
|
3809
|
-
regexpFormat: string | null;
|
|
3810
|
-
formula: string | null;
|
|
3811
|
-
minValue: number | null;
|
|
3812
|
-
maxValue: number | null;
|
|
3813
|
-
decimalDigit: number | null;
|
|
3814
|
-
delimited: boolean | null;
|
|
3815
|
-
suffix: string | null;
|
|
3816
|
-
hidden?: boolean | null | undefined;
|
|
3817
|
-
author?: boolean | undefined;
|
|
3818
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3819
|
-
};
|
|
3820
|
-
team?: any;
|
|
3821
|
-
grade?: any;
|
|
3822
|
-
generalMasterItem?: any;
|
|
3823
|
-
}[];
|
|
3824
|
-
errorMessage: string | null;
|
|
3825
|
-
route?: any;
|
|
3826
|
-
}>, "many">;
|
|
3827
|
-
}, "strip", zod.ZodTypeAny, {
|
|
3828
|
-
routeConditions: {
|
|
3829
|
-
id: string;
|
|
3830
|
-
conditionType: "always" | "field" | "field_otherwise";
|
|
3831
|
-
combinationType: "all" | "custom" | "any";
|
|
3832
|
-
combinationExpression: string;
|
|
3833
|
-
conditionFields: {
|
|
3834
|
-
symbol: string;
|
|
3835
|
-
id: string;
|
|
3836
|
-
value: string | null;
|
|
3837
|
-
formField: {
|
|
3838
|
-
code: string;
|
|
3839
|
-
required: boolean;
|
|
3840
|
-
id: string;
|
|
3841
|
-
title: string;
|
|
3842
|
-
prefix: string | null;
|
|
3843
|
-
options: string[] | null;
|
|
3844
|
-
size: "full" | "half";
|
|
3845
|
-
description: string | null;
|
|
3846
|
-
minLength: number | null;
|
|
3847
|
-
maxLength: number | null;
|
|
3848
|
-
defaultValue: string | null;
|
|
3849
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3850
|
-
approver: boolean;
|
|
3851
|
-
regexpFormat: string | null;
|
|
3852
|
-
formula: string | null;
|
|
3853
|
-
minValue: number | null;
|
|
3854
|
-
maxValue: number | null;
|
|
3855
|
-
decimalDigit: number | null;
|
|
3856
|
-
delimited: boolean | null;
|
|
3857
|
-
suffix: string | null;
|
|
3858
|
-
hidden?: boolean | null | undefined;
|
|
3859
|
-
author?: boolean | undefined;
|
|
3860
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3861
|
-
};
|
|
3862
|
-
team?: any;
|
|
3863
|
-
grade?: any;
|
|
3864
|
-
generalMasterItem?: any;
|
|
3865
|
-
}[];
|
|
3866
|
-
errorMessage: string | null;
|
|
3867
|
-
route?: any;
|
|
3868
|
-
}[];
|
|
3869
|
-
}, {
|
|
3870
|
-
routeConditions: {
|
|
3871
|
-
id: string;
|
|
3872
|
-
conditionType: "always" | "field" | "field_otherwise";
|
|
3873
|
-
combinationType: "all" | "custom" | "any";
|
|
3874
|
-
combinationExpression: string;
|
|
3875
|
-
conditionFields: {
|
|
3876
|
-
symbol: string;
|
|
3877
|
-
id: string;
|
|
3878
|
-
value: string | null;
|
|
3879
|
-
formField: {
|
|
3880
|
-
code: string;
|
|
3881
|
-
required: boolean;
|
|
3882
|
-
id: string;
|
|
3883
|
-
title: string;
|
|
3884
|
-
prefix: string | null;
|
|
3885
|
-
options: string[] | null;
|
|
3886
|
-
size: "full" | "half";
|
|
3887
|
-
description: string | null;
|
|
3888
|
-
minLength: number | null;
|
|
3889
|
-
maxLength: number | null;
|
|
3890
|
-
defaultValue: string | null;
|
|
3891
|
-
fieldType: "number" | "file" | "text" | "user" | "integer" | "date" | "team" | "master" | "text_long" | "checkbox" | "pull_down" | "ticket" | "calculation" | "button_api" | "button_kintone";
|
|
3892
|
-
approver: boolean;
|
|
3893
|
-
regexpFormat: string | null;
|
|
3894
|
-
formula: string | null;
|
|
3895
|
-
minValue: number | null;
|
|
3896
|
-
maxValue: number | null;
|
|
3897
|
-
decimalDigit: number | null;
|
|
3898
|
-
delimited: boolean | null;
|
|
3899
|
-
suffix: string | null;
|
|
3900
|
-
hidden?: boolean | null | undefined;
|
|
3901
|
-
author?: boolean | undefined;
|
|
3902
|
-
readonlyOnUi?: boolean | null | undefined;
|
|
3903
|
-
};
|
|
3904
|
-
team?: any;
|
|
3905
|
-
grade?: any;
|
|
3906
|
-
generalMasterItem?: any;
|
|
3907
|
-
}[];
|
|
3908
|
-
errorMessage: string | null;
|
|
3909
|
-
route?: any;
|
|
3910
|
-
}[];
|
|
3911
|
-
}>>;
|
|
1187
|
+
}, zod.core.$strip>>;
|
|
1188
|
+
}, zod.core.$strip>>;
|