@opexa/portal-sdk 0.0.2 → 0.0.4

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.
package/dist/types.d.ts CHANGED
@@ -377,7 +377,11 @@ export interface Game {
377
377
  id: string;
378
378
  name: string;
379
379
  type: GameType;
380
+ /**
381
+ * @deprecated use `images` instead
382
+ */
380
383
  image: string;
384
+ images: string[];
381
385
  provider: GameProvider;
382
386
  }
383
387
  export interface GamesInput {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opexa/portal-sdk",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.0.4",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "typings": "dist/index.d.ts",