@smartico/public-api 0.0.129 → 0.0.131

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.129",
3
+ "version": "0.0.131",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -33,4 +33,8 @@ export interface SAWTemplate {
33
33
  skin_folder: string;
34
34
  skin_css: string;
35
35
  };
36
+
37
+
38
+ // AA: releavnt only in the context of the SAWPrizeDropWinPush
39
+ requires_prize_claim?: boolean;
36
40
  }
@@ -445,7 +445,7 @@ export class WSAPI {
445
445
 
446
446
  public async jackpotGet(filter?: { related_game_id?: string, jp_template_id?: number }): Promise<JackpotDetails[]> {
447
447
 
448
- const signature: string = `${filter.jp_template_id}:${filter.related_game_id}`;
448
+ const signature: string = `${filter?.jp_template_id}:${filter?.related_game_id}`;
449
449
 
450
450
  if (signature !== this.jackpotGetSignature) {
451
451
  this.jackpotGetSignature = signature;