@basmilius/apple-airplay 0.0.92 → 0.0.94
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/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2197,7 +2197,7 @@ class AirPlayPairing {
|
|
|
2197
2197
|
"X-Apple-HKP": this.#hkp.toString()
|
|
2198
2198
|
});
|
|
2199
2199
|
if (response.status !== 200) {
|
|
2200
|
-
throw new Error(
|
|
2200
|
+
throw new Error(`Cannot start pairing session. ${response.status} ${response.statusText} ${await response.text()}`);
|
|
2201
2201
|
}
|
|
2202
2202
|
}
|
|
2203
2203
|
async#request(_, data) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basmilius/apple-airplay",
|
|
3
3
|
"description": "Implementation of Apple's AirPlay2 in Node.js.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.94",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": {
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@basmilius/apple-common": "0.0.
|
|
45
|
-
"@basmilius/apple-encoding": "0.0.
|
|
44
|
+
"@basmilius/apple-common": "0.0.94",
|
|
45
|
+
"@basmilius/apple-encoding": "0.0.94",
|
|
46
46
|
"@bufbuild/protobuf": "^2.10.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|