@edicarlos.lds/businessmap-mcp 2.2.1 → 2.3.0
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 +1 -1
- package/dist/client/businessmap-client.d.ts +19 -3
- package/dist/client/businessmap-client.d.ts.map +1 -1
- package/dist/client/businessmap-client.js +43 -4
- package/dist/client/businessmap-client.js.map +1 -1
- package/dist/client/modules/board-client.d.ts +7 -3
- package/dist/client/modules/board-client.d.ts.map +1 -1
- package/dist/client/modules/board-client.js +12 -4
- package/dist/client/modules/board-client.js.map +1 -1
- package/dist/client/modules/card-client.d.ts +39 -1
- package/dist/client/modules/card-client.d.ts.map +1 -1
- package/dist/client/modules/card-client.js +72 -0
- package/dist/client/modules/card-client.js.map +1 -1
- package/dist/client/modules/workflow-client.d.ts +25 -1
- package/dist/client/modules/workflow-client.d.ts.map +1 -1
- package/dist/client/modules/workflow-client.js +44 -0
- package/dist/client/modules/workflow-client.js.map +1 -1
- package/dist/schemas/board-schemas.d.ts +54 -7
- package/dist/schemas/board-schemas.d.ts.map +1 -1
- package/dist/schemas/board-schemas.js +35 -13
- package/dist/schemas/board-schemas.js.map +1 -1
- package/dist/schemas/card-schemas.d.ts +147 -12
- package/dist/schemas/card-schemas.d.ts.map +1 -1
- package/dist/schemas/card-schemas.js +106 -23
- package/dist/schemas/card-schemas.js.map +1 -1
- package/dist/schemas/custom-field-schemas.js +1 -1
- package/dist/schemas/custom-field-schemas.js.map +1 -1
- package/dist/schemas/index.d.ts +1 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +1 -0
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/setup-schemas.d.ts +477 -0
- package/dist/schemas/setup-schemas.d.ts.map +1 -0
- package/dist/schemas/setup-schemas.js +90 -0
- package/dist/schemas/setup-schemas.js.map +1 -0
- package/dist/schemas/user-schemas.js +4 -4
- package/dist/schemas/user-schemas.js.map +1 -1
- package/dist/schemas/utility-schemas.js +2 -2
- package/dist/schemas/utility-schemas.js.map +1 -1
- package/dist/schemas/workflow-schemas.d.ts +84 -0
- package/dist/schemas/workflow-schemas.d.ts.map +1 -1
- package/dist/schemas/workflow-schemas.js +44 -2
- package/dist/schemas/workflow-schemas.js.map +1 -1
- package/dist/schemas/workspace-schemas.d.ts +10 -0
- package/dist/schemas/workspace-schemas.d.ts.map +1 -1
- package/dist/schemas/workspace-schemas.js +8 -3
- package/dist/schemas/workspace-schemas.js.map +1 -1
- package/dist/server/http.d.ts.map +1 -1
- package/dist/server/http.js +6 -2
- package/dist/server/http.js.map +1 -1
- package/dist/server/mcp-server.d.ts.map +1 -1
- package/dist/server/mcp-server.js +2 -1
- package/dist/server/mcp-server.js.map +1 -1
- package/dist/server/resources/board-resources.d.ts.map +1 -1
- package/dist/server/resources/board-resources.js +3 -3
- package/dist/server/resources/board-resources.js.map +1 -1
- package/dist/server/resources/card-resources.d.ts.map +1 -1
- package/dist/server/resources/card-resources.js +6 -6
- package/dist/server/resources/card-resources.js.map +1 -1
- package/dist/server/resources/workspace-resources.d.ts.map +1 -1
- package/dist/server/resources/workspace-resources.js.map +1 -1
- package/dist/server/tools/board-tools.d.ts +2 -0
- package/dist/server/tools/board-tools.d.ts.map +1 -1
- package/dist/server/tools/board-tools.js +52 -8
- package/dist/server/tools/board-tools.js.map +1 -1
- package/dist/server/tools/card-tools.d.ts +6 -0
- package/dist/server/tools/card-tools.d.ts.map +1 -1
- package/dist/server/tools/card-tools.js +112 -2
- package/dist/server/tools/card-tools.js.map +1 -1
- package/dist/server/tools/index.d.ts +1 -0
- package/dist/server/tools/index.d.ts.map +1 -1
- package/dist/server/tools/index.js +1 -0
- package/dist/server/tools/index.js.map +1 -1
- package/dist/server/tools/setup-tools.d.ts +10 -0
- package/dist/server/tools/setup-tools.d.ts.map +1 -0
- package/dist/server/tools/setup-tools.js +175 -0
- package/dist/server/tools/setup-tools.js.map +1 -0
- package/dist/server/tools/utility-tools.d.ts +1 -1
- package/dist/server/tools/utility-tools.d.ts.map +1 -1
- package/dist/server/tools/utility-tools.js +1 -1
- package/dist/server/tools/utility-tools.js.map +1 -1
- package/dist/server/tools/workflow-tools.d.ts +6 -0
- package/dist/server/tools/workflow-tools.d.ts.map +1 -1
- package/dist/server/tools/workflow-tools.js +117 -2
- package/dist/server/tools/workflow-tools.js.map +1 -1
- package/dist/server/tools/workspace-tools.d.ts +1 -0
- package/dist/server/tools/workspace-tools.d.ts.map +1 -1
- package/dist/server/tools/workspace-tools.js +18 -1
- package/dist/server/tools/workspace-tools.js.map +1 -1
- package/dist/types/card.d.ts +20 -0
- package/dist/types/card.d.ts.map +1 -1
- package/dist/types/lane.d.ts +9 -1
- package/dist/types/lane.d.ts.map +1 -1
- package/dist/types/workflow.d.ts +24 -0
- package/dist/types/workflow.d.ts.map +1 -1
- package/docs/TOOLS.md +38 -14
- package/package.json +12 -2
|
@@ -11,17 +11,17 @@ export declare const listBoardsSchema: z.ZodObject<{
|
|
|
11
11
|
workspace_id?: number | undefined;
|
|
12
12
|
is_archived?: number | undefined;
|
|
13
13
|
board_ids?: number[] | undefined;
|
|
14
|
-
workspace_ids?: number[] | undefined;
|
|
15
|
-
expand?: ("workflows" | "settings" | "structure")[] | undefined;
|
|
16
14
|
fields?: ("board_id" | "workspace_id" | "is_archived" | "name" | "description" | "revision")[] | undefined;
|
|
15
|
+
expand?: ("workflows" | "settings" | "structure")[] | undefined;
|
|
16
|
+
workspace_ids?: number[] | undefined;
|
|
17
17
|
if_assigned?: number | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
workspace_id?: number | undefined;
|
|
20
20
|
is_archived?: number | undefined;
|
|
21
21
|
board_ids?: number[] | undefined;
|
|
22
|
-
workspace_ids?: number[] | undefined;
|
|
23
|
-
expand?: ("workflows" | "settings" | "structure")[] | undefined;
|
|
24
22
|
fields?: ("board_id" | "workspace_id" | "is_archived" | "name" | "description" | "revision")[] | undefined;
|
|
23
|
+
expand?: ("workflows" | "settings" | "structure")[] | undefined;
|
|
24
|
+
workspace_ids?: number[] | undefined;
|
|
25
25
|
if_assigned?: number | undefined;
|
|
26
26
|
}>;
|
|
27
27
|
export declare const searchBoardSchema: z.ZodObject<{
|
|
@@ -59,10 +59,13 @@ export declare const getLanesSchema: z.ZodObject<{
|
|
|
59
59
|
board_id: number;
|
|
60
60
|
}>;
|
|
61
61
|
export declare const getLaneSchema: z.ZodObject<{
|
|
62
|
+
board_id: z.ZodNumber;
|
|
62
63
|
lane_id: z.ZodNumber;
|
|
63
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
+
board_id: number;
|
|
64
66
|
lane_id: number;
|
|
65
67
|
}, {
|
|
68
|
+
board_id: number;
|
|
66
69
|
lane_id: number;
|
|
67
70
|
}>;
|
|
68
71
|
export declare const createBoardSchema: z.ZodObject<{
|
|
@@ -82,22 +85,66 @@ export declare const createBoardSchema: z.ZodObject<{
|
|
|
82
85
|
project_id?: number | undefined;
|
|
83
86
|
}>;
|
|
84
87
|
export declare const createLaneSchema: z.ZodObject<{
|
|
88
|
+
board_id: z.ZodNumber;
|
|
85
89
|
name: z.ZodString;
|
|
86
90
|
description: z.ZodOptional<z.ZodString>;
|
|
87
91
|
workflow_id: z.ZodNumber;
|
|
88
92
|
position: z.ZodNumber;
|
|
89
|
-
color: z.ZodString
|
|
93
|
+
color: z.ZodOptional<z.ZodString>;
|
|
94
|
+
parent_lane_id: z.ZodOptional<z.ZodNumber>;
|
|
90
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
board_id: number;
|
|
91
97
|
name: string;
|
|
92
98
|
position: number;
|
|
93
99
|
workflow_id: number;
|
|
94
|
-
color: string;
|
|
95
100
|
description?: string | undefined;
|
|
101
|
+
color?: string | undefined;
|
|
102
|
+
parent_lane_id?: number | undefined;
|
|
96
103
|
}, {
|
|
104
|
+
board_id: number;
|
|
97
105
|
name: string;
|
|
98
106
|
position: number;
|
|
99
107
|
workflow_id: number;
|
|
100
|
-
|
|
108
|
+
description?: string | undefined;
|
|
109
|
+
color?: string | undefined;
|
|
110
|
+
parent_lane_id?: number | undefined;
|
|
111
|
+
}>;
|
|
112
|
+
export declare const updateLaneSchema: z.ZodObject<{
|
|
113
|
+
board_id: z.ZodNumber;
|
|
114
|
+
lane_id: z.ZodNumber;
|
|
115
|
+
name: z.ZodOptional<z.ZodString>;
|
|
116
|
+
description: z.ZodOptional<z.ZodString>;
|
|
117
|
+
color: z.ZodOptional<z.ZodString>;
|
|
118
|
+
position: z.ZodOptional<z.ZodNumber>;
|
|
119
|
+
parent_lane_id: z.ZodOptional<z.ZodNumber>;
|
|
120
|
+
}, "strip", z.ZodTypeAny, {
|
|
121
|
+
board_id: number;
|
|
122
|
+
lane_id: number;
|
|
123
|
+
name?: string | undefined;
|
|
124
|
+
description?: string | undefined;
|
|
125
|
+
position?: number | undefined;
|
|
126
|
+
color?: string | undefined;
|
|
127
|
+
parent_lane_id?: number | undefined;
|
|
128
|
+
}, {
|
|
129
|
+
board_id: number;
|
|
130
|
+
lane_id: number;
|
|
131
|
+
name?: string | undefined;
|
|
132
|
+
description?: string | undefined;
|
|
133
|
+
position?: number | undefined;
|
|
134
|
+
color?: string | undefined;
|
|
135
|
+
parent_lane_id?: number | undefined;
|
|
136
|
+
}>;
|
|
137
|
+
export declare const updateBoardSchema: z.ZodObject<{
|
|
138
|
+
board_id: z.ZodNumber;
|
|
139
|
+
name: z.ZodOptional<z.ZodString>;
|
|
140
|
+
description: z.ZodOptional<z.ZodString>;
|
|
141
|
+
}, "strip", z.ZodTypeAny, {
|
|
142
|
+
board_id: number;
|
|
143
|
+
name?: string | undefined;
|
|
144
|
+
description?: string | undefined;
|
|
145
|
+
}, {
|
|
146
|
+
board_id: number;
|
|
147
|
+
name?: string | undefined;
|
|
101
148
|
description?: string | undefined;
|
|
102
149
|
}>;
|
|
103
150
|
export declare const getCurrentBoardStructureSchema: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"board-schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/board-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAG3B,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EA8C3B,CAAC;AAGH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAC;AAGH,eAAO,MAAM,cAAc;;;;;;EAEzB,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;EAE3B,CAAC;AAGH,eAAO,MAAM,cAAc;;;;;;EAEzB,CAAC;AAGH,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"board-schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/board-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAG3B,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EA8C3B,CAAC;AAGH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAC;AAGH,eAAO,MAAM,cAAc;;;;;;EAEzB,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;EAE3B,CAAC;AAGH,eAAO,MAAM,cAAc;;;;;;EAEzB,CAAC;AAGH,eAAO,MAAM,aAAa;;;;;;;;;EAGxB,CAAC;AAGH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;EAK5B,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EAW3B,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC;AAGH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAC;AAGH,eAAO,MAAM,8BAA8B;;;;;;EAEzC,CAAC;AAGH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BlC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsB7B,CAAC;AAGH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;EAa7B,CAAC;AAGH,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod/v3';
|
|
2
|
-
//
|
|
2
|
+
// Board listing schema
|
|
3
3
|
export const listBoardsSchema = z.object({
|
|
4
4
|
// ID filters (arrays)
|
|
5
5
|
board_ids: z
|
|
@@ -36,48 +36,70 @@ export const listBoardsSchema = z.object({
|
|
|
36
36
|
.optional()
|
|
37
37
|
.describe('Optional workspace ID to filter boards (legacy parameter)'),
|
|
38
38
|
});
|
|
39
|
-
//
|
|
39
|
+
// Board search schema
|
|
40
40
|
export const searchBoardSchema = z.object({
|
|
41
41
|
board_id: z.number().optional().describe('The ID of the board to search for'),
|
|
42
42
|
board_name: z.string().optional().describe('The name of the board to search for'),
|
|
43
43
|
workspace_id: z.number().optional().describe('Optional workspace ID to limit search scope'),
|
|
44
44
|
});
|
|
45
|
-
// Schema
|
|
45
|
+
// Schema for getting details of a specific board
|
|
46
46
|
export const getBoardSchema = z.object({
|
|
47
47
|
board_id: z.number().describe('The ID of the board'),
|
|
48
48
|
});
|
|
49
|
-
// Schema
|
|
49
|
+
// Schema for getting a board's columns
|
|
50
50
|
export const getColumnsSchema = z.object({
|
|
51
51
|
board_id: z.number().describe('The ID of the board'),
|
|
52
52
|
});
|
|
53
|
-
// Schema
|
|
53
|
+
// Schema for getting a board's lanes
|
|
54
54
|
export const getLanesSchema = z.object({
|
|
55
55
|
board_id: z.number().describe('The ID of the board'),
|
|
56
56
|
});
|
|
57
|
-
// Schema
|
|
57
|
+
// Schema for getting details of a specific lane
|
|
58
58
|
export const getLaneSchema = z.object({
|
|
59
|
+
board_id: z.number().describe('The ID of the board the lane belongs to'),
|
|
59
60
|
lane_id: z.number().describe('The ID of the lane'),
|
|
60
61
|
});
|
|
61
|
-
//
|
|
62
|
+
// Board creation schema
|
|
62
63
|
export const createBoardSchema = z.object({
|
|
63
64
|
name: z.string().describe('The name of the board'),
|
|
64
65
|
description: z.string().optional().describe('Optional description for the board'),
|
|
65
66
|
project_id: z.number().optional().describe('Optional project ID for the board'),
|
|
66
67
|
workspace_id: z.number().optional().describe('The ID of the workspace'),
|
|
67
68
|
});
|
|
68
|
-
//
|
|
69
|
+
// Lane creation schema
|
|
69
70
|
export const createLaneSchema = z.object({
|
|
71
|
+
board_id: z.number().describe('The ID of the board'),
|
|
70
72
|
name: z.string().describe('The name of the lane'),
|
|
71
73
|
description: z.string().optional().describe('Optional description for the lane'),
|
|
72
74
|
workflow_id: z.number().describe('The workflow ID'),
|
|
73
75
|
position: z.number().describe('The position of the lane'),
|
|
74
|
-
color: z.string().describe('The color for the lane'),
|
|
76
|
+
color: z.string().optional().describe('The color for the lane (hex without #, e.g. F0F0F0)'),
|
|
77
|
+
parent_lane_id: z
|
|
78
|
+
.number()
|
|
79
|
+
.optional()
|
|
80
|
+
.describe('The ID of the parent lane (to create a sub-lane)'),
|
|
81
|
+
});
|
|
82
|
+
// Lane update schema
|
|
83
|
+
export const updateLaneSchema = z.object({
|
|
84
|
+
board_id: z.number().describe('The ID of the board'),
|
|
85
|
+
lane_id: z.number().describe('The ID of the lane to update'),
|
|
86
|
+
name: z.string().optional().describe('The new name of the lane'),
|
|
87
|
+
description: z.string().optional().describe('The new description for the lane'),
|
|
88
|
+
color: z.string().optional().describe('The new color for the lane (hex without #)'),
|
|
89
|
+
position: z.number().optional().describe('The new position of the lane'),
|
|
90
|
+
parent_lane_id: z.number().optional().describe('The new parent lane ID (to nest the lane)'),
|
|
91
|
+
});
|
|
92
|
+
// Board update schema
|
|
93
|
+
export const updateBoardSchema = z.object({
|
|
94
|
+
board_id: z.number().describe('The ID of the board to update'),
|
|
95
|
+
name: z.string().optional().describe('The new name of the board'),
|
|
96
|
+
description: z.string().optional().describe('The new description for the board'),
|
|
75
97
|
});
|
|
76
|
-
// Schema
|
|
98
|
+
// Schema for getting the current board structure
|
|
77
99
|
export const getCurrentBoardStructureSchema = z.object({
|
|
78
100
|
board_id: z.number().describe('The ID of the board'),
|
|
79
101
|
});
|
|
80
|
-
//
|
|
102
|
+
// Column creation schema
|
|
81
103
|
export const createColumnInputSchema = z.object({
|
|
82
104
|
board_id: z.number().describe('The ID of the board'),
|
|
83
105
|
// Main column fields
|
|
@@ -121,7 +143,7 @@ export const createColumnSchema = createColumnInputSchema.superRefine((data, ctx
|
|
|
121
143
|
});
|
|
122
144
|
}
|
|
123
145
|
});
|
|
124
|
-
//
|
|
146
|
+
// Column update schema
|
|
125
147
|
export const updateColumnSchema = z.object({
|
|
126
148
|
board_id: z.number().describe('The ID of the board'),
|
|
127
149
|
column_id: z.number().describe('The ID of the column to update'),
|
|
@@ -136,7 +158,7 @@ export const updateColumnSchema = z.object({
|
|
|
136
158
|
position: z.number().optional().describe('The new position of the column within its section'),
|
|
137
159
|
description: z.string().optional().describe('The new description for the column'),
|
|
138
160
|
});
|
|
139
|
-
//
|
|
161
|
+
// Column deletion schema
|
|
140
162
|
export const deleteColumnSchema = z.object({
|
|
141
163
|
board_id: z.number().describe('The ID of the board'),
|
|
142
164
|
column_id: z.number().describe('The ID of the column to delete'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"board-schemas.js","sourceRoot":"","sources":["../../src/schemas/board-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,
|
|
1
|
+
{"version":3,"file":"board-schemas.js","sourceRoot":"","sources":["../../src/schemas/board-schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -67,7 +67,7 @@ export declare const listCardsSchema: z.ZodObject<{
|
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
68
|
board_id: number;
|
|
69
69
|
assignee_user_id?: number | undefined;
|
|
70
|
-
|
|
70
|
+
tag_ids?: number[] | undefined;
|
|
71
71
|
archived_from?: string | undefined;
|
|
72
72
|
archived_from_date?: string | undefined;
|
|
73
73
|
archived_to?: string | undefined;
|
|
@@ -108,7 +108,10 @@ export declare const listCardsSchema: z.ZodObject<{
|
|
|
108
108
|
last_start_from_date?: string | undefined;
|
|
109
109
|
last_start_to?: string | undefined;
|
|
110
110
|
last_start_to_date?: string | undefined;
|
|
111
|
+
board_ids?: number[] | undefined;
|
|
111
112
|
card_ids?: number[] | undefined;
|
|
113
|
+
column_ids?: number[] | undefined;
|
|
114
|
+
lane_ids?: number[] | undefined;
|
|
112
115
|
last_column_ids?: number[] | undefined;
|
|
113
116
|
last_lane_ids?: number[] | undefined;
|
|
114
117
|
owner_user_ids?: number[] | undefined;
|
|
@@ -118,21 +121,18 @@ export declare const listCardsSchema: z.ZodObject<{
|
|
|
118
121
|
sizes?: number[] | undefined;
|
|
119
122
|
type_ids?: number[] | undefined;
|
|
120
123
|
version_ids?: number[] | undefined;
|
|
124
|
+
workflow_ids?: number[] | undefined;
|
|
121
125
|
colors?: string[] | undefined;
|
|
122
126
|
custom_ids?: string[] | undefined;
|
|
123
127
|
state?: "active" | "archived" | "discarded" | "all" | undefined;
|
|
124
128
|
include_logged_time_for_child_cards?: number | undefined;
|
|
125
129
|
include_logged_time_for_subtasks?: number | undefined;
|
|
126
|
-
tag_ids?: number[] | undefined;
|
|
127
130
|
page?: number | undefined;
|
|
128
131
|
per_page?: number | undefined;
|
|
129
|
-
column_ids?: number[] | undefined;
|
|
130
|
-
lane_ids?: number[] | undefined;
|
|
131
|
-
workflow_ids?: number[] | undefined;
|
|
132
132
|
}, {
|
|
133
133
|
board_id: number;
|
|
134
134
|
assignee_user_id?: number | undefined;
|
|
135
|
-
|
|
135
|
+
tag_ids?: number[] | undefined;
|
|
136
136
|
archived_from?: string | undefined;
|
|
137
137
|
archived_from_date?: string | undefined;
|
|
138
138
|
archived_to?: string | undefined;
|
|
@@ -173,7 +173,10 @@ export declare const listCardsSchema: z.ZodObject<{
|
|
|
173
173
|
last_start_from_date?: string | undefined;
|
|
174
174
|
last_start_to?: string | undefined;
|
|
175
175
|
last_start_to_date?: string | undefined;
|
|
176
|
+
board_ids?: number[] | undefined;
|
|
176
177
|
card_ids?: number[] | undefined;
|
|
178
|
+
column_ids?: number[] | undefined;
|
|
179
|
+
lane_ids?: number[] | undefined;
|
|
177
180
|
last_column_ids?: number[] | undefined;
|
|
178
181
|
last_lane_ids?: number[] | undefined;
|
|
179
182
|
owner_user_ids?: number[] | undefined;
|
|
@@ -183,17 +186,14 @@ export declare const listCardsSchema: z.ZodObject<{
|
|
|
183
186
|
sizes?: number[] | undefined;
|
|
184
187
|
type_ids?: number[] | undefined;
|
|
185
188
|
version_ids?: number[] | undefined;
|
|
189
|
+
workflow_ids?: number[] | undefined;
|
|
186
190
|
colors?: string[] | undefined;
|
|
187
191
|
custom_ids?: string[] | undefined;
|
|
188
192
|
state?: "active" | "archived" | "discarded" | "all" | undefined;
|
|
189
193
|
include_logged_time_for_child_cards?: number | undefined;
|
|
190
194
|
include_logged_time_for_subtasks?: number | undefined;
|
|
191
|
-
tag_ids?: number[] | undefined;
|
|
192
195
|
page?: number | undefined;
|
|
193
196
|
per_page?: number | undefined;
|
|
194
|
-
column_ids?: number[] | undefined;
|
|
195
|
-
lane_ids?: number[] | undefined;
|
|
196
|
-
workflow_ids?: number[] | undefined;
|
|
197
197
|
}>;
|
|
198
198
|
export declare const getCardSchema: z.ZodObject<{
|
|
199
199
|
card_id: z.ZodNumber;
|
|
@@ -316,6 +316,141 @@ export declare const createCardSubtaskSchema: z.ZodObject<{
|
|
|
316
316
|
file_name: string;
|
|
317
317
|
}[] | undefined;
|
|
318
318
|
}>;
|
|
319
|
+
export declare const updateCardSubtaskSchema: z.ZodObject<{
|
|
320
|
+
card_id: z.ZodNumber;
|
|
321
|
+
subtask_id: z.ZodNumber;
|
|
322
|
+
description: z.ZodOptional<z.ZodString>;
|
|
323
|
+
owner_user_id: z.ZodOptional<z.ZodNumber>;
|
|
324
|
+
is_finished: z.ZodOptional<z.ZodNumber>;
|
|
325
|
+
deadline: z.ZodOptional<z.ZodString>;
|
|
326
|
+
position: z.ZodOptional<z.ZodNumber>;
|
|
327
|
+
}, "strip", z.ZodTypeAny, {
|
|
328
|
+
card_id: number;
|
|
329
|
+
subtask_id: number;
|
|
330
|
+
description?: string | undefined;
|
|
331
|
+
owner_user_id?: number | undefined;
|
|
332
|
+
deadline?: string | undefined;
|
|
333
|
+
position?: number | undefined;
|
|
334
|
+
is_finished?: number | undefined;
|
|
335
|
+
}, {
|
|
336
|
+
card_id: number;
|
|
337
|
+
subtask_id: number;
|
|
338
|
+
description?: string | undefined;
|
|
339
|
+
owner_user_id?: number | undefined;
|
|
340
|
+
deadline?: string | undefined;
|
|
341
|
+
position?: number | undefined;
|
|
342
|
+
is_finished?: number | undefined;
|
|
343
|
+
}>;
|
|
344
|
+
export declare const deleteCardSubtaskSchema: z.ZodObject<{
|
|
345
|
+
card_id: z.ZodNumber;
|
|
346
|
+
subtask_id: z.ZodNumber;
|
|
347
|
+
}, "strip", z.ZodTypeAny, {
|
|
348
|
+
card_id: number;
|
|
349
|
+
subtask_id: number;
|
|
350
|
+
}, {
|
|
351
|
+
card_id: number;
|
|
352
|
+
subtask_id: number;
|
|
353
|
+
}>;
|
|
354
|
+
export declare const getCardLoggedTimeSchema: z.ZodObject<{
|
|
355
|
+
card_id: z.ZodNumber;
|
|
356
|
+
include_subtasks: z.ZodOptional<z.ZodBoolean>;
|
|
357
|
+
}, "strip", z.ZodTypeAny, {
|
|
358
|
+
card_id: number;
|
|
359
|
+
include_subtasks?: boolean | undefined;
|
|
360
|
+
}, {
|
|
361
|
+
card_id: number;
|
|
362
|
+
include_subtasks?: boolean | undefined;
|
|
363
|
+
}>;
|
|
364
|
+
export declare const getCardBlockedTimesSchema: z.ZodObject<{
|
|
365
|
+
card_id: z.ZodNumber;
|
|
366
|
+
}, "strip", z.ZodTypeAny, {
|
|
367
|
+
card_id: number;
|
|
368
|
+
}, {
|
|
369
|
+
card_id: number;
|
|
370
|
+
}>;
|
|
371
|
+
export declare const getCardFlowHistorySchema: z.ZodObject<{
|
|
372
|
+
card_id: z.ZodNumber;
|
|
373
|
+
}, "strip", z.ZodTypeAny, {
|
|
374
|
+
card_id: number;
|
|
375
|
+
}, {
|
|
376
|
+
card_id: number;
|
|
377
|
+
}>;
|
|
378
|
+
export declare const searchCardsSchema: z.ZodObject<{
|
|
379
|
+
board_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
380
|
+
workflow_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
381
|
+
column_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
382
|
+
lane_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
383
|
+
card_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
384
|
+
custom_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
385
|
+
owner_user_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
386
|
+
type_ids: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
387
|
+
priorities: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
388
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
389
|
+
colors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
390
|
+
sections: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
391
|
+
is_blocked: z.ZodOptional<z.ZodNumber>;
|
|
392
|
+
state: z.ZodOptional<z.ZodEnum<["active", "archived", "discarded"]>>;
|
|
393
|
+
created_from_date: z.ZodOptional<z.ZodString>;
|
|
394
|
+
created_to_date: z.ZodOptional<z.ZodString>;
|
|
395
|
+
deadline_from_date: z.ZodOptional<z.ZodString>;
|
|
396
|
+
deadline_to_date: z.ZodOptional<z.ZodString>;
|
|
397
|
+
last_modified_from_date: z.ZodOptional<z.ZodString>;
|
|
398
|
+
last_modified_to_date: z.ZodOptional<z.ZodString>;
|
|
399
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
400
|
+
expand: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
401
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
402
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
403
|
+
}, "strip", z.ZodTypeAny, {
|
|
404
|
+
created_from_date?: string | undefined;
|
|
405
|
+
created_to_date?: string | undefined;
|
|
406
|
+
deadline_from_date?: string | undefined;
|
|
407
|
+
deadline_to_date?: string | undefined;
|
|
408
|
+
last_modified_from_date?: string | undefined;
|
|
409
|
+
last_modified_to_date?: string | undefined;
|
|
410
|
+
board_ids?: number[] | undefined;
|
|
411
|
+
card_ids?: number[] | undefined;
|
|
412
|
+
column_ids?: number[] | undefined;
|
|
413
|
+
lane_ids?: number[] | undefined;
|
|
414
|
+
owner_user_ids?: number[] | undefined;
|
|
415
|
+
priorities?: number[] | undefined;
|
|
416
|
+
sections?: number[] | undefined;
|
|
417
|
+
sizes?: number[] | undefined;
|
|
418
|
+
type_ids?: number[] | undefined;
|
|
419
|
+
workflow_ids?: number[] | undefined;
|
|
420
|
+
colors?: string[] | undefined;
|
|
421
|
+
custom_ids?: string[] | undefined;
|
|
422
|
+
state?: "active" | "archived" | "discarded" | undefined;
|
|
423
|
+
page?: number | undefined;
|
|
424
|
+
per_page?: number | undefined;
|
|
425
|
+
fields?: string[] | undefined;
|
|
426
|
+
expand?: string[] | undefined;
|
|
427
|
+
is_blocked?: number | undefined;
|
|
428
|
+
}, {
|
|
429
|
+
created_from_date?: string | undefined;
|
|
430
|
+
created_to_date?: string | undefined;
|
|
431
|
+
deadline_from_date?: string | undefined;
|
|
432
|
+
deadline_to_date?: string | undefined;
|
|
433
|
+
last_modified_from_date?: string | undefined;
|
|
434
|
+
last_modified_to_date?: string | undefined;
|
|
435
|
+
board_ids?: number[] | undefined;
|
|
436
|
+
card_ids?: number[] | undefined;
|
|
437
|
+
column_ids?: number[] | undefined;
|
|
438
|
+
lane_ids?: number[] | undefined;
|
|
439
|
+
owner_user_ids?: number[] | undefined;
|
|
440
|
+
priorities?: number[] | undefined;
|
|
441
|
+
sections?: number[] | undefined;
|
|
442
|
+
sizes?: number[] | undefined;
|
|
443
|
+
type_ids?: number[] | undefined;
|
|
444
|
+
workflow_ids?: number[] | undefined;
|
|
445
|
+
colors?: string[] | undefined;
|
|
446
|
+
custom_ids?: string[] | undefined;
|
|
447
|
+
state?: "active" | "archived" | "discarded" | undefined;
|
|
448
|
+
page?: number | undefined;
|
|
449
|
+
per_page?: number | undefined;
|
|
450
|
+
fields?: string[] | undefined;
|
|
451
|
+
expand?: string[] | undefined;
|
|
452
|
+
is_blocked?: number | undefined;
|
|
453
|
+
}>;
|
|
319
454
|
export declare const blockReasonSchema: z.ZodObject<{
|
|
320
455
|
reason_id: z.ZodNumber;
|
|
321
456
|
comment: z.ZodString;
|
|
@@ -1224,6 +1359,7 @@ export declare const updateCardSchema: z.ZodObject<{
|
|
|
1224
1359
|
}, "strip", z.ZodTypeAny, {
|
|
1225
1360
|
card_id: number;
|
|
1226
1361
|
description?: string | undefined;
|
|
1362
|
+
assignee_user_id?: number | undefined;
|
|
1227
1363
|
id?: number | undefined;
|
|
1228
1364
|
title?: string | undefined;
|
|
1229
1365
|
column_id?: number | undefined;
|
|
@@ -1231,12 +1367,12 @@ export declare const updateCardSchema: z.ZodObject<{
|
|
|
1231
1367
|
size?: number | undefined;
|
|
1232
1368
|
priority?: string | undefined;
|
|
1233
1369
|
owner_user_id?: number | undefined;
|
|
1234
|
-
assignee_user_id?: number | undefined;
|
|
1235
1370
|
deadline?: string | undefined;
|
|
1236
1371
|
position?: number | undefined;
|
|
1237
1372
|
}, {
|
|
1238
1373
|
card_id: number;
|
|
1239
1374
|
description?: string | undefined;
|
|
1375
|
+
assignee_user_id?: number | undefined;
|
|
1240
1376
|
id?: number | undefined;
|
|
1241
1377
|
title?: string | undefined;
|
|
1242
1378
|
column_id?: number | undefined;
|
|
@@ -1244,7 +1380,6 @@ export declare const updateCardSchema: z.ZodObject<{
|
|
|
1244
1380
|
size?: number | undefined;
|
|
1245
1381
|
priority?: string | undefined;
|
|
1246
1382
|
owner_user_id?: number | undefined;
|
|
1247
|
-
assignee_user_id?: number | undefined;
|
|
1248
1383
|
deadline?: string | undefined;
|
|
1249
1384
|
position?: number | undefined;
|
|
1250
1385
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card-schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/card-schemas.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"card-schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/card-schemas.ts"],"names":[],"mappings":"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"}
|