From b818da3b1cb6e05e1bb6e3f2e52d42a00327ff61 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 27 May 2021 15:19:21 +0900 Subject: [PATCH] Update endpoints.ts --- src/endpoints.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/endpoints.ts b/src/endpoints.ts index 6c240259f..dbd6212d7 100644 --- a/src/endpoints.ts +++ b/src/endpoints.ts @@ -280,9 +280,9 @@ export type Endpoints = { 'notes/favorites/create': { req: TODO; res: TODO; }; 'notes/favorites/delete': { req: { noteId: Note['id']; }; res: null; }; 'notes/featured': { req: TODO; res: Note[]; }; - 'notes/global-timeline': { req: TODO; res: Note[]; }; - 'notes/hybrid-timeline': { req: TODO; res: Note[]; }; - 'notes/local-timeline': { req: TODO; res: Note[]; }; + 'notes/global-timeline': { req: { limit?: number; sinceId?: Note['id']; untilId?: Note['id']; sinceDate?: number; untilDate?: number; }; res: Note[]; }; + 'notes/hybrid-timeline': { req: { limit?: number; sinceId?: Note['id']; untilId?: Note['id']; sinceDate?: number; untilDate?: number; }; res: Note[]; }; + 'notes/local-timeline': { req: { limit?: number; sinceId?: Note['id']; untilId?: Note['id']; sinceDate?: number; untilDate?: number; }; res: Note[]; }; 'notes/mentions': { req: TODO; res: Note[]; }; 'notes/polls/recommendation': { req: TODO; res: TODO; }; 'notes/polls/vote': { req: TODO; res: TODO; }; @@ -295,7 +295,7 @@ export type Endpoints = { 'notes/search': { req: TODO; res: TODO; }; 'notes/show': { req: { noteId: Note['id']; }; res: Note; }; 'notes/state': { req: TODO; res: TODO; }; - 'notes/timeline': { req: TODO; res: Note[]; }; + 'notes/timeline': { req: { limit?: number; sinceId?: Note['id']; untilId?: Note['id']; sinceDate?: number; untilDate?: number; }; res: Note[]; }; 'notes/unrenote': { req: TODO; res: TODO; }; 'notes/user-list-timeline': { req: TODO; res: TODO; }; 'notes/watching/create': { req: TODO; res: TODO; };