sdk-sapi-promarketing 0.0.22 → 0.0.23

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/index.d.mts CHANGED
@@ -3326,7 +3326,7 @@ declare class GameService extends RequestBase {
3326
3326
  *
3327
3327
  * @returns Promise with games.
3328
3328
  */
3329
- getGamesLobbyLatest: () => Promise<GameLatestType>;
3329
+ getGamesLobbyLatest: (options?: {}) => Promise<GameLatestType>;
3330
3330
  }
3331
3331
 
3332
3332
  /**
package/dist/index.d.ts CHANGED
@@ -3326,7 +3326,7 @@ declare class GameService extends RequestBase {
3326
3326
  *
3327
3327
  * @returns Promise with games.
3328
3328
  */
3329
- getGamesLobbyLatest: () => Promise<GameLatestType>;
3329
+ getGamesLobbyLatest: (options?: {}) => Promise<GameLatestType>;
3330
3330
  }
3331
3331
 
3332
3332
  /**
package/dist/index.js CHANGED
@@ -415,7 +415,7 @@ var GameService = class extends RequestBase {
415
415
  *
416
416
  * @returns Promise with games.
417
417
  */
418
- getGamesLobbyLatest = async () => this.getBase("/latest");
418
+ getGamesLobbyLatest = async (options = {}) => this.getBase("/latest", options, true);
419
419
  };
420
420
 
421
421
  // services/skin.service.ts