opticedge-types 1.0.26 → 1.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -65,5 +65,6 @@ export type PriceChartingAPICard = {
65
65
  price: PriceChartingPrice;
66
66
  images?: Image;
67
67
  type: CardType;
68
+ version: string;
68
69
  };
69
70
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -71,5 +71,6 @@ export type PriceChartingAPICard = {
71
71
  releaseDate?: string
72
72
  price: PriceChartingPrice
73
73
  images?: Image,
74
- type: CardType
74
+ type: CardType,
75
+ version: string
75
76
  }