chore: update auto-generated files

This commit is contained in:
naskya 2024-05-06 23:13:31 +09:00
parent ddfdd038ad
commit 8ed942e00f
No known key found for this signature in database
GPG Key ID: 712D413B3A9FED5C
2 changed files with 2 additions and 0 deletions

View File

@ -1122,6 +1122,7 @@ export interface UserProfile {
preventAiLearning: boolean
isIndexable: boolean
mutedPatterns: Array<string>
lang: string | null
}
export interface UserPublickey {
userId: string

View File

@ -78,6 +78,7 @@ pub struct Model {
pub is_indexable: bool,
#[sea_orm(column_name = "mutedPatterns")]
pub muted_patterns: Vec<String>,
pub lang: Option<String>,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]