opticedge-cloud-utils 1.0.38 → 1.0.40
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.
|
@@ -119,7 +119,7 @@ export type PokemonTCGCard = {
|
|
|
119
119
|
prices: CardMarketPrices;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
-
export type
|
|
122
|
+
export type PokemonCard = {
|
|
123
123
|
_id: string;
|
|
124
124
|
card_id: string;
|
|
125
125
|
card_data: {
|
|
@@ -128,6 +128,7 @@ export type PokemonPriceHistory = {
|
|
|
128
128
|
setName: string;
|
|
129
129
|
setSeries: string;
|
|
130
130
|
};
|
|
131
|
+
card: PokemonTCGCard;
|
|
131
132
|
pricehistory: [
|
|
132
133
|
{
|
|
133
134
|
date: string;
|
|
@@ -141,4 +142,10 @@ export type PokemonPriceHistory = {
|
|
|
141
142
|
cardmarket: CardMarketPrices;
|
|
142
143
|
}
|
|
143
144
|
];
|
|
145
|
+
pricecharting_id: number;
|
|
146
|
+
pricecharting_data: {
|
|
147
|
+
consoleName: string;
|
|
148
|
+
productName: string;
|
|
149
|
+
releaseDate: string;
|
|
150
|
+
};
|
|
144
151
|
};
|
package/package.json
CHANGED
package/src/types/pokemontcg.ts
CHANGED
|
@@ -122,7 +122,7 @@ export type PokemonTCGCard = {
|
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
-
export type
|
|
125
|
+
export type PokemonCard = {
|
|
126
126
|
_id: string
|
|
127
127
|
card_id: string
|
|
128
128
|
card_data: {
|
|
@@ -131,6 +131,7 @@ export type PokemonPriceHistory = {
|
|
|
131
131
|
setName: string
|
|
132
132
|
setSeries: string
|
|
133
133
|
}
|
|
134
|
+
card: PokemonTCGCard
|
|
134
135
|
pricehistory: [
|
|
135
136
|
{
|
|
136
137
|
date: string
|
|
@@ -143,5 +144,11 @@ export type PokemonPriceHistory = {
|
|
|
143
144
|
}
|
|
144
145
|
cardmarket: CardMarketPrices
|
|
145
146
|
}
|
|
146
|
-
]
|
|
147
|
+
],
|
|
148
|
+
pricecharting_id: number,
|
|
149
|
+
pricecharting_data: {
|
|
150
|
+
consoleName: string
|
|
151
|
+
productName: string
|
|
152
|
+
releaseDate: string
|
|
153
|
+
}
|
|
147
154
|
}
|