@nekuda/webmcp-sdk 0.7.1-dev.23.1 → 0.7.1
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/index.js +2 -2
- package/package.json +3 -8
package/dist/index.js
CHANGED
|
@@ -136,7 +136,7 @@ function resolveModelContext(scope = globalThis) {
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
// src/transport.ts
|
|
139
|
-
var INGEST_BASE = "https://ingest.agentlane.
|
|
139
|
+
var INGEST_BASE = "https://ingest.agentlane.com";
|
|
140
140
|
var DEFAULT_COLLECT_ENDPOINT = `${INGEST_BASE}/v1/collect`;
|
|
141
141
|
var DEFAULT_TELEMETRY_ENDPOINT = `${INGEST_BASE}/v1/telemetry`;
|
|
142
142
|
function tryFetch(scope, url, headers, json, onResponse) {
|
|
@@ -1114,7 +1114,7 @@ function shapeMetrics(inputSchema) {
|
|
|
1114
1114
|
|
|
1115
1115
|
// src/telemetry.ts
|
|
1116
1116
|
var SDK_NAME = "@nekuda/webmcp-sdk";
|
|
1117
|
-
var SDK_VERSION = "0.7.1
|
|
1117
|
+
var SDK_VERSION = "0.7.1";
|
|
1118
1118
|
var INSTALL_MODES = ["npm", "cdn_snippet"];
|
|
1119
1119
|
var SDK_INSTALL_MODE = INSTALL_MODES.find((mode) => mode === (typeof __WEBMCP_INSTALL_MODE__ === "string" ? __WEBMCP_INSTALL_MODE__ : "")) ?? "npm";
|
|
1120
1120
|
function parseSampleRate(raw) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nekuda/webmcp-sdk",
|
|
3
|
-
"version": "0.7.1
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Let AI agents use your website: define tools once and register them through WebMCP, with page-scoped tools, SPA navigation and unsupported browsers handled for you.",
|
|
@@ -12,10 +12,7 @@
|
|
|
12
12
|
"default": "./dist/index.js"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
-
"files": [
|
|
16
|
-
"dist",
|
|
17
|
-
"CHANGELOG.md"
|
|
18
|
-
],
|
|
15
|
+
"files": ["dist", "CHANGELOG.md"],
|
|
19
16
|
"publishConfig": {
|
|
20
17
|
"access": "public"
|
|
21
18
|
},
|
|
@@ -40,7 +37,5 @@
|
|
|
40
37
|
"optional": true
|
|
41
38
|
}
|
|
42
39
|
},
|
|
43
|
-
"trustedDependencies": [
|
|
44
|
-
"@biomejs/biome"
|
|
45
|
-
]
|
|
40
|
+
"trustedDependencies": ["@biomejs/biome"]
|
|
46
41
|
}
|