chore: update auto-generated files
This commit is contained in:
parent
ddfdd038ad
commit
8ed942e00f
2 changed files with 2 additions and 0 deletions
1
packages/backend-rs/index.d.ts
vendored
1
packages/backend-rs/index.d.ts
vendored
|
@ -1122,6 +1122,7 @@ export interface UserProfile {
|
||||||
preventAiLearning: boolean
|
preventAiLearning: boolean
|
||||||
isIndexable: boolean
|
isIndexable: boolean
|
||||||
mutedPatterns: Array<string>
|
mutedPatterns: Array<string>
|
||||||
|
lang: string | null
|
||||||
}
|
}
|
||||||
export interface UserPublickey {
|
export interface UserPublickey {
|
||||||
userId: string
|
userId: string
|
||||||
|
|
|
@ -78,6 +78,7 @@ pub struct Model {
|
||||||
pub is_indexable: bool,
|
pub is_indexable: bool,
|
||||||
#[sea_orm(column_name = "mutedPatterns")]
|
#[sea_orm(column_name = "mutedPatterns")]
|
||||||
pub muted_patterns: Vec<String>,
|
pub muted_patterns: Vec<String>,
|
||||||
|
pub lang: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||||||
|
|
Loading…
Reference in a new issue