@smartico/public-api 0.0.113 → 0.0.114

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.
@@ -5,6 +5,7 @@ export interface SAWDoSpinResponse extends ProtocolResponse {
5
5
  errMsg?: string;
6
6
  request_id: string;
7
7
  saw_prize_id: number;
8
+ jackpot_amount?: number;
8
9
  first_spin_in_period: number;
9
10
  visitor_win_uuid?: string;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.113",
3
+ "version": "0.0.114",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -7,6 +7,7 @@ export interface SAWDoSpinResponse extends ProtocolResponse {
7
7
  errMsg?: string;
8
8
  request_id: string; // guid
9
9
  saw_prize_id: number;
10
+ jackpot_amount?: number; // jackpot amount in case user won jackpot type of prize
10
11
  first_spin_in_period: number;
11
12
  visitor_win_uuid?: string;
12
13
  };