@frontmcp/sdk 0.6.2 → 0.6.3
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/auth/session/index.d.ts +4 -2
- package/auth/session/redis-session.store.d.ts +26 -3
- package/auth/session/session-crypto.d.ts +86 -0
- package/auth/session/session-rate-limiter.d.ts +113 -0
- package/auth/session/transport-session.types.d.ts +51 -34
- package/auth/session/vercel-kv-session.store.d.ts +22 -2
- package/esm/index.mjs +644 -89
- package/esm/package.json +25 -17
- package/index.js +660 -104
- package/package.json +12 -2
- package/transport/adapters/sse-transport.d.ts +65 -0
- package/transport/adapters/streamable-http-transport.d.ts +69 -0
- package/transport/adapters/transport.local.adapter.d.ts +15 -1
- package/transport/adapters/transport.sse.adapter.d.ts +16 -3
- package/transport/adapters/transport.streamable-http.adapter.d.ts +12 -3
- package/transport/index.d.ts +21 -0
- package/transport/transport.local.d.ts +6 -0
- package/transport/transport.registry.d.ts +7 -1
- package/transport/transport.remote.d.ts +1 -0
- package/transport/transport.types.d.ts +6 -0
package/esm/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontmcp/sdk",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "FrontMCP SDK",
|
|
5
5
|
"author": "AgentFront <info@agentfront.dev>",
|
|
6
6
|
"homepage": "https://docs.agentfront.dev",
|
|
@@ -23,33 +23,41 @@
|
|
|
23
23
|
"bugs": {
|
|
24
24
|
"url": "https://github.com/agentfront/frontmcp/issues"
|
|
25
25
|
},
|
|
26
|
-
"type": "
|
|
27
|
-
"main": "
|
|
28
|
-
"module": "./
|
|
29
|
-
"types": "
|
|
26
|
+
"type": "module",
|
|
27
|
+
"main": "../index.js",
|
|
28
|
+
"module": "./index.mjs",
|
|
29
|
+
"types": "../index.d.ts",
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"exports": {
|
|
32
|
-
"./package.json": "
|
|
32
|
+
"./package.json": "../package.json",
|
|
33
33
|
".": {
|
|
34
|
-
"development": "./src/index.ts",
|
|
35
34
|
"require": {
|
|
36
|
-
"types": "
|
|
37
|
-
"default": "
|
|
35
|
+
"types": "../index.d.ts",
|
|
36
|
+
"default": "../index.js"
|
|
38
37
|
},
|
|
39
38
|
"import": {
|
|
40
|
-
"types": "
|
|
41
|
-
"default": "./
|
|
39
|
+
"types": "../index.d.ts",
|
|
40
|
+
"default": "./index.mjs"
|
|
42
41
|
}
|
|
43
42
|
},
|
|
44
43
|
"./mcp-apps": {
|
|
45
|
-
"development": "./src/mcp-apps/index.ts",
|
|
46
44
|
"require": {
|
|
47
|
-
"types": "
|
|
48
|
-
"default": "
|
|
45
|
+
"types": "../mcp-apps/index.d.ts",
|
|
46
|
+
"default": "../mcp-apps/index.js"
|
|
49
47
|
},
|
|
50
48
|
"import": {
|
|
51
|
-
"types": "
|
|
52
|
-
"default": "./
|
|
49
|
+
"types": "../mcp-apps/index.d.ts",
|
|
50
|
+
"default": "./mcp-apps/index.mjs"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"./transport": {
|
|
54
|
+
"require": {
|
|
55
|
+
"types": "../transport/index.d.ts",
|
|
56
|
+
"default": "../transport/index.js"
|
|
57
|
+
},
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "../transport/index.d.ts",
|
|
60
|
+
"default": "./transport/index.mjs"
|
|
53
61
|
}
|
|
54
62
|
},
|
|
55
63
|
"./esm": null
|
|
@@ -68,7 +76,7 @@
|
|
|
68
76
|
}
|
|
69
77
|
},
|
|
70
78
|
"dependencies": {
|
|
71
|
-
"@frontmcp/uipack": "0.6.
|
|
79
|
+
"@frontmcp/uipack": "0.6.3",
|
|
72
80
|
"@modelcontextprotocol/sdk": "1.25.1",
|
|
73
81
|
"ioredis": "^5.8.0",
|
|
74
82
|
"jose": "^6.1.3",
|