From 876d5be545fb360afa2e94b4ff74251433c0b029 Mon Sep 17 00:00:00 2001 From: Billy Ceskavich Date: Thu, 6 Oct 2022 10:43:33 -0400 Subject: [PATCH] feat(kno-2198): add support for 'archived' and 'has_tenant' options for the user feeds API (#16) --- src/resources/users/interfaces.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/resources/users/interfaces.ts b/src/resources/users/interfaces.ts index b995830..166076b 100644 --- a/src/resources/users/interfaces.ts +++ b/src/resources/users/interfaces.ts @@ -26,5 +26,7 @@ export interface BulkIdentifyUser extends IdentifyProperties { export interface UserFeedOptions extends PaginationOptions { source?: string; tenant?: string; + has_tenant?: boolean; + archived?: "include" | "exclude" | "only"; status?: "unread" | "unseen" | "all"; }