diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 88ae5a8..f16e9b1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.31.1" + ".": "1.32.0" } diff --git a/.stats.yml b/.stats.yml index 0299b17..1fbd43d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 94 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock%2Fknock-3e8f3a4664d48b3d546339018b451a356f8e20c223a2d21e7c3824fad4cddc7b.yml -openapi_spec_hash: c2b6637451a63e39c1f1042c6a7cc7f7 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock%2Fknock-4b8499dddbc5ac767491c492be1629f4f10a17442cf84e13e10fe38b7dcb713c.yml +openapi_spec_hash: 98edfca809c07521259de151d3fc5684 config_hash: 2008af3064bfaa2ba7828708de5d97a8 diff --git a/CHANGELOG.md b/CHANGELOG.md index a5b30c2..66073ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.32.0 (2026-04-22) + +Full Changelog: [v1.31.1...v1.32.0](https://github.com/knocklabs/knock-node/compare/v1.31.1...v1.32.0) + +### Features + +* **api:** api update ([cd73fed](https://github.com/knocklabs/knock-node/commit/cd73fed16de9aa6597f14d2bb89161dd001ac349)) + ## 1.31.1 (2026-04-22) Full Changelog: [v1.31.0...v1.31.1](https://github.com/knocklabs/knock-node/compare/v1.31.0...v1.31.1) diff --git a/package.json b/package.json index a514ed3..0220537 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@knocklabs/node", - "version": "1.31.1", + "version": "1.32.0", "description": "The official TypeScript library for the Knock API", "author": "Knock ", "types": "dist/index.d.ts", diff --git a/src/resources/workflow-recipient-runs.ts b/src/resources/workflow-recipient-runs.ts index 61e42f7..795e627 100644 --- a/src/resources/workflow-recipient-runs.ts +++ b/src/resources/workflow-recipient-runs.ts @@ -102,9 +102,10 @@ export interface WorkflowRecipientRun { workflow_run_id: string; /** - * A recipient of a notification, which is either a user or an object. + * A reference to a recipient, either a user identifier (string) or an object + * reference (ID, collection). */ - actor?: RecipientsAPI.Recipient | null; + actor?: RecipientsAPI.RecipientReference | null; /** * The number of errors encountered during the workflow recipient run. diff --git a/src/version.ts b/src/version.ts index 5060923..49bad0d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.31.1'; // x-release-please-version +export const VERSION = '1.32.0'; // x-release-please-version