diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-03-02 13:46:28 -0500 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-03-02 13:46:28 -0500 |
| commit | 86a7d33f3f86c7c452fbb6b90884ffd9ef20031d (patch) | |
| tree | 1803165dc1646fb199b9e095b0f7bf23312e598d | |
| parent | don't record deleted note, flash, page, or gallery post in modlog (diff) | |
| download | sharkey-86a7d33f3f86c7c452fbb6b90884ffd9ef20031d.tar.gz sharkey-86a7d33f3f86c7c452fbb6b90884ffd9ef20031d.tar.bz2 sharkey-86a7d33f3f86c7c452fbb6b90884ffd9ef20031d.zip | |
fix rebase error
| -rw-r--r-- | packages/misskey-js/src/consts.ts | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/packages/misskey-js/src/consts.ts b/packages/misskey-js/src/consts.ts index f6d3d682af..137446e49f 100644 --- a/packages/misskey-js/src/consts.ts +++ b/packages/misskey-js/src/consts.ts @@ -502,6 +502,60 @@ export type ModerationLogPayloads = { id: string; host: string; }; + + clearUserFiles: { + userId: string; + userUsername: string; + userHost: string | null; + count: number; + }; + nsfwUser: { + userId: string; + userUsername: string; + userHost: string | null; + }; + unNsfwUser: { + userId: string; + userUsername: string; + userHost: string | null; + }; + silenceUser: { + userId: string; + userUsername: string; + userHost: string | null; + }; + unSilenceUser: { + userId: string; + userUsername: string; + userHost: string | null; + }; + createAccount: { + userId: string; + userUsername: string; + }; + clearRemoteFiles: Record<string, never>; + clearOwnerlessFiles: { + count: number; + }; + updateCustomEmojis: { + ids: string[], + category?: string | null, + license?: string | null, + setAliases?: string[], + addAliases?: string[], + delAliases?: string[], + }; + importCustomEmojis: { + fileId: string, + fileName: string, + }; + clearInstanceFiles: { + host: string; + count: number; + }; + severFollowRelations: { + host: string; + }; createPromo: { noteId: string, noteUserId: string; |