@ama-mcp/core 14.0.0-next.3 → 14.0.0-next.5
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/package.json +15 -14
- package/src/testing/index.d.ts +17 -0
- package/src/testing/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ama-mcp/core",
|
|
3
|
-
"version": "14.0.0-next.
|
|
3
|
+
"version": "14.0.0-next.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,26 +35,26 @@
|
|
|
35
35
|
"tslib": "^2.6.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@angular-devkit/schematics": "~20.3.
|
|
39
|
-
"@angular/common": "~20.3.
|
|
40
|
-
"@angular/compiler": "~20.3.
|
|
41
|
-
"@angular/compiler-cli": "~20.3.
|
|
42
|
-
"@angular/core": "~20.3.
|
|
43
|
-
"@angular/platform-browser": "~20.3.
|
|
44
|
-
"@angular/platform-browser-dynamic": "~20.3.
|
|
38
|
+
"@angular-devkit/schematics": "~20.3.13",
|
|
39
|
+
"@angular/common": "~20.3.15",
|
|
40
|
+
"@angular/compiler": "~20.3.15",
|
|
41
|
+
"@angular/compiler-cli": "~20.3.15",
|
|
42
|
+
"@angular/core": "~20.3.15",
|
|
43
|
+
"@angular/platform-browser": "~20.3.15",
|
|
44
|
+
"@angular/platform-browser-dynamic": "~20.3.15",
|
|
45
45
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
|
|
46
|
-
"@modelcontextprotocol/sdk": "~1.
|
|
46
|
+
"@modelcontextprotocol/sdk": "~1.24.0",
|
|
47
47
|
"@nx/eslint": "~21.6.0",
|
|
48
48
|
"@nx/eslint-plugin": "~21.6.0",
|
|
49
49
|
"@nx/jest": "~21.6.0",
|
|
50
50
|
"@nx/js": "~21.6.0",
|
|
51
|
-
"@o3r/build-helpers": "^14.0.0-next.
|
|
52
|
-
"@o3r/eslint-config": "^14.0.0-next.
|
|
53
|
-
"@o3r/eslint-plugin": "^14.0.0-next.
|
|
54
|
-
"@o3r/test-helpers": "^14.0.0-next.
|
|
51
|
+
"@o3r/build-helpers": "^14.0.0-next.5",
|
|
52
|
+
"@o3r/eslint-config": "^14.0.0-next.5",
|
|
53
|
+
"@o3r/eslint-plugin": "^14.0.0-next.5",
|
|
54
|
+
"@o3r/test-helpers": "^14.0.0-next.5",
|
|
55
55
|
"@stylistic/eslint-plugin": "~5.6.0",
|
|
56
56
|
"@types/jest": "~30.0.0",
|
|
57
|
-
"@types/node": "~
|
|
57
|
+
"@types/node": "~24.10.0",
|
|
58
58
|
"@typescript-eslint/parser": "~8.47.0",
|
|
59
59
|
"angular-eslint": "~20.6.0",
|
|
60
60
|
"cpy-cli": "^6.0.0",
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"type-fest": "^4.30.1",
|
|
80
80
|
"typescript": "~5.9.2",
|
|
81
81
|
"typescript-eslint": "~8.47.0",
|
|
82
|
+
"zod": "~4.1.0",
|
|
82
83
|
"zone.js": "~0.15.0"
|
|
83
84
|
},
|
|
84
85
|
"engines": {
|
package/src/testing/index.d.ts
CHANGED
|
@@ -12,9 +12,18 @@ export declare const setUpClientAndServerForTesting: (mcpServer: McpServer) => P
|
|
|
12
12
|
method: string;
|
|
13
13
|
params?: {
|
|
14
14
|
[x: string]: unknown;
|
|
15
|
+
task?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
ttl?: number | null | undefined;
|
|
18
|
+
pollInterval?: number | undefined;
|
|
19
|
+
} | undefined;
|
|
15
20
|
_meta?: {
|
|
16
21
|
[x: string]: unknown;
|
|
17
22
|
progressToken?: string | number | undefined;
|
|
23
|
+
"io.modelcontextprotocol/related-task"?: {
|
|
24
|
+
[x: string]: unknown;
|
|
25
|
+
taskId: string;
|
|
26
|
+
} | undefined;
|
|
18
27
|
} | undefined;
|
|
19
28
|
} | undefined;
|
|
20
29
|
}, {
|
|
@@ -23,12 +32,20 @@ export declare const setUpClientAndServerForTesting: (mcpServer: McpServer) => P
|
|
|
23
32
|
[x: string]: unknown;
|
|
24
33
|
_meta?: {
|
|
25
34
|
[x: string]: unknown;
|
|
35
|
+
"io.modelcontextprotocol/related-task"?: {
|
|
36
|
+
[x: string]: unknown;
|
|
37
|
+
taskId: string;
|
|
38
|
+
} | undefined;
|
|
26
39
|
} | undefined;
|
|
27
40
|
} | undefined;
|
|
28
41
|
}, {
|
|
29
42
|
[x: string]: unknown;
|
|
30
43
|
_meta?: {
|
|
31
44
|
[x: string]: unknown;
|
|
45
|
+
"io.modelcontextprotocol/related-task"?: {
|
|
46
|
+
[x: string]: unknown;
|
|
47
|
+
taskId: string;
|
|
48
|
+
} | undefined;
|
|
32
49
|
} | undefined;
|
|
33
50
|
}>;
|
|
34
51
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/testing/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACP,MAAM,2CAA2C,CAAC;AAInD,OAAO,KAAK,EACV,SAAS,EACV,MAAM,yCAAyC,CAAC;AAEjD;;;;;GAKG;AACH,eAAO,MAAM,8BAA8B,GAAU,WAAW,SAAS
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/testing/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACP,MAAM,2CAA2C,CAAC;AAInD,OAAO,KAAK,EACV,SAAS,EACV,MAAM,yCAAyC,CAAC;AAEjD;;;;;GAKG;AACH,eAAO,MAAM,8BAA8B,GAAU,WAAW,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxE,CAAC"}
|