@smartico/public-api 0.0.215 → 0.0.216

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.
@@ -486,8 +486,8 @@ ___
486
486
  Sends the acknowledge request with specific client_request_id from minigame history in order to claim prize
487
487
  **Example**:
488
488
  ```
489
- _smartico.api.miniGameWinAcknowledgeRequest('12dvq1r24b6h').then((result) => {
490
- console.log(result);
489
+ _smartico.api.miniGameWinAcknowledgeRequest('2a189322-31bb-4119-b943-bx7868ff8dc3').then((result) => {
490
+ console.log(result);
491
491
  });
492
492
  ```
493
493
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.215",
3
+ "version": "0.0.216",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -6,6 +6,7 @@ export interface SAWPrizeUI {
6
6
  position?: number; // for scratch card defines position of prize in the list
7
7
  name: string;
8
8
  name_original?: string; // keeps original name, how it came from the servers. This is needed for the Jackpot value replacemenet
9
+ hide_prize_popup: boolean; // if true, prize popup on Prize Drop will not be shown
9
10
  aknowledge_message?: string;
10
11
  sectors?: number[];
11
12
  acknowledge_type?: SAWAcknowledgeType;
@@ -348,6 +348,7 @@ export interface SAWPrizeUI {
348
348
  position?: number;
349
349
  name: string;
350
350
  name_original: string;
351
+ hide_prize_popup: boolean;
351
352
  aknowledge_message: string;
352
353
  sectors: number[];
353
354
  acknowledge_type: SAWAcknowledgeType;
@@ -559,7 +559,7 @@ export class WSAPI {
559
559
  * Sends the acknowledge request with specific client_request_id from minigame history in order to claim prize
560
560
  * **Example**:
561
561
  * ```
562
- * _smartico.api.miniGameWinAcknowledgeRequest('12dvq1r24b6h').then((result) => {
562
+ * _smartico.api.miniGameWinAcknowledgeRequest('2a189322-31bb-4119-b943-bx7868ff8dc3').then((result) => {
563
563
  * console.log(result);
564
564
  * });
565
565
  * ```