resend-cli 1.9.1 → 1.10.0
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/cli.cjs +260 -250
- package/package.json +1 -1
- package/skills/resend-cli/SKILL.md +28 -3
- package/skills/resend-cli/references/automations.md +12 -0
package/package.json
CHANGED
|
@@ -11,13 +11,38 @@ description: >
|
|
|
11
11
|
license: MIT
|
|
12
12
|
metadata:
|
|
13
13
|
author: resend
|
|
14
|
-
version: "1.
|
|
15
|
-
homepage: https://resend.com
|
|
14
|
+
version: "1.10.0"
|
|
15
|
+
homepage: https://resend.com/docs/cli-agents
|
|
16
16
|
source: https://github.com/resend/resend-cli
|
|
17
|
+
openclaw:
|
|
18
|
+
primaryEnv: RESEND_API_KEY
|
|
19
|
+
requires:
|
|
20
|
+
env:
|
|
21
|
+
- RESEND_API_KEY
|
|
22
|
+
bins:
|
|
23
|
+
- resend
|
|
24
|
+
envVars:
|
|
25
|
+
- name: RESEND_API_KEY
|
|
26
|
+
required: true
|
|
27
|
+
description: Resend API key for authenticating CLI commands
|
|
28
|
+
- name: RESEND_PROFILE
|
|
29
|
+
required: false
|
|
30
|
+
description: Named auth profile for multi-account setups
|
|
31
|
+
install:
|
|
32
|
+
- kind: node
|
|
33
|
+
package: resend-cli
|
|
34
|
+
bins: [resend]
|
|
35
|
+
label: Resend CLI
|
|
36
|
+
links:
|
|
37
|
+
repository: https://github.com/resend/resend-cli
|
|
38
|
+
documentation: https://resend.com/docs/cli
|
|
17
39
|
inputs:
|
|
18
40
|
- name: RESEND_API_KEY
|
|
19
41
|
description: Resend API key for authenticating CLI commands. Get yours at https://resend.com/api-keys
|
|
20
42
|
required: true
|
|
43
|
+
- name: RESEND_PROFILE
|
|
44
|
+
description: Named auth profile for multi-account setups. Selects which stored API key to use (see `resend auth`).
|
|
45
|
+
required: false
|
|
21
46
|
references:
|
|
22
47
|
- references/emails.md
|
|
23
48
|
- references/domains.md
|
|
@@ -110,7 +135,7 @@ Auth resolves: `--api-key` flag > `RESEND_API_KEY` env > config file (`resend lo
|
|
|
110
135
|
| `domains` | create, verify, update, delete, list |
|
|
111
136
|
| `logs` | list, get, open |
|
|
112
137
|
| `api-keys` | create, list, delete |
|
|
113
|
-
| `automations` | create, get, list, update, delete, open, runs |
|
|
138
|
+
| `automations` | create, get, list, update, delete, stop, open, runs |
|
|
114
139
|
| `events` | create, get, list, update, delete, send, open |
|
|
115
140
|
| `broadcasts` | create, send, update, delete, list |
|
|
116
141
|
| `contacts` | create, update, delete, segments, topics |
|
|
@@ -54,6 +54,18 @@ resend automations update <id> --status enabled
|
|
|
54
54
|
|
|
55
55
|
---
|
|
56
56
|
|
|
57
|
+
## automations stop
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
resend automations stop <id>
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Stops a running automation by setting its status to disabled and cancelling active runs.
|
|
64
|
+
|
|
65
|
+
Returns `{"object":"automation","id":"<id>","status":"disabled"}`.
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
57
69
|
## automations delete
|
|
58
70
|
|
|
59
71
|
| Flag | Type | Required | Description |
|