@kya-os/mcp-i 1.6.16 → 1.7.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/dist/compiler/get-webpack-config/index.js +8 -0
- package/dist/runtime/adapter-express.js +6 -6
- package/dist/runtime/adapter-nextjs.js +1 -1
- package/dist/runtime/http.js +1 -1
- package/dist/runtime/stdio.js +1 -1
- package/dist/test/examples/test-usage-example.d.ts +4 -4
- package/dist/test/runtime-integration.d.ts +2 -2
- package/package.json +3 -3
|
@@ -61,10 +61,10 @@ export declare function exampleKTAInterception(): Promise<{
|
|
|
61
61
|
export declare function exampleRuntimeIntegration(): {
|
|
62
62
|
testIdentity: {
|
|
63
63
|
did: string;
|
|
64
|
-
kid: string;
|
|
65
|
-
privateKey: string;
|
|
66
64
|
publicKey: string;
|
|
65
|
+
privateKey: string;
|
|
67
66
|
createdAt: string;
|
|
67
|
+
kid: string;
|
|
68
68
|
lastRotated?: string | undefined;
|
|
69
69
|
};
|
|
70
70
|
sessionContext: {
|
|
@@ -121,10 +121,10 @@ export declare function exampleCompleteTestScenario(): Promise<{
|
|
|
121
121
|
runtimeResults: {
|
|
122
122
|
testIdentity: {
|
|
123
123
|
did: string;
|
|
124
|
-
kid: string;
|
|
125
|
-
privateKey: string;
|
|
126
124
|
publicKey: string;
|
|
125
|
+
privateKey: string;
|
|
127
126
|
createdAt: string;
|
|
127
|
+
kid: string;
|
|
128
128
|
lastRotated?: string | undefined;
|
|
129
129
|
};
|
|
130
130
|
sessionContext: {
|
|
@@ -26,10 +26,10 @@ export declare function interceptKTACall<T>(operation: string, originalCall: ()
|
|
|
26
26
|
*/
|
|
27
27
|
export declare function getTestIdentityForRuntime(identityKey?: string): {
|
|
28
28
|
did: string;
|
|
29
|
-
kid: string;
|
|
30
|
-
privateKey: string;
|
|
31
29
|
publicKey: string;
|
|
30
|
+
privateKey: string;
|
|
32
31
|
createdAt: string;
|
|
32
|
+
kid: string;
|
|
33
33
|
lastRotated?: string | undefined;
|
|
34
34
|
};
|
|
35
35
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kya-os/mcp-i",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "The TypeScript MCP framework with identity features built-in",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"model-context-protocol"
|
|
64
64
|
],
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@kya-os/contracts": "^1.
|
|
67
|
-
"@kya-os/mcp-i-core": "^1.
|
|
66
|
+
"@kya-os/contracts": "^1.7.0",
|
|
67
|
+
"@kya-os/mcp-i-core": "^1.4.0",
|
|
68
68
|
"@modelcontextprotocol/sdk": "^1.11.4",
|
|
69
69
|
"@swc/core": "^1.11.24",
|
|
70
70
|
"@types/express": "^5.0.1",
|