@basmilius/apple-devices 0.9.14 → 0.9.15

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.mjs +1 -1
  2. package/package.json +8 -7
package/dist/index.mjs CHANGED
@@ -173,7 +173,7 @@ var Client = class {
173
173
  }
174
174
  get activePlayer() {
175
175
  if (this.#activePlayerId) return this.#players.get(this.#activePlayerId) ?? null;
176
- return this.#players.get(DEFAULT_PLAYER_ID) ?? null;
176
+ return this.#players.get("MediaRemote-DefaultPlayer") ?? null;
177
177
  }
178
178
  get nowPlayingInfo() {
179
179
  return this.activePlayer?.nowPlayingInfo ?? null;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@basmilius/apple-devices",
3
3
  "description": "Exposes various Apple devices to connect with either AirPlay or Companion Link.",
4
- "version": "0.9.14",
4
+ "version": "0.9.15",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": {
@@ -49,13 +49,14 @@
49
49
  }
50
50
  },
51
51
  "dependencies": {
52
- "@basmilius/apple-airplay": "0.9.14",
53
- "@basmilius/apple-common": "0.9.14",
54
- "@basmilius/apple-companion-link": "0.9.14",
55
- "@basmilius/apple-encoding": "0.9.14"
52
+ "@basmilius/apple-airplay": "0.9.15",
53
+ "@basmilius/apple-common": "0.9.15",
54
+ "@basmilius/apple-companion-link": "0.9.15",
55
+ "@basmilius/apple-encoding": "0.9.15"
56
56
  },
57
57
  "devDependencies": {
58
- "@types/bun": "^1.3.9",
59
- "tsdown": "^0.21.0-beta.2"
58
+ "@types/bun": "^1.3.11",
59
+ "@types/node": "^25.5.0",
60
+ "tsdown": "^0.21.4"
60
61
  }
61
62
  }