@kanvas/openclaw-plugin 0.1.0 → 0.1.2
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/README.md +2 -2
- package/dist/index.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ In your OpenClaw config file:
|
|
|
40
40
|
}
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
The API URL
|
|
43
|
+
The API URL is preconfigured. The plugin authenticates automatically on the first tool call using the Kanvas login mutation.
|
|
44
44
|
|
|
45
45
|
### 3. Set up the agent's system prompt
|
|
46
46
|
|
|
@@ -158,7 +158,7 @@ With email/password, the plugin calls the Kanvas `login` mutation on the first t
|
|
|
158
158
|
| `xKanvasApp` | Yes | — | App/tenant identifier |
|
|
159
159
|
| `email` | Yes* | — | Agent user email |
|
|
160
160
|
| `password` | Yes* | — | Agent user password |
|
|
161
|
-
| `apiUrl` | No |
|
|
161
|
+
| `apiUrl` | No | Preconfigured | GraphQL endpoint (override only if self-hosting) |
|
|
162
162
|
| `xKanvasLocation` | No | — | Branch/location UUID |
|
|
163
163
|
| `xKanvasKey` | No | — | App key (for anonymous email) |
|
|
164
164
|
| `bearerToken` | No | — | Pre-existing token (skips login) |
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { definePluginEntry } from "openclaw/plugin-sdk/
|
|
1
|
+
import { definePluginEntry } from "openclaw/plugin-sdk/core";
|
|
2
2
|
import { Type } from "@sinclair/typebox";
|
|
3
3
|
import { KanvasClient } from "./client/kanvas-client.js";
|
|
4
4
|
import { CrmService } from "./domains/crm/index.js";
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED