@aight-cool/aight-utils 0.1.8 → 0.1.9
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/openclaw.plugin.json +4 -13
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "aight-utils",
|
|
3
3
|
"name": "Aight App Utils",
|
|
4
4
|
"description": "Aight App: Push notifications, Today items, config RPC, and agent bootstrap",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.9",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|
|
@@ -13,10 +13,7 @@
|
|
|
13
13
|
"properties": {
|
|
14
14
|
"mode": {
|
|
15
15
|
"type": "string",
|
|
16
|
-
"enum": [
|
|
17
|
-
"private",
|
|
18
|
-
"rich"
|
|
19
|
-
],
|
|
16
|
+
"enum": ["private", "rich"],
|
|
20
17
|
"default": "rich"
|
|
21
18
|
},
|
|
22
19
|
"relayUrl": {
|
|
@@ -34,19 +31,13 @@
|
|
|
34
31
|
},
|
|
35
32
|
"platform": {
|
|
36
33
|
"type": "string",
|
|
37
|
-
"enum": [
|
|
38
|
-
"ios",
|
|
39
|
-
"android"
|
|
40
|
-
]
|
|
34
|
+
"enum": ["ios", "android"]
|
|
41
35
|
},
|
|
42
36
|
"registeredAt": {
|
|
43
37
|
"type": "string"
|
|
44
38
|
}
|
|
45
39
|
},
|
|
46
|
-
"required": [
|
|
47
|
-
"token",
|
|
48
|
-
"platform"
|
|
49
|
-
]
|
|
40
|
+
"required": ["token", "platform"]
|
|
50
41
|
}
|
|
51
42
|
}
|
|
52
43
|
}
|
package/package.json
CHANGED