domani-cli 0.4.42 → 0.4.44
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 +5 -3
- package/dist/domani.cjs +142 -139
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,7 +99,9 @@ domani email inbox hello@startup.dev --direction in
|
|
|
99
99
|
domani email forward hello@startup.dev --forward-to me@gmail.com
|
|
100
100
|
|
|
101
101
|
# Webhook for inbound emails (for bots, support systems, etc.)
|
|
102
|
-
|
|
102
|
+
# CURSOR_AUTH contains the complete value, e.g. "Bearer sender-key"
|
|
103
|
+
domani email webhook hello@startup.dev --url https://myapp.dev/hooks/email \
|
|
104
|
+
--authorization-env CURSOR_AUTH
|
|
103
105
|
|
|
104
106
|
# Export DNS records before making changes
|
|
105
107
|
domani dns startup.dev snapshot
|
|
@@ -144,7 +146,7 @@ domani email restore user@domain --message-ids m1
|
|
|
144
146
|
domani email read|unread|star|unstar user@domain --message-ids m1,m2
|
|
145
147
|
domani email send user@domain Send an email (--to, --subject, --body, --cc, --bcc)
|
|
146
148
|
domani email forward user@domain Forward inbound to a personal address (--forward-to)
|
|
147
|
-
domani email webhook user@domain Forward inbound as JSON
|
|
149
|
+
domani email webhook user@domain Forward inbound as JSON (--url, --authorization-env, --api-key-env, --clear-headers)
|
|
148
150
|
domani email setup --domain <domain> Auto-configure MX, SPF, DKIM, DMARC
|
|
149
151
|
domani email status --domain <domain> Check email DNS health
|
|
150
152
|
domani email connect --domain <domain> <provider> Connect external provider (Gmail, Fastmail, Proton)
|
|
@@ -185,7 +187,7 @@ domani billing Add or update payment method (opens browser)
|
|
|
185
187
|
domani invoices List payment invoices
|
|
186
188
|
domani token Print your API key
|
|
187
189
|
domani tokens [list|create|revoke] Manage API tokens (scoped, expiring)
|
|
188
|
-
domani webhooks [action] Manage webhook endpoints
|
|
190
|
+
domani webhooks [action] Manage webhook endpoints (auth headers via --authorization-env/--api-key-env)
|
|
189
191
|
```
|
|
190
192
|
|
|
191
193
|
### Introspection
|