@xenon-device-management/xenon 1.1.20 → 1.1.21

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/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenon-device-management/xenon",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "description": "Xenon - Intelligent Mobile Infrastructure. A self-healing device orchestration platform for Appium.",
5
5
  "main": "./lib/src/index.js",
6
6
  "exports": {
@@ -108,7 +108,7 @@ let WDAClient = class WDAClient {
108
108
  for (const prefix of prefixes) {
109
109
  try {
110
110
  const isSessionless = !(options === null || options === void 0 ? void 0 : options.useSessionPath) &&
111
- (['/status', '/health'].includes(endpoint) || endpoint.startsWith('/wda/'));
111
+ (['/status', '/health', '/wda/healthcheck'].includes(endpoint));
112
112
  const url = `http://${targetHost}:${targetPort}${isSessionless ? '' : prefix}${endpoint}`;
113
113
  // Principal Stability: Screenshots, activation, and script execution need longer timeouts.
114
114
  // Heartbeats and Status checks should be snappy to fail-over quickly.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenon-device-management/xenon",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "description": "Xenon - Intelligent Mobile Infrastructure. A self-healing device orchestration platform for Appium.",
5
5
  "main": "./lib/src/index.js",
6
6
  "exports": {