Skip to content

Commit

Permalink
v5.0.2, Fix missing hybrid/phyrexian field types in card symbols
Browse files Browse the repository at this point in the history
Fixes #75
  • Loading branch information
ChiriVulpes committed Aug 18, 2024
1 parent 97b0613 commit e0f2b59
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v5.0.2 (August 18th, 2024)
- Fixed missing `hybrid` field in card symbols.

# v5.0.1 (August 11th, 2024)
- Add the potentiality of colourless mana (`"C"`) to `Card.produced_mana`.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scryfall-sdk",
"version": "5.0.1",
"version": "5.0.2",
"main": "./out/Scry.js",
"types": "./out/Scry.d.ts",
"description": "A Node.js SDK for https://scryfall.com/docs/api written in Typescript.",
Expand Down
2 changes: 2 additions & 0 deletions src/api/Symbology.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ export interface CardSymbol {
appears_in_mana_costs: boolean;
funny: boolean;
colors: Color[];
hybrid: boolean;
phyrexian: boolean;
gatherer_alternates?: string[] | null;
svg_uri?: string | null;
}
Expand Down

0 comments on commit e0f2b59

Please sign in to comment.