Skip to content

Commit 988aaf9

Browse files
authored
fix(KNO-7439): engagement_status in BulkUpdateMessagesInChannelProperties type (#319)
1 parent aaab65b commit 988aaf9

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

Diff for: .changeset/poor-colts-work.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@knocklabs/client": patch
3+
---
4+
5+
fix: engagement_status in BulkUpdateMessagesInChannelProperties type

Diff for: packages/client/src/clients/messages/interfaces.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,15 @@ export type BulkUpdateMessagesInChannelProperties = {
4747
status: "seen" | "read" | "archive";
4848
options: {
4949
user_ids?: string[];
50-
engagement_status?: "seen" | "read" | "unseen" | "unread";
50+
engagement_status?:
51+
| "seen"
52+
| "read"
53+
| "archived"
54+
| "unseen"
55+
| "unread"
56+
| "unarchived"
57+
| "interacted"
58+
| "link_clicked";
5159
archived?: "exclude" | "include" | "only";
5260
has_tenant?: boolean;
5361
tenants?: string[];

0 commit comments

Comments
 (0)