@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 +12 -0
- package/README.md +17 -0
- package/dist/cli.cjs +1595 -327
- package/dist/cli.mjs +1596 -330
- package/dist/experimental.cjs +1793 -30
- package/dist/experimental.d.mts +1 -1
- package/dist/experimental.d.ts +1 -1
- package/dist/experimental.mjs +1791 -33
- package/dist/{extensions-CU5Oy_Wv.d.mts → extensions-DSCQgX9d.d.mts} +177 -2
- package/dist/{extensions-CU5Oy_Wv.d.ts → extensions-DSCQgX9d.d.ts} +177 -2
- package/dist/index.cjs +1794 -33
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1790 -34
- package/package.json +6 -4
- package/templates/setup/zapier-slack-test.mjs +38 -0
- package/templates/setup/zapier-slack-test.ts +38 -0
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
|
+
```
|