@xiboplayer/xmds 0.1.0 → 0.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xiboplayer/xmds",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "XMDS SOAP client for Xibo CMS communication",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -9,7 +9,7 @@
9
9
  "./xmds": "./src/xmds.js"
10
10
  },
11
11
  "dependencies": {
12
- "@xiboplayer/utils": "0.1.0"
12
+ "@xiboplayer/utils": "0.1.2"
13
13
  },
14
14
  "devDependencies": {
15
15
  "vitest": "^2.0.0"
@@ -11,9 +11,9 @@
11
11
  * - The SERVER_KEY must match the CMS setting
12
12
  *
13
13
  * Run with:
14
- * CMS_URL=https://displays.superpantalles.com \
15
- * CMS_KEY=isiSdUCy \
16
- * HARDWARE_KEY=pwa-470823315e05422b8d3c761c5274 \
14
+ * CMS_URL=https://your-cms.example.com \
15
+ * CMS_KEY=your-cms-key \
16
+ * HARDWARE_KEY=pwa-your-hardware-key \
17
17
  * npx vitest run src/xmds.rest.integration.test.js
18
18
  *
19
19
  * Or:
@@ -26,9 +26,9 @@ import { XmdsClient } from './xmds-client.js';
26
26
 
27
27
  // ─── Configuration ─────────────────────────────────────────────────
28
28
 
29
- const CMS_URL = process.env.CMS_URL || 'https://displays.superpantalles.com';
30
- const CMS_KEY = process.env.CMS_KEY || 'isiSdUCy';
31
- const HARDWARE_KEY = process.env.HARDWARE_KEY || 'pwa-470823315e05422b8d3c761c5274';
29
+ const CMS_URL = process.env.CMS_URL || 'https://your-cms.example.com';
30
+ const CMS_KEY = process.env.CMS_KEY || 'your-cms-key';
31
+ const HARDWARE_KEY = process.env.HARDWARE_KEY || 'pwa-your-hardware-key';
32
32
  const DISPLAY_NAME = process.env.DISPLAY_NAME || 'REST Integration Test';
33
33
 
34
34
  // Skip all tests if no CMS_URL is provided and we're not in CI