intention-coding 0.3.5 → 0.3.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 +1 -1
- package/dist/index.cjs +6458 -0
- package/dist/index.d.ts +1 -0
- package/dist/server/index.d.ts +2 -0
- package/dist/services/bug-fix-agent/index.d.ts +10 -24
- package/dist/services/change-summarizer/index.d.ts +10 -24
- package/dist/services/code-generator/index.d.ts +18 -24
- package/dist/services/image-analysis/index.d.ts +36 -56
- package/dist/services/image-converter/index.d.ts +24 -38
- package/dist/services/integrated-generator/index.d.ts +28 -66
- package/dist/services/pdf2md/index.d.ts +4 -48
- package/dist/services/project-template/index.d.ts +2 -18
- package/dist/services/requirement-analyzer/index.d.ts +22 -80
- package/dist/services/world2md/index.d.ts +14 -50
- package/dist/types/index.d.ts +8 -0
- package/package.json +46 -28
- package/dist/cli/analyze-image.d.ts +0 -2
- package/dist/index.js +0 -11527
- package/dist/services/api-test/add-tasks-to-plan.d.ts +0 -97
- package/dist/services/api-test/api-test.d.ts +0 -86
- package/dist/services/api-test/batch-update-task-summaries.d.ts +0 -61
- package/dist/services/api-test/execute-test-plan.d.ts +0 -21
- package/dist/services/api-test/export-test-results.d.ts +0 -21
- package/dist/services/api-test/get-test-plans.d.ts +0 -21
- package/dist/services/api-test/index.d.ts +0 -285
- package/dist/services/api-test/test-plan.d.ts +0 -119
- package/dist/services/api-test/update-task.d.ts +0 -147
- package/dist/services/claude-code/index.d.ts +0 -200
- package/dist/utils/requirements-utils.d.ts +0 -38
- package/dist/utils/storage.d.ts +0 -14
- /package/dist/{config.d.ts → utils/config.d.ts} +0 -0
|
@@ -1,97 +0,0 @@
|
|
|
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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
13
|
-
url: string;
|
|
14
|
-
query?: string | undefined;
|
|
15
|
-
headers?: string | undefined;
|
|
16
|
-
body?: string | undefined;
|
|
17
|
-
hopeRes?: string | undefined;
|
|
18
|
-
}, {
|
|
19
|
-
url: string;
|
|
20
|
-
method?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
30
|
-
url: string;
|
|
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?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
62
|
-
url: string;
|
|
63
|
-
query?: string | undefined;
|
|
64
|
-
headers?: string | undefined;
|
|
65
|
-
body?: string | undefined;
|
|
66
|
-
hopeRes?: string | undefined;
|
|
67
|
-
}, {
|
|
68
|
-
url: string;
|
|
69
|
-
method?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
79
|
-
url: string;
|
|
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?: "POST" | "GET" | "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
|
-
};
|
|
@@ -1,86 +0,0 @@
|
|
|
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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
10
|
-
url: string;
|
|
11
|
-
query?: string | undefined;
|
|
12
|
-
headers?: string | undefined;
|
|
13
|
-
body?: string | undefined;
|
|
14
|
-
}, {
|
|
15
|
-
url: string;
|
|
16
|
-
method?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
42
|
-
url: string;
|
|
43
|
-
query?: string | undefined;
|
|
44
|
-
headers?: string | undefined;
|
|
45
|
-
body?: string | undefined;
|
|
46
|
-
}, {
|
|
47
|
-
url: string;
|
|
48
|
-
method?: "POST" | "GET" | "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
|
-
};
|
|
@@ -1,61 +0,0 @@
|
|
|
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
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
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
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
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
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
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
|
-
};
|
|
@@ -1,285 +0,0 @@
|
|
|
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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
20
|
-
url: string;
|
|
21
|
-
query?: string | undefined;
|
|
22
|
-
headers?: string | undefined;
|
|
23
|
-
body?: string | undefined;
|
|
24
|
-
}, {
|
|
25
|
-
url: string;
|
|
26
|
-
method?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
63
|
-
url: string;
|
|
64
|
-
query?: string | undefined;
|
|
65
|
-
headers?: string | undefined;
|
|
66
|
-
body?: string | undefined;
|
|
67
|
-
hopeRes?: string | undefined;
|
|
68
|
-
}, {
|
|
69
|
-
url: string;
|
|
70
|
-
method?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
80
|
-
url: string;
|
|
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?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
134
|
-
url: string;
|
|
135
|
-
query?: string | undefined;
|
|
136
|
-
headers?: string | undefined;
|
|
137
|
-
body?: string | undefined;
|
|
138
|
-
hopeRes?: string | undefined;
|
|
139
|
-
}, {
|
|
140
|
-
url: string;
|
|
141
|
-
method?: "POST" | "GET" | "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
|
-
method: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
151
|
-
url: string;
|
|
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?: "POST" | "GET" | "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
|
-
method?: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
220
|
-
completed?: boolean | undefined;
|
|
221
|
-
url?: string | 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
|
-
method?: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
232
|
-
completed?: boolean | undefined;
|
|
233
|
-
url?: string | 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
|
-
method?: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
247
|
-
completed?: boolean | undefined;
|
|
248
|
-
url?: string | 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
|
-
method?: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
262
|
-
completed?: boolean | undefined;
|
|
263
|
-
url?: string | 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
|
-
})[];
|