@kickflow/mcp-server 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/dist/index.js +4 -238
- package/dist/index.js.map +1 -1
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.d.ts +3 -3
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.js +3 -3
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.js.map +1 -1
- package/dist/kickflow-api/generated/comment/comment.zod.d.ts +24 -24
- package/dist/kickflow-api/generated/comment/comment.zod.js +24 -24
- package/dist/kickflow-api/generated/comment/comment.zod.js.map +1 -1
- package/dist/kickflow-api/generated/folder/folder.zod.d.ts +20 -20
- package/dist/kickflow-api/generated/folder/folder.zod.js +20 -20
- package/dist/kickflow-api/generated/general-master/general-master.zod.d.ts +32 -32
- package/dist/kickflow-api/generated/general-master/general-master.zod.js +32 -32
- package/dist/kickflow-api/generated/grade/grade.zod.d.ts +12 -11
- package/dist/kickflow-api/generated/grade/grade.zod.js +13 -12
- package/dist/kickflow-api/generated/grade/grade.zod.js.map +1 -1
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.d.ts +49 -40
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.js +1 -0
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.js.map +1 -1
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.d.ts +6 -6
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.js +6 -6
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.d.ts +28 -28
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.js +28 -28
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.js.map +1 -1
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.d.ts +28 -28
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.js +28 -28
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.js.map +1 -1
- package/dist/kickflow-api/generated/role/role.zod.d.ts +34 -31
- package/dist/kickflow-api/generated/role/role.zod.js +37 -34
- package/dist/kickflow-api/generated/role/role.zod.js.map +1 -1
- package/dist/kickflow-api/generated/route/route.zod.d.ts +33 -31
- package/dist/kickflow-api/generated/route/route.zod.js +35 -33
- package/dist/kickflow-api/generated/route/route.zod.js.map +1 -1
- package/dist/kickflow-api/generated/team/team.zod.d.ts +50 -40
- package/dist/kickflow-api/generated/team/team.zod.js +60 -50
- package/dist/kickflow-api/generated/team/team.zod.js.map +1 -1
- package/dist/kickflow-api/generated/ticket/ticket.zod.d.ts +3630 -3476
- package/dist/kickflow-api/generated/ticket/ticket.zod.js +3724 -3624
- package/dist/kickflow-api/generated/ticket/ticket.zod.js.map +1 -1
- package/dist/kickflow-api/generated/user/user.zod.d.ts +39 -38
- package/dist/kickflow-api/generated/user/user.zod.js +40 -39
- package/dist/kickflow-api/generated/user/user.zod.js.map +1 -1
- package/dist/kickflow-api/generated/workflow/workflow.zod.d.ts +73 -70
- package/dist/kickflow-api/generated/workflow/workflow.zod.js +75 -73
- package/dist/kickflow-api/generated/workflow/workflow.zod.js.map +1 -1
- package/dist/kickflow-api/tools/file/upload-file.js +3 -1
- package/dist/kickflow-api/tools/file/upload-file.js.map +1 -1
- package/dist/server.d.ts +4 -0
- package/dist/server.js +240 -0
- package/dist/server.js.map +1 -0
- package/package.json +16 -11
|
@@ -27,20 +27,20 @@ export declare const listWorkflowsResponseCodeRegExp: RegExp;
|
|
|
27
27
|
export declare const listWorkflowsResponsePublicTicketDefault = false;
|
|
28
28
|
export declare const listWorkflowsResponseVisibleToTeamMembersDefault = false;
|
|
29
29
|
export declare const listWorkflowsResponseAllowEditingOfViewersDefault = true;
|
|
30
|
-
export declare const listWorkflowsResponseAuthorEmailMax =
|
|
31
|
-
export declare const listWorkflowsResponseAuthorCodeMax =
|
|
30
|
+
export declare const listWorkflowsResponseAuthorEmailMax = 254;
|
|
31
|
+
export declare const listWorkflowsResponseAuthorCodeMax = 100;
|
|
32
32
|
export declare const listWorkflowsResponseAuthorFirstNameMax = 255;
|
|
33
33
|
export declare const listWorkflowsResponseAuthorLastNameMax = 255;
|
|
34
34
|
export declare const listWorkflowsResponseAuthorFullNameMax = 255;
|
|
35
|
-
export declare const listWorkflowsResponseAuthorEmployeeIdMax =
|
|
36
|
-
export declare const listWorkflowsResponseVersionAuthorEmailMax =
|
|
37
|
-
export declare const listWorkflowsResponseVersionAuthorCodeMax =
|
|
35
|
+
export declare const listWorkflowsResponseAuthorEmployeeIdMax = 30;
|
|
36
|
+
export declare const listWorkflowsResponseVersionAuthorEmailMax = 254;
|
|
37
|
+
export declare const listWorkflowsResponseVersionAuthorCodeMax = 100;
|
|
38
38
|
export declare const listWorkflowsResponseVersionAuthorFirstNameMax = 255;
|
|
39
39
|
export declare const listWorkflowsResponseVersionAuthorLastNameMax = 255;
|
|
40
40
|
export declare const listWorkflowsResponseVersionAuthorFullNameMax = 255;
|
|
41
|
-
export declare const listWorkflowsResponseVersionAuthorEmployeeIdMax =
|
|
42
|
-
export declare const listWorkflowsResponseFolderNameMax =
|
|
43
|
-
export declare const listWorkflowsResponseFolderCodeMax =
|
|
41
|
+
export declare const listWorkflowsResponseVersionAuthorEmployeeIdMax = 30;
|
|
42
|
+
export declare const listWorkflowsResponseFolderNameMax = 300;
|
|
43
|
+
export declare const listWorkflowsResponseFolderCodeMax = 100;
|
|
44
44
|
export declare const listWorkflowsResponseFolderWorkflowsCountMin = 0;
|
|
45
45
|
export declare const listWorkflowsResponseFolderRoutesCountMin = 0;
|
|
46
46
|
export declare const listWorkflowsResponseFolderPipelinesCountMin = 0;
|
|
@@ -247,118 +247,120 @@ export declare const getWorkflowResponseCodeRegExp: RegExp;
|
|
|
247
247
|
export declare const getWorkflowResponsePublicTicketDefault = false;
|
|
248
248
|
export declare const getWorkflowResponseVisibleToTeamMembersDefault = false;
|
|
249
249
|
export declare const getWorkflowResponseAllowEditingOfViewersDefault = true;
|
|
250
|
-
export declare const getWorkflowResponseAuthorEmailMax =
|
|
251
|
-
export declare const getWorkflowResponseAuthorCodeMax =
|
|
250
|
+
export declare const getWorkflowResponseAuthorEmailMax = 254;
|
|
251
|
+
export declare const getWorkflowResponseAuthorCodeMax = 100;
|
|
252
252
|
export declare const getWorkflowResponseAuthorFirstNameMax = 255;
|
|
253
253
|
export declare const getWorkflowResponseAuthorLastNameMax = 255;
|
|
254
254
|
export declare const getWorkflowResponseAuthorFullNameMax = 255;
|
|
255
|
-
export declare const getWorkflowResponseAuthorEmployeeIdMax =
|
|
256
|
-
export declare const getWorkflowResponseVersionAuthorEmailMax =
|
|
257
|
-
export declare const getWorkflowResponseVersionAuthorCodeMax =
|
|
255
|
+
export declare const getWorkflowResponseAuthorEmployeeIdMax = 30;
|
|
256
|
+
export declare const getWorkflowResponseVersionAuthorEmailMax = 254;
|
|
257
|
+
export declare const getWorkflowResponseVersionAuthorCodeMax = 100;
|
|
258
258
|
export declare const getWorkflowResponseVersionAuthorFirstNameMax = 255;
|
|
259
259
|
export declare const getWorkflowResponseVersionAuthorLastNameMax = 255;
|
|
260
260
|
export declare const getWorkflowResponseVersionAuthorFullNameMax = 255;
|
|
261
|
-
export declare const getWorkflowResponseVersionAuthorEmployeeIdMax =
|
|
262
|
-
export declare const getWorkflowResponseFolderNameMax =
|
|
263
|
-
export declare const getWorkflowResponseFolderCodeMax =
|
|
261
|
+
export declare const getWorkflowResponseVersionAuthorEmployeeIdMax = 30;
|
|
262
|
+
export declare const getWorkflowResponseFolderNameMax = 300;
|
|
263
|
+
export declare const getWorkflowResponseFolderCodeMax = 100;
|
|
264
264
|
export declare const getWorkflowResponseFolderWorkflowsCountMin = 0;
|
|
265
265
|
export declare const getWorkflowResponseFolderRoutesCountMin = 0;
|
|
266
266
|
export declare const getWorkflowResponseFolderPipelinesCountMin = 0;
|
|
267
267
|
export declare const getWorkflowResponseCategoriesItemNameMax = 100;
|
|
268
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemTitleMax =
|
|
269
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemCodeMax =
|
|
268
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemTitleMax = 300;
|
|
269
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemCodeMax = 100;
|
|
270
270
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemMinLengthMin = 0;
|
|
271
271
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemMaxLengthMin = 0;
|
|
272
272
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemDecimalDigitMin = 0;
|
|
273
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterCodeMax =
|
|
274
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterNameMax =
|
|
275
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemTitleMax =
|
|
276
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemCodeMax =
|
|
277
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemCodeMax =
|
|
278
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemNameMax =
|
|
279
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax =
|
|
280
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax =
|
|
281
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldTitleMax =
|
|
282
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldCodeMax =
|
|
273
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterCodeMax = 100;
|
|
274
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterNameMax = 300;
|
|
275
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemTitleMax = 300;
|
|
276
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemCodeMax = 100;
|
|
277
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemCodeMax = 100;
|
|
278
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemNameMax = 100;
|
|
279
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax = 300;
|
|
280
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax = 100;
|
|
281
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldTitleMax = 300;
|
|
282
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldCodeMax = 100;
|
|
283
283
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldMinLengthMin = 0;
|
|
284
284
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldMaxLengthMin = 0;
|
|
285
285
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldDecimalDigitMin = 0;
|
|
286
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldTitleMax =
|
|
287
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldCodeMax =
|
|
286
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldTitleMax = 300;
|
|
287
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldCodeMax = 100;
|
|
288
288
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldMinLengthMin = 0;
|
|
289
289
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldMaxLengthMin = 0;
|
|
290
290
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldDecimalDigitMin = 0;
|
|
291
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldTitleMax =
|
|
292
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldCodeMax =
|
|
291
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldTitleMax = 300;
|
|
292
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldCodeMax = 100;
|
|
293
293
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldMinLengthMin = 0;
|
|
294
294
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldMaxLengthMin = 0;
|
|
295
295
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldDecimalDigitMin = 0;
|
|
296
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldTitleMax =
|
|
297
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldCodeMax =
|
|
296
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldTitleMax = 300;
|
|
297
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldCodeMax = 100;
|
|
298
298
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldMinLengthMin = 0;
|
|
299
299
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldMaxLengthMin = 0;
|
|
300
300
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldDecimalDigitMin = 0;
|
|
301
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldTitleMax =
|
|
302
|
-
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldCodeMax =
|
|
301
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldTitleMax = 300;
|
|
302
|
+
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldCodeMax = 100;
|
|
303
303
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldMinLengthMin = 0;
|
|
304
304
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldMaxLengthMin = 0;
|
|
305
305
|
export declare const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldDecimalDigitMin = 0;
|
|
306
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterCodeMax =
|
|
307
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterNameMax =
|
|
308
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemTitleMax =
|
|
309
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemCodeMax =
|
|
310
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemCodeMax =
|
|
311
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemNameMax =
|
|
312
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax =
|
|
313
|
-
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax =
|
|
314
|
-
export declare const getWorkflowResponseTicketViewersItemUserEmailMax =
|
|
315
|
-
export declare const getWorkflowResponseTicketViewersItemUserCodeMax =
|
|
306
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterCodeMax = 100;
|
|
307
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterNameMax = 300;
|
|
308
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemTitleMax = 300;
|
|
309
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemCodeMax = 100;
|
|
310
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemCodeMax = 100;
|
|
311
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemNameMax = 100;
|
|
312
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax = 300;
|
|
313
|
+
export declare const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax = 100;
|
|
314
|
+
export declare const getWorkflowResponseTicketViewersItemUserEmailMax = 254;
|
|
315
|
+
export declare const getWorkflowResponseTicketViewersItemUserCodeMax = 100;
|
|
316
316
|
export declare const getWorkflowResponseTicketViewersItemUserFirstNameMax = 255;
|
|
317
317
|
export declare const getWorkflowResponseTicketViewersItemUserLastNameMax = 255;
|
|
318
318
|
export declare const getWorkflowResponseTicketViewersItemUserFullNameMax = 255;
|
|
319
|
-
export declare const getWorkflowResponseTicketViewersItemUserEmployeeIdMax =
|
|
320
|
-
export declare const getWorkflowResponseTicketViewersItemTeamNameMax =
|
|
321
|
-
export declare const getWorkflowResponseTicketViewersItemTeamCodeMax =
|
|
319
|
+
export declare const getWorkflowResponseTicketViewersItemUserEmployeeIdMax = 30;
|
|
320
|
+
export declare const getWorkflowResponseTicketViewersItemTeamNameMax = 300;
|
|
321
|
+
export declare const getWorkflowResponseTicketViewersItemTeamCodeMax = 100;
|
|
322
|
+
export declare const getWorkflowResponseTicketViewersItemTeamNotesMax = 10000;
|
|
322
323
|
export declare const getWorkflowResponseTicketViewersItemTeamUsersCountMin = 0;
|
|
323
|
-
export declare const getWorkflowResponseTicketViewersItemGradeNameMax =
|
|
324
|
+
export declare const getWorkflowResponseTicketViewersItemGradeNameMax = 300;
|
|
324
325
|
export declare const getWorkflowResponseTicketViewersItemGradeLevelMin = 0;
|
|
325
326
|
export declare const getWorkflowResponseTicketViewersItemGradeLevelMax = 255;
|
|
326
|
-
export declare const getWorkflowResponseTicketViewersItemGradeCodeMax =
|
|
327
|
+
export declare const getWorkflowResponseTicketViewersItemGradeCodeMax = 100;
|
|
327
328
|
export declare const getWorkflowResponseTicketViewersItemGradeIsDefaultDefault = false;
|
|
328
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorEmailMax =
|
|
329
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorCodeMax =
|
|
329
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorEmailMax = 254;
|
|
330
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorCodeMax = 100;
|
|
330
331
|
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorFirstNameMax = 255;
|
|
331
332
|
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorLastNameMax = 255;
|
|
332
333
|
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorFullNameMax = 255;
|
|
333
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorEmployeeIdMax =
|
|
334
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmailMax =
|
|
335
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorCodeMax =
|
|
334
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteAuthorEmployeeIdMax = 30;
|
|
335
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmailMax = 254;
|
|
336
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorCodeMax = 100;
|
|
336
337
|
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorFirstNameMax = 255;
|
|
337
338
|
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorLastNameMax = 255;
|
|
338
339
|
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorFullNameMax = 255;
|
|
339
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmployeeIdMax =
|
|
340
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteFolderNameMax =
|
|
341
|
-
export declare const getWorkflowResponseRouteConditionsItemRouteFolderCodeMax =
|
|
340
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmployeeIdMax = 30;
|
|
341
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteFolderNameMax = 300;
|
|
342
|
+
export declare const getWorkflowResponseRouteConditionsItemRouteFolderCodeMax = 100;
|
|
342
343
|
export declare const getWorkflowResponseRouteConditionsItemRouteFolderWorkflowsCountMin = 0;
|
|
343
344
|
export declare const getWorkflowResponseRouteConditionsItemRouteFolderRoutesCountMin = 0;
|
|
344
345
|
export declare const getWorkflowResponseRouteConditionsItemRouteFolderPipelinesCountMin = 0;
|
|
345
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldTitleMax =
|
|
346
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldCodeMax =
|
|
346
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldTitleMax = 300;
|
|
347
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldCodeMax = 100;
|
|
347
348
|
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldMinLengthMin = 0;
|
|
348
349
|
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldMaxLengthMin = 0;
|
|
349
350
|
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldDecimalDigitMin = 0;
|
|
350
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeNameMax =
|
|
351
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeNameMax = 300;
|
|
351
352
|
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeLevelMin = 0;
|
|
352
353
|
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeLevelMax = 255;
|
|
353
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeCodeMax =
|
|
354
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeCodeMax = 100;
|
|
354
355
|
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeIsDefaultDefault = false;
|
|
355
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNameMax =
|
|
356
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamCodeMax =
|
|
356
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNameMax = 300;
|
|
357
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamCodeMax = 100;
|
|
358
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNotesMax = 10000;
|
|
357
359
|
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamUsersCountMin = 0;
|
|
358
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemCodeMax =
|
|
359
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemNameMax =
|
|
360
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldTitleMax =
|
|
361
|
-
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldCodeMax =
|
|
360
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemCodeMax = 100;
|
|
361
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemNameMax = 100;
|
|
362
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldTitleMax = 300;
|
|
363
|
+
export declare const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldCodeMax = 100;
|
|
362
364
|
export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersection<zod.ZodObject<{
|
|
363
365
|
id: zod.ZodString;
|
|
364
366
|
code: zod.ZodString;
|
|
@@ -851,11 +853,12 @@ export declare const getWorkflowResponse: zod.ZodIntersection<zod.ZodIntersectio
|
|
|
851
853
|
}, zod.core.$strip>>>>;
|
|
852
854
|
}, zod.core.$strip>>>>;
|
|
853
855
|
conditional: zod.ZodOptional<zod.ZodBoolean>;
|
|
854
|
-
conditionAllOf: zod.ZodOptional<zod.ZodBoolean>;
|
|
855
856
|
combinationType: zod.ZodOptional<zod.ZodEnum<{
|
|
856
857
|
any: "any";
|
|
858
|
+
custom: "custom";
|
|
857
859
|
all: "all";
|
|
858
860
|
}>>;
|
|
861
|
+
combinationExpression: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
859
862
|
slipFields: zod.ZodOptional<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
860
863
|
id: zod.ZodString;
|
|
861
864
|
fieldType: zod.ZodEnum<{
|
|
@@ -24,20 +24,20 @@ export const listWorkflowsResponseCodeRegExp = new RegExp('^[a-zA-Z0-9_-]+$');
|
|
|
24
24
|
export const listWorkflowsResponsePublicTicketDefault = false;
|
|
25
25
|
export const listWorkflowsResponseVisibleToTeamMembersDefault = false;
|
|
26
26
|
export const listWorkflowsResponseAllowEditingOfViewersDefault = true;
|
|
27
|
-
export const listWorkflowsResponseAuthorEmailMax =
|
|
28
|
-
export const listWorkflowsResponseAuthorCodeMax =
|
|
27
|
+
export const listWorkflowsResponseAuthorEmailMax = 254;
|
|
28
|
+
export const listWorkflowsResponseAuthorCodeMax = 100;
|
|
29
29
|
export const listWorkflowsResponseAuthorFirstNameMax = 255;
|
|
30
30
|
export const listWorkflowsResponseAuthorLastNameMax = 255;
|
|
31
31
|
export const listWorkflowsResponseAuthorFullNameMax = 255;
|
|
32
|
-
export const listWorkflowsResponseAuthorEmployeeIdMax =
|
|
33
|
-
export const listWorkflowsResponseVersionAuthorEmailMax =
|
|
34
|
-
export const listWorkflowsResponseVersionAuthorCodeMax =
|
|
32
|
+
export const listWorkflowsResponseAuthorEmployeeIdMax = 30;
|
|
33
|
+
export const listWorkflowsResponseVersionAuthorEmailMax = 254;
|
|
34
|
+
export const listWorkflowsResponseVersionAuthorCodeMax = 100;
|
|
35
35
|
export const listWorkflowsResponseVersionAuthorFirstNameMax = 255;
|
|
36
36
|
export const listWorkflowsResponseVersionAuthorLastNameMax = 255;
|
|
37
37
|
export const listWorkflowsResponseVersionAuthorFullNameMax = 255;
|
|
38
|
-
export const listWorkflowsResponseVersionAuthorEmployeeIdMax =
|
|
39
|
-
export const listWorkflowsResponseFolderNameMax =
|
|
40
|
-
export const listWorkflowsResponseFolderCodeMax =
|
|
38
|
+
export const listWorkflowsResponseVersionAuthorEmployeeIdMax = 30;
|
|
39
|
+
export const listWorkflowsResponseFolderNameMax = 300;
|
|
40
|
+
export const listWorkflowsResponseFolderCodeMax = 100;
|
|
41
41
|
export const listWorkflowsResponseFolderWorkflowsCountMin = 0;
|
|
42
42
|
export const listWorkflowsResponseFolderRoutesCountMin = 0;
|
|
43
43
|
export const listWorkflowsResponseFolderPipelinesCountMin = 0;
|
|
@@ -126,118 +126,120 @@ export const getWorkflowResponseCodeRegExp = new RegExp('^[a-zA-Z0-9_-]+$');
|
|
|
126
126
|
export const getWorkflowResponsePublicTicketDefault = false;
|
|
127
127
|
export const getWorkflowResponseVisibleToTeamMembersDefault = false;
|
|
128
128
|
export const getWorkflowResponseAllowEditingOfViewersDefault = true;
|
|
129
|
-
export const getWorkflowResponseAuthorEmailMax =
|
|
130
|
-
export const getWorkflowResponseAuthorCodeMax =
|
|
129
|
+
export const getWorkflowResponseAuthorEmailMax = 254;
|
|
130
|
+
export const getWorkflowResponseAuthorCodeMax = 100;
|
|
131
131
|
export const getWorkflowResponseAuthorFirstNameMax = 255;
|
|
132
132
|
export const getWorkflowResponseAuthorLastNameMax = 255;
|
|
133
133
|
export const getWorkflowResponseAuthorFullNameMax = 255;
|
|
134
|
-
export const getWorkflowResponseAuthorEmployeeIdMax =
|
|
135
|
-
export const getWorkflowResponseVersionAuthorEmailMax =
|
|
136
|
-
export const getWorkflowResponseVersionAuthorCodeMax =
|
|
134
|
+
export const getWorkflowResponseAuthorEmployeeIdMax = 30;
|
|
135
|
+
export const getWorkflowResponseVersionAuthorEmailMax = 254;
|
|
136
|
+
export const getWorkflowResponseVersionAuthorCodeMax = 100;
|
|
137
137
|
export const getWorkflowResponseVersionAuthorFirstNameMax = 255;
|
|
138
138
|
export const getWorkflowResponseVersionAuthorLastNameMax = 255;
|
|
139
139
|
export const getWorkflowResponseVersionAuthorFullNameMax = 255;
|
|
140
|
-
export const getWorkflowResponseVersionAuthorEmployeeIdMax =
|
|
141
|
-
export const getWorkflowResponseFolderNameMax =
|
|
142
|
-
export const getWorkflowResponseFolderCodeMax =
|
|
140
|
+
export const getWorkflowResponseVersionAuthorEmployeeIdMax = 30;
|
|
141
|
+
export const getWorkflowResponseFolderNameMax = 300;
|
|
142
|
+
export const getWorkflowResponseFolderCodeMax = 100;
|
|
143
143
|
export const getWorkflowResponseFolderWorkflowsCountMin = 0;
|
|
144
144
|
export const getWorkflowResponseFolderRoutesCountMin = 0;
|
|
145
145
|
export const getWorkflowResponseFolderPipelinesCountMin = 0;
|
|
146
146
|
export const getWorkflowResponseCategoriesItemNameMax = 100;
|
|
147
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemTitleMax =
|
|
148
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemCodeMax =
|
|
147
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemTitleMax = 300;
|
|
148
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemCodeMax = 100;
|
|
149
149
|
export const getWorkflowResponseSectionListItemFormFieldsItemMinLengthMin = 0;
|
|
150
150
|
export const getWorkflowResponseSectionListItemFormFieldsItemMaxLengthMin = 0;
|
|
151
151
|
export const getWorkflowResponseSectionListItemFormFieldsItemDecimalDigitMin = 0;
|
|
152
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterCodeMax =
|
|
153
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterNameMax =
|
|
154
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemTitleMax =
|
|
155
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemCodeMax =
|
|
156
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemCodeMax =
|
|
157
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemNameMax =
|
|
158
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax =
|
|
159
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax =
|
|
160
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldTitleMax =
|
|
161
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldCodeMax =
|
|
152
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterCodeMax = 100;
|
|
153
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterNameMax = 300;
|
|
154
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemTitleMax = 300;
|
|
155
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemGeneralMasterFieldsItemCodeMax = 100;
|
|
156
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemCodeMax = 100;
|
|
157
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemNameMax = 100;
|
|
158
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax = 300;
|
|
159
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax = 100;
|
|
160
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldTitleMax = 300;
|
|
161
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldCodeMax = 100;
|
|
162
162
|
export const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldMinLengthMin = 0;
|
|
163
163
|
export const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldMaxLengthMin = 0;
|
|
164
164
|
export const getWorkflowResponseSectionListItemFormFieldsItemExternalApiSettingMappingsItemFormFieldDecimalDigitMin = 0;
|
|
165
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldTitleMax =
|
|
166
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldCodeMax =
|
|
165
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldTitleMax = 300;
|
|
166
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldCodeMax = 100;
|
|
167
167
|
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldMinLengthMin = 0;
|
|
168
168
|
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldMaxLengthMin = 0;
|
|
169
169
|
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingFormFieldDecimalDigitMin = 0;
|
|
170
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldTitleMax =
|
|
171
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldCodeMax =
|
|
170
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldTitleMax = 300;
|
|
171
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldCodeMax = 100;
|
|
172
172
|
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldMinLengthMin = 0;
|
|
173
173
|
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldMaxLengthMin = 0;
|
|
174
174
|
export const getWorkflowResponseSectionListItemFormFieldsItemKintoneAppSettingMappingsItemFormFieldDecimalDigitMin = 0;
|
|
175
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldTitleMax =
|
|
176
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldCodeMax =
|
|
175
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldTitleMax = 300;
|
|
176
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldCodeMax = 100;
|
|
177
177
|
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldMinLengthMin = 0;
|
|
178
178
|
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldMaxLengthMin = 0;
|
|
179
179
|
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingFormFieldDecimalDigitMin = 0;
|
|
180
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldTitleMax =
|
|
181
|
-
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldCodeMax =
|
|
180
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldTitleMax = 300;
|
|
181
|
+
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldCodeMax = 100;
|
|
182
182
|
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldMinLengthMin = 0;
|
|
183
183
|
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldMaxLengthMin = 0;
|
|
184
184
|
export const getWorkflowResponseSectionListItemFormFieldsItemClimberCloudSettingMappingsItemFormFieldDecimalDigitMin = 0;
|
|
185
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterCodeMax =
|
|
186
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterNameMax =
|
|
187
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemTitleMax =
|
|
188
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemCodeMax =
|
|
189
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemCodeMax =
|
|
190
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemNameMax =
|
|
191
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax =
|
|
192
|
-
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax =
|
|
193
|
-
export const getWorkflowResponseTicketViewersItemUserEmailMax =
|
|
194
|
-
export const getWorkflowResponseTicketViewersItemUserCodeMax =
|
|
185
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterCodeMax = 100;
|
|
186
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterNameMax = 300;
|
|
187
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemTitleMax = 300;
|
|
188
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemGeneralMasterFieldsItemCodeMax = 100;
|
|
189
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemCodeMax = 100;
|
|
190
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemNameMax = 100;
|
|
191
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldTitleMax = 300;
|
|
192
|
+
export const getWorkflowResponseSectionListItemSlipFieldsItemDefaultGeneralMasterItemInputsItemFieldCodeMax = 100;
|
|
193
|
+
export const getWorkflowResponseTicketViewersItemUserEmailMax = 254;
|
|
194
|
+
export const getWorkflowResponseTicketViewersItemUserCodeMax = 100;
|
|
195
195
|
export const getWorkflowResponseTicketViewersItemUserFirstNameMax = 255;
|
|
196
196
|
export const getWorkflowResponseTicketViewersItemUserLastNameMax = 255;
|
|
197
197
|
export const getWorkflowResponseTicketViewersItemUserFullNameMax = 255;
|
|
198
|
-
export const getWorkflowResponseTicketViewersItemUserEmployeeIdMax =
|
|
199
|
-
export const getWorkflowResponseTicketViewersItemTeamNameMax =
|
|
200
|
-
export const getWorkflowResponseTicketViewersItemTeamCodeMax =
|
|
198
|
+
export const getWorkflowResponseTicketViewersItemUserEmployeeIdMax = 30;
|
|
199
|
+
export const getWorkflowResponseTicketViewersItemTeamNameMax = 300;
|
|
200
|
+
export const getWorkflowResponseTicketViewersItemTeamCodeMax = 100;
|
|
201
|
+
export const getWorkflowResponseTicketViewersItemTeamNotesMax = 10000;
|
|
201
202
|
export const getWorkflowResponseTicketViewersItemTeamUsersCountMin = 0;
|
|
202
|
-
export const getWorkflowResponseTicketViewersItemGradeNameMax =
|
|
203
|
+
export const getWorkflowResponseTicketViewersItemGradeNameMax = 300;
|
|
203
204
|
export const getWorkflowResponseTicketViewersItemGradeLevelMin = 0;
|
|
204
205
|
export const getWorkflowResponseTicketViewersItemGradeLevelMax = 255;
|
|
205
|
-
export const getWorkflowResponseTicketViewersItemGradeCodeMax =
|
|
206
|
+
export const getWorkflowResponseTicketViewersItemGradeCodeMax = 100;
|
|
206
207
|
export const getWorkflowResponseTicketViewersItemGradeIsDefaultDefault = false;
|
|
207
|
-
export const getWorkflowResponseRouteConditionsItemRouteAuthorEmailMax =
|
|
208
|
-
export const getWorkflowResponseRouteConditionsItemRouteAuthorCodeMax =
|
|
208
|
+
export const getWorkflowResponseRouteConditionsItemRouteAuthorEmailMax = 254;
|
|
209
|
+
export const getWorkflowResponseRouteConditionsItemRouteAuthorCodeMax = 100;
|
|
209
210
|
export const getWorkflowResponseRouteConditionsItemRouteAuthorFirstNameMax = 255;
|
|
210
211
|
export const getWorkflowResponseRouteConditionsItemRouteAuthorLastNameMax = 255;
|
|
211
212
|
export const getWorkflowResponseRouteConditionsItemRouteAuthorFullNameMax = 255;
|
|
212
|
-
export const getWorkflowResponseRouteConditionsItemRouteAuthorEmployeeIdMax =
|
|
213
|
-
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmailMax =
|
|
214
|
-
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorCodeMax =
|
|
213
|
+
export const getWorkflowResponseRouteConditionsItemRouteAuthorEmployeeIdMax = 30;
|
|
214
|
+
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmailMax = 254;
|
|
215
|
+
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorCodeMax = 100;
|
|
215
216
|
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorFirstNameMax = 255;
|
|
216
217
|
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorLastNameMax = 255;
|
|
217
218
|
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorFullNameMax = 255;
|
|
218
|
-
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmployeeIdMax =
|
|
219
|
-
export const getWorkflowResponseRouteConditionsItemRouteFolderNameMax =
|
|
220
|
-
export const getWorkflowResponseRouteConditionsItemRouteFolderCodeMax =
|
|
219
|
+
export const getWorkflowResponseRouteConditionsItemRouteVersionAuthorEmployeeIdMax = 30;
|
|
220
|
+
export const getWorkflowResponseRouteConditionsItemRouteFolderNameMax = 300;
|
|
221
|
+
export const getWorkflowResponseRouteConditionsItemRouteFolderCodeMax = 100;
|
|
221
222
|
export const getWorkflowResponseRouteConditionsItemRouteFolderWorkflowsCountMin = 0;
|
|
222
223
|
export const getWorkflowResponseRouteConditionsItemRouteFolderRoutesCountMin = 0;
|
|
223
224
|
export const getWorkflowResponseRouteConditionsItemRouteFolderPipelinesCountMin = 0;
|
|
224
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldTitleMax =
|
|
225
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldCodeMax =
|
|
225
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldTitleMax = 300;
|
|
226
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldCodeMax = 100;
|
|
226
227
|
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldMinLengthMin = 0;
|
|
227
228
|
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldMaxLengthMin = 0;
|
|
228
229
|
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemFormFieldDecimalDigitMin = 0;
|
|
229
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeNameMax =
|
|
230
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeNameMax = 300;
|
|
230
231
|
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeLevelMin = 0;
|
|
231
232
|
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeLevelMax = 255;
|
|
232
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeCodeMax =
|
|
233
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeCodeMax = 100;
|
|
233
234
|
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGradeIsDefaultDefault = false;
|
|
234
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNameMax =
|
|
235
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamCodeMax =
|
|
235
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNameMax = 300;
|
|
236
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamCodeMax = 100;
|
|
237
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNotesMax = 10000;
|
|
236
238
|
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamUsersCountMin = 0;
|
|
237
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemCodeMax =
|
|
238
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemNameMax =
|
|
239
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldTitleMax =
|
|
240
|
-
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldCodeMax =
|
|
239
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemCodeMax = 100;
|
|
240
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemNameMax = 100;
|
|
241
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldTitleMax = 300;
|
|
242
|
+
export const getWorkflowResponseRouteConditionsItemConditionFieldsItemGeneralMasterItemInputsItemFieldCodeMax = 100;
|
|
241
243
|
export const getWorkflowResponse = zod.object({
|
|
242
244
|
"id": zod.string().describe('UUID'),
|
|
243
245
|
"code": zod.string().regex(getWorkflowResponseCodeRegExp).describe('コード'),
|
|
@@ -563,8 +565,8 @@ export const getWorkflowResponse = zod.object({
|
|
|
563
565
|
})).nullish().describe('汎用マスタ型フィールドの自動絞り込みの設定')
|
|
564
566
|
})).describe('フォームフィールドの詳細')).optional().describe('フォームフィールド。明細セクションには含まれません。'),
|
|
565
567
|
"conditional": zod.boolean().optional().describe('表示条件があるかどうか。明細セクションには含まれません。'),
|
|
566
|
-
"
|
|
567
|
-
"
|
|
568
|
+
"combinationType": zod.enum(['all', 'any', 'custom']).optional().describe('条件の組み合わせタイプ。all=すべて、any=いずれか、custom=高度な条件式。明細セクションには含まれません。'),
|
|
569
|
+
"combinationExpression": zod.string().nullish().describe('高度な条件式'),
|
|
568
570
|
"slipFields": zod.array(zod.object({
|
|
569
571
|
"id": zod.string().uuid().describe('UUID'),
|
|
570
572
|
"fieldType": zod.enum(['text', 'number', 'integer', 'calculation', 'pull_down', 'checkbox', 'date', 'file', 'master', 'user', 'team', 'ticket']).describe('フィールドの型'),
|
|
@@ -664,7 +666,7 @@ export const getWorkflowResponse = zod.object({
|
|
|
664
666
|
"name": zod.string().max(getWorkflowResponseTicketViewersItemTeamNameMax).describe('名前'),
|
|
665
667
|
"fullName": zod.string().describe('上位組織を含む名前'),
|
|
666
668
|
"code": zod.string().max(getWorkflowResponseTicketViewersItemTeamCodeMax).describe('コード'),
|
|
667
|
-
"notes": zod.string().nullish().describe('管理用メモ'),
|
|
669
|
+
"notes": zod.string().max(getWorkflowResponseTicketViewersItemTeamNotesMax).nullish().describe('管理用メモ'),
|
|
668
670
|
"approveOnly": zod.boolean().describe('承認専用チームかどうか'),
|
|
669
671
|
"usersCount": zod.number().min(getWorkflowResponseTicketViewersItemTeamUsersCountMin).describe('ユーザー数'),
|
|
670
672
|
"createdAt": zod.string().datetime({}).describe('作成日時'),
|
|
@@ -792,7 +794,7 @@ export const getWorkflowResponse = zod.object({
|
|
|
792
794
|
"name": zod.string().max(getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNameMax).describe('名前'),
|
|
793
795
|
"fullName": zod.string().describe('上位組織を含む名前'),
|
|
794
796
|
"code": zod.string().max(getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamCodeMax).describe('コード'),
|
|
795
|
-
"notes": zod.string().nullish().describe('管理用メモ'),
|
|
797
|
+
"notes": zod.string().max(getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamNotesMax).nullish().describe('管理用メモ'),
|
|
796
798
|
"approveOnly": zod.boolean().describe('承認専用チームかどうか'),
|
|
797
799
|
"usersCount": zod.number().min(getWorkflowResponseRouteConditionsItemConditionFieldsItemTeamUsersCountMin).describe('ユーザー数'),
|
|
798
800
|
"createdAt": zod.string().datetime({}).describe('作成日時'),
|