Fix feed pagination on user profiles
This commit is contained in:
parent
b4ad0cff4b
commit
cb5a575bc8
7 changed files with 12 additions and 9 deletions
3
src/third-party/api/index.js
vendored
3
src/third-party/api/index.js
vendored
|
@ -10935,6 +10935,9 @@ var methodSchemas = [
|
|||
"indexedAt"
|
||||
],
|
||||
properties: {
|
||||
cursor: {
|
||||
type: "string"
|
||||
},
|
||||
uri: {
|
||||
type: "string"
|
||||
},
|
||||
|
|
4
src/third-party/api/index.js.map
vendored
4
src/third-party/api/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue