@basmilius/apple-companion-link 0.0.66 → 0.0.68
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/types.d.ts +21 -0
- package/package.json +2 -2
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type AttentionState =
|
|
2
|
+
| 'unknown'
|
|
3
|
+
| 'asleep'
|
|
4
|
+
| 'screensaver'
|
|
5
|
+
| 'awake'
|
|
6
|
+
| 'idle';
|
|
7
|
+
|
|
8
|
+
export type ButtonPressType =
|
|
9
|
+
| 'DoubleTap'
|
|
10
|
+
| 'Hold'
|
|
11
|
+
| 'SingleTap';
|
|
12
|
+
|
|
13
|
+
export type LaunchableApp = {
|
|
14
|
+
readonly bundleId: string;
|
|
15
|
+
readonly name: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export type UserAccount = {
|
|
19
|
+
readonly accountId: string;
|
|
20
|
+
readonly name: string;
|
|
21
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basmilius/apple-companion-link",
|
|
3
3
|
"description": "Implementation of Apple's Companion Link in Node.js.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.68",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@basmilius/apple-common": "0.0.
|
|
43
|
+
"@basmilius/apple-common": "0.0.68"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@basmilius/tools": "^2.23.0",
|