@smartico/public-api 0.0.206 → 0.0.207

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.206",
3
+ "version": "0.0.207",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,6 +41,7 @@ import {
41
41
  } from '../Jackpots';
42
42
  import { GetTournamentsResponse } from '../Tournaments';
43
43
  import { GetAchievementMapResponse } from '../Missions';
44
+ import { GetRelatedAchTourResponse } from 'src/Missions/GetRelatedAchTourResponse';
44
45
 
45
46
  /** @hidden */
46
47
  const CACHE_DATA_SEC = 30;
@@ -1004,7 +1005,7 @@ export class WSAPI {
1004
1005
  * });
1005
1006
  * ```
1006
1007
  */
1007
- public async getRelatedItemsForGame(related_game_id: string): Promise<GetAchievementMapResponse> {
1008
+ public async getRelatedItemsForGame(related_game_id: string): Promise<GetRelatedAchTourResponse> {
1008
1009
 
1009
1010
  const result = await this.api.getRelatedItemsForGame(null, related_game_id);
1010
1011
  return result;