summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-10-01 20:53:02 +0900
committerGitHub <noreply@github.com>2024-10-01 20:53:02 +0900
commite9519b02fb1d3abbf97530a60ecb7963f079a925 (patch)
tree1fca2478d38295065111ce771979f71cd02d9d59 /packages
parent:art: (diff)
downloadmisskey-e9519b02fb1d3abbf97530a60ecb7963f079a925.tar.gz
misskey-e9519b02fb1d3abbf97530a60ecb7963f079a925.tar.bz2
misskey-e9519b02fb1d3abbf97530a60ecb7963f079a925.zip
fix(misskey-js): build misskey-js with types (#14665)
Diffstat (limited to 'packages')
-rw-r--r--packages/misskey-js/src/autogen/types.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/misskey-js/src/autogen/types.ts b/packages/misskey-js/src/autogen/types.ts
index 0dff85183f..6aaeabec7b 100644
--- a/packages/misskey-js/src/autogen/types.ts
+++ b/packages/misskey-js/src/autogen/types.ts
@@ -5177,6 +5177,8 @@ export type operations = {
urlPreviewRequireContentLength: boolean;
urlPreviewUserAgent: string | null;
urlPreviewSummaryProxyUrl: string | null;
+ federation: string;
+ federationHosts: string[];
};
};
};
@@ -9428,6 +9430,9 @@ export type operations = {
urlPreviewRequireContentLength?: boolean;
urlPreviewUserAgent?: string | null;
urlPreviewSummaryProxyUrl?: string | null;
+ /** @enum {string} */
+ federation?: 'all' | 'none' | 'specified';
+ federationHosts?: string[];
};
};
};