@xiboplayer/xmr 0.4.9 → 0.5.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.
@@ -238,7 +238,7 @@ From CMS display management page:
238
238
  3. **Configure player** with CMS credentials:
239
239
  ```javascript
240
240
  const config = {
241
- cmsAddress: 'http://localhost',
241
+ cmsUrl: 'http://localhost',
242
242
  hardwareKey: 'test-player-123',
243
243
  serverKey: 'your-server-key'
244
244
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xiboplayer/xmr",
3
- "version": "0.4.9",
3
+ "version": "0.5.0",
4
4
  "description": "XMR WebSocket client for real-time Xibo CMS commands",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "@xibosignage/xibo-communication-framework": "^0.0.6",
12
- "@xiboplayer/utils": "0.4.9"
12
+ "@xiboplayer/utils": "0.5.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "vitest": "^2.0.0"
package/src/test-utils.js CHANGED
@@ -98,7 +98,7 @@ export function createMockPlayer() {
98
98
  */
99
99
  export function createMockConfig(overrides = {}) {
100
100
  return {
101
- cmsAddress: 'https://test.cms.com',
101
+ cmsUrl: 'https://test.cms.com',
102
102
  hardwareKey: 'test-hw-key',
103
103
  serverKey: 'test-server-key',
104
104
  xmrChannel: 'test-channel',