summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-04-08 14:39:54 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-04-08 14:39:54 +0900
commit65584f21bb15ca40db04c02ea5d38d81c1a69073 (patch)
tree979402970fcf548f7347bf216a825a27b48c8529
parentUpdate misskey-js.api.md (diff)
downloadmisskey-65584f21bb15ca40db04c02ea5d38d81c1a69073.tar.gz
misskey-65584f21bb15ca40db04c02ea5d38d81c1a69073.tar.bz2
misskey-65584f21bb15ca40db04c02ea5d38d81c1a69073.zip
Update misskey-js.api.md
-rw-r--r--packages/misskey-js/etc/misskey-js.api.md29
1 files changed, 17 insertions, 12 deletions
diff --git a/packages/misskey-js/etc/misskey-js.api.md b/packages/misskey-js/etc/misskey-js.api.md
index e57484be6b..67d12000b8 100644
--- a/packages/misskey-js/etc/misskey-js.api.md
+++ b/packages/misskey-js/etc/misskey-js.api.md
@@ -166,8 +166,6 @@ export type Channels = {
readAllAntennas: () => void;
unreadAntenna: (payload: Antenna) => void;
readAllAnnouncements: () => void;
- readAllChannels: () => void;
- unreadChannel: (payload: Note['id']) => void;
myTokenRegenerated: () => void;
reversiNoInvites: () => void;
reversiInvited: (payload: FIXME) => void;
@@ -1355,6 +1353,14 @@ export type Endpoints = {
req: TODO;
res: TODO;
};
+ 'i/move': {
+ req: TODO;
+ res: TODO;
+ };
+ 'i/known-as': {
+ req: TODO;
+ res: TODO;
+ };
'i/notifications': {
req: {
limit?: number;
@@ -1857,12 +1863,6 @@ export type Endpoints = {
req: NoParams;
res: null;
};
- 'notifications/read': {
- req: {
- notificationId: Notification_2['id'];
- };
- res: null;
- };
'page-push': {
req: {
pageId: Page['id'];
@@ -2361,7 +2361,6 @@ type MeDetailed = UserDetailed & {
hasPendingReceivedFollowRequest: boolean;
hasUnreadAnnouncement: boolean;
hasUnreadAntenna: boolean;
- hasUnreadChannel: boolean;
hasUnreadMentions: boolean;
hasUnreadMessagingMessage: boolean;
hasUnreadNotification: boolean;
@@ -2618,7 +2617,11 @@ export class Stream extends EventEmitter<StreamEvents> {
// (undocumented)
removeSharedConnectionPool(pool: Pool): void;
// (undocumented)
- send(typeOrPayload: any, payload?: any): void;
+ send(typeOrPayload: string): void;
+ // (undocumented)
+ send(typeOrPayload: string, payload: any): void;
+ // (undocumented)
+ send(typeOrPayload: Record<string, any> | any[]): void;
// (undocumented)
state: 'initializing' | 'reconnecting' | 'connected';
// (undocumented)
@@ -2693,6 +2696,8 @@ type UserLite = {
onlineStatus: 'online' | 'active' | 'offline' | 'unknown';
avatarUrl: string;
avatarBlurhash: string;
+ alsoKnownAs: string[];
+ movedToUri: any;
emojis: {
name: string;
url: string;
@@ -2714,8 +2719,8 @@ type UserSorting = '+follower' | '-follower' | '+createdAt' | '-createdAt' | '+u
//
// src/api.types.ts:16:32 - (ae-forgotten-export) The symbol "TODO" needs to be exported by the entry point index.d.ts
// src/api.types.ts:18:25 - (ae-forgotten-export) The symbol "NoParams" needs to be exported by the entry point index.d.ts
-// src/api.types.ts:595:18 - (ae-forgotten-export) The symbol "ShowUserReq" needs to be exported by the entry point index.d.ts
-// src/streaming.types.ts:35:4 - (ae-forgotten-export) The symbol "FIXME" needs to be exported by the entry point index.d.ts
+// src/api.types.ts:596:18 - (ae-forgotten-export) The symbol "ShowUserReq" needs to be exported by the entry point index.d.ts
+// src/streaming.types.ts:33:4 - (ae-forgotten-export) The symbol "FIXME" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)