Multiple accounts support, load tags online
This commit is contained in:
parent
cd2827791f
commit
26ea869285
14 changed files with 295 additions and 124 deletions
9
db/orm-defs.d.ts
vendored
9
db/orm-defs.d.ts
vendored
|
|
@ -1,5 +1,12 @@
|
|||
export type Models = {
|
||||
account: {
|
||||
account: string
|
||||
fan_id: number
|
||||
currency: string | null
|
||||
}
|
||||
|
||||
item: {
|
||||
account: string
|
||||
item_id: number
|
||||
item_type: string
|
||||
band_id: number
|
||||
|
|
@ -26,6 +33,7 @@ export type Models = {
|
|||
}
|
||||
|
||||
track: {
|
||||
account: string
|
||||
item_id: number
|
||||
track_id: number
|
||||
title: string
|
||||
|
|
@ -36,6 +44,7 @@ export type Models = {
|
|||
}
|
||||
|
||||
item_tag: {
|
||||
account: string
|
||||
item_id: number
|
||||
tag: string
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue