@zapier/zapier-sdk-cli 0.54.2 → 0.54.3

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,13 @@
1
1
  # @zapier/zapier-sdk-cli
2
2
 
3
+ ## 0.54.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c4df375]
8
+ - @zapier/zapier-sdk@0.69.3
9
+ - @zapier/zapier-sdk-mcp@0.13.27
10
+
3
11
  ## 0.54.2
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -488,15 +488,16 @@ Create a durable workflow container. Starts disabled with no version; publish a
488
488
 
489
489
  **Options:**
490
490
 
491
- | Option | Type | Required | Default | Possible Values | Description |
492
- | --------------- | -------- | -------- | ------- | --------------- | ------------------------------------- |
493
- | `<name>` | `string` | ✅ | — | — | Workflow name |
494
- | `--description` | `string` | ❌ | — | — | Optional description for the workflow |
491
+ | Option | Type | Required | Default | Possible Values | Description |
492
+ | --------------- | --------- | -------- | ------- | --------------- | ----------------------------------------------------------------------------------------------------- |
493
+ | `<name>` | `string` | ✅ | — | — | Workflow name |
494
+ | `--description` | `string` | ❌ | — | — | Optional description for the workflow |
495
+ | `--is_private` | `boolean` | ❌ | — | — | If true, only the creating user can see or manage this workflow. Defaults to false (account-visible). |
495
496
 
496
497
  **Usage:**
497
498
 
498
499
  ```bash
499
- npx zapier-sdk create-workflow <name> [--description]
500
+ npx zapier-sdk create-workflow <name> [--description] [--is_private]
500
501
  ```
501
502
 
502
503
  #### `delete-workflow` 🧪 _experimental_
@@ -709,18 +710,25 @@ Publish a new version of a durable workflow. Enables the workflow by default.
709
710
 
710
711
  **Options:**
711
712
 
712
- | Option | Type | Required | Default | Possible Values | Description |
713
- | -------------------------- | --------- | -------- | ------- | --------------- | --------------------------------------------------------------------------------------------------------------- |
714
- | `<workflow>` | `string` | ✅ | — | — | Durable workflow ID |
715
- | `<source_files>` | `object` | ✅ | — | — | Source files keyed by filename → contents |
716
- | `--dependencies` | `object` | ❌ | — | — | Optional npm package dependencies |
717
- | `--zapier_durable_version` | `string` | ❌ | — | — | Exact semver of @zapier/zapier-durable to use (e.g. "1.2.3"). Defaults to server-configured version if omitted. |
718
- | `--enabled` | `boolean` | ❌ | — | — | Enable the workflow after publishing. Defaults to true; pass false to publish without enabling. |
713
+ | Option | Type | Required | Default | Possible Values | Description |
714
+ | -------------------------- | --------- | -------- | ------- | --------------- | -------------------------------------------------------------------------------------------------------------------- |
715
+ | `<workflow>` | `string` | ✅ | — | — | Durable workflow ID |
716
+ | `<source_files>` | `object` | ✅ | — | — | Source files keyed by filename → contents |
717
+ | `--dependencies` | `object` | ❌ | — | — | Optional npm package dependencies |
718
+ | `--zapier_durable_version` | `string` | ❌ | — | — | Exact semver of @zapier/zapier-durable to use (e.g. "1.2.3"). Defaults to server-configured version if omitted. |
719
+ | `--enabled` | `boolean` | ❌ | — | — | Enable the workflow after publishing. Defaults to true; pass false to publish without enabling. |
720
+ | `--connections` | `object` | ❌ | — | — | Map of connection aliases to Zapier connections used by the workflow. Pass `null` to clear an existing binding. |
721
+ | `--app_versions` | `object` | ❌ | — | — | Map of app keys to pinned app implementation/version used by the workflow. Pass `null` to clear an existing binding. |
722
+ | `--trigger` | `object` | ❌ | — | — | Trigger configuration. When provided, the workflow subscribes to a Zapier trigger; omit for webhook-only workflows. |
723
+ | ​ ↳ `selected_api` | `string` | ✅ | — | — | Zapier app/API identifier (e.g. 'GoogleSheetsAPI') |
724
+ | ​ ↳ `action` | `string` | ✅ | — | — | Trigger action key (e.g. 'new_row') |
725
+ | ​ ↳ `authentication_id` | `string` | ❌ | — | — | Connection ID for the trigger source. Omit or pass null for no-auth triggers (e.g. Schedule by Zapier). |
726
+ | ​ ↳ `params` | `object` | ❌ | — | — | Trigger parameters as a JSON object |
719
727
 
720
728
  **Usage:**
721
729
 
