@kickflow/mcp-server 0.1.1 → 0.1.4
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 +4 -1
- 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 +7 -4
|
@@ -20,15 +20,7 @@ export declare const listGeneralMastersQueryParams: zod.ZodObject<{
|
|
|
20
20
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
21
21
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
22
22
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
23
|
-
},
|
|
24
|
-
page: number;
|
|
25
|
-
perPage: number;
|
|
26
|
-
sortBy?: string | undefined;
|
|
27
|
-
}, {
|
|
28
|
-
page?: number | undefined;
|
|
29
|
-
perPage?: number | undefined;
|
|
30
|
-
sortBy?: string | undefined;
|
|
31
|
-
}>;
|
|
23
|
+
}, zod.core.$strip>;
|
|
32
24
|
export declare const listGeneralMastersResponseCodeMax = 255;
|
|
33
25
|
export declare const listGeneralMastersResponseNameMax = 255;
|
|
34
26
|
export declare const listGeneralMastersResponseFieldsItemTitleMax = 255;
|
|
@@ -45,74 +37,22 @@ export declare const listGeneralMastersResponseItem: zod.ZodObject<{
|
|
|
45
37
|
title: zod.ZodString;
|
|
46
38
|
description: zod.ZodNullable<zod.ZodString>;
|
|
47
39
|
code: zod.ZodString;
|
|
48
|
-
fieldType: zod.ZodEnum<
|
|
40
|
+
fieldType: zod.ZodEnum<{
|
|
41
|
+
number: "number";
|
|
42
|
+
text: "text";
|
|
43
|
+
date: "date";
|
|
44
|
+
text_long: "text_long";
|
|
45
|
+
integer: "integer";
|
|
46
|
+
checkbox: "checkbox";
|
|
47
|
+
pull_down: "pull_down";
|
|
48
|
+
}>;
|
|
49
49
|
required: zod.ZodBoolean;
|
|
50
50
|
visible: zod.ZodBoolean;
|
|
51
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
51
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
52
52
|
createdAt: zod.ZodString;
|
|
53
53
|
updatedAt: zod.ZodString;
|
|
54
|
-
},
|
|
55
|
-
|
|
56
|
-
required: boolean;
|
|
57
|
-
id: string;
|
|
58
|
-
visible: boolean;
|
|
59
|
-
title: string;
|
|
60
|
-
options: string[] | null;
|
|
61
|
-
description: string | null;
|
|
62
|
-
createdAt: string;
|
|
63
|
-
updatedAt: string;
|
|
64
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
65
|
-
}, {
|
|
66
|
-
code: string;
|
|
67
|
-
required: boolean;
|
|
68
|
-
id: string;
|
|
69
|
-
visible: boolean;
|
|
70
|
-
title: string;
|
|
71
|
-
options: string[] | null;
|
|
72
|
-
description: string | null;
|
|
73
|
-
createdAt: string;
|
|
74
|
-
updatedAt: string;
|
|
75
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
76
|
-
}>, "many">;
|
|
77
|
-
}, "strip", zod.ZodTypeAny, {
|
|
78
|
-
code: string;
|
|
79
|
-
name: string;
|
|
80
|
-
id: string;
|
|
81
|
-
description: string | null;
|
|
82
|
-
createdAt: string;
|
|
83
|
-
updatedAt: string;
|
|
84
|
-
fields: {
|
|
85
|
-
code: string;
|
|
86
|
-
required: boolean;
|
|
87
|
-
id: string;
|
|
88
|
-
visible: boolean;
|
|
89
|
-
title: string;
|
|
90
|
-
options: string[] | null;
|
|
91
|
-
description: string | null;
|
|
92
|
-
createdAt: string;
|
|
93
|
-
updatedAt: string;
|
|
94
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
95
|
-
}[];
|
|
96
|
-
}, {
|
|
97
|
-
code: string;
|
|
98
|
-
name: string;
|
|
99
|
-
id: string;
|
|
100
|
-
description: string | null;
|
|
101
|
-
createdAt: string;
|
|
102
|
-
updatedAt: string;
|
|
103
|
-
fields: {
|
|
104
|
-
code: string;
|
|
105
|
-
required: boolean;
|
|
106
|
-
id: string;
|
|
107
|
-
visible: boolean;
|
|
108
|
-
title: string;
|
|
109
|
-
options: string[] | null;
|
|
110
|
-
description: string | null;
|
|
111
|
-
createdAt: string;
|
|
112
|
-
updatedAt: string;
|
|
113
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
114
|
-
}[];
|
|
115
|
-
}>;
|
|
54
|
+
}, zod.core.$strip>>;
|
|
55
|
+
}, zod.core.$strip>;
|
|
116
56
|
export declare const listGeneralMastersResponse: zod.ZodArray<zod.ZodObject<{
|
|
117
57
|
id: zod.ZodString;
|
|
118
58
|
code: zod.ZodString;
|
|
@@ -125,74 +65,22 @@ export declare const listGeneralMastersResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
125
65
|
title: zod.ZodString;
|
|
126
66
|
description: zod.ZodNullable<zod.ZodString>;
|
|
127
67
|
code: zod.ZodString;
|
|
128
|
-
fieldType: zod.ZodEnum<
|
|
68
|
+
fieldType: zod.ZodEnum<{
|
|
69
|
+
number: "number";
|
|
70
|
+
text: "text";
|
|
71
|
+
date: "date";
|
|
72
|
+
text_long: "text_long";
|
|
73
|
+
integer: "integer";
|
|
74
|
+
checkbox: "checkbox";
|
|
75
|
+
pull_down: "pull_down";
|
|
76
|
+
}>;
|
|
129
77
|
required: zod.ZodBoolean;
|
|
130
78
|
visible: zod.ZodBoolean;
|
|
131
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
79
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
132
80
|
createdAt: zod.ZodString;
|
|
133
81
|
updatedAt: zod.ZodString;
|
|
134
|
-
},
|
|
135
|
-
|
|
136
|
-
required: boolean;
|
|
137
|
-
id: string;
|
|
138
|
-
visible: boolean;
|
|
139
|
-
title: string;
|
|
140
|
-
options: string[] | null;
|
|
141
|
-
description: string | null;
|
|
142
|
-
createdAt: string;
|
|
143
|
-
updatedAt: string;
|
|
144
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
145
|
-
}, {
|
|
146
|
-
code: string;
|
|
147
|
-
required: boolean;
|
|
148
|
-
id: string;
|
|
149
|
-
visible: boolean;
|
|
150
|
-
title: string;
|
|
151
|
-
options: string[] | null;
|
|
152
|
-
description: string | null;
|
|
153
|
-
createdAt: string;
|
|
154
|
-
updatedAt: string;
|
|
155
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
156
|
-
}>, "many">;
|
|
157
|
-
}, "strip", zod.ZodTypeAny, {
|
|
158
|
-
code: string;
|
|
159
|
-
name: string;
|
|
160
|
-
id: string;
|
|
161
|
-
description: string | null;
|
|
162
|
-
createdAt: string;
|
|
163
|
-
updatedAt: string;
|
|
164
|
-
fields: {
|
|
165
|
-
code: string;
|
|
166
|
-
required: boolean;
|
|
167
|
-
id: string;
|
|
168
|
-
visible: boolean;
|
|
169
|
-
title: string;
|
|
170
|
-
options: string[] | null;
|
|
171
|
-
description: string | null;
|
|
172
|
-
createdAt: string;
|
|
173
|
-
updatedAt: string;
|
|
174
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
175
|
-
}[];
|
|
176
|
-
}, {
|
|
177
|
-
code: string;
|
|
178
|
-
name: string;
|
|
179
|
-
id: string;
|
|
180
|
-
description: string | null;
|
|
181
|
-
createdAt: string;
|
|
182
|
-
updatedAt: string;
|
|
183
|
-
fields: {
|
|
184
|
-
code: string;
|
|
185
|
-
required: boolean;
|
|
186
|
-
id: string;
|
|
187
|
-
visible: boolean;
|
|
188
|
-
title: string;
|
|
189
|
-
options: string[] | null;
|
|
190
|
-
description: string | null;
|
|
191
|
-
createdAt: string;
|
|
192
|
-
updatedAt: string;
|
|
193
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
194
|
-
}[];
|
|
195
|
-
}>, "many">;
|
|
82
|
+
}, zod.core.$strip>>;
|
|
83
|
+
}, zod.core.$strip>>;
|
|
196
84
|
/**
|
|
197
85
|
* 汎用マスタを作成します。
|
|
198
86
|
|
|
@@ -208,53 +96,19 @@ export declare const createGeneralMasterBody: zod.ZodObject<{
|
|
|
208
96
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
209
97
|
code: zod.ZodString;
|
|
210
98
|
required: zod.ZodBoolean;
|
|
211
|
-
fieldType: zod.ZodEnum<
|
|
212
|
-
|
|
99
|
+
fieldType: zod.ZodEnum<{
|
|
100
|
+
number: "number";
|
|
101
|
+
text: "text";
|
|
102
|
+
date: "date";
|
|
103
|
+
text_long: "text_long";
|
|
104
|
+
integer: "integer";
|
|
105
|
+
checkbox: "checkbox";
|
|
106
|
+
pull_down: "pull_down";
|
|
107
|
+
}>;
|
|
108
|
+
options: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
|
|
213
109
|
visible: zod.ZodOptional<zod.ZodBoolean>;
|
|
214
|
-
},
|
|
215
|
-
|
|
216
|
-
required: boolean;
|
|
217
|
-
title: string;
|
|
218
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
219
|
-
visible?: boolean | undefined;
|
|
220
|
-
options?: string[] | null | undefined;
|
|
221
|
-
description?: string | null | undefined;
|
|
222
|
-
}, {
|
|
223
|
-
code: string;
|
|
224
|
-
required: boolean;
|
|
225
|
-
title: string;
|
|
226
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
227
|
-
visible?: boolean | undefined;
|
|
228
|
-
options?: string[] | null | undefined;
|
|
229
|
-
description?: string | null | undefined;
|
|
230
|
-
}>, "many">>;
|
|
231
|
-
}, "strip", zod.ZodTypeAny, {
|
|
232
|
-
name: string;
|
|
233
|
-
code?: string | null | undefined;
|
|
234
|
-
description?: string | null | undefined;
|
|
235
|
-
fields?: {
|
|
236
|
-
code: string;
|
|
237
|
-
required: boolean;
|
|
238
|
-
title: string;
|
|
239
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
240
|
-
visible?: boolean | undefined;
|
|
241
|
-
options?: string[] | null | undefined;
|
|
242
|
-
description?: string | null | undefined;
|
|
243
|
-
}[] | undefined;
|
|
244
|
-
}, {
|
|
245
|
-
name: string;
|
|
246
|
-
code?: string | null | undefined;
|
|
247
|
-
description?: string | null | undefined;
|
|
248
|
-
fields?: {
|
|
249
|
-
code: string;
|
|
250
|
-
required: boolean;
|
|
251
|
-
title: string;
|
|
252
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
253
|
-
visible?: boolean | undefined;
|
|
254
|
-
options?: string[] | null | undefined;
|
|
255
|
-
description?: string | null | undefined;
|
|
256
|
-
}[] | undefined;
|
|
257
|
-
}>;
|
|
110
|
+
}, zod.core.$strip>>>;
|
|
111
|
+
}, zod.core.$strip>;
|
|
258
112
|
export declare const createGeneralMasterResponseCodeMax = 255;
|
|
259
113
|
export declare const createGeneralMasterResponseNameMax = 255;
|
|
260
114
|
export declare const createGeneralMasterResponseFieldsItemTitleMax = 255;
|
|
@@ -271,74 +125,22 @@ export declare const createGeneralMasterResponse: zod.ZodObject<{
|
|
|
271
125
|
title: zod.ZodString;
|
|
272
126
|
description: zod.ZodNullable<zod.ZodString>;
|
|
273
127
|
code: zod.ZodString;
|
|
274
|
-
fieldType: zod.ZodEnum<
|
|
128
|
+
fieldType: zod.ZodEnum<{
|
|
129
|
+
number: "number";
|
|
130
|
+
text: "text";
|
|
131
|
+
date: "date";
|
|
132
|
+
text_long: "text_long";
|
|
133
|
+
integer: "integer";
|
|
134
|
+
checkbox: "checkbox";
|
|
135
|
+
pull_down: "pull_down";
|
|
136
|
+
}>;
|
|
275
137
|
required: zod.ZodBoolean;
|
|
276
138
|
visible: zod.ZodBoolean;
|
|
277
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
139
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
278
140
|
createdAt: zod.ZodString;
|
|
279
141
|
updatedAt: zod.ZodString;
|
|
280
|
-
},
|
|
281
|
-
|
|
282
|
-
required: boolean;
|
|
283
|
-
id: string;
|
|
284
|
-
visible: boolean;
|
|
285
|
-
title: string;
|
|
286
|
-
options: string[] | null;
|
|
287
|
-
description: string | null;
|
|
288
|
-
createdAt: string;
|
|
289
|
-
updatedAt: string;
|
|
290
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
291
|
-
}, {
|
|
292
|
-
code: string;
|
|
293
|
-
required: boolean;
|
|
294
|
-
id: string;
|
|
295
|
-
visible: boolean;
|
|
296
|
-
title: string;
|
|
297
|
-
options: string[] | null;
|
|
298
|
-
description: string | null;
|
|
299
|
-
createdAt: string;
|
|
300
|
-
updatedAt: string;
|
|
301
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
302
|
-
}>, "many">;
|
|
303
|
-
}, "strip", zod.ZodTypeAny, {
|
|
304
|
-
code: string;
|
|
305
|
-
name: string;
|
|
306
|
-
id: string;
|
|
307
|
-
description: string | null;
|
|
308
|
-
createdAt: string;
|
|
309
|
-
updatedAt: string;
|
|
310
|
-
fields: {
|
|
311
|
-
code: string;
|
|
312
|
-
required: boolean;
|
|
313
|
-
id: string;
|
|
314
|
-
visible: boolean;
|
|
315
|
-
title: string;
|
|
316
|
-
options: string[] | null;
|
|
317
|
-
description: string | null;
|
|
318
|
-
createdAt: string;
|
|
319
|
-
updatedAt: string;
|
|
320
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
321
|
-
}[];
|
|
322
|
-
}, {
|
|
323
|
-
code: string;
|
|
324
|
-
name: string;
|
|
325
|
-
id: string;
|
|
326
|
-
description: string | null;
|
|
327
|
-
createdAt: string;
|
|
328
|
-
updatedAt: string;
|
|
329
|
-
fields: {
|
|
330
|
-
code: string;
|
|
331
|
-
required: boolean;
|
|
332
|
-
id: string;
|
|
333
|
-
visible: boolean;
|
|
334
|
-
title: string;
|
|
335
|
-
options: string[] | null;
|
|
336
|
-
description: string | null;
|
|
337
|
-
createdAt: string;
|
|
338
|
-
updatedAt: string;
|
|
339
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
340
|
-
}[];
|
|
341
|
-
}>;
|
|
142
|
+
}, zod.core.$strip>>;
|
|
143
|
+
}, zod.core.$strip>;
|
|
342
144
|
/**
|
|
343
145
|
* 汎用マスタを一件取得します。
|
|
344
146
|
|
|
@@ -361,74 +163,22 @@ export declare const getGeneralMasterResponse: zod.ZodObject<{
|
|
|
361
163
|
title: zod.ZodString;
|
|
362
164
|
description: zod.ZodNullable<zod.ZodString>;
|
|
363
165
|
code: zod.ZodString;
|
|
364
|
-
fieldType: zod.ZodEnum<
|
|
166
|
+
fieldType: zod.ZodEnum<{
|
|
167
|
+
number: "number";
|
|
168
|
+
text: "text";
|
|
169
|
+
date: "date";
|
|
170
|
+
text_long: "text_long";
|
|
171
|
+
integer: "integer";
|
|
172
|
+
checkbox: "checkbox";
|
|
173
|
+
pull_down: "pull_down";
|
|
174
|
+
}>;
|
|
365
175
|
required: zod.ZodBoolean;
|
|
366
176
|
visible: zod.ZodBoolean;
|
|
367
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
177
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
368
178
|
createdAt: zod.ZodString;
|
|
369
179
|
updatedAt: zod.ZodString;
|
|
370
|
-
},
|
|
371
|
-
|
|
372
|
-
required: boolean;
|
|
373
|
-
id: string;
|
|
374
|
-
visible: boolean;
|
|
375
|
-
title: string;
|
|
376
|
-
options: string[] | null;
|
|
377
|
-
description: string | null;
|
|
378
|
-
createdAt: string;
|
|
379
|
-
updatedAt: string;
|
|
380
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
381
|
-
}, {
|
|
382
|
-
code: string;
|
|
383
|
-
required: boolean;
|
|
384
|
-
id: string;
|
|
385
|
-
visible: boolean;
|
|
386
|
-
title: string;
|
|
387
|
-
options: string[] | null;
|
|
388
|
-
description: string | null;
|
|
389
|
-
createdAt: string;
|
|
390
|
-
updatedAt: string;
|
|
391
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
392
|
-
}>, "many">;
|
|
393
|
-
}, "strip", zod.ZodTypeAny, {
|
|
394
|
-
code: string;
|
|
395
|
-
name: string;
|
|
396
|
-
id: string;
|
|
397
|
-
description: string | null;
|
|
398
|
-
createdAt: string;
|
|
399
|
-
updatedAt: string;
|
|
400
|
-
fields: {
|
|
401
|
-
code: string;
|
|
402
|
-
required: boolean;
|
|
403
|
-
id: string;
|
|
404
|
-
visible: boolean;
|
|
405
|
-
title: string;
|
|
406
|
-
options: string[] | null;
|
|
407
|
-
description: string | null;
|
|
408
|
-
createdAt: string;
|
|
409
|
-
updatedAt: string;
|
|
410
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
411
|
-
}[];
|
|
412
|
-
}, {
|
|
413
|
-
code: string;
|
|
414
|
-
name: string;
|
|
415
|
-
id: string;
|
|
416
|
-
description: string | null;
|
|
417
|
-
createdAt: string;
|
|
418
|
-
updatedAt: string;
|
|
419
|
-
fields: {
|
|
420
|
-
code: string;
|
|
421
|
-
required: boolean;
|
|
422
|
-
id: string;
|
|
423
|
-
visible: boolean;
|
|
424
|
-
title: string;
|
|
425
|
-
options: string[] | null;
|
|
426
|
-
description: string | null;
|
|
427
|
-
createdAt: string;
|
|
428
|
-
updatedAt: string;
|
|
429
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
430
|
-
}[];
|
|
431
|
-
}>;
|
|
180
|
+
}, zod.core.$strip>>;
|
|
181
|
+
}, zod.core.$strip>;
|
|
432
182
|
/**
|
|
433
183
|
* 汎用マスタを更新します。
|
|
434
184
|
|
|
@@ -445,52 +195,10 @@ export declare const updateGeneralMasterBody: zod.ZodObject<{
|
|
|
445
195
|
code: zod.ZodString;
|
|
446
196
|
required: zod.ZodOptional<zod.ZodBoolean>;
|
|
447
197
|
fieldType: zod.ZodOptional<zod.ZodString>;
|
|
448
|
-
options: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
198
|
+
options: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
|
|
449
199
|
visible: zod.ZodOptional<zod.ZodBoolean>;
|
|
450
|
-
},
|
|
451
|
-
|
|
452
|
-
required?: boolean | undefined;
|
|
453
|
-
visible?: boolean | undefined;
|
|
454
|
-
title?: string | undefined;
|
|
455
|
-
options?: string[] | null | undefined;
|
|
456
|
-
description?: string | null | undefined;
|
|
457
|
-
fieldType?: string | undefined;
|
|
458
|
-
}, {
|
|
459
|
-
code: string;
|
|
460
|
-
required?: boolean | undefined;
|
|
461
|
-
visible?: boolean | undefined;
|
|
462
|
-
title?: string | undefined;
|
|
463
|
-
options?: string[] | null | undefined;
|
|
464
|
-
description?: string | null | undefined;
|
|
465
|
-
fieldType?: string | undefined;
|
|
466
|
-
}>, "many">>;
|
|
467
|
-
}, "strip", zod.ZodTypeAny, {
|
|
468
|
-
code?: string | undefined;
|
|
469
|
-
name?: string | undefined;
|
|
470
|
-
description?: string | undefined;
|
|
471
|
-
fields?: {
|
|
472
|
-
code: string;
|
|
473
|
-
required?: boolean | undefined;
|
|
474
|
-
visible?: boolean | undefined;
|
|
475
|
-
title?: string | undefined;
|
|
476
|
-
options?: string[] | null | undefined;
|
|
477
|
-
description?: string | null | undefined;
|
|
478
|
-
fieldType?: string | undefined;
|
|
479
|
-
}[] | undefined;
|
|
480
|
-
}, {
|
|
481
|
-
code?: string | undefined;
|
|
482
|
-
name?: string | undefined;
|
|
483
|
-
description?: string | undefined;
|
|
484
|
-
fields?: {
|
|
485
|
-
code: string;
|
|
486
|
-
required?: boolean | undefined;
|
|
487
|
-
visible?: boolean | undefined;
|
|
488
|
-
title?: string | undefined;
|
|
489
|
-
options?: string[] | null | undefined;
|
|
490
|
-
description?: string | null | undefined;
|
|
491
|
-
fieldType?: string | undefined;
|
|
492
|
-
}[] | undefined;
|
|
493
|
-
}>;
|
|
200
|
+
}, zod.core.$strip>>>;
|
|
201
|
+
}, zod.core.$strip>;
|
|
494
202
|
export declare const updateGeneralMasterResponseCodeMax = 255;
|
|
495
203
|
export declare const updateGeneralMasterResponseNameMax = 255;
|
|
496
204
|
export declare const updateGeneralMasterResponseFieldsItemTitleMax = 255;
|
|
@@ -507,74 +215,22 @@ export declare const updateGeneralMasterResponse: zod.ZodObject<{
|
|
|
507
215
|
title: zod.ZodString;
|
|
508
216
|
description: zod.ZodNullable<zod.ZodString>;
|
|
509
217
|
code: zod.ZodString;
|
|
510
|
-
fieldType: zod.ZodEnum<
|
|
218
|
+
fieldType: zod.ZodEnum<{
|
|
219
|
+
number: "number";
|
|
220
|
+
text: "text";
|
|
221
|
+
date: "date";
|
|
222
|
+
text_long: "text_long";
|
|
223
|
+
integer: "integer";
|
|
224
|
+
checkbox: "checkbox";
|
|
225
|
+
pull_down: "pull_down";
|
|
226
|
+
}>;
|
|
511
227
|
required: zod.ZodBoolean;
|
|
512
228
|
visible: zod.ZodBoolean;
|
|
513
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
229
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
514
230
|
createdAt: zod.ZodString;
|
|
515
231
|
updatedAt: zod.ZodString;
|
|
516
|
-
},
|
|
517
|
-
|
|
518
|
-
required: boolean;
|
|
519
|
-
id: string;
|
|
520
|
-
visible: boolean;
|
|
521
|
-
title: string;
|
|
522
|
-
options: string[] | null;
|
|
523
|
-
description: string | null;
|
|
524
|
-
createdAt: string;
|
|
525
|
-
updatedAt: string;
|
|
526
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
527
|
-
}, {
|
|
528
|
-
code: string;
|
|
529
|
-
required: boolean;
|
|
530
|
-
id: string;
|
|
531
|
-
visible: boolean;
|
|
532
|
-
title: string;
|
|
533
|
-
options: string[] | null;
|
|
534
|
-
description: string | null;
|
|
535
|
-
createdAt: string;
|
|
536
|
-
updatedAt: string;
|
|
537
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
538
|
-
}>, "many">;
|
|
539
|
-
}, "strip", zod.ZodTypeAny, {
|
|
540
|
-
code: string;
|
|
541
|
-
name: string;
|
|
542
|
-
id: string;
|
|
543
|
-
description: string | null;
|
|
544
|
-
createdAt: string;
|
|
545
|
-
updatedAt: string;
|
|
546
|
-
fields: {
|
|
547
|
-
code: string;
|
|
548
|
-
required: boolean;
|
|
549
|
-
id: string;
|
|
550
|
-
visible: boolean;
|
|
551
|
-
title: string;
|
|
552
|
-
options: string[] | null;
|
|
553
|
-
description: string | null;
|
|
554
|
-
createdAt: string;
|
|
555
|
-
updatedAt: string;
|
|
556
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
557
|
-
}[];
|
|
558
|
-
}, {
|
|
559
|
-
code: string;
|
|
560
|
-
name: string;
|
|
561
|
-
id: string;
|
|
562
|
-
description: string | null;
|
|
563
|
-
createdAt: string;
|
|
564
|
-
updatedAt: string;
|
|
565
|
-
fields: {
|
|
566
|
-
code: string;
|
|
567
|
-
required: boolean;
|
|
568
|
-
id: string;
|
|
569
|
-
visible: boolean;
|
|
570
|
-
title: string;
|
|
571
|
-
options: string[] | null;
|
|
572
|
-
description: string | null;
|
|
573
|
-
createdAt: string;
|
|
574
|
-
updatedAt: string;
|
|
575
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
576
|
-
}[];
|
|
577
|
-
}>;
|
|
232
|
+
}, zod.core.$strip>>;
|
|
233
|
+
}, zod.core.$strip>;
|
|
578
234
|
/**
|
|
579
235
|
* 汎用マスタアイテムの一覧を取得します。
|
|
580
236
|
* @summary 汎用マスタアイテムの一覧を取得
|
|
@@ -587,15 +243,7 @@ export declare const listGeneralMasterItemsQueryParams: zod.ZodObject<{
|
|
|
587
243
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
588
244
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
589
245
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
590
|
-
},
|
|
591
|
-
page: number;
|
|
592
|
-
perPage: number;
|
|
593
|
-
sortBy?: string | undefined;
|
|
594
|
-
}, {
|
|
595
|
-
page?: number | undefined;
|
|
596
|
-
perPage?: number | undefined;
|
|
597
|
-
sortBy?: string | undefined;
|
|
598
|
-
}>;
|
|
246
|
+
}, zod.core.$strip>;
|
|
599
247
|
export declare const listGeneralMasterItemsResponseCodeMax = 255;
|
|
600
248
|
export declare const listGeneralMasterItemsResponseNameMax = 255;
|
|
601
249
|
export declare const listGeneralMasterItemsResponseInputsItemFieldTitleMax = 255;
|
|
@@ -611,7 +259,7 @@ export declare const listGeneralMasterItemsResponseItem: zod.ZodObject<{
|
|
|
611
259
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
612
260
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
613
261
|
id: zod.ZodString;
|
|
614
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
262
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
615
263
|
createdAt: zod.ZodString;
|
|
616
264
|
updatedAt: zod.ZodString;
|
|
617
265
|
field: zod.ZodObject<{
|
|
@@ -619,125 +267,23 @@ export declare const listGeneralMasterItemsResponseItem: zod.ZodObject<{
|
|
|
619
267
|
title: zod.ZodString;
|
|
620
268
|
description: zod.ZodNullable<zod.ZodString>;
|
|
621
269
|
code: zod.ZodString;
|
|
622
|
-
fieldType: zod.ZodEnum<
|
|
270
|
+
fieldType: zod.ZodEnum<{
|
|
271
|
+
number: "number";
|
|
272
|
+
text: "text";
|
|
273
|
+
date: "date";
|
|
274
|
+
text_long: "text_long";
|
|
275
|
+
integer: "integer";
|
|
276
|
+
checkbox: "checkbox";
|
|
277
|
+
pull_down: "pull_down";
|
|
278
|
+
}>;
|
|
623
279
|
required: zod.ZodBoolean;
|
|
624
280
|
visible: zod.ZodBoolean;
|
|
625
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
281
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
626
282
|
createdAt: zod.ZodString;
|
|
627
283
|
updatedAt: zod.ZodString;
|
|
628
|
-
},
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
id: string;
|
|
632
|
-
visible: boolean;
|
|
633
|
-
title: string;
|
|
634
|
-
options: string[] | null;
|
|
635
|
-
description: string | null;
|
|
636
|
-
createdAt: string;
|
|
637
|
-
updatedAt: string;
|
|
638
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
639
|
-
}, {
|
|
640
|
-
code: string;
|
|
641
|
-
required: boolean;
|
|
642
|
-
id: string;
|
|
643
|
-
visible: boolean;
|
|
644
|
-
title: string;
|
|
645
|
-
options: string[] | null;
|
|
646
|
-
description: string | null;
|
|
647
|
-
createdAt: string;
|
|
648
|
-
updatedAt: string;
|
|
649
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
650
|
-
}>;
|
|
651
|
-
}, "strip", zod.ZodTypeAny, {
|
|
652
|
-
id: string;
|
|
653
|
-
value: string | string[] | null;
|
|
654
|
-
field: {
|
|
655
|
-
code: string;
|
|
656
|
-
required: boolean;
|
|
657
|
-
id: string;
|
|
658
|
-
visible: boolean;
|
|
659
|
-
title: string;
|
|
660
|
-
options: string[] | null;
|
|
661
|
-
description: string | null;
|
|
662
|
-
createdAt: string;
|
|
663
|
-
updatedAt: string;
|
|
664
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
665
|
-
};
|
|
666
|
-
createdAt: string;
|
|
667
|
-
updatedAt: string;
|
|
668
|
-
}, {
|
|
669
|
-
id: string;
|
|
670
|
-
value: string | string[] | null;
|
|
671
|
-
field: {
|
|
672
|
-
code: string;
|
|
673
|
-
required: boolean;
|
|
674
|
-
id: string;
|
|
675
|
-
visible: boolean;
|
|
676
|
-
title: string;
|
|
677
|
-
options: string[] | null;
|
|
678
|
-
description: string | null;
|
|
679
|
-
createdAt: string;
|
|
680
|
-
updatedAt: string;
|
|
681
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
682
|
-
};
|
|
683
|
-
createdAt: string;
|
|
684
|
-
updatedAt: string;
|
|
685
|
-
}>, "many">;
|
|
686
|
-
}, "strip", zod.ZodTypeAny, {
|
|
687
|
-
code: string;
|
|
688
|
-
name: string;
|
|
689
|
-
id: string;
|
|
690
|
-
description: string | null;
|
|
691
|
-
createdAt: string;
|
|
692
|
-
updatedAt: string;
|
|
693
|
-
startsOn: string | null;
|
|
694
|
-
endsOn: string | null;
|
|
695
|
-
inputs: {
|
|
696
|
-
id: string;
|
|
697
|
-
value: string | string[] | null;
|
|
698
|
-
field: {
|
|
699
|
-
code: string;
|
|
700
|
-
required: boolean;
|
|
701
|
-
id: string;
|
|
702
|
-
visible: boolean;
|
|
703
|
-
title: string;
|
|
704
|
-
options: string[] | null;
|
|
705
|
-
description: string | null;
|
|
706
|
-
createdAt: string;
|
|
707
|
-
updatedAt: string;
|
|
708
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
709
|
-
};
|
|
710
|
-
createdAt: string;
|
|
711
|
-
updatedAt: string;
|
|
712
|
-
}[];
|
|
713
|
-
}, {
|
|
714
|
-
code: string;
|
|
715
|
-
name: string;
|
|
716
|
-
id: string;
|
|
717
|
-
description: string | null;
|
|
718
|
-
createdAt: string;
|
|
719
|
-
updatedAt: string;
|
|
720
|
-
startsOn: string | null;
|
|
721
|
-
endsOn: string | null;
|
|
722
|
-
inputs: {
|
|
723
|
-
id: string;
|
|
724
|
-
value: string | string[] | null;
|
|
725
|
-
field: {
|
|
726
|
-
code: string;
|
|
727
|
-
required: boolean;
|
|
728
|
-
id: string;
|
|
729
|
-
visible: boolean;
|
|
730
|
-
title: string;
|
|
731
|
-
options: string[] | null;
|
|
732
|
-
description: string | null;
|
|
733
|
-
createdAt: string;
|
|
734
|
-
updatedAt: string;
|
|
735
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
736
|
-
};
|
|
737
|
-
createdAt: string;
|
|
738
|
-
updatedAt: string;
|
|
739
|
-
}[];
|
|
740
|
-
}>;
|
|
284
|
+
}, zod.core.$strip>;
|
|
285
|
+
}, zod.core.$strip>>;
|
|
286
|
+
}, zod.core.$strip>;
|
|
741
287
|
export declare const listGeneralMasterItemsResponse: zod.ZodArray<zod.ZodObject<{
|
|
742
288
|
id: zod.ZodString;
|
|
743
289
|
code: zod.ZodString;
|
|
@@ -749,7 +295,7 @@ export declare const listGeneralMasterItemsResponse: zod.ZodArray<zod.ZodObject<
|
|
|
749
295
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
750
296
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
751
297
|
id: zod.ZodString;
|
|
752
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
298
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
753
299
|
createdAt: zod.ZodString;
|
|
754
300
|
updatedAt: zod.ZodString;
|
|
755
301
|
field: zod.ZodObject<{
|
|
@@ -757,125 +303,23 @@ export declare const listGeneralMasterItemsResponse: zod.ZodArray<zod.ZodObject<
|
|
|
757
303
|
title: zod.ZodString;
|
|
758
304
|
description: zod.ZodNullable<zod.ZodString>;
|
|
759
305
|
code: zod.ZodString;
|
|
760
|
-
fieldType: zod.ZodEnum<
|
|
306
|
+
fieldType: zod.ZodEnum<{
|
|
307
|
+
number: "number";
|
|
308
|
+
text: "text";
|
|
309
|
+
date: "date";
|
|
310
|
+
text_long: "text_long";
|
|
311
|
+
integer: "integer";
|
|
312
|
+
checkbox: "checkbox";
|
|
313
|
+
pull_down: "pull_down";
|
|
314
|
+
}>;
|
|
761
315
|
required: zod.ZodBoolean;
|
|
762
316
|
visible: zod.ZodBoolean;
|
|
763
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
317
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
764
318
|
createdAt: zod.ZodString;
|
|
765
319
|
updatedAt: zod.ZodString;
|
|
766
|
-
},
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
id: string;
|
|
770
|
-
visible: boolean;
|
|
771
|
-
title: string;
|
|
772
|
-
options: string[] | null;
|
|
773
|
-
description: string | null;
|
|
774
|
-
createdAt: string;
|
|
775
|
-
updatedAt: string;
|
|
776
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
777
|
-
}, {
|
|
778
|
-
code: string;
|
|
779
|
-
required: boolean;
|
|
780
|
-
id: string;
|
|
781
|
-
visible: boolean;
|
|
782
|
-
title: string;
|
|
783
|
-
options: string[] | null;
|
|
784
|
-
description: string | null;
|
|
785
|
-
createdAt: string;
|
|
786
|
-
updatedAt: string;
|
|
787
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
788
|
-
}>;
|
|
789
|
-
}, "strip", zod.ZodTypeAny, {
|
|
790
|
-
id: string;
|
|
791
|
-
value: string | string[] | null;
|
|
792
|
-
field: {
|
|
793
|
-
code: string;
|
|
794
|
-
required: boolean;
|
|
795
|
-
id: string;
|
|
796
|
-
visible: boolean;
|
|
797
|
-
title: string;
|
|
798
|
-
options: string[] | null;
|
|
799
|
-
description: string | null;
|
|
800
|
-
createdAt: string;
|
|
801
|
-
updatedAt: string;
|
|
802
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
803
|
-
};
|
|
804
|
-
createdAt: string;
|
|
805
|
-
updatedAt: string;
|
|
806
|
-
}, {
|
|
807
|
-
id: string;
|
|
808
|
-
value: string | string[] | null;
|
|
809
|
-
field: {
|
|
810
|
-
code: string;
|
|
811
|
-
required: boolean;
|
|
812
|
-
id: string;
|
|
813
|
-
visible: boolean;
|
|
814
|
-
title: string;
|
|
815
|
-
options: string[] | null;
|
|
816
|
-
description: string | null;
|
|
817
|
-
createdAt: string;
|
|
818
|
-
updatedAt: string;
|
|
819
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
820
|
-
};
|
|
821
|
-
createdAt: string;
|
|
822
|
-
updatedAt: string;
|
|
823
|
-
}>, "many">;
|
|
824
|
-
}, "strip", zod.ZodTypeAny, {
|
|
825
|
-
code: string;
|
|
826
|
-
name: string;
|
|
827
|
-
id: string;
|
|
828
|
-
description: string | null;
|
|
829
|
-
createdAt: string;
|
|
830
|
-
updatedAt: string;
|
|
831
|
-
startsOn: string | null;
|
|
832
|
-
endsOn: string | null;
|
|
833
|
-
inputs: {
|
|
834
|
-
id: string;
|
|
835
|
-
value: string | string[] | null;
|
|
836
|
-
field: {
|
|
837
|
-
code: string;
|
|
838
|
-
required: boolean;
|
|
839
|
-
id: string;
|
|
840
|
-
visible: boolean;
|
|
841
|
-
title: string;
|
|
842
|
-
options: string[] | null;
|
|
843
|
-
description: string | null;
|
|
844
|
-
createdAt: string;
|
|
845
|
-
updatedAt: string;
|
|
846
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
847
|
-
};
|
|
848
|
-
createdAt: string;
|
|
849
|
-
updatedAt: string;
|
|
850
|
-
}[];
|
|
851
|
-
}, {
|
|
852
|
-
code: string;
|
|
853
|
-
name: string;
|
|
854
|
-
id: string;
|
|
855
|
-
description: string | null;
|
|
856
|
-
createdAt: string;
|
|
857
|
-
updatedAt: string;
|
|
858
|
-
startsOn: string | null;
|
|
859
|
-
endsOn: string | null;
|
|
860
|
-
inputs: {
|
|
861
|
-
id: string;
|
|
862
|
-
value: string | string[] | null;
|
|
863
|
-
field: {
|
|
864
|
-
code: string;
|
|
865
|
-
required: boolean;
|
|
866
|
-
id: string;
|
|
867
|
-
visible: boolean;
|
|
868
|
-
title: string;
|
|
869
|
-
options: string[] | null;
|
|
870
|
-
description: string | null;
|
|
871
|
-
createdAt: string;
|
|
872
|
-
updatedAt: string;
|
|
873
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
874
|
-
};
|
|
875
|
-
createdAt: string;
|
|
876
|
-
updatedAt: string;
|
|
877
|
-
}[];
|
|
878
|
-
}>, "many">;
|
|
320
|
+
}, zod.core.$strip>;
|
|
321
|
+
}, zod.core.$strip>>;
|
|
322
|
+
}, zod.core.$strip>>;
|
|
879
323
|
/**
|
|
880
324
|
* 汎用マスタアイテムを作成します。
|
|
881
325
|
|
|
@@ -890,35 +334,9 @@ export declare const createGeneralMasterItemBody: zod.ZodObject<{
|
|
|
890
334
|
endsOn: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
891
335
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
892
336
|
code: zod.ZodString;
|
|
893
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
894
|
-
},
|
|
895
|
-
|
|
896
|
-
value: string | string[] | null;
|
|
897
|
-
}, {
|
|
898
|
-
code: string;
|
|
899
|
-
value: string | string[] | null;
|
|
900
|
-
}>, "many">;
|
|
901
|
-
}, "strip", zod.ZodTypeAny, {
|
|
902
|
-
name: string;
|
|
903
|
-
inputs: {
|
|
904
|
-
code: string;
|
|
905
|
-
value: string | string[] | null;
|
|
906
|
-
}[];
|
|
907
|
-
code?: string | undefined;
|
|
908
|
-
description?: string | undefined;
|
|
909
|
-
startsOn?: string | null | undefined;
|
|
910
|
-
endsOn?: string | null | undefined;
|
|
911
|
-
}, {
|
|
912
|
-
name: string;
|
|
913
|
-
inputs: {
|
|
914
|
-
code: string;
|
|
915
|
-
value: string | string[] | null;
|
|
916
|
-
}[];
|
|
917
|
-
code?: string | undefined;
|
|
918
|
-
description?: string | undefined;
|
|
919
|
-
startsOn?: string | null | undefined;
|
|
920
|
-
endsOn?: string | null | undefined;
|
|
921
|
-
}>;
|
|
337
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
338
|
+
}, zod.core.$strip>>;
|
|
339
|
+
}, zod.core.$strip>;
|
|
922
340
|
export declare const createGeneralMasterItemResponseCodeMax = 255;
|
|
923
341
|
export declare const createGeneralMasterItemResponseNameMax = 255;
|
|
924
342
|
export declare const createGeneralMasterItemResponseInputsItemFieldTitleMax = 255;
|
|
@@ -934,7 +352,7 @@ export declare const createGeneralMasterItemResponse: zod.ZodObject<{
|
|
|
934
352
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
935
353
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
936
354
|
id: zod.ZodString;
|
|
937
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
355
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
938
356
|
createdAt: zod.ZodString;
|
|
939
357
|
updatedAt: zod.ZodString;
|
|
940
358
|
field: zod.ZodObject<{
|
|
@@ -942,125 +360,23 @@ export declare const createGeneralMasterItemResponse: zod.ZodObject<{
|
|
|
942
360
|
title: zod.ZodString;
|
|
943
361
|
description: zod.ZodNullable<zod.ZodString>;
|
|
944
362
|
code: zod.ZodString;
|
|
945
|
-
fieldType: zod.ZodEnum<
|
|
363
|
+
fieldType: zod.ZodEnum<{
|
|
364
|
+
number: "number";
|
|
365
|
+
text: "text";
|
|
366
|
+
date: "date";
|
|
367
|
+
text_long: "text_long";
|
|
368
|
+
integer: "integer";
|
|
369
|
+
checkbox: "checkbox";
|
|
370
|
+
pull_down: "pull_down";
|
|
371
|
+
}>;
|
|
946
372
|
required: zod.ZodBoolean;
|
|
947
373
|
visible: zod.ZodBoolean;
|
|
948
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
374
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
949
375
|
createdAt: zod.ZodString;
|
|
950
376
|
updatedAt: zod.ZodString;
|
|
951
|
-
},
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
id: string;
|
|
955
|
-
visible: boolean;
|
|
956
|
-
title: string;
|
|
957
|
-
options: string[] | null;
|
|
958
|
-
description: string | null;
|
|
959
|
-
createdAt: string;
|
|
960
|
-
updatedAt: string;
|
|
961
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
962
|
-
}, {
|
|
963
|
-
code: string;
|
|
964
|
-
required: boolean;
|
|
965
|
-
id: string;
|
|
966
|
-
visible: boolean;
|
|
967
|
-
title: string;
|
|
968
|
-
options: string[] | null;
|
|
969
|
-
description: string | null;
|
|
970
|
-
createdAt: string;
|
|
971
|
-
updatedAt: string;
|
|
972
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
973
|
-
}>;
|
|
974
|
-
}, "strip", zod.ZodTypeAny, {
|
|
975
|
-
id: string;
|
|
976
|
-
value: string | string[] | null;
|
|
977
|
-
field: {
|
|
978
|
-
code: string;
|
|
979
|
-
required: boolean;
|
|
980
|
-
id: string;
|
|
981
|
-
visible: boolean;
|
|
982
|
-
title: string;
|
|
983
|
-
options: string[] | null;
|
|
984
|
-
description: string | null;
|
|
985
|
-
createdAt: string;
|
|
986
|
-
updatedAt: string;
|
|
987
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
988
|
-
};
|
|
989
|
-
createdAt: string;
|
|
990
|
-
updatedAt: string;
|
|
991
|
-
}, {
|
|
992
|
-
id: string;
|
|
993
|
-
value: string | string[] | null;
|
|
994
|
-
field: {
|
|
995
|
-
code: string;
|
|
996
|
-
required: boolean;
|
|
997
|
-
id: string;
|
|
998
|
-
visible: boolean;
|
|
999
|
-
title: string;
|
|
1000
|
-
options: string[] | null;
|
|
1001
|
-
description: string | null;
|
|
1002
|
-
createdAt: string;
|
|
1003
|
-
updatedAt: string;
|
|
1004
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1005
|
-
};
|
|
1006
|
-
createdAt: string;
|
|
1007
|
-
updatedAt: string;
|
|
1008
|
-
}>, "many">;
|
|
1009
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1010
|
-
code: string;
|
|
1011
|
-
name: string;
|
|
1012
|
-
id: string;
|
|
1013
|
-
description: string | null;
|
|
1014
|
-
createdAt: string;
|
|
1015
|
-
updatedAt: string;
|
|
1016
|
-
startsOn: string | null;
|
|
1017
|
-
endsOn: string | null;
|
|
1018
|
-
inputs: {
|
|
1019
|
-
id: string;
|
|
1020
|
-
value: string | string[] | null;
|
|
1021
|
-
field: {
|
|
1022
|
-
code: string;
|
|
1023
|
-
required: boolean;
|
|
1024
|
-
id: string;
|
|
1025
|
-
visible: boolean;
|
|
1026
|
-
title: string;
|
|
1027
|
-
options: string[] | null;
|
|
1028
|
-
description: string | null;
|
|
1029
|
-
createdAt: string;
|
|
1030
|
-
updatedAt: string;
|
|
1031
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1032
|
-
};
|
|
1033
|
-
createdAt: string;
|
|
1034
|
-
updatedAt: string;
|
|
1035
|
-
}[];
|
|
1036
|
-
}, {
|
|
1037
|
-
code: string;
|
|
1038
|
-
name: string;
|
|
1039
|
-
id: string;
|
|
1040
|
-
description: string | null;
|
|
1041
|
-
createdAt: string;
|
|
1042
|
-
updatedAt: string;
|
|
1043
|
-
startsOn: string | null;
|
|
1044
|
-
endsOn: string | null;
|
|
1045
|
-
inputs: {
|
|
1046
|
-
id: string;
|
|
1047
|
-
value: string | string[] | null;
|
|
1048
|
-
field: {
|
|
1049
|
-
code: string;
|
|
1050
|
-
required: boolean;
|
|
1051
|
-
id: string;
|
|
1052
|
-
visible: boolean;
|
|
1053
|
-
title: string;
|
|
1054
|
-
options: string[] | null;
|
|
1055
|
-
description: string | null;
|
|
1056
|
-
createdAt: string;
|
|
1057
|
-
updatedAt: string;
|
|
1058
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1059
|
-
};
|
|
1060
|
-
createdAt: string;
|
|
1061
|
-
updatedAt: string;
|
|
1062
|
-
}[];
|
|
1063
|
-
}>;
|
|
377
|
+
}, zod.core.$strip>;
|
|
378
|
+
}, zod.core.$strip>>;
|
|
379
|
+
}, zod.core.$strip>;
|
|
1064
380
|
/**
|
|
1065
381
|
* 汎用マスタアイテムを一件取得します。
|
|
1066
382
|
* @summary 汎用マスタアイテムを取得
|
|
@@ -1080,7 +396,7 @@ export declare const getGeneralMasterItemResponse: zod.ZodObject<{
|
|
|
1080
396
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
1081
397
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
1082
398
|
id: zod.ZodString;
|
|
1083
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
399
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
1084
400
|
createdAt: zod.ZodString;
|
|
1085
401
|
updatedAt: zod.ZodString;
|
|
1086
402
|
field: zod.ZodObject<{
|
|
@@ -1088,125 +404,23 @@ export declare const getGeneralMasterItemResponse: zod.ZodObject<{
|
|
|
1088
404
|
title: zod.ZodString;
|
|
1089
405
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1090
406
|
code: zod.ZodString;
|
|
1091
|
-
fieldType: zod.ZodEnum<
|
|
407
|
+
fieldType: zod.ZodEnum<{
|
|
408
|
+
number: "number";
|
|
409
|
+
text: "text";
|
|
410
|
+
date: "date";
|
|
411
|
+
text_long: "text_long";
|
|
412
|
+
integer: "integer";
|
|
413
|
+
checkbox: "checkbox";
|
|
414
|
+
pull_down: "pull_down";
|
|
415
|
+
}>;
|
|
1092
416
|
required: zod.ZodBoolean;
|
|
1093
417
|
visible: zod.ZodBoolean;
|
|
1094
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
418
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1095
419
|
createdAt: zod.ZodString;
|
|
1096
420
|
updatedAt: zod.ZodString;
|
|
1097
|
-
},
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
id: string;
|
|
1101
|
-
visible: boolean;
|
|
1102
|
-
title: string;
|
|
1103
|
-
options: string[] | null;
|
|
1104
|
-
description: string | null;
|
|
1105
|
-
createdAt: string;
|
|
1106
|
-
updatedAt: string;
|
|
1107
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1108
|
-
}, {
|
|
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
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1121
|
-
id: string;
|
|
1122
|
-
value: string | string[] | null;
|
|
1123
|
-
field: {
|
|
1124
|
-
code: string;
|
|
1125
|
-
required: boolean;
|
|
1126
|
-
id: string;
|
|
1127
|
-
visible: boolean;
|
|
1128
|
-
title: string;
|
|
1129
|
-
options: string[] | null;
|
|
1130
|
-
description: string | null;
|
|
1131
|
-
createdAt: string;
|
|
1132
|
-
updatedAt: string;
|
|
1133
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1134
|
-
};
|
|
1135
|
-
createdAt: string;
|
|
1136
|
-
updatedAt: string;
|
|
1137
|
-
}, {
|
|
1138
|
-
id: string;
|
|
1139
|
-
value: string | string[] | null;
|
|
1140
|
-
field: {
|
|
1141
|
-
code: string;
|
|
1142
|
-
required: boolean;
|
|
1143
|
-
id: string;
|
|
1144
|
-
visible: boolean;
|
|
1145
|
-
title: string;
|
|
1146
|
-
options: string[] | null;
|
|
1147
|
-
description: string | null;
|
|
1148
|
-
createdAt: string;
|
|
1149
|
-
updatedAt: string;
|
|
1150
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1151
|
-
};
|
|
1152
|
-
createdAt: string;
|
|
1153
|
-
updatedAt: string;
|
|
1154
|
-
}>, "many">;
|
|
1155
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1156
|
-
code: string;
|
|
1157
|
-
name: string;
|
|
1158
|
-
id: string;
|
|
1159
|
-
description: string | null;
|
|
1160
|
-
createdAt: string;
|
|
1161
|
-
updatedAt: string;
|
|
1162
|
-
startsOn: string | null;
|
|
1163
|
-
endsOn: string | null;
|
|
1164
|
-
inputs: {
|
|
1165
|
-
id: string;
|
|
1166
|
-
value: string | string[] | null;
|
|
1167
|
-
field: {
|
|
1168
|
-
code: string;
|
|
1169
|
-
required: boolean;
|
|
1170
|
-
id: string;
|
|
1171
|
-
visible: boolean;
|
|
1172
|
-
title: string;
|
|
1173
|
-
options: string[] | null;
|
|
1174
|
-
description: string | null;
|
|
1175
|
-
createdAt: string;
|
|
1176
|
-
updatedAt: string;
|
|
1177
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1178
|
-
};
|
|
1179
|
-
createdAt: string;
|
|
1180
|
-
updatedAt: string;
|
|
1181
|
-
}[];
|
|
1182
|
-
}, {
|
|
1183
|
-
code: string;
|
|
1184
|
-
name: string;
|
|
1185
|
-
id: string;
|
|
1186
|
-
description: string | null;
|
|
1187
|
-
createdAt: string;
|
|
1188
|
-
updatedAt: string;
|
|
1189
|
-
startsOn: string | null;
|
|
1190
|
-
endsOn: string | null;
|
|
1191
|
-
inputs: {
|
|
1192
|
-
id: string;
|
|
1193
|
-
value: string | string[] | null;
|
|
1194
|
-
field: {
|
|
1195
|
-
code: string;
|
|
1196
|
-
required: boolean;
|
|
1197
|
-
id: string;
|
|
1198
|
-
visible: boolean;
|
|
1199
|
-
title: string;
|
|
1200
|
-
options: string[] | null;
|
|
1201
|
-
description: string | null;
|
|
1202
|
-
createdAt: string;
|
|
1203
|
-
updatedAt: string;
|
|
1204
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1205
|
-
};
|
|
1206
|
-
createdAt: string;
|
|
1207
|
-
updatedAt: string;
|
|
1208
|
-
}[];
|
|
1209
|
-
}>;
|
|
421
|
+
}, zod.core.$strip>;
|
|
422
|
+
}, zod.core.$strip>>;
|
|
423
|
+
}, zod.core.$strip>;
|
|
1210
424
|
/**
|
|
1211
425
|
* 汎用マスタアイテムを更新します。
|
|
1212
426
|
|
|
@@ -1221,35 +435,9 @@ export declare const updateGeneralMasterItemBody: zod.ZodObject<{
|
|
|
1221
435
|
endsOn: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1222
436
|
inputs: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
1223
437
|
code: zod.ZodString;
|
|
1224
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
1225
|
-
},
|
|
1226
|
-
|
|
1227
|
-
value: string | string[] | null;
|
|
1228
|
-
}, {
|
|
1229
|
-
code: string;
|
|
1230
|
-
value: string | string[] | null;
|
|
1231
|
-
}>, "many">>;
|
|
1232
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1233
|
-
code?: string | undefined;
|
|
1234
|
-
name?: string | undefined;
|
|
1235
|
-
description?: string | undefined;
|
|
1236
|
-
startsOn?: string | null | undefined;
|
|
1237
|
-
endsOn?: string | null | undefined;
|
|
1238
|
-
inputs?: {
|
|
1239
|
-
code: string;
|
|
1240
|
-
value: string | string[] | null;
|
|
1241
|
-
}[] | undefined;
|
|
1242
|
-
}, {
|
|
1243
|
-
code?: string | undefined;
|
|
1244
|
-
name?: string | undefined;
|
|
1245
|
-
description?: string | undefined;
|
|
1246
|
-
startsOn?: string | null | undefined;
|
|
1247
|
-
endsOn?: string | null | undefined;
|
|
1248
|
-
inputs?: {
|
|
1249
|
-
code: string;
|
|
1250
|
-
value: string | string[] | null;
|
|
1251
|
-
}[] | undefined;
|
|
1252
|
-
}>;
|
|
438
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
439
|
+
}, zod.core.$strip>>>;
|
|
440
|
+
}, zod.core.$strip>;
|
|
1253
441
|
export declare const updateGeneralMasterItemResponseCodeMax = 255;
|
|
1254
442
|
export declare const updateGeneralMasterItemResponseNameMax = 255;
|
|
1255
443
|
export declare const updateGeneralMasterItemResponseInputsItemFieldTitleMax = 255;
|
|
@@ -1265,7 +453,7 @@ export declare const updateGeneralMasterItemResponse: zod.ZodObject<{
|
|
|
1265
453
|
endsOn: zod.ZodNullable<zod.ZodString>;
|
|
1266
454
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
1267
455
|
id: zod.ZodString;
|
|
1268
|
-
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString
|
|
456
|
+
value: zod.ZodUnion<[zod.ZodNullable<zod.ZodString>, zod.ZodArray<zod.ZodString>]>;
|
|
1269
457
|
createdAt: zod.ZodString;
|
|
1270
458
|
updatedAt: zod.ZodString;
|
|
1271
459
|
field: zod.ZodObject<{
|
|
@@ -1273,122 +461,20 @@ export declare const updateGeneralMasterItemResponse: zod.ZodObject<{
|
|
|
1273
461
|
title: zod.ZodString;
|
|
1274
462
|
description: zod.ZodNullable<zod.ZodString>;
|
|
1275
463
|
code: zod.ZodString;
|
|
1276
|
-
fieldType: zod.ZodEnum<
|
|
464
|
+
fieldType: zod.ZodEnum<{
|
|
465
|
+
number: "number";
|
|
466
|
+
text: "text";
|
|
467
|
+
date: "date";
|
|
468
|
+
text_long: "text_long";
|
|
469
|
+
integer: "integer";
|
|
470
|
+
checkbox: "checkbox";
|
|
471
|
+
pull_down: "pull_down";
|
|
472
|
+
}>;
|
|
1277
473
|
required: zod.ZodBoolean;
|
|
1278
474
|
visible: zod.ZodBoolean;
|
|
1279
|
-
options: zod.ZodNullable<zod.ZodArray<zod.ZodString
|
|
475
|
+
options: zod.ZodNullable<zod.ZodArray<zod.ZodString>>;
|
|
1280
476
|
createdAt: zod.ZodString;
|
|
1281
477
|
updatedAt: zod.ZodString;
|
|
1282
|
-
},
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
id: string;
|
|
1286
|
-
visible: boolean;
|
|
1287
|
-
title: string;
|
|
1288
|
-
options: string[] | null;
|
|
1289
|
-
description: string | null;
|
|
1290
|
-
createdAt: string;
|
|
1291
|
-
updatedAt: string;
|
|
1292
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1293
|
-
}, {
|
|
1294
|
-
code: string;
|
|
1295
|
-
required: boolean;
|
|
1296
|
-
id: string;
|
|
1297
|
-
visible: boolean;
|
|
1298
|
-
title: string;
|
|
1299
|
-
options: string[] | null;
|
|
1300
|
-
description: string | null;
|
|
1301
|
-
createdAt: string;
|
|
1302
|
-
updatedAt: string;
|
|
1303
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1304
|
-
}>;
|
|
1305
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1306
|
-
id: string;
|
|
1307
|
-
value: string | string[] | null;
|
|
1308
|
-
field: {
|
|
1309
|
-
code: string;
|
|
1310
|
-
required: boolean;
|
|
1311
|
-
id: string;
|
|
1312
|
-
visible: boolean;
|
|
1313
|
-
title: string;
|
|
1314
|
-
options: string[] | null;
|
|
1315
|
-
description: string | null;
|
|
1316
|
-
createdAt: string;
|
|
1317
|
-
updatedAt: string;
|
|
1318
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1319
|
-
};
|
|
1320
|
-
createdAt: string;
|
|
1321
|
-
updatedAt: string;
|
|
1322
|
-
}, {
|
|
1323
|
-
id: string;
|
|
1324
|
-
value: string | string[] | null;
|
|
1325
|
-
field: {
|
|
1326
|
-
code: string;
|
|
1327
|
-
required: boolean;
|
|
1328
|
-
id: string;
|
|
1329
|
-
visible: boolean;
|
|
1330
|
-
title: string;
|
|
1331
|
-
options: string[] | null;
|
|
1332
|
-
description: string | null;
|
|
1333
|
-
createdAt: string;
|
|
1334
|
-
updatedAt: string;
|
|
1335
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1336
|
-
};
|
|
1337
|
-
createdAt: string;
|
|
1338
|
-
updatedAt: string;
|
|
1339
|
-
}>, "many">;
|
|
1340
|
-
}, "strip", zod.ZodTypeAny, {
|
|
1341
|
-
code: string;
|
|
1342
|
-
name: string;
|
|
1343
|
-
id: string;
|
|
1344
|
-
description: string | null;
|
|
1345
|
-
createdAt: string;
|
|
1346
|
-
updatedAt: string;
|
|
1347
|
-
startsOn: string | null;
|
|
1348
|
-
endsOn: string | null;
|
|
1349
|
-
inputs: {
|
|
1350
|
-
id: string;
|
|
1351
|
-
value: string | string[] | null;
|
|
1352
|
-
field: {
|
|
1353
|
-
code: string;
|
|
1354
|
-
required: boolean;
|
|
1355
|
-
id: string;
|
|
1356
|
-
visible: boolean;
|
|
1357
|
-
title: string;
|
|
1358
|
-
options: string[] | null;
|
|
1359
|
-
description: string | null;
|
|
1360
|
-
createdAt: string;
|
|
1361
|
-
updatedAt: string;
|
|
1362
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1363
|
-
};
|
|
1364
|
-
createdAt: string;
|
|
1365
|
-
updatedAt: string;
|
|
1366
|
-
}[];
|
|
1367
|
-
}, {
|
|
1368
|
-
code: string;
|
|
1369
|
-
name: string;
|
|
1370
|
-
id: string;
|
|
1371
|
-
description: string | null;
|
|
1372
|
-
createdAt: string;
|
|
1373
|
-
updatedAt: string;
|
|
1374
|
-
startsOn: string | null;
|
|
1375
|
-
endsOn: string | null;
|
|
1376
|
-
inputs: {
|
|
1377
|
-
id: string;
|
|
1378
|
-
value: string | string[] | null;
|
|
1379
|
-
field: {
|
|
1380
|
-
code: string;
|
|
1381
|
-
required: boolean;
|
|
1382
|
-
id: string;
|
|
1383
|
-
visible: boolean;
|
|
1384
|
-
title: string;
|
|
1385
|
-
options: string[] | null;
|
|
1386
|
-
description: string | null;
|
|
1387
|
-
createdAt: string;
|
|
1388
|
-
updatedAt: string;
|
|
1389
|
-
fieldType: "number" | "text" | "integer" | "date" | "text_long" | "checkbox" | "pull_down";
|
|
1390
|
-
};
|
|
1391
|
-
createdAt: string;
|
|
1392
|
-
updatedAt: string;
|
|
1393
|
-
}[];
|
|
1394
|
-
}>;
|
|
478
|
+
}, zod.core.$strip>;
|
|
479
|
+
}, zod.core.$strip>>;
|
|
480
|
+
}, zod.core.$strip>;
|