Multiple accounts support, load tags online

This commit is contained in:
Cadence Ember 2025-04-02 17:03:03 +13:00
parent cd2827791f
commit 26ea869285
14 changed files with 295 additions and 124 deletions

9
db/orm-defs.d.ts vendored
View file

@ -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
}