intention-coding 0.1.0 → 0.2.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 +262 -0
- package/dist/config.d.ts +1 -0
- package/dist/db/file-storage.d.ts +255 -0
- package/dist/index.cjs +10825 -4643
- package/dist/index.js +10805 -4634
- package/dist/services/api-test/add-tasks-to-plan.d.ts +97 -0
- package/dist/services/api-test/api-test.d.ts +86 -0
- package/dist/services/api-test/batch-update-task-summaries.d.ts +61 -0
- package/dist/services/api-test/execute-test-plan.d.ts +21 -0
- package/dist/services/api-test/export-test-results.d.ts +21 -0
- package/dist/services/api-test/get-test-plans.d.ts +21 -0
- package/dist/services/api-test/index.d.ts +285 -0
- package/dist/services/api-test/test-plan.d.ts +119 -0
- package/dist/services/api-test/update-task.d.ts +147 -0
- package/dist/services/change-summarizer/index.d.ts +39 -0
- package/dist/services/claude-code/index.d.ts +200 -0
- package/dist/services/code-generator/database-manager.d.ts +65 -0
- package/dist/services/code-generator/enhanced-tools.d.ts +392 -0
- package/dist/services/code-generator/export-excel.d.ts +21 -0
- package/dist/services/code-generator/index.d.ts +102 -0
- package/dist/services/code-generator/task-queue.d.ts +114 -0
- package/dist/services/integrated-generator/index.d.ts +107 -0
- package/dist/services/openai-service.d.ts +29 -0
- package/dist/services/pdf2md/index.d.ts +74 -0
- package/dist/services/project-template/index.d.ts +51 -0
- package/dist/services/requirement-analyzer/auto-trigger.d.ts +1 -0
- package/dist/services/requirement-analyzer/index.d.ts +311 -0
- package/dist/services/velocity-template/index.d.ts +334 -0
- package/dist/services/world2md/index.d.ts +69 -0
- package/dist/utils/common.d.ts +1 -1
- package/package.json +12 -3
- package/dist/prompt/tech.d.ts +0 -1
- package/dist/schemas/intent-recognizer.d.ts +0 -33
- package/dist/schemas/types.d.ts +0 -34
- package/dist/schemas/word2md.d.ts +0 -34
- package/dist/tools/architecture-designer.d.ts +0 -12
- package/dist/tools/export-final-document.d.ts +0 -7
- package/dist/tools/index.d.ts +0 -6
- package/dist/tools/intent-recognizer.d.ts +0 -15
- package/dist/tools/requirement-clarifier.d.ts +0 -15
- package/dist/tools/requirement-manager.d.ts +0 -18
- package/dist/tools/utils.d.ts +0 -0
- package/dist/tools/view-requirements-status.d.ts +0 -7
- package/dist/tools/word2md.d.ts +0 -36
- package/dist/utils/mcp-server.d.ts +0 -28
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const AddTasksToPlanParams: z.ZodObject<{
|
|
3
|
+
uuid: z.ZodString;
|
|
4
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
5
|
+
url: z.ZodString;
|
|
6
|
+
method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
7
|
+
query: z.ZodOptional<z.ZodString>;
|
|
8
|
+
headers: z.ZodOptional<z.ZodString>;
|
|
9
|
+
body: z.ZodOptional<z.ZodString>;
|
|
10
|
+
hopeRes: z.ZodOptional<z.ZodString>;
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
|
+
url: string;
|
|
13
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
14
|
+
query?: string | undefined;
|
|
15
|
+
headers?: string | undefined;
|
|
16
|
+
body?: string | undefined;
|
|
17
|
+
hopeRes?: string | undefined;
|
|
18
|
+
}, {
|
|
19
|
+
url: string;
|
|
20
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
21
|
+
query?: string | undefined;
|
|
22
|
+
headers?: string | undefined;
|
|
23
|
+
body?: string | undefined;
|
|
24
|
+
hopeRes?: string | undefined;
|
|
25
|
+
}>, "many">;
|
|
26
|
+
}, "strip", z.ZodTypeAny, {
|
|
27
|
+
uuid: string;
|
|
28
|
+
tasks: {
|
|
29
|
+
url: string;
|
|
30
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
31
|
+
query?: string | undefined;
|
|
32
|
+
headers?: string | undefined;
|
|
33
|
+
body?: string | undefined;
|
|
34
|
+
hopeRes?: string | undefined;
|
|
35
|
+
}[];
|
|
36
|
+
}, {
|
|
37
|
+
uuid: string;
|
|
38
|
+
tasks: {
|
|
39
|
+
url: string;
|
|
40
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
41
|
+
query?: string | undefined;
|
|
42
|
+
headers?: string | undefined;
|
|
43
|
+
body?: string | undefined;
|
|
44
|
+
hopeRes?: string | undefined;
|
|
45
|
+
}[];
|
|
46
|
+
}>;
|
|
47
|
+
export type AddTasksToPlanRequest = z.infer<typeof AddTasksToPlanParams>;
|
|
48
|
+
export declare const addTasksToPlanTool: {
|
|
49
|
+
name: string;
|
|
50
|
+
description: string;
|
|
51
|
+
parameters: z.ZodObject<{
|
|
52
|
+
uuid: z.ZodString;
|
|
53
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
54
|
+
url: z.ZodString;
|
|
55
|
+
method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
56
|
+
query: z.ZodOptional<z.ZodString>;
|
|
57
|
+
headers: z.ZodOptional<z.ZodString>;
|
|
58
|
+
body: z.ZodOptional<z.ZodString>;
|
|
59
|
+
hopeRes: z.ZodOptional<z.ZodString>;
|
|
60
|
+
}, "strip", z.ZodTypeAny, {
|
|
61
|
+
url: string;
|
|
62
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
63
|
+
query?: string | undefined;
|
|
64
|
+
headers?: string | undefined;
|
|
65
|
+
body?: string | undefined;
|
|
66
|
+
hopeRes?: string | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
url: string;
|
|
69
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
70
|
+
query?: string | undefined;
|
|
71
|
+
headers?: string | undefined;
|
|
72
|
+
body?: string | undefined;
|
|
73
|
+
hopeRes?: string | undefined;
|
|
74
|
+
}>, "many">;
|
|
75
|
+
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
uuid: string;
|
|
77
|
+
tasks: {
|
|
78
|
+
url: string;
|
|
79
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
80
|
+
query?: string | undefined;
|
|
81
|
+
headers?: string | undefined;
|
|
82
|
+
body?: string | undefined;
|
|
83
|
+
hopeRes?: string | undefined;
|
|
84
|
+
}[];
|
|
85
|
+
}, {
|
|
86
|
+
uuid: string;
|
|
87
|
+
tasks: {
|
|
88
|
+
url: string;
|
|
89
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
90
|
+
query?: string | undefined;
|
|
91
|
+
headers?: string | undefined;
|
|
92
|
+
body?: string | undefined;
|
|
93
|
+
hopeRes?: string | undefined;
|
|
94
|
+
}[];
|
|
95
|
+
}>;
|
|
96
|
+
execute: (params: AddTasksToPlanRequest) => Promise<string>;
|
|
97
|
+
};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const ApiTestParams: z.ZodObject<{
|
|
3
|
+
url: z.ZodString;
|
|
4
|
+
method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
5
|
+
query: z.ZodOptional<z.ZodString>;
|
|
6
|
+
headers: z.ZodOptional<z.ZodString>;
|
|
7
|
+
body: z.ZodOptional<z.ZodString>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
url: string;
|
|
10
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
11
|
+
query?: string | undefined;
|
|
12
|
+
headers?: string | undefined;
|
|
13
|
+
body?: string | undefined;
|
|
14
|
+
}, {
|
|
15
|
+
url: string;
|
|
16
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
17
|
+
query?: string | undefined;
|
|
18
|
+
headers?: string | undefined;
|
|
19
|
+
body?: string | undefined;
|
|
20
|
+
}>;
|
|
21
|
+
export type ApiTestRequest = z.infer<typeof ApiTestParams>;
|
|
22
|
+
export interface ApiTestResult {
|
|
23
|
+
status: number;
|
|
24
|
+
statusText: string;
|
|
25
|
+
headers: any;
|
|
26
|
+
data: any;
|
|
27
|
+
responseTime: number;
|
|
28
|
+
timestamp: string;
|
|
29
|
+
}
|
|
30
|
+
export declare function executeApiTest(params: ApiTestRequest): Promise<ApiTestResult>;
|
|
31
|
+
export declare const apiTestTool: {
|
|
32
|
+
name: string;
|
|
33
|
+
description: string;
|
|
34
|
+
parameters: z.ZodObject<{
|
|
35
|
+
url: z.ZodString;
|
|
36
|
+
method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
37
|
+
query: z.ZodOptional<z.ZodString>;
|
|
38
|
+
headers: z.ZodOptional<z.ZodString>;
|
|
39
|
+
body: z.ZodOptional<z.ZodString>;
|
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
|
41
|
+
url: string;
|
|
42
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
43
|
+
query?: string | undefined;
|
|
44
|
+
headers?: string | undefined;
|
|
45
|
+
body?: string | undefined;
|
|
46
|
+
}, {
|
|
47
|
+
url: string;
|
|
48
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
49
|
+
query?: string | undefined;
|
|
50
|
+
headers?: string | undefined;
|
|
51
|
+
body?: string | undefined;
|
|
52
|
+
}>;
|
|
53
|
+
execute: (params: ApiTestRequest) => Promise<string>;
|
|
54
|
+
};
|
|
55
|
+
export declare const AutoApiTestParams: z.ZodObject<{
|
|
56
|
+
websiteDescription: z.ZodString;
|
|
57
|
+
apiDocUrl: z.ZodOptional<z.ZodString>;
|
|
58
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
59
|
+
}, "strip", z.ZodTypeAny, {
|
|
60
|
+
websiteDescription: string;
|
|
61
|
+
apiDocUrl?: string | undefined;
|
|
62
|
+
baseUrl?: string | undefined;
|
|
63
|
+
}, {
|
|
64
|
+
websiteDescription: string;
|
|
65
|
+
apiDocUrl?: string | undefined;
|
|
66
|
+
baseUrl?: string | undefined;
|
|
67
|
+
}>;
|
|
68
|
+
export type AutoApiTestRequest = z.infer<typeof AutoApiTestParams>;
|
|
69
|
+
export declare const autoApiTestTool: {
|
|
70
|
+
name: string;
|
|
71
|
+
description: string;
|
|
72
|
+
parameters: z.ZodObject<{
|
|
73
|
+
websiteDescription: z.ZodString;
|
|
74
|
+
apiDocUrl: z.ZodOptional<z.ZodString>;
|
|
75
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
76
|
+
}, "strip", z.ZodTypeAny, {
|
|
77
|
+
websiteDescription: string;
|
|
78
|
+
apiDocUrl?: string | undefined;
|
|
79
|
+
baseUrl?: string | undefined;
|
|
80
|
+
}, {
|
|
81
|
+
websiteDescription: string;
|
|
82
|
+
apiDocUrl?: string | undefined;
|
|
83
|
+
baseUrl?: string | undefined;
|
|
84
|
+
}>;
|
|
85
|
+
execute: (params: AutoApiTestRequest) => Promise<string>;
|
|
86
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const BatchUpdateTaskSummariesParams: z.ZodObject<{
|
|
3
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
4
|
+
uuid: z.ZodString;
|
|
5
|
+
summary: z.ZodString;
|
|
6
|
+
suggest: z.ZodString;
|
|
7
|
+
}, "strip", z.ZodTypeAny, {
|
|
8
|
+
suggest: string;
|
|
9
|
+
uuid: string;
|
|
10
|
+
summary: string;
|
|
11
|
+
}, {
|
|
12
|
+
suggest: string;
|
|
13
|
+
uuid: string;
|
|
14
|
+
summary: string;
|
|
15
|
+
}>, "many">;
|
|
16
|
+
}, "strip", z.ZodTypeAny, {
|
|
17
|
+
tasks: {
|
|
18
|
+
suggest: string;
|
|
19
|
+
uuid: string;
|
|
20
|
+
summary: string;
|
|
21
|
+
}[];
|
|
22
|
+
}, {
|
|
23
|
+
tasks: {
|
|
24
|
+
suggest: string;
|
|
25
|
+
uuid: string;
|
|
26
|
+
summary: string;
|
|
27
|
+
}[];
|
|
28
|
+
}>;
|
|
29
|
+
export type BatchUpdateTaskSummariesRequest = z.infer<typeof BatchUpdateTaskSummariesParams>;
|
|
30
|
+
export declare const batchUpdateTaskSummariesTool: {
|
|
31
|
+
name: string;
|
|
32
|
+
description: string;
|
|
33
|
+
parameters: z.ZodObject<{
|
|
34
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
35
|
+
uuid: z.ZodString;
|
|
36
|
+
summary: z.ZodString;
|
|
37
|
+
suggest: z.ZodString;
|
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
suggest: string;
|
|
40
|
+
uuid: string;
|
|
41
|
+
summary: string;
|
|
42
|
+
}, {
|
|
43
|
+
suggest: string;
|
|
44
|
+
uuid: string;
|
|
45
|
+
summary: string;
|
|
46
|
+
}>, "many">;
|
|
47
|
+
}, "strip", z.ZodTypeAny, {
|
|
48
|
+
tasks: {
|
|
49
|
+
suggest: string;
|
|
50
|
+
uuid: string;
|
|
51
|
+
summary: string;
|
|
52
|
+
}[];
|
|
53
|
+
}, {
|
|
54
|
+
tasks: {
|
|
55
|
+
suggest: string;
|
|
56
|
+
uuid: string;
|
|
57
|
+
summary: string;
|
|
58
|
+
}[];
|
|
59
|
+
}>;
|
|
60
|
+
execute: (params: BatchUpdateTaskSummariesRequest) => Promise<string>;
|
|
61
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const ExecuteTestPlanParams: z.ZodObject<{
|
|
3
|
+
tableUuid: z.ZodString;
|
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
|
5
|
+
tableUuid: string;
|
|
6
|
+
}, {
|
|
7
|
+
tableUuid: string;
|
|
8
|
+
}>;
|
|
9
|
+
export type ExecuteTestPlanRequest = z.infer<typeof ExecuteTestPlanParams>;
|
|
10
|
+
export declare const executeTestPlanTool: {
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
parameters: z.ZodObject<{
|
|
14
|
+
tableUuid: z.ZodString;
|
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
tableUuid: string;
|
|
17
|
+
}, {
|
|
18
|
+
tableUuid: string;
|
|
19
|
+
}>;
|
|
20
|
+
execute: (params: ExecuteTestPlanRequest) => Promise<string>;
|
|
21
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const ExportTestResultsParams: z.ZodObject<{
|
|
3
|
+
uuid: z.ZodString;
|
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
|
5
|
+
uuid: string;
|
|
6
|
+
}, {
|
|
7
|
+
uuid: string;
|
|
8
|
+
}>;
|
|
9
|
+
export type ExportTestResultsRequest = z.infer<typeof ExportTestResultsParams>;
|
|
10
|
+
export declare const exportTestResultsTool: {
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
parameters: z.ZodObject<{
|
|
14
|
+
uuid: z.ZodString;
|
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
uuid: string;
|
|
17
|
+
}, {
|
|
18
|
+
uuid: string;
|
|
19
|
+
}>;
|
|
20
|
+
execute: (params: ExportTestResultsRequest) => Promise<string>;
|
|
21
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const GetTestPlansParams: z.ZodObject<{
|
|
3
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
|
5
|
+
uuid?: string | undefined;
|
|
6
|
+
}, {
|
|
7
|
+
uuid?: string | undefined;
|
|
8
|
+
}>;
|
|
9
|
+
export type GetTestPlansRequest = z.infer<typeof GetTestPlansParams>;
|
|
10
|
+
export declare const getTestPlansTool: {
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
parameters: z.ZodObject<{
|
|
14
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
uuid?: string | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
uuid?: string | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
execute: (params: GetTestPlansRequest) => Promise<string>;
|
|
21
|
+
};
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
export { apiTestTool, autoApiTestTool } from "./api-test";
|
|
2
|
+
export { createTestPlanTool } from "./test-plan";
|
|
3
|
+
export { getTestPlansTool } from "./get-test-plans";
|
|
4
|
+
export { executeTestPlanTool } from "./execute-test-plan";
|
|
5
|
+
export { addTasksToPlanTool } from "./add-tasks-to-plan";
|
|
6
|
+
export { batchUpdateTaskSummariesTool } from "./batch-update-task-summaries";
|
|
7
|
+
export { updateTaskTool } from "./update-task";
|
|
8
|
+
export { exportTestResultsTool } from "./export-test-results";
|
|
9
|
+
export declare const apiTestTools: ({
|
|
10
|
+
name: string;
|
|
11
|
+
description: string;
|
|
12
|
+
parameters: import("zod").ZodObject<{
|
|
13
|
+
url: import("zod").ZodString;
|
|
14
|
+
method: import("zod").ZodDefault<import("zod").ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
15
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16
|
+
headers: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
18
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
19
|
+
url: string;
|
|
20
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
21
|
+
query?: string | undefined;
|
|
22
|
+
headers?: string | undefined;
|
|
23
|
+
body?: string | undefined;
|
|
24
|
+
}, {
|
|
25
|
+
url: string;
|
|
26
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
27
|
+
query?: string | undefined;
|
|
28
|
+
headers?: string | undefined;
|
|
29
|
+
body?: string | undefined;
|
|
30
|
+
}>;
|
|
31
|
+
execute: (params: import("./api-test").ApiTestRequest) => Promise<string>;
|
|
32
|
+
} | {
|
|
33
|
+
name: string;
|
|
34
|
+
description: string;
|
|
35
|
+
parameters: import("zod").ZodObject<{
|
|
36
|
+
websiteDescription: import("zod").ZodString;
|
|
37
|
+
apiDocUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
38
|
+
baseUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
39
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
40
|
+
websiteDescription: string;
|
|
41
|
+
apiDocUrl?: string | undefined;
|
|
42
|
+
baseUrl?: string | undefined;
|
|
43
|
+
}, {
|
|
44
|
+
websiteDescription: string;
|
|
45
|
+
apiDocUrl?: string | undefined;
|
|
46
|
+
baseUrl?: string | undefined;
|
|
47
|
+
}>;
|
|
48
|
+
execute: (params: import("./api-test").AutoApiTestRequest) => Promise<string>;
|
|
49
|
+
} | {
|
|
50
|
+
name: string;
|
|
51
|
+
description: string;
|
|
52
|
+
parameters: import("zod").ZodObject<{
|
|
53
|
+
planName: import("zod").ZodString;
|
|
54
|
+
tasks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
55
|
+
url: import("zod").ZodString;
|
|
56
|
+
method: import("zod").ZodDefault<import("zod").ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
57
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
58
|
+
headers: import("zod").ZodOptional<import("zod").ZodString>;
|
|
59
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
60
|
+
hopeRes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
61
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
62
|
+
url: string;
|
|
63
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
64
|
+
query?: string | undefined;
|
|
65
|
+
headers?: string | undefined;
|
|
66
|
+
body?: string | undefined;
|
|
67
|
+
hopeRes?: string | undefined;
|
|
68
|
+
}, {
|
|
69
|
+
url: string;
|
|
70
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
71
|
+
query?: string | undefined;
|
|
72
|
+
headers?: string | undefined;
|
|
73
|
+
body?: string | undefined;
|
|
74
|
+
hopeRes?: string | undefined;
|
|
75
|
+
}>, "many">;
|
|
76
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
77
|
+
planName: string;
|
|
78
|
+
tasks: {
|
|
79
|
+
url: string;
|
|
80
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
81
|
+
query?: string | undefined;
|
|
82
|
+
headers?: string | undefined;
|
|
83
|
+
body?: string | undefined;
|
|
84
|
+
hopeRes?: string | undefined;
|
|
85
|
+
}[];
|
|
86
|
+
}, {
|
|
87
|
+
planName: string;
|
|
88
|
+
tasks: {
|
|
89
|
+
url: string;
|
|
90
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
91
|
+
query?: string | undefined;
|
|
92
|
+
headers?: string | undefined;
|
|
93
|
+
body?: string | undefined;
|
|
94
|
+
hopeRes?: string | undefined;
|
|
95
|
+
}[];
|
|
96
|
+
}>;
|
|
97
|
+
execute: (params: import("./test-plan").CreateTestPlanRequest) => Promise<string>;
|
|
98
|
+
} | {
|
|
99
|
+
name: string;
|
|
100
|
+
description: string;
|
|
101
|
+
parameters: import("zod").ZodObject<{
|
|
102
|
+
uuid: import("zod").ZodOptional<import("zod").ZodString>;
|
|
103
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
104
|
+
uuid?: string | undefined;
|
|
105
|
+
}, {
|
|
106
|
+
uuid?: string | undefined;
|
|
107
|
+
}>;
|
|
108
|
+
execute: (params: import("./get-test-plans").GetTestPlansRequest) => Promise<string>;
|
|
109
|
+
} | {
|
|
110
|
+
name: string;
|
|
111
|
+
description: string;
|
|
112
|
+
parameters: import("zod").ZodObject<{
|
|
113
|
+
tableUuid: import("zod").ZodString;
|
|
114
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
115
|
+
tableUuid: string;
|
|
116
|
+
}, {
|
|
117
|
+
tableUuid: string;
|
|
118
|
+
}>;
|
|
119
|
+
execute: (params: import("./execute-test-plan").ExecuteTestPlanRequest) => Promise<string>;
|
|
120
|
+
} | {
|
|
121
|
+
name: string;
|
|
122
|
+
description: string;
|
|
123
|
+
parameters: import("zod").ZodObject<{
|
|
124
|
+
uuid: import("zod").ZodString;
|
|
125
|
+
tasks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
126
|
+
url: import("zod").ZodString;
|
|
127
|
+
method: import("zod").ZodDefault<import("zod").ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
128
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
129
|
+
headers: import("zod").ZodOptional<import("zod").ZodString>;
|
|
130
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
131
|
+
hopeRes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
132
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
133
|
+
url: string;
|
|
134
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
135
|
+
query?: string | undefined;
|
|
136
|
+
headers?: string | undefined;
|
|
137
|
+
body?: string | undefined;
|
|
138
|
+
hopeRes?: string | undefined;
|
|
139
|
+
}, {
|
|
140
|
+
url: string;
|
|
141
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
142
|
+
query?: string | undefined;
|
|
143
|
+
headers?: string | undefined;
|
|
144
|
+
body?: string | undefined;
|
|
145
|
+
hopeRes?: string | undefined;
|
|
146
|
+
}>, "many">;
|
|
147
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
148
|
+
uuid: string;
|
|
149
|
+
tasks: {
|
|
150
|
+
url: string;
|
|
151
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
152
|
+
query?: string | undefined;
|
|
153
|
+
headers?: string | undefined;
|
|
154
|
+
body?: string | undefined;
|
|
155
|
+
hopeRes?: string | undefined;
|
|
156
|
+
}[];
|
|
157
|
+
}, {
|
|
158
|
+
uuid: string;
|
|
159
|
+
tasks: {
|
|
160
|
+
url: string;
|
|
161
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
162
|
+
query?: string | undefined;
|
|
163
|
+
headers?: string | undefined;
|
|
164
|
+
body?: string | undefined;
|
|
165
|
+
hopeRes?: string | undefined;
|
|
166
|
+
}[];
|
|
167
|
+
}>;
|
|
168
|
+
execute: (params: import("./add-tasks-to-plan").AddTasksToPlanRequest) => Promise<string>;
|
|
169
|
+
} | {
|
|
170
|
+
name: string;
|
|
171
|
+
description: string;
|
|
172
|
+
parameters: import("zod").ZodObject<{
|
|
173
|
+
tasks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
174
|
+
uuid: import("zod").ZodString;
|
|
175
|
+
summary: import("zod").ZodString;
|
|
176
|
+
suggest: import("zod").ZodString;
|
|
177
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
178
|
+
suggest: string;
|
|
179
|
+
uuid: string;
|
|
180
|
+
summary: string;
|
|
181
|
+
}, {
|
|
182
|
+
suggest: string;
|
|
183
|
+
uuid: string;
|
|
184
|
+
summary: string;
|
|
185
|
+
}>, "many">;
|
|
186
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
187
|
+
tasks: {
|
|
188
|
+
suggest: string;
|
|
189
|
+
uuid: string;
|
|
190
|
+
summary: string;
|
|
191
|
+
}[];
|
|
192
|
+
}, {
|
|
193
|
+
tasks: {
|
|
194
|
+
suggest: string;
|
|
195
|
+
uuid: string;
|
|
196
|
+
summary: string;
|
|
197
|
+
}[];
|
|
198
|
+
}>;
|
|
199
|
+
execute: (params: import("./batch-update-task-summaries").BatchUpdateTaskSummariesRequest) => Promise<string>;
|
|
200
|
+
} | {
|
|
201
|
+
name: string;
|
|
202
|
+
description: string;
|
|
203
|
+
parameters: import("zod").ZodObject<{
|
|
204
|
+
uuid: import("zod").ZodString;
|
|
205
|
+
updateData: import("zod").ZodObject<{
|
|
206
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
207
|
+
method: import("zod").ZodOptional<import("zod").ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
|
|
208
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
209
|
+
headers: import("zod").ZodOptional<import("zod").ZodString>;
|
|
210
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
211
|
+
hopeRes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
212
|
+
res: import("zod").ZodOptional<import("zod").ZodString>;
|
|
213
|
+
review: import("zod").ZodOptional<import("zod").ZodString>;
|
|
214
|
+
suggest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
215
|
+
status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
216
|
+
completed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
217
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
218
|
+
status?: string | undefined;
|
|
219
|
+
completed?: boolean | undefined;
|
|
220
|
+
url?: string | undefined;
|
|
221
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
222
|
+
query?: string | undefined;
|
|
223
|
+
headers?: string | undefined;
|
|
224
|
+
body?: string | undefined;
|
|
225
|
+
hopeRes?: string | undefined;
|
|
226
|
+
res?: string | undefined;
|
|
227
|
+
review?: string | undefined;
|
|
228
|
+
suggest?: string | undefined;
|
|
229
|
+
}, {
|
|
230
|
+
status?: string | undefined;
|
|
231
|
+
completed?: boolean | undefined;
|
|
232
|
+
url?: string | undefined;
|
|
233
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
234
|
+
query?: string | undefined;
|
|
235
|
+
headers?: string | undefined;
|
|
236
|
+
body?: string | undefined;
|
|
237
|
+
hopeRes?: string | undefined;
|
|
238
|
+
res?: string | undefined;
|
|
239
|
+
review?: string | undefined;
|
|
240
|
+
suggest?: string | undefined;
|
|
241
|
+
}>;
|
|
242
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
243
|
+
uuid: string;
|
|
244
|
+
updateData: {
|
|
245
|
+
status?: string | undefined;
|
|
246
|
+
completed?: boolean | undefined;
|
|
247
|
+
url?: string | undefined;
|
|
248
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
249
|
+
query?: string | undefined;
|
|
250
|
+
headers?: string | undefined;
|
|
251
|
+
body?: string | undefined;
|
|
252
|
+
hopeRes?: string | undefined;
|
|
253
|
+
res?: string | undefined;
|
|
254
|
+
review?: string | undefined;
|
|
255
|
+
suggest?: string | undefined;
|
|
256
|
+
};
|
|
257
|
+
}, {
|
|
258
|
+
uuid: string;
|
|
259
|
+
updateData: {
|
|
260
|
+
status?: string | undefined;
|
|
261
|
+
completed?: boolean | undefined;
|
|
262
|
+
url?: string | undefined;
|
|
263
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
264
|
+
query?: string | undefined;
|
|
265
|
+
headers?: string | undefined;
|
|
266
|
+
body?: string | undefined;
|
|
267
|
+
hopeRes?: string | undefined;
|
|
268
|
+
res?: string | undefined;
|
|
269
|
+
review?: string | undefined;
|
|
270
|
+
suggest?: string | undefined;
|
|
271
|
+
};
|
|
272
|
+
}>;
|
|
273
|
+
execute: (params: import("./update-task").UpdateTaskRequest) => Promise<string>;
|
|
274
|
+
} | {
|
|
275
|
+
name: string;
|
|
276
|
+
description: string;
|
|
277
|
+
parameters: import("zod").ZodObject<{
|
|
278
|
+
uuid: import("zod").ZodString;
|
|
279
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
280
|
+
uuid: string;
|
|
281
|
+
}, {
|
|
282
|
+
uuid: string;
|
|
283
|
+
}>;
|
|
284
|
+
execute: (params: import("./export-test-results").ExportTestResultsRequest) => Promise<string>;
|
|
285
|
+
})[];
|