opticedge-cloud-utils 1.0.39 → 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.
@@ -142,4 +142,10 @@ export type PokemonCard = {
142
142
  cardmarket: CardMarketPrices;
143
143
  }
144
144
  ];
145
+ pricecharting_id: number;
146
+ pricecharting_data: {
147
+ consoleName: string;
148
+ productName: string;
149
+ releaseDate: string;
150
+ };
145
151
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-cloud-utils",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "Common utilities for cloud functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -144,5 +144,11 @@ export type PokemonCard = {
144
144
  }
145
145
  cardmarket: CardMarketPrices
146
146
  }
147
- ]
147
+ ],
148
+ pricecharting_id: number,
149
+ pricecharting_data: {
150
+ consoleName: string
151
+ productName: string
152
+ releaseDate: string
153
+ }
148
154
  }