opticedge-cloud-utils 1.0.41 → 1.0.43
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PriceChartingPrice } from
|
|
1
|
+
import { PriceChartingPrice } from './pricecharting';
|
|
2
2
|
export type TCGPlayerPrices = {
|
|
3
3
|
low: number;
|
|
4
4
|
mid: number;
|
|
@@ -120,8 +120,8 @@ export type PokemonTCGCard = {
|
|
|
120
120
|
prices: CardMarketPrices;
|
|
121
121
|
};
|
|
122
122
|
pricecharting?: {
|
|
123
|
-
id:
|
|
124
|
-
|
|
123
|
+
id: number;
|
|
124
|
+
prices: PriceChartingPrice;
|
|
125
125
|
updatedAt: string;
|
|
126
126
|
deleted?: boolean;
|
|
127
127
|
};
|
package/package.json
CHANGED
package/src/types/pokemontcg.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PriceChartingPrice } from
|
|
1
|
+
import { PriceChartingPrice } from './pricecharting'
|
|
2
2
|
|
|
3
3
|
export type TCGPlayerPrices = {
|
|
4
4
|
low: number
|
|
@@ -123,8 +123,8 @@ export type PokemonTCGCard = {
|
|
|
123
123
|
prices: CardMarketPrices
|
|
124
124
|
}
|
|
125
125
|
pricecharting?: {
|
|
126
|
-
id:
|
|
127
|
-
|
|
126
|
+
id: number
|
|
127
|
+
prices: PriceChartingPrice
|
|
128
128
|
updatedAt: string
|
|
129
129
|
deleted?: boolean
|
|
130
130
|
}
|
|
@@ -152,8 +152,8 @@ export type PokemonCard = {
|
|
|
152
152
|
}
|
|
153
153
|
cardmarket: CardMarketPrices
|
|
154
154
|
}
|
|
155
|
-
]
|
|
156
|
-
pricecharting_id: number
|
|
155
|
+
]
|
|
156
|
+
pricecharting_id: number
|
|
157
157
|
pricecharting_data: {
|
|
158
158
|
consoleName: string
|
|
159
159
|
productName: string
|