@zapier/zapier-sdk-cli 0.60.0 → 0.61.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/CHANGELOG.md +16 -0
- package/README.md +2 -1
- package/dist/cli.cjs +514 -201
- package/dist/cli.mjs +515 -202
- package/dist/experimental.cjs +329 -195
- package/dist/experimental.d.mts +3 -3
- package/dist/experimental.d.ts +3 -3
- package/dist/experimental.mjs +329 -195
- package/dist/{sdk-SOLizjno.d.mts → extensions-DXyB9Vsr.d.mts} +11 -2
- package/dist/{sdk-SOLizjno.d.ts → extensions-DXyB9Vsr.d.ts} +11 -2
- package/dist/index.cjs +330 -196
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +330 -196
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @zapier/zapier-sdk-cli
|
|
2
2
|
|
|
3
|
+
## 0.61.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5e2cf0d: Internal refactoring of interactive parameter resolution. No change to existing commands.
|
|
8
|
+
- Updated dependencies [5e2cf0d]
|
|
9
|
+
- Updated dependencies [5e2cf0d]
|
|
10
|
+
- @zapier/zapier-sdk-mcp@0.16.1
|
|
11
|
+
- @zapier/zapier-sdk@0.80.0
|
|
12
|
+
|
|
13
|
+
## 0.61.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- fcc3c01: Add headless login mode to print a login URL and accept a pasted OAuth callback URL.
|
|
18
|
+
|
|
3
19
|
## 0.60.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
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`
|