Skip to content

Commit ffa1975

Browse files
authored
chore: add type for filtering by workflow run ids to messages (#88)
1 parent d78c0d1 commit ffa1975

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@knocklabs/node",
3-
"version": "0.6.17",
3+
"version": "0.6.18",
44
"description": "Library for interacting with the Knock API",
55
"homepage": "https://github.com/knocklabs/knock-node",
66
"author": "@knocklabs",

src/resources/messages/interfaces.ts

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ export interface ListMessagesOptions extends PaginationOptions {
5050
"inserted_at.gte"?: string;
5151
"inserted_at.lt"?: string;
5252
"inserted_at.lte"?: string;
53+
workflow_run_id?: string;
54+
workflow_recipient_run_id?: string;
5355
}
5456

5557
export interface ListMessageActivitiesOptions extends PaginationOptions {

0 commit comments

Comments
 (0)