mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-22 18:44:02 +02:00
@@ -58,6 +58,7 @@ export type ReversiGameDetailed = components['schemas']['ReversiGameDetailed'];
|
||||
export type MetaLite = components['schemas']['MetaLite'];
|
||||
export type MetaDetailedOnly = components['schemas']['MetaDetailedOnly'];
|
||||
export type MetaDetailed = components['schemas']['MetaDetailed'];
|
||||
export type MetaClientOptions = components['schemas']['MetaClientOptions'];
|
||||
export type UserWebhook = components['schemas']['UserWebhook'];
|
||||
export type SystemWebhook = components['schemas']['SystemWebhook'];
|
||||
export type AbuseReportNotificationRecipient = components['schemas']['AbuseReportNotificationRecipient'];
|
||||
|
||||
@@ -5441,7 +5441,7 @@ export type components = {
|
||||
feedbackUrl: string | null;
|
||||
defaultDarkTheme: string | null;
|
||||
defaultLightTheme: string | null;
|
||||
clientOptions: Record<string, never>;
|
||||
clientOptions: components['schemas']['MetaClientOptions'];
|
||||
disableRegistration: boolean;
|
||||
emailRequiredForSignup: boolean;
|
||||
enableHcaptcha: boolean;
|
||||
@@ -5540,6 +5540,12 @@ export type components = {
|
||||
cacheRemoteSensitiveFiles: boolean;
|
||||
};
|
||||
MetaDetailed: components['schemas']['MetaLite'] & components['schemas']['MetaDetailedOnly'];
|
||||
MetaClientOptions: {
|
||||
/** @enum {string} */
|
||||
entrancePageStyle: 'classic' | 'simple';
|
||||
showTimelineForVisitor: boolean;
|
||||
showActivitiesForVisitor: boolean;
|
||||
};
|
||||
UserWebhook: {
|
||||
/** Format: id */
|
||||
id: string;
|
||||
@@ -9468,7 +9474,7 @@ export interface operations {
|
||||
deeplIsPro: boolean;
|
||||
defaultDarkTheme: string | null;
|
||||
defaultLightTheme: string | null;
|
||||
clientOptions: Record<string, never>;
|
||||
clientOptions: components['schemas']['MetaClientOptions'];
|
||||
description: string | null;
|
||||
disableRegistration: boolean;
|
||||
impressumUrl: string | null;
|
||||
@@ -12724,7 +12730,12 @@ export interface operations {
|
||||
description?: string | null;
|
||||
defaultLightTheme?: string | null;
|
||||
defaultDarkTheme?: string | null;
|
||||
clientOptions?: Record<string, never>;
|
||||
clientOptions?: {
|
||||
/** @enum {string} */
|
||||
entrancePageStyle?: 'classic' | 'simple';
|
||||
showTimelineForVisitor?: boolean;
|
||||
showActivitiesForVisitor?: boolean;
|
||||
};
|
||||
cacheRemoteFiles?: boolean;
|
||||
cacheRemoteSensitiveFiles?: boolean;
|
||||
emailRequiredForSignup?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user