fix tests?
All checks were successful
Lint / pnpm_install (pull_request) Successful in 57s
API report (misskey.js) / report (pull_request) Successful in 1m2s
API report (misskey.js) / report (push) Successful in 1m16s
Test (misskey.js) / test (22.x) (pull_request) Successful in 46s
Test (frontend) / vitest (22.x) (pull_request) Successful in 1m15s
Test (production install and build) / production (22.x) (pull_request) Successful in 1m47s
Lint / lint (backend) (pull_request) Successful in 1m1s
Test (backend) / validate-api-json (22.x) (pull_request) Successful in 1m25s
Lint / lint (sw) (pull_request) Successful in 29s
Lint / lint (misskey-js) (pull_request) Successful in 51s
Lint / typecheck (misskey-js) (pull_request) Successful in 31s
Lint / typecheck (backend) (pull_request) Successful in 1m30s
Test (backend) / unit (22.x) (pull_request) Successful in 5m19s
Test (backend) / e2e (22.x) (pull_request) Successful in 6m39s
Lint / lint (frontend) (pull_request) Successful in 8m17s

This commit is contained in:
Leah 2025-02-04 14:39:49 +01:00
parent 55a2b82330
commit 12a9dab275
2 changed files with 14 additions and 3 deletions

View file

@ -187,7 +187,7 @@ export class MiUser {
public isCat: boolean;
@Column('boolean', {
default: true,
default: false,
comment: 'Whether the User speaks in nya.',
})
public speakAsCat: boolean;

View file

@ -3853,6 +3853,7 @@ export type components = {
}[];
isBot?: boolean;
isCat?: boolean;
speakAsCat?: boolean;
instance?: {
name: string | null;
softwareName: string | null;
@ -4702,7 +4703,7 @@ export type components = {
blockee: components['schemas']['UserDetailedNotMe'];
};
Hashtag: {
/** @example misskey */
/** @example forkey */
tag: string;
mentionedUsersCount: number;
mentionedLocalUsersCount: number;
@ -4885,7 +4886,7 @@ export type components = {
isNotResponding: boolean;
isSuspended: boolean;
isBlocked: boolean;
/** @example misskey */
/** @example forkey */
softwareName: string | null;
softwareVersion: string | null;
/** @example true */
@ -5239,6 +5240,8 @@ export type components = {
enableTurnstile: boolean;
turnstileSiteKey: string | null;
googleAnalyticsId: string | null;
enableFC: boolean;
fcSiteKey: string | null;
swPublickey: string | null;
/** @default /assets/ai.png */
mascotImageUrl: string;
@ -5388,6 +5391,8 @@ export type operations = {
enableTurnstile: boolean;
turnstileSiteKey: string | null;
googleAnalyticsId: string | null;
enableFC: boolean;
fcSiteKey: string | null;
swPublickey: string | null;
/** @default /assets/ai.png */
mascotImageUrl: string | null;
@ -5414,6 +5419,7 @@ export type operations = {
mcaptchaSecretKey: string | null;
recaptchaSecretKey: string | null;
turnstileSecretKey: string | null;
fcSecretKey: string | null;
sensitiveMediaDetection: string;
sensitiveMediaDetectionSensitivity: string;
setSensitiveFlagAutomatically: boolean;
@ -10319,6 +10325,9 @@ export type operations = {
enableTurnstile?: boolean;
turnstileSiteKey?: string | null;
turnstileSecretKey?: string | null;
enableFC?: boolean;
fcSiteKey?: string | null;
fcSecretKey?: string | null;
googleAnalyticsId?: string | null;
/** @enum {string} */
sensitiveMediaDetection?: 'none' | 'all' | 'local' | 'remote';
@ -21747,6 +21756,7 @@ export type operations = {
preventAiLearning?: boolean;
isBot?: boolean;
isCat?: boolean;
speakAsCat?: boolean;
injectFeaturedNote?: boolean;
receiveAnnouncementEmail?: boolean;
alwaysMarkNsfw?: boolean;
@ -30841,3 +30851,4 @@ export type operations = {
};
};
};