@kickflow/mcp-server 0.1.5 → 0.1.6
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 +10 -10
- package/dist/kickflow-api/generated/grade/grade.zod.js +10 -10
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.d.ts +44 -38
- 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 +10 -5
|
@@ -16,7 +16,7 @@ export interface ErrorResponse {
|
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
18
|
* コード
|
|
19
|
-
* @maxLength
|
|
19
|
+
* @maxLength 100
|
|
20
20
|
*/
|
|
21
21
|
export type GradeCode = string | null;
|
|
22
22
|
/**
|
|
@@ -27,7 +27,7 @@ export interface Grade {
|
|
|
27
27
|
id: string;
|
|
28
28
|
/**
|
|
29
29
|
* 名前
|
|
30
|
-
* @maxLength
|
|
30
|
+
* @maxLength 300
|
|
31
31
|
*/
|
|
32
32
|
name: string;
|
|
33
33
|
/**
|
|
@@ -38,7 +38,7 @@ export interface Grade {
|
|
|
38
38
|
level: number;
|
|
39
39
|
/**
|
|
40
40
|
* コード
|
|
41
|
-
* @maxLength
|
|
41
|
+
* @maxLength 100
|
|
42
42
|
*/
|
|
43
43
|
code: GradeCode;
|
|
44
44
|
/** デフォルトの役職かどうか */
|
|
@@ -54,7 +54,7 @@ export interface Grade {
|
|
|
54
54
|
export interface GradeCreateBody {
|
|
55
55
|
/**
|
|
56
56
|
* 名前
|
|
57
|
-
* @maxLength
|
|
57
|
+
* @maxLength 300
|
|
58
58
|
*/
|
|
59
59
|
name: string;
|
|
60
60
|
/**
|
|
@@ -65,7 +65,7 @@ export interface GradeCreateBody {
|
|
|
65
65
|
level: number;
|
|
66
66
|
/**
|
|
67
67
|
* コード。未指定の場合、ランダムな英数字が自動的に設定されます。
|
|
68
|
-
* @maxLength
|
|
68
|
+
* @maxLength 100
|
|
69
69
|
*/
|
|
70
70
|
code?: string;
|
|
71
71
|
}
|
|
@@ -89,7 +89,7 @@ export interface GradeUpdateBody {
|
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
91
|
* 社員番号
|
|
92
|
-
* @maxLength
|
|
92
|
+
* @maxLength 30
|
|
93
93
|
*/
|
|
94
94
|
export type UserEmployeeId = string | null;
|
|
95
95
|
export type UserImage100x100 = string | null;
|
|
@@ -125,12 +125,12 @@ export interface User {
|
|
|
125
125
|
id: string;
|
|
126
126
|
/**
|
|
127
127
|
* メールアドレス
|
|
128
|
-
* @maxLength
|
|
128
|
+
* @maxLength 254
|
|
129
129
|
*/
|
|
130
130
|
email: string;
|
|
131
131
|
/**
|
|
132
132
|
* コード
|
|
133
|
-
* @maxLength
|
|
133
|
+
* @maxLength 100
|
|
134
134
|
*/
|
|
135
135
|
code: string;
|
|
136
136
|
/**
|
|
@@ -150,7 +150,7 @@ export interface User {
|
|
|
150
150
|
fullName: string;
|
|
151
151
|
/**
|
|
152
152
|
* 社員番号
|
|
153
|
-
* @maxLength
|
|
153
|
+
* @maxLength 30
|
|
154
154
|
*/
|
|
155
155
|
employeeId?: UserEmployeeId;
|
|
156
156
|
/** ユーザー画像のURL。サイズごとに複数のURLを返します。 */
|
|
@@ -226,6 +226,7 @@ export interface ProxyApprover {
|
|
|
226
226
|
}
|
|
227
227
|
/**
|
|
228
228
|
* 管理用メモ
|
|
229
|
+
* @maxLength 10000
|
|
229
230
|
*/
|
|
230
231
|
export type TeamNotes = string | null;
|
|
231
232
|
/**
|
|
@@ -236,17 +237,20 @@ export interface Team {
|
|
|
236
237
|
id: string;
|
|
237
238
|
/**
|
|
238
239
|
* 名前
|
|
239
|
-
* @maxLength
|
|
240
|
+
* @maxLength 300
|
|
240
241
|
*/
|
|
241
242
|
name: string;
|
|
242
243
|
/** 上位組織を含む名前 */
|
|
243
244
|
fullName: string;
|
|
244
245
|
/**
|
|
245
246
|
* コード
|
|
246
|
-
* @maxLength
|
|
247
|
+
* @maxLength 100
|
|
247
248
|
*/
|
|
248
249
|
code: string;
|
|
249
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* 管理用メモ
|
|
252
|
+
* @maxLength 10000
|
|
253
|
+
*/
|
|
250
254
|
notes?: TeamNotes;
|
|
251
255
|
/** 承認専用チームかどうか */
|
|
252
256
|
approveOnly: boolean;
|
|
@@ -337,7 +341,7 @@ export interface OrganizationChart {
|
|
|
337
341
|
id: string;
|
|
338
342
|
/**
|
|
339
343
|
* 名前
|
|
340
|
-
* @maxLength
|
|
344
|
+
* @maxLength 300
|
|
341
345
|
*/
|
|
342
346
|
name: string;
|
|
343
347
|
/** 現在有効な組織図かどうか */
|
|
@@ -385,7 +389,7 @@ export interface Role {
|
|
|
385
389
|
id: string;
|
|
386
390
|
/**
|
|
387
391
|
* 名前
|
|
388
|
-
* @maxLength
|
|
392
|
+
* @maxLength 300
|
|
389
393
|
*/
|
|
390
394
|
name: string;
|
|
391
395
|
/** 編集可能かどうか。「すべての管理者」のときだけfalseになります。 */
|
|
@@ -562,12 +566,12 @@ export interface Folder {
|
|
|
562
566
|
id: string;
|
|
563
567
|
/**
|
|
564
568
|
* 名前
|
|
565
|
-
* @maxLength
|
|
569
|
+
* @maxLength 300
|
|
566
570
|
*/
|
|
567
571
|
name: string;
|
|
568
572
|
/**
|
|
569
573
|
* コード
|
|
570
|
-
* @maxLength
|
|
574
|
+
* @maxLength 100
|
|
571
575
|
*/
|
|
572
576
|
code: string;
|
|
573
577
|
/** 説明 */
|
|
@@ -614,12 +618,12 @@ export interface GeneralMaster {
|
|
|
614
618
|
id: string;
|
|
615
619
|
/**
|
|
616
620
|
* コード
|
|
617
|
-
* @maxLength
|
|
621
|
+
* @maxLength 100
|
|
618
622
|
*/
|
|
619
623
|
code: string;
|
|
620
624
|
/**
|
|
621
625
|
* 名前
|
|
622
|
-
* @maxLength
|
|
626
|
+
* @maxLength 300
|
|
623
627
|
*/
|
|
624
628
|
name: string;
|
|
625
629
|
/** 説明 */
|
|
@@ -667,12 +671,12 @@ export interface GeneralMasterItem {
|
|
|
667
671
|
id: string;
|
|
668
672
|
/**
|
|
669
673
|
* コード
|
|
670
|
-
* @maxLength
|
|
674
|
+
* @maxLength 100
|
|
671
675
|
*/
|
|
672
676
|
code: string;
|
|
673
677
|
/**
|
|
674
678
|
* 名前
|
|
675
|
-
* @maxLength
|
|
679
|
+
* @maxLength 100
|
|
676
680
|
*/
|
|
677
681
|
name: string;
|
|
678
682
|
/** 説明 */
|
|
@@ -717,14 +721,14 @@ export interface GeneralMasterField {
|
|
|
717
721
|
id: string;
|
|
718
722
|
/**
|
|
719
723
|
* フィールド名
|
|
720
|
-
* @maxLength
|
|
724
|
+
* @maxLength 300
|
|
721
725
|
*/
|
|
722
726
|
title: string;
|
|
723
727
|
/** フィールドの説明 */
|
|
724
728
|
description: GeneralMasterFieldDescription;
|
|
725
729
|
/**
|
|
726
730
|
* フィールドのコード
|
|
727
|
-
* @maxLength
|
|
731
|
+
* @maxLength 100
|
|
728
732
|
*/
|
|
729
733
|
code: string;
|
|
730
734
|
/** フィールドの型 */
|
|
@@ -881,13 +885,18 @@ export type SectionListItemTitle = string | null;
|
|
|
881
885
|
*/
|
|
882
886
|
export type SectionListItemDescription = string | null;
|
|
883
887
|
/**
|
|
884
|
-
* 条件の組み合わせタイプ。all=すべて、any
|
|
888
|
+
* 条件の組み合わせタイプ。all=すべて、any=いずれか、custom=高度な条件式。明細セクションには含まれません。
|
|
885
889
|
*/
|
|
886
890
|
export type SectionListItemCombinationType = (typeof SectionListItemCombinationType)[keyof typeof SectionListItemCombinationType];
|
|
887
891
|
export declare const SectionListItemCombinationType: {
|
|
888
892
|
readonly all: "all";
|
|
889
893
|
readonly any: "any";
|
|
894
|
+
readonly custom: "custom";
|
|
890
895
|
};
|
|
896
|
+
/**
|
|
897
|
+
* 高度な条件式
|
|
898
|
+
*/
|
|
899
|
+
export type SectionListItemCombinationExpression = string | null;
|
|
891
900
|
/**
|
|
892
901
|
* 明細セクションまたはフォームセクション
|
|
893
902
|
*/
|
|
@@ -903,13 +912,10 @@ export interface SectionListItem {
|
|
|
903
912
|
formFields?: FormFieldDetail[];
|
|
904
913
|
/** 表示条件があるかどうか。明細セクションには含まれません。 */
|
|
905
914
|
conditional?: boolean;
|
|
906
|
-
/**
|
|
907
|
-
* 非推奨。今後はcombinationTypeを使用してください。
|
|
908
|
-
* @deprecated
|
|
909
|
-
*/
|
|
910
|
-
conditionAllOf?: boolean;
|
|
911
|
-
/** 条件の組み合わせタイプ。all=すべて、any=いずれか。明細セクションには含まれません。 */
|
|
915
|
+
/** 条件の組み合わせタイプ。all=すべて、any=いずれか、custom=高度な条件式。明細セクションには含まれません。 */
|
|
912
916
|
combinationType?: SectionListItemCombinationType;
|
|
917
|
+
/** 高度な条件式 */
|
|
918
|
+
combinationExpression?: SectionListItemCombinationExpression;
|
|
913
919
|
/** 明細フィールド。フォームセクションには含まれません。 */
|
|
914
920
|
slipFields?: SlipFieldDetail[];
|
|
915
921
|
}
|
|
@@ -1016,7 +1022,7 @@ export interface FormField {
|
|
|
1016
1022
|
id: string;
|
|
1017
1023
|
/**
|
|
1018
1024
|
* 説明
|
|
1019
|
-
* @maxLength
|
|
1025
|
+
* @maxLength 300
|
|
1020
1026
|
*/
|
|
1021
1027
|
title: string;
|
|
1022
1028
|
/** 説明 */
|
|
@@ -1033,7 +1039,7 @@ export interface FormField {
|
|
|
1033
1039
|
options: FormFieldOptions;
|
|
1034
1040
|
/**
|
|
1035
1041
|
* コード
|
|
1036
|
-
* @maxLength
|
|
1042
|
+
* @maxLength 100
|
|
1037
1043
|
*/
|
|
1038
1044
|
code: string;
|
|
1039
1045
|
/** フォームサイズ。fullの場合全幅、halfの場合1/2になります。 */
|
|
@@ -3315,7 +3321,7 @@ export declare const ListUsersStatusItem: {
|
|
|
3315
3321
|
};
|
|
3316
3322
|
/**
|
|
3317
3323
|
* 社員番号
|
|
3318
|
-
* @maxLength
|
|
3324
|
+
* @maxLength 30
|
|
3319
3325
|
*/
|
|
3320
3326
|
export type CreateUserBodyEmployeeId = string | null;
|
|
3321
3327
|
export type CreateUserBody = {
|
|
@@ -3323,7 +3329,7 @@ export type CreateUserBody = {
|
|
|
3323
3329
|
email: string;
|
|
3324
3330
|
/**
|
|
3325
3331
|
* コード。未指定の場合、ランダムな英数字が自動的に設定されます。
|
|
3326
|
-
* @maxLength
|
|
3332
|
+
* @maxLength 100
|
|
3327
3333
|
*/
|
|
3328
3334
|
code: string;
|
|
3329
3335
|
/**
|
|
@@ -3340,24 +3346,24 @@ export type CreateUserBody = {
|
|
|
3340
3346
|
sendEmail?: boolean;
|
|
3341
3347
|
/**
|
|
3342
3348
|
* 社員番号
|
|
3343
|
-
* @maxLength
|
|
3349
|
+
* @maxLength 30
|
|
3344
3350
|
*/
|
|
3345
3351
|
employeeId?: CreateUserBodyEmployeeId;
|
|
3346
3352
|
};
|
|
3347
3353
|
/**
|
|
3348
3354
|
* 社員番号
|
|
3349
|
-
* @maxLength
|
|
3355
|
+
* @maxLength 30
|
|
3350
3356
|
*/
|
|
3351
3357
|
export type UpdateUserBodyEmployeeId = string | null;
|
|
3352
3358
|
export type UpdateUserBody = {
|
|
3353
3359
|
/**
|
|
3354
3360
|
* メールアドレス
|
|
3355
|
-
* @maxLength
|
|
3361
|
+
* @maxLength 254
|
|
3356
3362
|
*/
|
|
3357
3363
|
email?: string;
|
|
3358
3364
|
/**
|
|
3359
3365
|
* コード
|
|
3360
|
-
* @maxLength
|
|
3366
|
+
* @maxLength 100
|
|
3361
3367
|
*/
|
|
3362
3368
|
code?: string;
|
|
3363
3369
|
/**
|
|
@@ -3372,7 +3378,7 @@ export type UpdateUserBody = {
|
|
|
3372
3378
|
lastName?: string;
|
|
3373
3379
|
/**
|
|
3374
3380
|
* 社員番号
|
|
3375
|
-
* @maxLength
|
|
3381
|
+
* @maxLength 30
|
|
3376
3382
|
*/
|
|
3377
3383
|
employeeId?: UpdateUserBodyEmployeeId;
|
|
3378
3384
|
};
|
|
@@ -105,6 +105,7 @@ export const SectionListItemSectionType = {
|
|
|
105
105
|
export const SectionListItemCombinationType = {
|
|
106
106
|
all: 'all',
|
|
107
107
|
any: 'any',
|
|
108
|
+
custom: 'custom',
|
|
108
109
|
};
|
|
109
110
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
110
111
|
export const FormFieldFieldType = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kickflowRESTAPIV1.schemas.js","sourceRoot":"","sources":["../../../src/kickflow-api/generated/kickflowRESTAPIV1.schemas.ts"],"names":[],"mappings":"AAwHA,2DAA2D;AAC3D,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,aAAa;CAClB,CAAA;
|
|
1
|
+
{"version":3,"file":"kickflowRESTAPIV1.schemas.js","sourceRoot":"","sources":["../../../src/kickflow-api/generated/kickflowRESTAPIV1.schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -24,7 +24,7 @@ export declare const listOrganizationChartsQueryParams: zod.ZodObject<{
|
|
|
24
24
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
25
25
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
26
26
|
}, zod.core.$strip>;
|
|
27
|
-
export declare const listOrganizationChartsResponseNameMax =
|
|
27
|
+
export declare const listOrganizationChartsResponseNameMax = 300;
|
|
28
28
|
export declare const listOrganizationChartsResponseItem: zod.ZodObject<{
|
|
29
29
|
id: zod.ZodString;
|
|
30
30
|
name: zod.ZodString;
|
|
@@ -64,7 +64,7 @@ export declare const listOrganizationChartsResponse: zod.ZodArray<zod.ZodObject<
|
|
|
64
64
|
export declare const createOrganizationChartBody: zod.ZodObject<{
|
|
65
65
|
name: zod.ZodString;
|
|
66
66
|
}, zod.core.$strip>;
|
|
67
|
-
export declare const createOrganizationChartResponseNameMax =
|
|
67
|
+
export declare const createOrganizationChartResponseNameMax = 300;
|
|
68
68
|
export declare const createOrganizationChartResponse: zod.ZodObject<{
|
|
69
69
|
id: zod.ZodString;
|
|
70
70
|
name: zod.ZodString;
|
|
@@ -86,7 +86,7 @@ export declare const createOrganizationChartResponse: zod.ZodObject<{
|
|
|
86
86
|
このAPIの実行には、チームの管理権限が必要です。
|
|
87
87
|
* @summary 組織図を取得
|
|
88
88
|
*/
|
|
89
|
-
export declare const getOrganizationChartResponseNameMax =
|
|
89
|
+
export declare const getOrganizationChartResponseNameMax = 300;
|
|
90
90
|
export declare const getOrganizationChartResponse: zod.ZodObject<{
|
|
91
91
|
id: zod.ZodString;
|
|
92
92
|
name: zod.ZodString;
|
|
@@ -111,7 +111,7 @@ export declare const getOrganizationChartResponse: zod.ZodObject<{
|
|
|
111
111
|
export declare const updateOrganizationChartBody: zod.ZodObject<{
|
|
112
112
|
name: zod.ZodString;
|
|
113
113
|
}, zod.core.$strip>;
|
|
114
|
-
export declare const updateOrganizationChartResponseNameMax =
|
|
114
|
+
export declare const updateOrganizationChartResponseNameMax = 300;
|
|
115
115
|
export declare const updateOrganizationChartResponse: zod.ZodObject<{
|
|
116
116
|
id: zod.ZodString;
|
|
117
117
|
name: zod.ZodString;
|
|
@@ -133,7 +133,7 @@ export declare const updateOrganizationChartResponse: zod.ZodObject<{
|
|
|
133
133
|
このAPIの実行には、チームの管理権限が必要です。
|
|
134
134
|
* @summary 現在の組織図を取得
|
|
135
135
|
*/
|
|
136
|
-
export declare const getCurrentOrganizationChartResponseNameMax =
|
|
136
|
+
export declare const getCurrentOrganizationChartResponseNameMax = 300;
|
|
137
137
|
export declare const getCurrentOrganizationChartResponse: zod.ZodObject<{
|
|
138
138
|
id: zod.ZodString;
|
|
139
139
|
name: zod.ZodString;
|
|
@@ -161,7 +161,7 @@ export declare const getCurrentOrganizationChartResponse: zod.ZodObject<{
|
|
|
161
161
|
export declare const activateOrganizationChartBody: zod.ZodObject<{
|
|
162
162
|
dueOn: zod.ZodOptional<zod.ZodString>;
|
|
163
163
|
}, zod.core.$strip>;
|
|
164
|
-
export declare const activateOrganizationChartResponseNameMax =
|
|
164
|
+
export declare const activateOrganizationChartResponseNameMax = 300;
|
|
165
165
|
export declare const activateOrganizationChartResponse: zod.ZodObject<{
|
|
166
166
|
id: zod.ZodString;
|
|
167
167
|
name: zod.ZodString;
|
|
@@ -24,7 +24,7 @@ export const listOrganizationChartsQueryParams = zod.object({
|
|
|
24
24
|
"perPage": zod.number().min(1).max(listOrganizationChartsQueryPerPageMax).default(listOrganizationChartsQueryPerPageDefault).describe('1ページあたりの件数'),
|
|
25
25
|
"sortBy": zod.string().regex(listOrganizationChartsQuerySortByRegExp).optional().describe('ソート対象のフィールドと順序。指定可能なフィールド: createdAt, name')
|
|
26
26
|
});
|
|
27
|
-
export const listOrganizationChartsResponseNameMax =
|
|
27
|
+
export const listOrganizationChartsResponseNameMax = 300;
|
|
28
28
|
export const listOrganizationChartsResponseItem = zod.object({
|
|
29
29
|
"id": zod.string().uuid().describe('UUID'),
|
|
30
30
|
"name": zod.string().max(listOrganizationChartsResponseNameMax).describe('名前'),
|
|
@@ -50,7 +50,7 @@ export const listOrganizationChartsResponse = zod.array(listOrganizationChartsRe
|
|
|
50
50
|
export const createOrganizationChartBody = zod.object({
|
|
51
51
|
"name": zod.string().describe('名前')
|
|
52
52
|
}).describe('組織図を作成・更新するときのrequest body');
|
|
53
|
-
export const createOrganizationChartResponseNameMax =
|
|
53
|
+
export const createOrganizationChartResponseNameMax = 300;
|
|
54
54
|
export const createOrganizationChartResponse = zod.object({
|
|
55
55
|
"id": zod.string().uuid().describe('UUID'),
|
|
56
56
|
"name": zod.string().max(createOrganizationChartResponseNameMax).describe('名前'),
|
|
@@ -72,7 +72,7 @@ export const createOrganizationChartResponse = zod.object({
|
|
|
72
72
|
このAPIの実行には、チームの管理権限が必要です。
|
|
73
73
|
* @summary 組織図を取得
|
|
74
74
|
*/
|
|
75
|
-
export const getOrganizationChartResponseNameMax =
|
|
75
|
+
export const getOrganizationChartResponseNameMax = 300;
|
|
76
76
|
export const getOrganizationChartResponse = zod.object({
|
|
77
77
|
"id": zod.string().uuid().describe('UUID'),
|
|
78
78
|
"name": zod.string().max(getOrganizationChartResponseNameMax).describe('名前'),
|
|
@@ -97,7 +97,7 @@ export const getOrganizationChartResponse = zod.object({
|
|
|
97
97
|
export const updateOrganizationChartBody = zod.object({
|
|
98
98
|
"name": zod.string().describe('名前')
|
|
99
99
|
}).describe('組織図を作成・更新するときのrequest body');
|
|
100
|
-
export const updateOrganizationChartResponseNameMax =
|
|
100
|
+
export const updateOrganizationChartResponseNameMax = 300;
|
|
101
101
|
export const updateOrganizationChartResponse = zod.object({
|
|
102
102
|
"id": zod.string().uuid().describe('UUID'),
|
|
103
103
|
"name": zod.string().max(updateOrganizationChartResponseNameMax).describe('名前'),
|
|
@@ -119,7 +119,7 @@ export const updateOrganizationChartResponse = zod.object({
|
|
|
119
119
|
このAPIの実行には、チームの管理権限が必要です。
|
|
120
120
|
* @summary 現在の組織図を取得
|
|
121
121
|
*/
|
|
122
|
-
export const getCurrentOrganizationChartResponseNameMax =
|
|
122
|
+
export const getCurrentOrganizationChartResponseNameMax = 300;
|
|
123
123
|
export const getCurrentOrganizationChartResponse = zod.object({
|
|
124
124
|
"id": zod.string().uuid().describe('UUID'),
|
|
125
125
|
"name": zod.string().max(getCurrentOrganizationChartResponseNameMax).describe('名前'),
|
|
@@ -147,7 +147,7 @@ export const getCurrentOrganizationChartResponse = zod.object({
|
|
|
147
147
|
export const activateOrganizationChartBody = zod.object({
|
|
148
148
|
"dueOn": zod.string().date().optional().describe('有効化する日付。nullの場合、即時で有効化します。')
|
|
149
149
|
});
|
|
150
|
-
export const activateOrganizationChartResponseNameMax =
|
|
150
|
+
export const activateOrganizationChartResponseNameMax = 300;
|
|
151
151
|
export const activateOrganizationChartResponse = zod.object({
|
|
152
152
|
"id": zod.string().uuid().describe('UUID'),
|
|
153
153
|
"name": zod.string().max(activateOrganizationChartResponseNameMax).describe('名前'),
|
|
@@ -19,36 +19,36 @@ export declare const listProxyApplicantsQueryParams: zod.ZodObject<{
|
|
|
19
19
|
page: zod.ZodDefault<zod.ZodNumber>;
|
|
20
20
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
21
21
|
}, zod.core.$strip>;
|
|
22
|
-
export declare const listProxyApplicantsResponseUserEmailMax =
|
|
23
|
-
export declare const listProxyApplicantsResponseUserCodeMax =
|
|
22
|
+
export declare const listProxyApplicantsResponseUserEmailMax = 254;
|
|
23
|
+
export declare const listProxyApplicantsResponseUserCodeMax = 100;
|
|
24
24
|
export declare const listProxyApplicantsResponseUserFirstNameMax = 255;
|
|
25
25
|
export declare const listProxyApplicantsResponseUserLastNameMax = 255;
|
|
26
26
|
export declare const listProxyApplicantsResponseUserFullNameMax = 255;
|
|
27
|
-
export declare const listProxyApplicantsResponseUserEmployeeIdMax =
|
|
28
|
-
export declare const listProxyApplicantsResponseProxyUserEmailMax =
|
|
29
|
-
export declare const listProxyApplicantsResponseProxyUserCodeMax =
|
|
27
|
+
export declare const listProxyApplicantsResponseUserEmployeeIdMax = 30;
|
|
28
|
+
export declare const listProxyApplicantsResponseProxyUserEmailMax = 254;
|
|
29
|
+
export declare const listProxyApplicantsResponseProxyUserCodeMax = 100;
|
|
30
30
|
export declare const listProxyApplicantsResponseProxyUserFirstNameMax = 255;
|
|
31
31
|
export declare const listProxyApplicantsResponseProxyUserLastNameMax = 255;
|
|
32
32
|
export declare const listProxyApplicantsResponseProxyUserFullNameMax = 255;
|
|
33
|
-
export declare const listProxyApplicantsResponseProxyUserEmployeeIdMax =
|
|
33
|
+
export declare const listProxyApplicantsResponseProxyUserEmployeeIdMax = 30;
|
|
34
34
|
export declare const listProxyApplicantsResponseWorkflowsItemCodeRegExp: RegExp;
|
|
35
35
|
export declare const listProxyApplicantsResponseWorkflowsItemPublicTicketDefault = false;
|
|
36
36
|
export declare const listProxyApplicantsResponseWorkflowsItemVisibleToTeamMembersDefault = false;
|
|
37
37
|
export declare const listProxyApplicantsResponseWorkflowsItemAllowEditingOfViewersDefault = true;
|
|
38
|
-
export declare const listProxyApplicantsResponseWorkflowsItemAuthorEmailMax =
|
|
39
|
-
export declare const listProxyApplicantsResponseWorkflowsItemAuthorCodeMax =
|
|
38
|
+
export declare const listProxyApplicantsResponseWorkflowsItemAuthorEmailMax = 254;
|
|
39
|
+
export declare const listProxyApplicantsResponseWorkflowsItemAuthorCodeMax = 100;
|
|
40
40
|
export declare const listProxyApplicantsResponseWorkflowsItemAuthorFirstNameMax = 255;
|
|
41
41
|
export declare const listProxyApplicantsResponseWorkflowsItemAuthorLastNameMax = 255;
|
|
42
42
|
export declare const listProxyApplicantsResponseWorkflowsItemAuthorFullNameMax = 255;
|
|
43
|
-
export declare const listProxyApplicantsResponseWorkflowsItemAuthorEmployeeIdMax =
|
|
44
|
-
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmailMax =
|
|
45
|
-
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorCodeMax =
|
|
43
|
+
export declare const listProxyApplicantsResponseWorkflowsItemAuthorEmployeeIdMax = 30;
|
|
44
|
+
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmailMax = 254;
|
|
45
|
+
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorCodeMax = 100;
|
|
46
46
|
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorFirstNameMax = 255;
|
|
47
47
|
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorLastNameMax = 255;
|
|
48
48
|
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorFullNameMax = 255;
|
|
49
|
-
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmployeeIdMax =
|
|
50
|
-
export declare const listProxyApplicantsResponseWorkflowsItemFolderNameMax =
|
|
51
|
-
export declare const listProxyApplicantsResponseWorkflowsItemFolderCodeMax =
|
|
49
|
+
export declare const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmployeeIdMax = 30;
|
|
50
|
+
export declare const listProxyApplicantsResponseWorkflowsItemFolderNameMax = 300;
|
|
51
|
+
export declare const listProxyApplicantsResponseWorkflowsItemFolderCodeMax = 100;
|
|
52
52
|
export declare const listProxyApplicantsResponseWorkflowsItemFolderWorkflowsCountMin = 0;
|
|
53
53
|
export declare const listProxyApplicantsResponseWorkflowsItemFolderRoutesCountMin = 0;
|
|
54
54
|
export declare const listProxyApplicantsResponseWorkflowsItemFolderPipelinesCountMin = 0;
|
|
@@ -370,36 +370,36 @@ export declare const createProxyApplicantBody: zod.ZodObject<{
|
|
|
370
370
|
endsOn: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
371
371
|
workflowIds: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
372
372
|
}, zod.core.$strip>;
|
|
373
|
-
export declare const createProxyApplicantResponseUserEmailMax =
|
|
374
|
-
export declare const createProxyApplicantResponseUserCodeMax =
|
|
373
|
+
export declare const createProxyApplicantResponseUserEmailMax = 254;
|
|
374
|
+
export declare const createProxyApplicantResponseUserCodeMax = 100;
|
|
375
375
|
export declare const createProxyApplicantResponseUserFirstNameMax = 255;
|
|
376
376
|
export declare const createProxyApplicantResponseUserLastNameMax = 255;
|
|
377
377
|
export declare const createProxyApplicantResponseUserFullNameMax = 255;
|
|
378
|
-
export declare const createProxyApplicantResponseUserEmployeeIdMax =
|
|
379
|
-
export declare const createProxyApplicantResponseProxyUserEmailMax =
|
|
380
|
-
export declare const createProxyApplicantResponseProxyUserCodeMax =
|
|
378
|
+
export declare const createProxyApplicantResponseUserEmployeeIdMax = 30;
|
|
379
|
+
export declare const createProxyApplicantResponseProxyUserEmailMax = 254;
|
|
380
|
+
export declare const createProxyApplicantResponseProxyUserCodeMax = 100;
|
|
381
381
|
export declare const createProxyApplicantResponseProxyUserFirstNameMax = 255;
|
|
382
382
|
export declare const createProxyApplicantResponseProxyUserLastNameMax = 255;
|
|
383
383
|
export declare const createProxyApplicantResponseProxyUserFullNameMax = 255;
|
|
384
|
-
export declare const createProxyApplicantResponseProxyUserEmployeeIdMax =
|
|
384
|
+
export declare const createProxyApplicantResponseProxyUserEmployeeIdMax = 30;
|
|
385
385
|
export declare const createProxyApplicantResponseWorkflowsItemCodeRegExp: RegExp;
|
|
386
386
|
export declare const createProxyApplicantResponseWorkflowsItemPublicTicketDefault = false;
|
|
387
387
|
export declare const createProxyApplicantResponseWorkflowsItemVisibleToTeamMembersDefault = false;
|
|
388
388
|
export declare const createProxyApplicantResponseWorkflowsItemAllowEditingOfViewersDefault = true;
|
|
389
|
-
export declare const createProxyApplicantResponseWorkflowsItemAuthorEmailMax =
|
|
390
|
-
export declare const createProxyApplicantResponseWorkflowsItemAuthorCodeMax =
|
|
389
|
+
export declare const createProxyApplicantResponseWorkflowsItemAuthorEmailMax = 254;
|
|
390
|
+
export declare const createProxyApplicantResponseWorkflowsItemAuthorCodeMax = 100;
|
|
391
391
|
export declare const createProxyApplicantResponseWorkflowsItemAuthorFirstNameMax = 255;
|
|
392
392
|
export declare const createProxyApplicantResponseWorkflowsItemAuthorLastNameMax = 255;
|
|
393
393
|
export declare const createProxyApplicantResponseWorkflowsItemAuthorFullNameMax = 255;
|
|
394
|
-
export declare const createProxyApplicantResponseWorkflowsItemAuthorEmployeeIdMax =
|
|
395
|
-
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorEmailMax =
|
|
396
|
-
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorCodeMax =
|
|
394
|
+
export declare const createProxyApplicantResponseWorkflowsItemAuthorEmployeeIdMax = 30;
|
|
395
|
+
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorEmailMax = 254;
|
|
396
|
+
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorCodeMax = 100;
|
|
397
397
|
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorFirstNameMax = 255;
|
|
398
398
|
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorLastNameMax = 255;
|
|
399
399
|
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorFullNameMax = 255;
|
|
400
|
-
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorEmployeeIdMax =
|
|
401
|
-
export declare const createProxyApplicantResponseWorkflowsItemFolderNameMax =
|
|
402
|
-
export declare const createProxyApplicantResponseWorkflowsItemFolderCodeMax =
|
|
400
|
+
export declare const createProxyApplicantResponseWorkflowsItemVersionAuthorEmployeeIdMax = 30;
|
|
401
|
+
export declare const createProxyApplicantResponseWorkflowsItemFolderNameMax = 300;
|
|
402
|
+
export declare const createProxyApplicantResponseWorkflowsItemFolderCodeMax = 100;
|
|
403
403
|
export declare const createProxyApplicantResponseWorkflowsItemFolderWorkflowsCountMin = 0;
|
|
404
404
|
export declare const createProxyApplicantResponseWorkflowsItemFolderRoutesCountMin = 0;
|
|
405
405
|
export declare const createProxyApplicantResponseWorkflowsItemFolderPipelinesCountMin = 0;
|
|
@@ -19,36 +19,36 @@ export const listProxyApplicantsQueryParams = zod.object({
|
|
|
19
19
|
"page": zod.number().min(1).default(listProxyApplicantsQueryPageDefault).describe('ページ'),
|
|
20
20
|
"perPage": zod.number().min(1).max(listProxyApplicantsQueryPerPageMax).default(listProxyApplicantsQueryPerPageDefault).describe('1ページあたりの件数')
|
|
21
21
|
});
|
|
22
|
-
export const listProxyApplicantsResponseUserEmailMax =
|
|
23
|
-
export const listProxyApplicantsResponseUserCodeMax =
|
|
22
|
+
export const listProxyApplicantsResponseUserEmailMax = 254;
|
|
23
|
+
export const listProxyApplicantsResponseUserCodeMax = 100;
|
|
24
24
|
export const listProxyApplicantsResponseUserFirstNameMax = 255;
|
|
25
25
|
export const listProxyApplicantsResponseUserLastNameMax = 255;
|
|
26
26
|
export const listProxyApplicantsResponseUserFullNameMax = 255;
|
|
27
|
-
export const listProxyApplicantsResponseUserEmployeeIdMax =
|
|
28
|
-
export const listProxyApplicantsResponseProxyUserEmailMax =
|
|
29
|
-
export const listProxyApplicantsResponseProxyUserCodeMax =
|
|
27
|
+
export const listProxyApplicantsResponseUserEmployeeIdMax = 30;
|
|
28
|
+
export const listProxyApplicantsResponseProxyUserEmailMax = 254;
|
|
29
|
+
export const listProxyApplicantsResponseProxyUserCodeMax = 100;
|
|
30
30
|
export const listProxyApplicantsResponseProxyUserFirstNameMax = 255;
|
|
31
31
|
export const listProxyApplicantsResponseProxyUserLastNameMax = 255;
|
|
32
32
|
export const listProxyApplicantsResponseProxyUserFullNameMax = 255;
|
|
33
|
-
export const listProxyApplicantsResponseProxyUserEmployeeIdMax =
|
|
33
|
+
export const listProxyApplicantsResponseProxyUserEmployeeIdMax = 30;
|
|
34
34
|
export const listProxyApplicantsResponseWorkflowsItemCodeRegExp = new RegExp('^[a-zA-Z0-9_-]+$');
|
|
35
35
|
export const listProxyApplicantsResponseWorkflowsItemPublicTicketDefault = false;
|
|
36
36
|
export const listProxyApplicantsResponseWorkflowsItemVisibleToTeamMembersDefault = false;
|
|
37
37
|
export const listProxyApplicantsResponseWorkflowsItemAllowEditingOfViewersDefault = true;
|
|
38
|
-
export const listProxyApplicantsResponseWorkflowsItemAuthorEmailMax =
|
|
39
|
-
export const listProxyApplicantsResponseWorkflowsItemAuthorCodeMax =
|
|
38
|
+
export const listProxyApplicantsResponseWorkflowsItemAuthorEmailMax = 254;
|
|
39
|
+
export const listProxyApplicantsResponseWorkflowsItemAuthorCodeMax = 100;
|
|
40
40
|
export const listProxyApplicantsResponseWorkflowsItemAuthorFirstNameMax = 255;
|
|
41
41
|
export const listProxyApplicantsResponseWorkflowsItemAuthorLastNameMax = 255;
|
|
42
42
|
export const listProxyApplicantsResponseWorkflowsItemAuthorFullNameMax = 255;
|
|
43
|
-
export const listProxyApplicantsResponseWorkflowsItemAuthorEmployeeIdMax =
|
|
44
|
-
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmailMax =
|
|
45
|
-
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorCodeMax =
|
|
43
|
+
export const listProxyApplicantsResponseWorkflowsItemAuthorEmployeeIdMax = 30;
|
|
44
|
+
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmailMax = 254;
|
|
45
|
+
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorCodeMax = 100;
|
|
46
46
|
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorFirstNameMax = 255;
|
|
47
47
|
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorLastNameMax = 255;
|
|
48
48
|
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorFullNameMax = 255;
|
|
49
|
-
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmployeeIdMax =
|
|
50
|
-
export const listProxyApplicantsResponseWorkflowsItemFolderNameMax =
|
|
51
|
-
export const listProxyApplicantsResponseWorkflowsItemFolderCodeMax =
|
|
49
|
+
export const listProxyApplicantsResponseWorkflowsItemVersionAuthorEmployeeIdMax = 30;
|
|
50
|
+
export const listProxyApplicantsResponseWorkflowsItemFolderNameMax = 300;
|
|
51
|
+
export const listProxyApplicantsResponseWorkflowsItemFolderCodeMax = 100;
|
|
52
52
|
export const listProxyApplicantsResponseWorkflowsItemFolderWorkflowsCountMin = 0;
|
|
53
53
|
export const listProxyApplicantsResponseWorkflowsItemFolderRoutesCountMin = 0;
|
|
54
54
|
export const listProxyApplicantsResponseWorkflowsItemFolderPipelinesCountMin = 0;
|
|
@@ -187,36 +187,36 @@ export const createProxyApplicantBody = zod.object({
|
|
|
187
187
|
"endsOn": zod.string().date().nullish().describe('終了日。nullの場合、無期限のものとして扱います。'),
|
|
188
188
|
"workflowIds": zod.array(zod.string().uuid()).optional().describe('対象ワークフローのID')
|
|
189
189
|
});
|
|
190
|
-
export const createProxyApplicantResponseUserEmailMax =
|
|
191
|
-
export const createProxyApplicantResponseUserCodeMax =
|
|
190
|
+
export const createProxyApplicantResponseUserEmailMax = 254;
|
|
191
|
+
export const createProxyApplicantResponseUserCodeMax = 100;
|
|
192
192
|
export const createProxyApplicantResponseUserFirstNameMax = 255;
|
|
193
193
|
export const createProxyApplicantResponseUserLastNameMax = 255;
|
|
194
194
|
export const createProxyApplicantResponseUserFullNameMax = 255;
|
|
195
|
-
export const createProxyApplicantResponseUserEmployeeIdMax =
|
|
196
|
-
export const createProxyApplicantResponseProxyUserEmailMax =
|
|
197
|
-
export const createProxyApplicantResponseProxyUserCodeMax =
|
|
195
|
+
export const createProxyApplicantResponseUserEmployeeIdMax = 30;
|
|
196
|
+
export const createProxyApplicantResponseProxyUserEmailMax = 254;
|
|
197
|
+
export const createProxyApplicantResponseProxyUserCodeMax = 100;
|
|
198
198
|
export const createProxyApplicantResponseProxyUserFirstNameMax = 255;
|
|
199
199
|
export const createProxyApplicantResponseProxyUserLastNameMax = 255;
|
|
200
200
|
export const createProxyApplicantResponseProxyUserFullNameMax = 255;
|
|
201
|
-
export const createProxyApplicantResponseProxyUserEmployeeIdMax =
|
|
201
|
+
export const createProxyApplicantResponseProxyUserEmployeeIdMax = 30;
|
|
202
202
|
export const createProxyApplicantResponseWorkflowsItemCodeRegExp = new RegExp('^[a-zA-Z0-9_-]+$');
|
|
203
203
|
export const createProxyApplicantResponseWorkflowsItemPublicTicketDefault = false;
|
|
204
204
|
export const createProxyApplicantResponseWorkflowsItemVisibleToTeamMembersDefault = false;
|
|
205
205
|
export const createProxyApplicantResponseWorkflowsItemAllowEditingOfViewersDefault = true;
|
|
206
|
-
export const createProxyApplicantResponseWorkflowsItemAuthorEmailMax =
|
|
207
|
-
export const createProxyApplicantResponseWorkflowsItemAuthorCodeMax =
|
|
206
|
+
export const createProxyApplicantResponseWorkflowsItemAuthorEmailMax = 254;
|
|
207
|
+
export const createProxyApplicantResponseWorkflowsItemAuthorCodeMax = 100;
|
|
208
208
|
export const createProxyApplicantResponseWorkflowsItemAuthorFirstNameMax = 255;
|
|
209
209
|
export const createProxyApplicantResponseWorkflowsItemAuthorLastNameMax = 255;
|
|
210
210
|
export const createProxyApplicantResponseWorkflowsItemAuthorFullNameMax = 255;
|
|
211
|
-
export const createProxyApplicantResponseWorkflowsItemAuthorEmployeeIdMax =
|
|
212
|
-
export const createProxyApplicantResponseWorkflowsItemVersionAuthorEmailMax =
|
|
213
|
-
export const createProxyApplicantResponseWorkflowsItemVersionAuthorCodeMax =
|
|
211
|
+
export const createProxyApplicantResponseWorkflowsItemAuthorEmployeeIdMax = 30;
|
|
212
|
+
export const createProxyApplicantResponseWorkflowsItemVersionAuthorEmailMax = 254;
|
|
213
|
+
export const createProxyApplicantResponseWorkflowsItemVersionAuthorCodeMax = 100;
|
|
214
214
|
export const createProxyApplicantResponseWorkflowsItemVersionAuthorFirstNameMax = 255;
|
|
215
215
|
export const createProxyApplicantResponseWorkflowsItemVersionAuthorLastNameMax = 255;
|
|
216
216
|
export const createProxyApplicantResponseWorkflowsItemVersionAuthorFullNameMax = 255;
|
|
217
|
-
export const createProxyApplicantResponseWorkflowsItemVersionAuthorEmployeeIdMax =
|
|
218
|
-
export const createProxyApplicantResponseWorkflowsItemFolderNameMax =
|
|
219
|
-
export const createProxyApplicantResponseWorkflowsItemFolderCodeMax =
|
|
217
|
+
export const createProxyApplicantResponseWorkflowsItemVersionAuthorEmployeeIdMax = 30;
|
|
218
|
+
export const createProxyApplicantResponseWorkflowsItemFolderNameMax = 300;
|
|
219
|
+
export const createProxyApplicantResponseWorkflowsItemFolderCodeMax = 100;
|
|
220
220
|
export const createProxyApplicantResponseWorkflowsItemFolderWorkflowsCountMin = 0;
|
|
221
221
|
export const createProxyApplicantResponseWorkflowsItemFolderRoutesCountMin = 0;
|
|
222
222
|
export const createProxyApplicantResponseWorkflowsItemFolderPipelinesCountMin = 0;
|