@zapier/zapier-sdk-cli 0.77.9 → 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 +6 -0
- package/README.md +1 -1
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## 0.77.9
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -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. |
|