@zapier/zapier-sdk-cli 0.55.7 → 0.55.8
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 +9 -0
- package/README.md +12 -12
- package/dist/cli.cjs +2 -2
- package/dist/cli.mjs +2 -2
- package/dist/experimental.cjs +1 -1
- package/dist/experimental.mjs +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @zapier/zapier-sdk-cli
|
|
2
2
|
|
|
3
|
+
## 0.55.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2521624: Rename `createWorkflow`'s `is_private` input to `private` to match `runDurable`, keeping `is_private` as a deprecated alias; the wire field stays `is_private`. Clarify the `run-durable` connections param description to show the required object shape.
|
|
8
|
+
- Updated dependencies [2521624]
|
|
9
|
+
- @zapier/zapier-sdk@0.71.1
|
|
10
|
+
- @zapier/zapier-sdk-mcp@0.13.34
|
|
11
|
+
|
|
3
12
|
## 0.55.7
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -497,12 +497,12 @@ Create a durable workflow container. Starts disabled with no version; publish a
|
|
|
497
497
|
| --------------- | --------- | -------- | ------- | --------------- | ----------------------------------------------------------------------------------------------------- |
|
|
498
498
|
| `<name>` | `string` | ✅ | — | — | Workflow name |
|
|
499
499
|
| `--description` | `string` | ❌ | — | — | Optional description for the workflow |
|
|
500
|
-
| `--
|
|
500
|
+
| `--private` | `boolean` | ❌ | — | — | If true, only the creating user can see or manage this workflow. Defaults to false (account-visible). |
|
|
501
501
|
|
|
502
502
|
**Usage:**
|
|
503
503
|
|
|
504
504
|
```bash
|
|
505
|
-
npx zapier-sdk create-workflow <name> [--description] [--
|
|
505
|
+
npx zapier-sdk create-workflow <name> [--description] [--private]
|
|
506
506
|
```
|
|
507
507
|
|
|
508
508
|
#### `delete-workflow` 🧪 _experimental_
|
|
@@ -742,16 +742,16 @@ Run a workflow source file as a run-once durable run on sdkdurableapi (no deploy
|
|
|
742
742
|
|
|
743
743
|
**Options:**
|
|
744
744
|
|
|
745
|
-
| Option | Type | Required | Default | Possible Values | Description
|
|
746
|
-
| -------------------------- | --------- | -------- | ------- | --------------- |
|
|
747
|
-
| `<source_files>` | `object` | ✅ | — | — | Source files keyed by filename → contents
|
|
748
|
-
| `--input` | `unknown` | ❌ | — | — | Input data passed to the run
|
|
749
|
-
| `--dependencies` | `object` | ❌ | — | — | Optional npm package dependencies
|
|
750
|
-
| `--zapier_durable_version` | `string` | ❌ | — | — | Exact semver of @zapier/zapier-durable to use (e.g. "1.2.3"). Defaults to server-configured version if omitted.
|
|
751
|
-
| `--connections` | `object` | ❌ | — | — | Named connection aliases. Maps alias
|
|
752
|
-
| `--app_versions` | `object` | ❌ | — | — | Pinned app versions. Maps app keys (slugs) to implementation names and versions.
|
|
753
|
-
| `--private` | `boolean` | ❌ | — | — | Only the creating user can see the run (default false)
|
|
754
|
-
| `--notifications` | `array` | ❌ | — | — | Webhook subscribers for run lifecycle events. Each entry specifies a URL and the events it subscribes to.
|
|
745
|
+
| Option | Type | Required | Default | Possible Values | Description |
|
|
746
|
+
| -------------------------- | --------- | -------- | ------- | --------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
|
747
|
+
| `<source_files>` | `object` | ✅ | — | — | Source files keyed by filename → contents |
|
|
748
|
+
| `--input` | `unknown` | ❌ | — | — | Input data passed to the run |
|
|
749
|
+
| `--dependencies` | `object` | ❌ | — | — | Optional npm package dependencies |
|
|
750
|
+
| `--zapier_durable_version` | `string` | ❌ | — | — | Exact semver of @zapier/zapier-durable to use (e.g. "1.2.3"). Defaults to server-configured version if omitted. |
|
|
751
|
+
| `--connections` | `object` | ❌ | — | — | Named connection aliases. Maps each alias to an object holding its Zapier connection ID, e.g. `{ "slack": { "connection_id": "123" } }`. |
|
|
752
|
+
| `--app_versions` | `object` | ❌ | — | — | Pinned app versions. Maps app keys (slugs) to implementation names and versions. |
|
|
753
|
+
| `--private` | `boolean` | ❌ | — | — | Only the creating user can see the run (default false) |
|
|
754
|
+
| `--notifications` | `array` | ❌ | — | — | Webhook subscribers for run lifecycle events. Each entry specifies a URL and the events it subscribes to. |
|
|
755
755
|
|
|
756
756
|
**Usage:**
|
|
757
757
|
|
package/dist/cli.cjs
CHANGED
|
@@ -1576,7 +1576,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
|
|
|
1576
1576
|
|
|
1577
1577
|
// package.json
|
|
1578
1578
|
var package_default = {
|
|
1579
|
-
version: "0.55.
|
|
1579
|
+
version: "0.55.8"};
|
|
1580
1580
|
|
|
1581
1581
|
// src/telemetry/builders.ts
|
|
1582
1582
|
function createCliBaseEvent(context = {}) {
|
|
@@ -7255,7 +7255,7 @@ var watchTriggerInboxCliPlugin = zapierSdk.definePlugin(
|
|
|
7255
7255
|
// package.json with { type: 'json' }
|
|
7256
7256
|
var package_default2 = {
|
|
7257
7257
|
name: "@zapier/zapier-sdk-cli",
|
|
7258
|
-
version: "0.55.
|
|
7258
|
+
version: "0.55.8"};
|
|
7259
7259
|
|
|
7260
7260
|
// src/sdk.ts
|
|
7261
7261
|
zapierSdk.injectCliLogin(login_exports);
|
package/dist/cli.mjs
CHANGED
|
@@ -1533,7 +1533,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
|
|
|
1533
1533
|
|
|
1534
1534
|
// package.json
|
|
1535
1535
|
var package_default = {
|
|
1536
|
-
version: "0.55.
|
|
1536
|
+
version: "0.55.8"};
|
|
1537
1537
|
|
|
1538
1538
|
// src/telemetry/builders.ts
|
|
1539
1539
|
function createCliBaseEvent(context = {}) {
|
|
@@ -7212,7 +7212,7 @@ var watchTriggerInboxCliPlugin = definePlugin(
|
|
|
7212
7212
|
// package.json with { type: 'json' }
|
|
7213
7213
|
var package_default2 = {
|
|
7214
7214
|
name: "@zapier/zapier-sdk-cli",
|
|
7215
|
-
version: "0.55.
|
|
7215
|
+
version: "0.55.8"};
|
|
7216
7216
|
|
|
7217
7217
|
// src/sdk.ts
|
|
7218
7218
|
injectCliLogin(login_exports);
|
package/dist/experimental.cjs
CHANGED
|
@@ -4590,7 +4590,7 @@ var watchTriggerInboxCliPlugin = zapierSdk.definePlugin(
|
|
|
4590
4590
|
// package.json with { type: 'json' }
|
|
4591
4591
|
var package_default = {
|
|
4592
4592
|
name: "@zapier/zapier-sdk-cli",
|
|
4593
|
-
version: "0.55.
|
|
4593
|
+
version: "0.55.8"};
|
|
4594
4594
|
|
|
4595
4595
|
// src/experimental.ts
|
|
4596
4596
|
experimental.injectCliLogin(login_exports);
|
package/dist/experimental.mjs
CHANGED
|
@@ -4554,7 +4554,7 @@ var watchTriggerInboxCliPlugin = definePlugin(
|
|
|
4554
4554
|
// package.json with { type: 'json' }
|
|
4555
4555
|
var package_default = {
|
|
4556
4556
|
name: "@zapier/zapier-sdk-cli",
|
|
4557
|
-
version: "0.55.
|
|
4557
|
+
version: "0.55.8"};
|
|
4558
4558
|
|
|
4559
4559
|
// src/experimental.ts
|
|
4560
4560
|
injectCliLogin(login_exports);
|
package/dist/index.cjs
CHANGED
|
@@ -4589,7 +4589,7 @@ zapierSdk.definePlugin(
|
|
|
4589
4589
|
// package.json with { type: 'json' }
|
|
4590
4590
|
var package_default = {
|
|
4591
4591
|
name: "@zapier/zapier-sdk-cli",
|
|
4592
|
-
version: "0.55.
|
|
4592
|
+
version: "0.55.8"};
|
|
4593
4593
|
|
|
4594
4594
|
// src/sdk.ts
|
|
4595
4595
|
zapierSdk.injectCliLogin(login_exports);
|
|
@@ -4617,7 +4617,7 @@ function createZapierCliSdk(options = {}) {
|
|
|
4617
4617
|
|
|
4618
4618
|
// package.json
|
|
4619
4619
|
var package_default2 = {
|
|
4620
|
-
version: "0.55.
|
|
4620
|
+
version: "0.55.8"};
|
|
4621
4621
|
|
|
4622
4622
|
// src/telemetry/builders.ts
|
|
4623
4623
|
function createCliBaseEvent(context = {}) {
|
package/dist/index.mjs
CHANGED
|
@@ -4553,7 +4553,7 @@ definePlugin(
|
|
|
4553
4553
|
// package.json with { type: 'json' }
|
|
4554
4554
|
var package_default = {
|
|
4555
4555
|
name: "@zapier/zapier-sdk-cli",
|
|
4556
|
-
version: "0.55.
|
|
4556
|
+
version: "0.55.8"};
|
|
4557
4557
|
|
|
4558
4558
|
// src/sdk.ts
|
|
4559
4559
|
injectCliLogin(login_exports);
|
|
@@ -4581,7 +4581,7 @@ function createZapierCliSdk(options = {}) {
|
|
|
4581
4581
|
|
|
4582
4582
|
// package.json
|
|
4583
4583
|
var package_default2 = {
|
|
4584
|
-
version: "0.55.
|
|
4584
|
+
version: "0.55.8"};
|
|
4585
4585
|
|
|
4586
4586
|
// src/telemetry/builders.ts
|
|
4587
4587
|
function createCliBaseEvent(context = {}) {
|