opticedge-types 1.0.22 → 1.0.24

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.
@@ -47,9 +47,15 @@ export type PriceChartingDBCard = {
47
47
  salesVolumeHistory: SalesVolumeEntry[];
48
48
  images?: Image;
49
49
  updatedAt: string;
50
+ uploadStatus?: {
51
+ imagesUploaded?: boolean;
52
+ noImage?: boolean;
53
+ };
54
+ cardNumber?: string | null;
55
+ deleted?: boolean;
50
56
  };
51
57
  export type PriceChartingCard = {
52
- id: number;
58
+ priceChartingId: number;
53
59
  name: string;
54
60
  set: string;
55
61
  number: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -52,10 +52,16 @@ export type PriceChartingDBCard = {
52
52
  salesVolumeHistory: SalesVolumeEntry[]
53
53
  images?: Image
54
54
  updatedAt: string
55
+ uploadStatus?: {
56
+ imagesUploaded?: boolean
57
+ noImage?: boolean
58
+ }
59
+ cardNumber?: string | null
60
+ deleted?: boolean
55
61
  }
56
62
 
57
63
  export type PriceChartingCard = {
58
- id: number
64
+ priceChartingId: number
59
65
  name: string
60
66
  set: string
61
67
  number: string | null