@smartico/public-api 0.0.191 → 0.0.193

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.
@@ -8,6 +8,7 @@ interface AchRelatedGame {
8
8
  enabled: boolean;
9
9
  game_categories?: string[];
10
10
  game_provider?: string;
11
+ mobile_spec_link?: string;
11
12
  };
12
13
  }
13
14
  export { AchRelatedGame };
@@ -1,5 +1,7 @@
1
1
  import { ProtocolMessage } from "../Base/ProtocolMessage";
2
+ import { SAWGameType } from "./SAWGameType";
2
3
  export interface SAWEventSawPush extends ProtocolMessage {
3
4
  pending_message_id: number;
4
5
  saw_template_id: number;
6
+ saw_game_type_id: SAWGameType;
5
7
  }
@@ -493,6 +493,8 @@ export interface AchRelatedGame {
493
493
  game_categories: string[];
494
494
  /** The name of the game provider */
495
495
  game_provider: string;
496
+ /** The URL to the mobile game */
497
+ mobile_spec_link: string;
496
498
  };
497
499
  }
498
500
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.191",
3
+ "version": "0.0.193",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,6 +10,7 @@ interface AchRelatedGame {
10
10
  enabled: boolean;
11
11
  game_categories?: string[];
12
12
  game_provider?: string;
13
+ mobile_spec_link?: string;
13
14
  };
14
15
  }
15
16
 
@@ -1,6 +1,8 @@
1
1
  import { ProtocolMessage } from "../Base/ProtocolMessage";
2
+ import { SAWGameType } from "./SAWGameType";
2
3
 
3
4
  export interface SAWEventSawPush extends ProtocolMessage {
4
5
  pending_message_id: number;
5
6
  saw_template_id: number;
7
+ saw_game_type_id: SAWGameType;
6
8
  }
@@ -572,6 +572,8 @@ export interface AchRelatedGame {
572
572
  game_categories: string[];
573
573
  /** The name of the game provider */
574
574
  game_provider: string;
575
+ /** The URL to the mobile game */
576
+ mobile_spec_link: string;
575
577
  };
576
578
  }
577
579