@zapier/zapier-sdk-cli 0.60.0 → 0.61.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/CHANGELOG.md +6 -0
- package/README.md +2 -1
- package/dist/cli.cjs +330 -196
- package/dist/cli.mjs +330 -196
- package/dist/experimental.cjs +329 -195
- package/dist/experimental.mjs +329 -195
- package/dist/index.cjs +330 -196
- package/dist/index.mjs +330 -196
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -208,11 +208,12 @@ Log in to Zapier to access your account
|
|
|
208
208
|
| `--timeout` | `string` | ❌ | — | — | Login timeout in seconds (default: 300) |
|
|
209
209
|
| `--use-approvals` | `boolean` | ❌ | — | — | Require approvals for actions performed with these credentials |
|
|
210
210
|
| `--non-interactive` | `boolean` | ❌ | — | — | Skip interactive prompts. Uses defaults where possible; errors instead of prompting when input is required. Useful in CI, piped output, or environments where TTY detection is unreliable. |
|
|
211
|
+
| `--headless` | `boolean` | ❌ | — | — | Use when logging in from a machine that has no browser. Prints a login link to open elsewhere, then accepts the pasted loopback callback URL. |
|
|
211
212
|
|
|
212
213
|
**Usage:**
|
|
213
214
|
|
|
214
215
|
```bash
|
|
215
|
-
npx zapier-sdk login [--name] [--timeout] [--use-approvals] [--non-interactive]
|
|
216
|
+
npx zapier-sdk login [--name] [--timeout] [--use-approvals] [--non-interactive] [--headless]
|
|
216
217
|
```
|
|
217
218
|
|
|
218
219
|
#### `logout`
|