@zapier/zapier-sdk-cli 0.52.7 → 0.52.9

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,23 @@
1
1
  # @zapier/zapier-sdk-cli
2
2
 
3
+ ## 0.52.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 913aa6b: Add the workflow-version experimental code-substrate plugins: `publishWorkflowVersion`, `listWorkflowVersions`, and `getWorkflowVersion`. All three are registered only in `@zapier/zapier-sdk/experimental`; the stable subpath does not expose them. `listWorkflowVersions` is paginated (cursor + pageSize); `publishWorkflowVersion` POSTs `source_files` (filename → contents) plus optional `dependencies`, `zapier_durable_version`, and `enabled` (defaults to true) to publish a new version; `getWorkflowVersion` returns the full version state including source files. Handlers pass API responses through verbatim (no client-side `.parse()` re-emission) so callers see any richer fields the server adds later without an SDK release. Adds `workflowVersionIdResolver` — a dependent resolver scoped to a parent workflow, mirrored on `tableRecordIdResolver`'s shape — so commands that take a version id present an interactive picker via `sdk.listWorkflowVersions({ workflow })` in the CLI. All ID inputs are UUID-validated at the boundary so non-UUID strings fail with a clear schema error instead of an opaque 500 from the backend's `::uuid` cast.
8
+ - Updated dependencies [913aa6b]
9
+ - @zapier/zapier-sdk@0.64.0
10
+ - @zapier/zapier-sdk-mcp@0.13.18
11
+
12
+ ## 0.52.8
13
+
14
+ ### Patch Changes
15
+
16
+ - dfa3cea: Add the durable-run-write experimental code-substrate plugins: `runDurable` and `cancelDurableRun`. Both are registered only in `@zapier/zapier-sdk/experimental`; the stable subpath does not expose them. `runDurable` POSTs to sdkdurableapi `/api/v0/runs` with `source_files` (filename → contents), optional `input`/`dependencies`/`zapier_durable_version`/`connections`/`app_versions`, and a `private` input that maps to `is_private` on the wire. Returns the run ID immediately in `initialized` status — callers that need terminal status poll via `getDurableRun`; no built-in polling. `cancelDurableRun` POSTs to `/api/v0/runs/:id/cancel`, returns `{ id, status: "cancelled" }` on success, and propagates `ZapierNotFoundError` (404) and `ZapierConflictError` (409 — run already terminal) so callers can distinguish those outcomes. `runDurable` passes the API response through verbatim (no client-side `.parse()` re-emission) so callers see any richer fields the server adds later without an SDK release. Input field naming follows the in-tree convention (`run` rather than `runId`); UUID-validated at the input boundary. `cancelDurableRun` reuses `durableRunIdResolver` from the reads MR for ID pickers.
17
+ - Updated dependencies [dfa3cea]
18
+ - @zapier/zapier-sdk@0.63.0
19
+ - @zapier/zapier-sdk-mcp@0.13.17
20
+
3
21
  ## 0.52.7
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -26,14 +26,19 @@
26
26
  - [`delete-client-credentials`](#delete-client-credentials)
27
27
  - [`list-client-credentials`](#list-client-credentials)
28
28
  - [Code Workflows (Experimental)](#code-workflows-experimental)
29
+ - [`cancel-durable-run`](#cancel-durable-run--experimental)
29
30
  - [`create-workflow`](#create-workflow--experimental)
30
31
  - [`delete-workflow`](#delete-workflow--experimental)
31
32
  - [`disable-workflow`](#disable-workflow--experimental)
32
33
  - [`enable-workflow`](#enable-workflow--experimental)
33
34
  - [`get-durable-run`](#get-durable-run--experimental)
34
35
  - [`get-workflow`](#get-workflow--experimental)
36
+ - [`get-workflow-version`](#get-workflow-version--experimental)
35
37
  - [`list-durable-runs`](#list-durable-runs--experimental)
38
+ - [`list-workflow-versions`](#list-workflow-versions--experimental)
36
39
  - [`list-workflows`](#list-workflows--experimental)
40
+ - [`publish-workflow-version`](#publish-workflow-version--experimental)
41
+ - [`run-durable`](#run-durable--experimental)
37
42
  - [`update-workflow`](#update-workflow--experimental)
38
43
  - [Connections](#connections)
39
44
  - [`find-first-connection`](#find-first-connection)
@@ -437,6 +442,22 @@ npx zapier-sdk list-client-credentials [--page-size] [--max-items] [--cursor]
437
442
 
438
443
  > ℹ️ **Experimental.** Run commands via the `zapier-sdk-experimental` binary, pass `--experimental` to `zapier-sdk`, or set `ZAPIER_EXPERIMENTAL=true` in the environment. Flags and behavior may change between versions.
439
444
 
445
+ #### `cancel-durable-run` 🧪 _experimental_
446
+
447
+ Cancel a run-once durable run in initialized or started status. Returns 409 if the run is already terminal.
448
+
449
+ **Options:**
450
+
451
+ | Option | Type | Required | Default | Possible Values | Description |
452
+ | ------- | -------- | -------- | ------- | --------------- | -------------- |
453
+ | `<run>` | `string` | ✅ | — | — | Durable run ID |
454
+
455
+ **Usage:**
456
+
457
+ ```bash
458
+ npx zapier-sdk cancel-durable-run <run>
459
+ ```
460
+
440
461
  #### `create-workflow` 🧪 _experimental_
441
462
 
442
463
  Create a durable workflow container. Starts disabled with no version; publish a version to add code.
@@ -534,6 +555,23 @@ Get a durable workflow with its current version details and trigger claim status
534
555
  npx zapier-sdk get-workflow <workflow>
535
556
  ```
536
557
 
558
+ #### `get-workflow-version` 🧪 _experimental_
559
+
560
+ Get full details of a workflow version including source files
561
+
562
+ **Options:**
563
+
564
+ | Option | Type | Required | Default | Possible Values | Description |
565
+ | ------------ | -------- | -------- | ------- | --------------- | ------------------- |
566
+ | `<workflow>` | `string` | ✅ | — | — | Durable workflow ID |
567
+ | `<version>` | `string` | ✅ | — | — | Workflow version ID |
568
+
569
+ **Usage:**
570
+
571
+ ```bash
572
+ npx zapier-sdk get-workflow-version <workflow> <version>
573
+ ```
574
+
537
575
  #### `list-durable-runs` 🧪 _experimental_
538
576
 
539
577
  List run-once durable runs for the authenticated account, newest first
@@ -552,6 +590,25 @@ List run-once durable runs for the authenticated account, newest first
552
590
  npx zapier-sdk list-durable-runs [--page-size] [--cursor] [--max-items]
553
591
  ```
554
592
 
593
+ #### `list-workflow-versions` 🧪 _experimental_
594
+
595
+ List published versions for a workflow, newest first
596
+
597
+ **Options:**
598
+
599
+ | Option | Type | Required | Default | Possible Values | Description |
600
+ | ------------- | -------- | -------- | ------- | --------------- | ------------------------------------------------- |
601
+ | `<workflow>` | `string` | ✅ | — | — | Durable workflow ID |
602
+ | `--page-size` | `number` | ❌ | — | — | Number of versions per page (max 100) |
603
+ | `--cursor` | `string` | ❌ | — | — | Pagination cursor |
604
+ | `--max-items` | `number` | ❌ | — | — | Maximum total versions to return across all pages |
605
+
606
+ **Usage:**
607
+
608
+ ```bash
609
+ npx zapier-sdk list-workflow-versions <workflow> [--page-size] [--cursor] [--max-items]
610
+ ```
611
+
555
612
  #### `list-workflows` 🧪 _experimental_
556
613
 
557
614
  List all active durable workflows for the authenticated account
@@ -570,6 +627,48 @@ List all active durable workflows for the authenticated account
570
627
  npx zapier-sdk list-workflows [--page-size] [--max-items] [--cursor]
571
628
  ```
572
629
 
630
+ #### `publish-workflow-version` 🧪 _experimental_
631
+
632
+ Publish a new version of a durable workflow. Enables the workflow by default.
633
+
634
+ **Options:**
635
+
636
+ | Option | Type | Required | Default | Possible Values | Description |
637
+ | -------------------------- | --------- | -------- | ------- | --------------- | --------------------------------------------------------------------------------------------------------------- |
638
+ | `<workflow>` | `string` | ✅ | — | — | Durable workflow ID |
639
+ | `<source_files>` | `object` | ✅ | — | — | Source files keyed by filename → contents |
640
+ | `--dependencies` | `object` | ❌ | — | — | Optional npm package dependencies |
641
+ | `--zapier_durable_version` | `string` | ❌ | — | — | Exact semver of @zapier/zapier-durable to use (e.g. "1.2.3"). Defaults to server-configured version if omitted. |
642
+ | `--enabled` | `boolean` | ❌ | — | — | Enable the workflow after publishing. Defaults to true; pass false to publish without enabling. |
643
+
644
+ **Usage:**
645
+
646
+ ```bash
647
+ npx zapier-sdk publish-workflow-version <workflow> <source_files> [--dependencies] [--zapier_durable_version] [--enabled]
648
+ ```
649
+
650
+ #### `run-durable` 🧪 _experimental_
651
+
652
+ Run a workflow source file as a run-once durable run on sdkdurableapi (no deployed workflow required). Returns the run ID immediately; poll via getDurableRun for terminal status.
653
+
654
+ **Options:**
655
+
656
+ | Option | Type | Required | Default | Possible Values | Description |
657
+ | -------------------------- | --------- | -------- | ------- | --------------- | --------------------------------------------------------------------------------------------------------------- |
658
+ | `<source_files>` | `object` | ✅ | — | — | Source files keyed by filename → contents |
659
+ | `--input` | `string` | ❌ | — | — | Input data passed to the run |
660
+ | `--dependencies` | `object` | ❌ | — | — | Optional npm package dependencies |
661
+ | `--zapier_durable_version` | `string` | ❌ | — | — | Exact semver of @zapier/zapier-durable to use (e.g. "1.2.3"). Defaults to server-configured version if omitted. |
662
+ | `--connections` | `object` | ❌ | — | — | Named connection aliases. Maps alias names to Zapier connection IDs. |
663
+ | `--app_versions` | `object` | ❌ | — | — | Pinned app versions. Maps app keys (slugs) to implementation names and versions. |
664
+ | `--private` | `boolean` | ❌ | — | — | Only the creating user can see the run (default false) |
665
+
666
+ **Usage:**
667
+
668
+ ```bash
669
+ npx zapier-sdk run-durable <source_files> [--input] [--dependencies] [--zapier_durable_version] [--connections] [--app_versions] [--private]
670
+ ```
671
+
573
672
  #### `update-workflow` 🧪 _experimental_
574
673
 
575
674
  Update a durable workflow's name and/or description
package/dist/cli.cjs CHANGED
@@ -1572,7 +1572,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
1572
1572
 
1573
1573
  // package.json
1574
1574
  var package_default = {
1575
- version: "0.52.7"};
1575
+ version: "0.52.9"};
1576
1576
 
1577
1577
  // src/telemetry/builders.ts
1578
1578
  function createCliBaseEvent(context = {}) {
@@ -6653,7 +6653,7 @@ var watchTriggerInboxCliPlugin = zapierSdk.definePlugin(
6653
6653
  // package.json with { type: 'json' }
6654
6654
  var package_default2 = {
6655
6655
  name: "@zapier/zapier-sdk-cli",
6656
- version: "0.52.7"};
6656
+ version: "0.52.9"};
6657
6657
 
6658
6658
  // src/sdk.ts
6659
6659
  zapierSdk.injectCliLogin(login_exports);
package/dist/cli.mjs CHANGED
@@ -1530,7 +1530,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
1530
1530
 
1531
1531
  // package.json
1532
1532
  var package_default = {
1533
- version: "0.52.7"};
1533
+ version: "0.52.9"};
1534
1534
 
1535
1535
  // src/telemetry/builders.ts
1536
1536
  function createCliBaseEvent(context = {}) {
@@ -6611,7 +6611,7 @@ var watchTriggerInboxCliPlugin = definePlugin(
6611
6611
  // package.json with { type: 'json' }
6612
6612
  var package_default2 = {
6613
6613
  name: "@zapier/zapier-sdk-cli",
6614
- version: "0.52.7"};
6614
+ version: "0.52.9"};
6615
6615
 
6616
6616
  // src/sdk.ts
6617
6617
  injectCliLogin(login_exports);
@@ -4013,7 +4013,7 @@ var watchTriggerInboxCliPlugin = zapierSdk.definePlugin(
4013
4013
  // package.json with { type: 'json' }
4014
4014
  var package_default = {
4015
4015
  name: "@zapier/zapier-sdk-cli",
4016
- version: "0.52.7"};
4016
+ version: "0.52.9"};
4017
4017
 
4018
4018
  // src/experimental.ts
4019
4019
  experimental.injectCliLogin(login_exports);
@@ -3977,7 +3977,7 @@ var watchTriggerInboxCliPlugin = definePlugin(
3977
3977
  // package.json with { type: 'json' }
3978
3978
  var package_default = {
3979
3979
  name: "@zapier/zapier-sdk-cli",
3980
- version: "0.52.7"};
3980
+ version: "0.52.9"};
3981
3981
 
3982
3982
  // src/experimental.ts
3983
3983
  injectCliLogin(login_exports);
package/dist/index.cjs CHANGED
@@ -4012,7 +4012,7 @@ zapierSdk.definePlugin(
4012
4012
  // package.json with { type: 'json' }
4013
4013
  var package_default = {
4014
4014
  name: "@zapier/zapier-sdk-cli",
4015
- version: "0.52.7"};
4015
+ version: "0.52.9"};
4016
4016
 
4017
4017
  // src/sdk.ts
4018
4018
  zapierSdk.injectCliLogin(login_exports);
@@ -4040,7 +4040,7 @@ function createZapierCliSdk(options = {}) {
4040
4040
 
4041
4041
  // package.json
4042
4042
  var package_default2 = {
4043
- version: "0.52.7"};
4043
+ version: "0.52.9"};
4044
4044
 
4045
4045
  // src/telemetry/builders.ts
4046
4046
  function createCliBaseEvent(context = {}) {
package/dist/index.mjs CHANGED
@@ -3976,7 +3976,7 @@ definePlugin(
3976
3976
  // package.json with { type: 'json' }
3977
3977
  var package_default = {
3978
3978
  name: "@zapier/zapier-sdk-cli",
3979
- version: "0.52.7"};
3979
+ version: "0.52.9"};
3980
3980
 
3981
3981
  // src/sdk.ts
3982
3982
  injectCliLogin(login_exports);
@@ -4004,7 +4004,7 @@ function createZapierCliSdk(options = {}) {
4004
4004
 
4005
4005
  // package.json
4006
4006
  var package_default2 = {
4007
- version: "0.52.7"};
4007
+ version: "0.52.9"};
4008
4008
 
4009
4009
  // src/telemetry/builders.ts
4010
4010
  function createCliBaseEvent(context = {}) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk-cli",
3
- "version": "0.52.7",
3
+ "version": "0.52.9",
4
4
  "description": "Command line interface for Zapier SDK",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",