build-misskey-js-with-types (#16470)

This commit is contained in:
tamaina 2025-08-28 10:39:39 +09:00 committed by GitHub
parent 2e4c4dd555
commit 25c2007f59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -9329,8 +9329,10 @@ export interface operations {
mcaptchaSecretKey: string | null; mcaptchaSecretKey: string | null;
recaptchaSecretKey: string | null; recaptchaSecretKey: string | null;
turnstileSecretKey: string | null; turnstileSecretKey: string | null;
sensitiveMediaDetection: string; /** @enum {string} */
sensitiveMediaDetectionSensitivity: string; sensitiveMediaDetection: 'none' | 'all' | 'local' | 'remote';
/** @enum {string} */
sensitiveMediaDetectionSensitivity: 'medium' | 'low' | 'high' | 'veryLow' | 'veryHigh';
setSensitiveFlagAutomatically: boolean; setSensitiveFlagAutomatically: boolean;
enableSensitiveMediaDetectionForVideos: boolean; enableSensitiveMediaDetectionForVideos: boolean;
/** Format: id */ /** Format: id */