opticedge-cloud-utils 1.0.17 → 1.0.18

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.
@@ -122,7 +122,12 @@ export type PokemonTCGCard = {
122
122
  export type PokemonPriceHistory = {
123
123
  _id: string;
124
124
  card_id: string;
125
- card_data: Partial<PokemonTCGCard>;
125
+ card_data: {
126
+ name: string;
127
+ number: string;
128
+ setName: string;
129
+ setSeries: string;
130
+ };
126
131
  pricehistory: [
127
132
  {
128
133
  date: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-cloud-utils",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Common utilities for cloud functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -125,7 +125,12 @@ export type PokemonTCGCard = {
125
125
  export type PokemonPriceHistory = {
126
126
  _id: string
127
127
  card_id: string
128
- card_data: Partial<PokemonTCGCard>
128
+ card_data: {
129
+ name: string
130
+ number: string
131
+ setName: string
132
+ setSeries: string
133
+ }
129
134
  pricehistory: [
130
135
  {
131
136
  date: string