722
730
  ```bash
723
- npx zapier-sdk publish-workflow-version <workflow> <source_files> [--dependencies] [--zapier_durable_version] [--enabled]
731
+ npx zapier-sdk publish-workflow-version <workflow> <source_files> [--dependencies] [--zapier_durable_version] [--enabled] [--connections] [--app_versions] [--trigger]
724
732
  ```
725
733
 
726
734
  #### `run-durable` 🧪 _experimental_
package/dist/cli.cjs CHANGED
@@ -1573,7 +1573,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
1573
1573
 
1574
1574
  // package.json
1575
1575
  var package_default = {
1576
- version: "0.54.2"};
1576
+ version: "0.54.3"};
1577
1577
 
1578
1578
  // src/telemetry/builders.ts
1579
1579
  function createCliBaseEvent(context = {}) {
@@ -7172,7 +7172,7 @@ var watchTriggerInboxCliPlugin = zapierSdk.definePlugin(
7172
7172
  // package.json with { type: 'json' }
7173
7173
  var package_default2 = {
7174
7174
  name: "@zapier/zapier-sdk-cli",
7175
- version: "0.54.2"};
7175
+ version: "0.54.3"};
7176
7176
 
7177
7177
  // src/sdk.ts
7178
7178
  zapierSdk.injectCliLogin(login_exports);
package/dist/cli.mjs CHANGED
@@ -1531,7 +1531,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
1531
1531
 
1532
1532
  // package.json
1533
1533
  var package_default = {
1534
- version: "0.54.2"};
1534
+ version: "0.54.3"};
1535
1535
 
1536
1536
  // src/telemetry/builders.ts
1537
1537
  function createCliBaseEvent(context = {}) {
@@ -7130,7 +7130,7 @@ var watchTriggerInboxCliPlugin = definePlugin(
7130
7130
  // package.json with { type: 'json' }
7131
7131
  var package_default2 = {
7132
7132
  name: "@zapier/zapier-sdk-cli",
7133
- version: "0.54.2"};
7133
+ version: "0.54.3"};
7134
7134
 
7135
7135
  // src/sdk.ts
7136
7136
  injectCliLogin(login_exports);
@@ -4525,7 +4525,7 @@ var watchTriggerInboxCliPlugin = zapierSdk.definePlugin(
4525
4525
  // package.json with { type: 'json' }
4526
4526
  var package_default = {
4527
4527
  name: "@zapier/zapier-sdk-cli",
4528
- version: "0.54.2"};
4528
+ version: "0.54.3"};
4529
4529
 
4530
4530
  // src/experimental.ts
4531
4531
  experimental.injectCliLogin(login_exports);
@@ -4489,7 +4489,7 @@ var watchTriggerInboxCliPlugin = definePlugin(
4489
4489
  // package.json with { type: 'json' }
4490
4490
  var package_default = {
4491
4491
  name: "@zapier/zapier-sdk-cli",
4492
- version: "0.54.2"};
4492
+ version: "0.54.3"};
4493
4493
 
4494
4494
  // src/experimental.ts
4495
4495
  injectCliLogin(login_exports);
package/dist/index.cjs CHANGED
@@ -4524,7 +4524,7 @@ zapierSdk.definePlugin(
4524
4524
  // package.json with { type: 'json' }
4525
4525
  var package_default = {
4526
4526
  name: "@zapier/zapier-sdk-cli",
4527
- version: "0.54.2"};
4527
+ version: "0.54.3"};
4528
4528
 
4529
4529
  // src/sdk.ts
4530
4530
  zapierSdk.injectCliLogin(login_exports);
@@ -4552,7 +4552,7 @@ function createZapierCliSdk(options = {}) {
4552
4552
 
4553
4553
  // package.json
4554
4554
  var package_default2 = {
4555
- version: "0.54.2"};
4555
+ version: "0.54.3"};
4556
4556
 
4557
4557
  // src/telemetry/builders.ts
4558
4558
  function createCliBaseEvent(context = {}) {
package/dist/index.mjs CHANGED
@@ -4488,7 +4488,7 @@ definePlugin(
4488
4488
  // package.json with { type: 'json' }
4489
4489
  var package_default = {
4490
4490
  name: "@zapier/zapier-sdk-cli",
4491
- version: "0.54.2"};
4491
+ version: "0.54.3"};
4492
4492
 
4493
4493
  // src/sdk.ts
4494
4494
  injectCliLogin(login_exports);
@@ -4516,7 +4516,7 @@ function createZapierCliSdk(options = {}) {
4516
4516
 
4517
4517
  // package.json
4518
4518
  var package_default2 = {
4519
- version: "0.54.2"};
4519
+ version: "0.54.3"};
4520
4520
 
4521
4521
  // src/telemetry/builders.ts
4522
4522
  function createCliBaseEvent(context = {}) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk-cli",
3
- "version": "0.54.2",
3
+ "version": "0.54.3",
4
4
  "description": "Command line interface for Zapier SDK",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",