@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/dist/WSAPI/WSAPI.d.ts +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/WSAPI/WSAPI.ts +2 -1
package/package.json
CHANGED
package/src/WSAPI/WSAPI.ts
CHANGED
|
@@ -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<
|
|
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;
|