@zapier/zapier-sdk-cli 0.77.8 → 0.78.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 +17 -0
- package/README.md +3 -3
- package/dist/cli.cjs +462 -143
- package/dist/cli.mjs +462 -143
- package/dist/experimental.cjs +561 -242
- package/dist/experimental.d.mts +1 -1
- package/dist/experimental.d.ts +1 -1
- package/dist/experimental.mjs +560 -241
- package/dist/{extensions-DDUiDbHe.d.mts → extensions-B2RUri85.d.mts} +6 -2
- package/dist/{extensions-DDUiDbHe.d.ts → extensions-B2RUri85.d.ts} +6 -2
- package/dist/index.cjs +562 -243
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +561 -242
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @zapier/zapier-sdk-cli
|
|
2
2
|
|
|
3
|
+
## 0.78.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 69819a2: `zapier-sdk login` and the account step in `zapier-sdk setup` now show a searchable chooser for stored accounts and switch between them without revoking credentials. The current account is selected by default, while adding an account preserves existing credentials. `login --name` now activates matching stored credentials or creates a new account with that name; interactive login asks for confirmation before creating it. Stored-account switching is skipped or rejected when SDK options or environment variables provide credentials that take precedence.
|
|
8
|
+
|
|
9
|
+
## 0.77.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [1ec9410]
|
|
14
|
+
- Updated dependencies [1ec9410]
|
|
15
|
+
- Updated dependencies [1ec9410]
|
|
16
|
+
- @zapier/kitcore@0.19.0
|
|
17
|
+
- @zapier/zapier-sdk@0.104.0
|
|
18
|
+
- @zapier/zapier-sdk-mcp@0.21.10
|
|
19
|
+
|
|
3
20
|
## 0.77.8
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -187,8 +187,8 @@ These options are available for all commands:
|
|
|
187
187
|
| `--debug` | | Enable debug logging. |
|
|
188
188
|
| `--base-url <url>` | | Base URL for Zapier API endpoints. |
|
|
189
189
|
| `--tracking-base-url <url>` | | Base URL for Zapier tracking endpoints. |
|
|
190
|
-
| `--max-network-retries <count>` | | Max retries for rate-limited
|
|
191
|
-
| `--max-network-retry-delay-seconds <seconds>` | | Max delay in seconds to wait
|
|
190
|
+
| `--max-network-retries <count>` | | Max retries for rate-limited and server-error responses (default: 3). |
|
|
191
|
+
| `--max-network-retry-delay-seconds <seconds>` | | Max delay in seconds to wait between network retries (default: 60). |
|
|
192
192
|
| `--max-concurrent-requests <count>` | | Max concurrent in-flight HTTP requests (default: 200, max: 10000). |
|
|
193
193
|
| `--approval-timeout-seconds <seconds>` | | Timeout in seconds for approval polling. Default: 600 (10 min). |
|
|
194
194
|
| `--max-approval-retries` | | Maximum number of sequential approval rounds per request (one per gating policy) before giving up. Default: 2. |
|
|
@@ -225,7 +225,7 @@ Log in to Zapier to access your account
|
|
|
225
225
|
|
|
226
226
|
| Option | Type | Required | Default | Possible Values | Description |
|
|
227
227
|
| ------------------- | --------- | -------- | ------- | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
228
|
-
| `--name` | `string` | ❌ | — | — |
|
|
228
|
+
| `--name` | `string` | ❌ | — | — | Activate stored credentials with this name. If none exist, create new credentials with this name; interactive login asks for confirmation first. |
|
|
229
229
|
| `--timeout` | `string` | ❌ | — | — | Login timeout in seconds (default: 300) |
|
|
230
230
|
| `--use-approvals` | `boolean` | ❌ | — | — | Require approvals for actions performed with these credentials |
|
|
231
231
|
| `--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. |
|