@nekuda/webmcp-sdk 0.7.0-dev.22.1 → 0.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -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.dev";
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.0-dev.22.1";
1117
+ var SDK_VERSION = "0.7.0";
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.0-dev.22.1",
3
+ "version": "0.7.0",
4
4
  "type": "module",
5
5
  "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.",
6
6
  "main": "./dist/index.js",
@@ -11,10 +11,7 @@
11
11
  "default": "./dist/index.js"
12
12
  }
13
13
  },
14
- "files": [
15
- "dist",
16
- "CHANGELOG.md"
17
- ],
14
+ "files": ["dist", "CHANGELOG.md"],
18
15
  "publishConfig": {
19
16
  "access": "public"
20
17
  },
@@ -39,7 +36,5 @@
39
36
  "optional": true
40
37
  }
41
38
  },
42
- "trustedDependencies": [
43
- "@biomejs/biome"
44
- ]
39
+ "trustedDependencies": ["@biomejs/biome"]
45
40
  }