@lacneu/wix-openclaw 0.0.1 → 0.1.1
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/CHANGELOG.md +10 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] - 2026-04-29
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Move `@sinclair/typebox` from `devDependencies` to `dependencies` so the
|
|
14
|
+
plugin can resolve the import at runtime when installed via
|
|
15
|
+
`openclaw plugins install`. Without this, the plugin failed to load
|
|
16
|
+
with `Cannot find module '@sinclair/typebox'`.
|
|
17
|
+
|
|
18
|
+
## [0.1.0] - 2026-04-29
|
|
19
|
+
|
|
10
20
|
### Changed
|
|
11
21
|
- `wix_site_url_get` now reads `viewUrl` from the Site List API response
|
|
12
22
|
rather than calling the legacy `/urls-server/v2/published-site-urls`
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "wix-openclaw",
|
|
3
3
|
"name": "Wix",
|
|
4
4
|
"description": "Wix REST API plugin for OpenClaw — manage blog, CMS data, forms, bookings, contacts, events, FAQ on a single Wix site with site_id whitelist and approval gating on destructive ops",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.1",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lacneu/wix-openclaw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Wix REST API plugin for OpenClaw — manage blog, CMS data, forms, bookings, contacts, events, FAQ on a single Wix site with site_id whitelist and approval gating on destructive ops",
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,8 +55,10 @@
|
|
|
55
55
|
"minGatewayVersion": "2026.4.0"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@sinclair/typebox": "^0.34.0"
|
|
60
|
+
},
|
|
58
61
|
"devDependencies": {
|
|
59
|
-
"@sinclair/typebox": "^0.34.0",
|
|
60
62
|
"@types/node": "^22.0.0",
|
|
61
63
|
"openclaw": ">=2026.4.0",
|
|
62
64
|
"typescript": "^5.6.0"
|