opticedge-types 1.0.1 → 1.0.2

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.
@@ -123,7 +123,6 @@ export type PokemonTCGCard = {
123
123
  id: number;
124
124
  prices: PriceChartingPrice;
125
125
  updatedAt: string;
126
- deleted?: boolean;
127
126
  };
128
127
  };
129
128
  export type PokemonCard = {
@@ -36,5 +36,4 @@ export type PriceChartingCard = {
36
36
  salesVolume: number | null;
37
37
  salesVolumeHistory: (number | null)[];
38
38
  updatedAt: string;
39
- deleted?: boolean;
40
39
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -126,7 +126,6 @@ export type PokemonTCGCard = {
126
126
  id: number
127
127
  prices: PriceChartingPrice
128
128
  updatedAt: string
129
- deleted?: boolean
130
129
  }
131
130
  }
132
131
 
@@ -38,5 +38,4 @@ export type PriceChartingCard = {
38
38
  salesVolume: number | null
39
39
  salesVolumeHistory: (number | null)[]
40
40
  updatedAt: string
41
- deleted?: boolean
42
41
  }