@basmilius/apple-devices 0.0.101 → 0.0.102
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 +2 -8
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -1591,10 +1591,7 @@ class device_default extends EventEmitter2 {
|
|
|
1591
1591
|
}
|
|
1592
1592
|
}
|
|
1593
1593
|
async#onClose() {
|
|
1594
|
-
|
|
1595
|
-
return;
|
|
1596
|
-
}
|
|
1597
|
-
clearInterval(this.#feedbackInterval);
|
|
1594
|
+
await this.disconnectSafely();
|
|
1598
1595
|
this.emit("disconnected", false);
|
|
1599
1596
|
}
|
|
1600
1597
|
async#onError(err) {
|
|
@@ -1749,10 +1746,7 @@ class device_default2 extends EventEmitter3 {
|
|
|
1749
1746
|
}
|
|
1750
1747
|
}
|
|
1751
1748
|
async#onClose() {
|
|
1752
|
-
|
|
1753
|
-
return;
|
|
1754
|
-
}
|
|
1755
|
-
clearInterval(this.#heartbeatInterval);
|
|
1749
|
+
await this.disconnectSafely();
|
|
1756
1750
|
this.emit("disconnected", false);
|
|
1757
1751
|
}
|
|
1758
1752
|
async#onError(err) {
|
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.0.
|
|
4
|
+
"version": "0.0.102",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": {
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@basmilius/apple-airplay": "0.0.
|
|
47
|
-
"@basmilius/apple-common": "0.0.
|
|
48
|
-
"@basmilius/apple-companion-link": "0.0.
|
|
49
|
-
"@basmilius/apple-encoding": "0.0.
|
|
46
|
+
"@basmilius/apple-airplay": "0.0.102",
|
|
47
|
+
"@basmilius/apple-common": "0.0.102",
|
|
48
|
+
"@basmilius/apple-companion-link": "0.0.102",
|
|
49
|
+
"@basmilius/apple-encoding": "0.0.102"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@basmilius/tools": "^2.23.0",
|