@redonvn/redai-openapi-marketing 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/README.md +38 -0
- package/dist/index.cjs +73013 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +73132 -0
- package/dist/index.d.ts +73132 -0
- package/dist/index.js +72987 -0
- package/dist/index.js.map +1 -0
- package/openclaw.plugin.json +84 -0
- package/package.json +52 -0
- package/tool-catalog.json +24699 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @redonvn/redai-openapi-marketing
|
|
2
|
+
|
|
3
|
+
OpenClaw plugin generated from `openapi/redai/marketing.json`.
|
|
4
|
+
|
|
5
|
+
## Build
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm run build --workspace @redonvn/redai-openapi-marketing
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Install in OpenClaw
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
openclaw plugins install @redonvn/redai-openapi-marketing
|
|
15
|
+
openclaw plugins enable redai-openapi-marketing
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Runtime config
|
|
19
|
+
|
|
20
|
+
Add runtime config in `~/.openclaw/openclaw.json`:
|
|
21
|
+
|
|
22
|
+
```json5
|
|
23
|
+
{
|
|
24
|
+
"plugins": {
|
|
25
|
+
"entries": {
|
|
26
|
+
"redai-openapi-marketing": {
|
|
27
|
+
"enabled": true,
|
|
28
|
+
"config": {
|
|
29
|
+
"baseUrl": "https://v2.redai.vn/api",
|
|
30
|
+
"bearerToken": "YOUR_TOKEN",
|
|
31
|
+
"workspaceId": "YOUR_WORKSPACE_ID",
|
|
32
|
+
"baseId": "YOUR_BASE_ID"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
```
|