@testdriverai/mcp 7.11.137-test → 7.11.138-test

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.
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "canary": {
13
13
  "apiRoot": "https://api-canary.testdriver.ai",
14
- "consoleUrl": "https://console-canary.testdriver.ai",
14
+ "consoleUrl": "https://console.testdriver.ai",
15
15
  "tdEnv": "production"
16
16
  },
17
17
  "stable": {
@@ -222,9 +222,8 @@ function getReplayGifUrl(replayUrl, replayId) {
222
222
  } else {
223
223
  // Map console URLs → API URLs for all environments
224
224
  // console-test.testdriver.ai → api-test.testdriver.ai
225
- // console-canary.testdriver.ai → api-canary.testdriver.ai
226
- // console.testdriver.ai api.testdriver.ai
227
- const consoleEnvMatch = replayUrl.match(/https:\/\/console-(test|canary)\.testdriver\.ai/);
225
+ // console.testdriver.ai → api.testdriver.ai (stable and canary share this console)
226
+ const consoleEnvMatch = replayUrl.match(/https:\/\/console-(test)\.testdriver\.ai/);
228
227
  if (consoleEnvMatch) {
229
228
  apiBaseUrl = `https://api-${consoleEnvMatch[1]}.testdriver.ai`;
230
229
  } else if (replayUrl.includes('console.testdriver.ai')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testdriverai/mcp",
3
- "version": "7.11.137-test",
3
+ "version": "7.11.138-test",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",