Fix feed pagination on user profiles

This commit is contained in:
Paul Frazee 2022-09-28 17:02:55 -05:00
parent b4ad0cff4b
commit cb5a575bc8
7 changed files with 12 additions and 9 deletions

View file

@ -10935,6 +10935,9 @@ var methodSchemas = [
"indexedAt"
],
properties: {
cursor: {
type: "string"
},
uri: {
type: "string"
},

File diff suppressed because one or more lines are too long

View file

@ -12,6 +12,7 @@ export interface OutputSchema {
feed: FeedItem[];
}
export interface FeedItem {
cursor?: string;
uri: string;
author: User;
repostedBy?: User;

File diff suppressed because one or more lines are too long