Merge branch 'develop' into feat-12997

This commit is contained in:
かっこかり 2024-10-01 20:53:45 +09:00 committed by GitHub
commit ecbe20b623
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -5179,6 +5179,8 @@ export type operations = {
urlPreviewRequireContentLength: boolean;
urlPreviewUserAgent: string | null;
urlPreviewSummaryProxyUrl: string | null;
federation: string;
federationHosts: string[];
};
};
};
@ -9431,6 +9433,9 @@ export type operations = {
urlPreviewRequireContentLength?: boolean;
urlPreviewUserAgent?: string | null;
urlPreviewSummaryProxyUrl?: string | null;
/** @enum {string} */
federation?: 'all' | 'none' | 'specified';
federationHosts?: string[];
};
};
};