@basmilius/apple-raop 0.11.0 → 0.13.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.
Files changed (2) hide show
  1. package/dist/index.d.mts +1 -1
  2. package/package.json +6 -7
package/dist/index.d.mts CHANGED
@@ -351,7 +351,7 @@ declare class RaopRtspClient extends RtspClient {
351
351
  *
352
352
  * @returns Header key-value pairs.
353
353
  */
354
- protected getDefaultHeaders(): Record<string, string | number>;
354
+ protected override getDefaultHeaders(): Record<string, string | number>;
355
355
  /**
356
356
  * Fetches device information from the `/info` endpoint. Returns the
357
357
  * parsed plist response as a dictionary, or an empty object on failure.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@basmilius/apple-raop",
3
3
  "description": "Implementation of Apple's RAOP protocol in Node.js.",
4
- "version": "0.11.0",
4
+ "version": "0.13.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": {
@@ -38,7 +38,6 @@
38
38
  "main": "./dist/index.mjs",
39
39
  "types": "./dist/index.d.mts",
40
40
  "typings": "./dist/index.d.mts",
41
- "sideEffects": false,
42
41
  "exports": {
43
42
  ".": {
44
43
  "types": "./dist/index.d.mts",
@@ -46,14 +45,14 @@
46
45
  }
47
46
  },
48
47
  "dependencies": {
49
- "@basmilius/apple-common": "0.11.0",
50
- "@basmilius/apple-encoding": "0.11.0",
51
- "@basmilius/apple-encryption": "0.11.0",
52
- "@basmilius/apple-rtsp": "0.11.0"
48
+ "@basmilius/apple-common": "0.13.0",
49
+ "@basmilius/apple-encoding": "0.13.0",
50
+ "@basmilius/apple-encryption": "0.13.0",
51
+ "@basmilius/apple-rtsp": "0.13.0"
53
52
  },
54
53
  "devDependencies": {
55
54
  "@types/bun": "^1.3.11",
56
55
  "@types/node": "^25.5.0",
57
- "tsdown": "^0.21.4"
56
+ "tsdown": "^0.21.6"
58
57
  }
59
58
  }