@smartico/public-api 0.0.123 → 0.0.124
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/Base/ClassId.d.ts +1 -0
- package/dist/Jackpots/GetJackpotsPotsRequest.d.ts +1 -1
- package/dist/Jackpots/GetJackpotsPotsResponse.d.ts +1 -1
- package/dist/Jackpots/GetJackpotsRequest.d.ts +1 -1
- package/dist/Jackpots/JackPotWinner.d.ts +8 -0
- package/dist/Jackpots/JackpotWinPush.d.ts +7 -0
- package/dist/MiniGames/SAWTemplateUI.d.ts +6 -0
- package/dist/MiniGames/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Base/ClassId.ts +1 -1
- package/src/Jackpots/GetJackpotsPotsRequest.ts +1 -1
- package/src/Jackpots/GetJackpotsPotsResponse.ts +1 -1
- package/src/Jackpots/GetJackpotsRequest.ts +1 -1
- package/src/Jackpots/JackPotWinner.ts +10 -0
- package/src/Jackpots/JackpotWinPush.ts +8 -0
- package/src/MiniGames/SAWTemplateUI.ts +10 -0
- package/src/MiniGames/index.ts +2 -1
- package/src/Jackpots/jackpotsWSApi.zip +0 -0
package/package.json
CHANGED
package/src/Base/ClassId.ts
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ProtocolMessage } from "../Base/ProtocolMessage";
|
|
2
|
+
import { JackPotWinner } from "./JackPotWinner";
|
|
3
|
+
import { JackpotDetails } from "./JackpotDetails";
|
|
4
|
+
|
|
5
|
+
export interface JackpotWinPush extends ProtocolMessage {
|
|
6
|
+
jackpot: JackpotDetails;
|
|
7
|
+
winners: JackPotWinner[];
|
|
8
|
+
}
|
|
@@ -40,4 +40,14 @@ export interface SAWTemplateUI {
|
|
|
40
40
|
only_in_custom_section?: boolean;
|
|
41
41
|
|
|
42
42
|
custom_data: any;
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
// prize drop specific
|
|
46
|
+
placeholder_1?: string;
|
|
47
|
+
placeholder_2?: string;
|
|
48
|
+
prize_drop_template?: {
|
|
49
|
+
id: string;
|
|
50
|
+
content: string;
|
|
51
|
+
}
|
|
52
|
+
|
|
43
53
|
}
|
package/src/MiniGames/index.ts
CHANGED
|
@@ -16,4 +16,5 @@ export * from "./SAWTemplateUI";
|
|
|
16
16
|
export * from "./SAWWinSoundType";
|
|
17
17
|
export * from "./SAWDoAknowledgeRequest";
|
|
18
18
|
export * from "./SAWDoAknowledgeResponse";
|
|
19
|
-
export * from "./SAWSpinsCountPush";
|
|
19
|
+
export * from "./SAWSpinsCountPush";
|
|
20
|
+
export * from "./SAWPrizeDropWinPush";
|
|
Binary file
|