diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-02-08 13:19:29 -0500 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-02-08 13:19:29 -0500 |
| commit | 7a8abbba6abcfea29ec8b5f267da10183bdd2fec (patch) | |
| tree | 41685dc914f13c66feca1fe1540167bf1bc4fc97 | |
| parent | make convertAttachment match file->attachment schema (diff) | |
| download | sharkey-7a8abbba6abcfea29ec8b5f267da10183bdd2fec.tar.gz sharkey-7a8abbba6abcfea29ec8b5f267da10183bdd2fec.tar.bz2 sharkey-7a8abbba6abcfea29ec8b5f267da10183bdd2fec.zip | |
regenerate misskey-js
| -rw-r--r-- | packages/misskey-js/src/autogen/types.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/misskey-js/src/autogen/types.ts b/packages/misskey-js/src/autogen/types.ts index c7268ade6a..89b7921513 100644 --- a/packages/misskey-js/src/autogen/types.ts +++ b/packages/misskey-js/src/autogen/types.ts @@ -29686,7 +29686,9 @@ export type operations = { isBlocked: boolean; isMuted: boolean; isRenoteMuted: boolean; - }, { + isInstanceMuted?: boolean; + memo?: string | null; + }, ({ /** Format: id */ id: string; isFollowing: boolean; @@ -29697,7 +29699,9 @@ export type operations = { isBlocked: boolean; isMuted: boolean; isRenoteMuted: boolean; - }[]]>; + isInstanceMuted?: boolean; + memo?: string | null; + })[]]>; }; }; /** @description Client error */ |