@zapier/zapier-sdk-cli 0.68.0 → 0.69.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,17 @@
1
1
  # @zapier/zapier-sdk-cli
2
2
 
3
+ ## 0.69.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 67db455: Added the interactive `zapier-sdk setup` command for guided SDK installation, authentication, connection discovery, a Slack proof, and connected-app ideas in your AI agent.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [67db455]
12
+ - @zapier/zapier-sdk@0.92.1
13
+ - @zapier/zapier-sdk-mcp@0.18.22
14
+
3
15
  ## 0.68.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -101,6 +101,7 @@
101
101
  - [`get-login-config-path`](#get-login-config-path)
102
102
  - [`init`](#init)
103
103
  - [`mcp`](#mcp)
104
+ - [`setup`](#setup)
104
105
 
105
106
  ## Quick Start
106
107
 
@@ -120,6 +121,12 @@ npx @zapier/zapier-sdk-cli init my-zapier-app --non-interactive
120
121
 
121
122
  _For existing projects._
122
123
 
124
+ Run the guided setup to add undeclared Zapier SDK dependencies, authenticate, and inspect your connected apps:
125
+
126
+ ```bash
127
+ npx @zapier/zapier-sdk-cli setup
128
+ ```
129
+
123
130
  If you already have a project and want to add the CLI as a dependency:
124
131
 
125
132
  ```bash
@@ -1817,3 +1824,13 @@ Start MCP server for Zapier SDK
1817
1824
  ```bash
1818
1825
  npx zapier-sdk mcp [--port]
1819
1826
  ```
1827
+
1828
+ #### `setup`
1829
+
1830
+ Set up the Zapier SDK in an existing or new project
1831
+
1832
+ **Usage:**
1833
+
1834
+ ```bash
1835
+ npx zapier-sdk setup
1836
+ ```