@zapier/zapier-sdk-cli 0.59.3 → 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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @zapier/zapier-sdk-cli
2
2
 
3
+ ## 0.61.0
4
+
5
+ ### Minor Changes
6
+
7
+ - fcc3c01: Add headless login mode to print a login URL and accept a pasted OAuth callback URL.
8
+
9
+ ## 0.60.0
10
+
11
+ ### Minor Changes
12
+
13
+ - d67227b: Display trusted SDK deprecation notices from Zapier API responses. The SDK sniffs `zapier-sdk-deprecation-*` response headers (never on relay responses), warns once per notice id per process — with no opt-out — and emits an `api:deprecation_notice` event for wrappers. The CLI additionally renders notices as a boxed stderr warning after command output, and the MCP server attaches them to every tool result so agents relay the warning to users.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [d67227b]
18
+ - @zapier/zapier-sdk@0.79.0
19
+ - @zapier/zapier-sdk-mcp@0.16.0
20
+
3
21
  ## 0.59.3
4
22
 
5
23
  ### Patch 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`