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; public isCat: boolean;
@Column('boolean', { @Column('boolean', {
default: true, default: false,
comment: 'Whether the User speaks in nya.', comment: 'Whether the User speaks in nya.',
}) })
public speakAsCat: boolean; public speakAsCat: boolean;

View file

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