Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.31.1"
".": "1.32.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <support@knock.app>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 3 additions & 2 deletions src/resources/workflow-recipient-runs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.31.1'; // x-release-please-version
export const VERSION = '1.32.0'; // x-release-please-version
Loading