@zapier/zapier-sdk-cli 0.64.1 → 0.65.1
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/AGENTS.md +1 -1
- package/CHANGELOG.md +27 -0
- package/README.md +5 -5
- package/dist/cli.cjs +986 -823
- package/dist/cli.mjs +987 -824
- package/dist/experimental.cjs +867 -745
- package/dist/experimental.d.mts +2 -1
- package/dist/experimental.d.ts +2 -1
- package/dist/experimental.mjs +870 -748
- package/dist/extensions-GB0w0RUO.d.mts +533 -0
- package/dist/extensions-GB0w0RUO.d.ts +533 -0
- package/dist/index.cjs +843 -745
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +843 -745
- package/package.json +3 -3
- package/dist/extensions-N27h0wrp.d.mts +0 -568
- package/dist/extensions-N27h0wrp.d.ts +0 -568
package/AGENTS.md
CHANGED
|
@@ -247,7 +247,7 @@ DEBUG=* npx zapier-sdk list-apps
|
|
|
247
247
|
```bash
|
|
248
248
|
# Where is my login config stored?
|
|
249
249
|
npx zapier-sdk get-login-config-path
|
|
250
|
-
# Output: /Users/you
|
|
250
|
+
# Output (macOS): /Users/you/Library/Preferences/zapier-sdk-cli-nodejs/config.json
|
|
251
251
|
```
|
|
252
252
|
|
|
253
253
|
### Common Issues
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @zapier/zapier-sdk-cli
|
|
2
2
|
|
|
3
|
+
## 0.65.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6201fd4]
|
|
8
|
+
- @zapier/zapier-sdk@0.83.1
|
|
9
|
+
- @zapier/zapier-sdk-mcp@0.18.3
|
|
10
|
+
|
|
11
|
+
## 0.65.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 5f5f028: - A command that invokes a deprecated SDK method now prints a styled
|
|
16
|
+
deprecation notice.
|
|
17
|
+
- The CLI disposes its SDK on exit, so telemetry flushes reliably.
|
|
18
|
+
- `get-connection` now takes its connection as a required positional
|
|
19
|
+
(`get-connection <connection>`) instead of an optional `--connection`
|
|
20
|
+
flag, matching the SDK's now-required locator.
|
|
21
|
+
- No other command-level changes.
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [5f5f028]
|
|
26
|
+
- Updated dependencies [5f5f028]
|
|
27
|
+
- @zapier/zapier-sdk-mcp@0.18.2
|
|
28
|
+
- @zapier/zapier-sdk@0.83.0
|
|
29
|
+
|
|
3
30
|
## 0.64.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -866,18 +866,18 @@ npx zapier-sdk find-unique-connection [app] [--search] [--title] [--owner] [--ac
|
|
|
866
866
|
|
|
867
867
|
#### `get-connection`
|
|
868
868
|
|
|
869
|
-
|
|
869
|
+
Get details for a specific connection
|
|
870
870
|
|
|
871
871
|
**Options:**
|
|
872
872
|
|
|
873
873
|
| Option | Type | Required | Default | Possible Values | Description |
|
|
874
874
|
| -------------- | ---------------- | -------- | ------- | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
875
|
-
|
|
|
875
|
+
| `<connection>` | `string, number` | ✅ | — | — | Connection alias or connection ID (UUID or positive integer). Strings that match a key in the connections map are resolved against it; otherwise the value is used as a connection ID directly. |
|
|
876
876
|
|
|
877
877
|
**Usage:**
|
|
878
878
|
|
|
879
879
|
```bash
|
|
880
|
-
npx zapier-sdk get-connection
|
|
880
|
+
npx zapier-sdk get-connection <connection>
|
|
881
881
|
```
|
|
882
882
|
|
|
883
883
|
#### `get-connection-start-url`
|
|
@@ -1286,7 +1286,7 @@ npx zapier-sdk delete-trigger-inbox <inbox>
|
|
|
1286
1286
|
|
|
1287
1287
|
#### `drain-trigger-inbox`
|
|
1288
1288
|
|
|
1289
|
-
Drain an existing trigger inbox: lease currently-available messages
|
|
1289
|
+
Drain an existing trigger inbox: lease currently-available messages and process them via onMessage. Returns when the inbox is empty, maxMessages is reached, the abort signal fires, or a fatal error rejects.
|
|
1290
1290
|
|
|
1291
1291
|
**Options:**
|
|
1292
1292
|
|
|
@@ -1556,7 +1556,7 @@ npx zapier-sdk update-trigger-inbox <inbox> [--notification-url]
|
|
|
1556
1556
|
|
|
1557
1557
|
#### `watch-trigger-inbox`
|
|
1558
1558
|
|
|
1559
|
-
Continuously consume a trigger inbox: drain currently-available messages
|
|
1559
|
+
Continuously consume a trigger inbox: drain currently-available messages, then subscribe to SSE notifications for new arrivals, until aborted. Stop via the `signal` AbortSignal or by throwing `ZapierAbortDrainSignal` from a handler. Transient drain failures (5xx, 429, network blips) retry indefinitely with bounded backoff; real-time wake-up and drain health warnings print to stderr. Resolves cleanly on abort; rejects on a fatal error or a fail-fast handler error. stdout (including --json NDJSON) is unaffected.
|
|
1560
1560
|
|
|
1561
1561
|
**Options:**
|
|
1562
1562
|
|