opticedge-types 1.0.15 → 1.0.16

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.
@@ -31,7 +31,7 @@ type Image = {
31
31
  small: string;
32
32
  normal: string;
33
33
  };
34
- export type PriceChartingCard = {
34
+ export type PriceChartingDBCard = {
35
35
  id: number;
36
36
  consoleName: string;
37
37
  productName: string;
@@ -48,4 +48,13 @@ export type PriceChartingCard = {
48
48
  images?: Image;
49
49
  updatedAt: string;
50
50
  };
51
+ export type PriceChartingCard = {
52
+ id: number;
53
+ name: string;
54
+ set: string;
55
+ number: string;
56
+ releaseDate: string;
57
+ price: PriceChartingPrice;
58
+ images?: Image;
59
+ };
51
60
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,7 +36,7 @@ type Image = {
36
36
  normal: string
37
37
  }
38
38
 
39
- export type PriceChartingCard = {
39
+ export type PriceChartingDBCard = {
40
40
  id: number
41
41
  consoleName: string
42
42
  productName: string
@@ -53,3 +53,13 @@ export type PriceChartingCard = {
53
53
  images?: Image
54
54
  updatedAt: string
55
55
  }
56
+
57
+ export type PriceChartingCard = {
58
+ id: number
59
+ name: string
60
+ set: string
61
+ number: string
62
+ releaseDate: string
63
+ price: PriceChartingPrice
64
+ images?: Image
65
+ }