opticedge-types 1.0.70 → 1.0.72

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.
@@ -75,8 +75,10 @@ export type PriceChartingApiCard = {
75
75
  text?: string;
76
76
  };
77
77
  export type PriceChartingDbSet = {
78
- id: string;
78
+ type: CardType;
79
79
  consoleName: string;
80
80
  releaseDate?: string;
81
+ createdAt: Date;
82
+ updatedAt: Date;
81
83
  };
82
84
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.70",
3
+ "version": "1.0.72",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -84,7 +84,9 @@ export type PriceChartingApiCard = {
84
84
  }
85
85
 
86
86
  export type PriceChartingDbSet = {
87
- id: string
87
+ type: CardType
88
88
  consoleName: string
89
89
  releaseDate?: string
90
+ createdAt: Date
91
+ updatedAt: Date
90
92
  }