summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-03-02 13:46:28 -0500
committerHazelnoot <acomputerdog@gmail.com>2025-03-02 13:46:28 -0500
commit86a7d33f3f86c7c452fbb6b90884ffd9ef20031d (patch)
tree1803165dc1646fb199b9e095b0f7bf23312e598d
parentdon't record deleted note, flash, page, or gallery post in modlog (diff)
downloadsharkey-86a7d33f3f86c7c452fbb6b90884ffd9ef20031d.tar.gz
sharkey-86a7d33f3f86c7c452fbb6b90884ffd9ef20031d.tar.bz2
sharkey-86a7d33f3f86c7c452fbb6b90884ffd9ef20031d.zip
fix rebase error
-rw-r--r--packages/misskey-js/src/consts.ts54
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;