From 9bb31e3ff8fb682b570c26fc0252ba7a087e0887 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 23 Mar 2021 18:53:59 -0400 Subject: [PATCH] Adding saved_only to GetComments and GetPosts --- src/interfaces/api/comment.ts | 1 + src/interfaces/api/post.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/interfaces/api/comment.ts b/src/interfaces/api/comment.ts index f4bb64c..078a285 100644 --- a/src/interfaces/api/comment.ts +++ b/src/interfaces/api/comment.ts @@ -73,6 +73,7 @@ export interface GetComments { limit?: number; community_id?: number; community_name?: string; + saved_only: boolean; auth?: string; } diff --git a/src/interfaces/api/post.ts b/src/interfaces/api/post.ts index 11b4b85..48acbef 100644 --- a/src/interfaces/api/post.ts +++ b/src/interfaces/api/post.ts @@ -44,6 +44,7 @@ export interface GetPosts { limit?: number; community_id?: number; community_name?: string; + saved_only: boolean; auth?: string; }