mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
parent
869839f642
commit
fe702ba6d7
19 changed files with 614 additions and 8 deletions
9
server/src/db.d.ts
vendored
9
server/src/db.d.ts
vendored
|
|
@ -272,6 +272,13 @@ export interface NaturalearthCountries {
|
|||
type: string;
|
||||
}
|
||||
|
||||
export interface PartnersAudit {
|
||||
deletedAt: Generated<Timestamp>;
|
||||
id: Generated<string>;
|
||||
sharedById: string;
|
||||
sharedWithId: string;
|
||||
}
|
||||
|
||||
export interface Partners {
|
||||
createdAt: Generated<Timestamp>;
|
||||
inTimeline: Generated<boolean>;
|
||||
|
|
@ -316,7 +323,6 @@ export interface SessionSyncCheckpoints {
|
|||
updateId: Generated<string>;
|
||||
}
|
||||
|
||||
|
||||
export interface SharedLinkAsset {
|
||||
assetsId: string;
|
||||
sharedLinksId: string;
|
||||
|
|
@ -462,6 +468,7 @@ export interface DB {
|
|||
migrations: Migrations;
|
||||
move_history: MoveHistory;
|
||||
naturalearth_countries: NaturalearthCountries;
|
||||
partners_audit: PartnersAudit;
|
||||
partners: Partners;
|
||||
person: Person;
|
||||
sessions: Sessions;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue