mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add status Dashboard (#187)
* feat: Add status Dashboard Still need some polishing like using the compiler instead of the live DB Signed-off-by: Avior <github@avior.me> * refactor: Simplified compiler files generators Signed-off-by: Avior <florian.bouillon@delta-wings.net> * chore: Add step to compiler for stats and optimize Signed-off-by: Avior <github@avior.me> * refactor: Remove unused variable Signed-off-by: Avior <github@avior.me>
This commit is contained in:
1
meta/definitions/api.d.ts
vendored
1
meta/definitions/api.d.ts
vendored
@ -23,6 +23,7 @@ interface variants {
|
||||
reverse?: boolean;
|
||||
holo?: boolean;
|
||||
firstEdition?: boolean;
|
||||
wPromo?: boolean
|
||||
}
|
||||
|
||||
export interface SetResume {
|
||||
|
@ -121,6 +121,7 @@ type Variants {
|
||||
holo: Boolean!
|
||||
normal: Boolean!
|
||||
reverse: Boolean!
|
||||
wPromo: Boolean!
|
||||
}
|
||||
|
||||
##################
|
||||
@ -135,6 +136,7 @@ type Set {
|
||||
name: String!
|
||||
symbol: String
|
||||
serie: Serie!
|
||||
releaseDate: String!
|
||||
}
|
||||
|
||||
type CardCount {
|
||||
|
@ -779,6 +779,7 @@ components:
|
||||
- holo
|
||||
- normal
|
||||
- reverse
|
||||
- wPromo
|
||||
type: object
|
||||
properties:
|
||||
normal:
|
||||
@ -789,6 +790,8 @@ components:
|
||||
type: boolean
|
||||
firstEdition:
|
||||
type: boolean
|
||||
wPromo:
|
||||
type: boolean
|
||||
hp:
|
||||
type: number
|
||||
example: 80
|
||||
|
Reference in New Issue
Block a user