generate misskey-js types

This commit is contained in:
kakkokari-gtyih 2025-05-11 01:58:01 +09:00
parent b1168373f0
commit 623c8e0f55
1 changed files with 5 additions and 5 deletions

View File

@ -10582,9 +10582,9 @@ export type components = {
langs: string[];
tosUrl: string | null;
/** @default https://github.com/misskey-dev/misskey */
repositoryUrl: string;
repositoryUrl: string | null;
/** @default https://github.com/misskey-dev/misskey/issues/new */
feedbackUrl: string;
feedbackUrl: string | null;
defaultDarkTheme: string | null;
defaultLightTheme: string | null;
disableRegistration: boolean;
@ -14854,7 +14854,7 @@ export interface operations {
googleAnalyticsMeasurementId: string | null;
swPublickey: string | null;
/** @default /assets/ai.png */
mascotImageUrl: string;
mascotImageUrl: string | null;
bannerUrl: string | null;
serverErrorImageUrl: string | null;
infoImageUrl: string | null;
@ -40752,7 +40752,7 @@ export interface operations {
/** @default hello */
default?: string;
/** @default hello */
nullableDefault?: string;
nullableDefault?: string | null;
/** Format: misskey:id */
id?: string;
};
@ -40772,7 +40772,7 @@ export interface operations {
string?: string;
default?: string;
/** @default hello */
nullableDefault: string;
nullableDefault: string | null;
};
};
};