Skip to content

Releases: T0RAT0RA/deckbox-api

Api refactor

31 Aug 02:13
Compare
Choose a tag to compare

New Features

  • Added card meta data from scryfall API (https://scryfall.com/docs/api) (#1)

    • cmc: 0
    • images: {art_crop: "", border_crop: "", large: "", normal: "", png: "", small: ""}
    • mana_cost: ""
    • set: ""
    • set_name: ""
    • subtypes: []
    • type_line: ""
    • types: []
  • Card meta data is cahced in redis (#2)

Breaking Changes

  • Card edition code are now returned as array:
"edition": {
  "code": ["DDK"],
  "name": "Duel Decks: Sorin vs. Tibalt (Card #31)"
}

Before:

"edition": {
  "code": "DDK",
  "name": "Duel Decks: Sorin vs. Tibalt (Card #31)"
}

Bug Fixes

  • Fixed the wishlist endpoints when image edition is not found (f943a87)