v2.0.0-alpha.2

This commit is contained in:
Florian Bouillon 2021-03-11 10:40:39 +01:00
parent b13e554162
commit d42b0057c7
Signed by: Florian Bouillon
GPG Key ID: 50BD648F12C86AB6
2 changed files with 9 additions and 8 deletions

15
interfaces.d.ts vendored
View File

@ -30,17 +30,18 @@ export type CardList = Array<CardResume>
interface SetResume {
id: string
name: string
}
export interface Set extends SetResume {
serie: Serie
tcgOnline?: string
variants?: variants
logo?: string
symbol?: string
cardCount: {
total: number
official: number
}
}
export interface Set extends SetResume {
serie: SerieResume
tcgOnline?: string
variants?: variants
releaseDate: string

View File

@ -1,6 +1,6 @@
{
"name": "@tcgdex/sdk",
"version": "2.0.0-alpha.1",
"version": "2.0.0-alpha.2",
"main": "./tcgdex.js",
"types": "./tcgdex.d.ts",
"repository": "https://github.com/tcgdex/javascript-sdk.git",