@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/dist/Base/ClassId.d.ts
CHANGED
|
@@ -91,6 +91,7 @@ export declare enum ClassId {
|
|
|
91
91
|
JP_OPTIN_RESPONSE = 805,
|
|
92
92
|
JP_OPTOUT_REQUEST = 806,
|
|
93
93
|
JP_OPTOUT_RESPONSE = 807,
|
|
94
|
+
JP_WIN_PUSH = 808,
|
|
94
95
|
REGISTER_PUSH_NOTIFICATIONS_TOKEN_REQ = 1003,
|
|
95
96
|
REGISTER_PUSH_NOTIFICATIONS_TOKEN_RESP = 2003,
|
|
96
97
|
CLIENT_DEBUG_REQUEST = 77777,
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ProtocolMessage } from "../Base/ProtocolMessage";
|
|
2
|
+
import { JackPotWinner } from "./JackPotWinner";
|
|
3
|
+
import { JackpotDetails } from "./JackpotDetails";
|
|
4
|
+
export interface JackpotWinPush extends ProtocolMessage {
|
|
5
|
+
jackpot: JackpotDetails;
|
|
6
|
+
winners: JackPotWinner[];
|
|
7
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -95,7 +95,7 @@ exports.ClassId = void 0;
|
|
|
95
95
|
ClassId[ClassId["JP_OPTIN_RESPONSE"] = 805] = "JP_OPTIN_RESPONSE";
|
|
96
96
|
ClassId[ClassId["JP_OPTOUT_REQUEST"] = 806] = "JP_OPTOUT_REQUEST";
|
|
97
97
|
ClassId[ClassId["JP_OPTOUT_RESPONSE"] = 807] = "JP_OPTOUT_RESPONSE";
|
|
98
|
-
|
|
98
|
+
ClassId[ClassId["JP_WIN_PUSH"] = 808] = "JP_WIN_PUSH";
|
|
99
99
|
ClassId[ClassId["REGISTER_PUSH_NOTIFICATIONS_TOKEN_REQ"] = 1003] = "REGISTER_PUSH_NOTIFICATIONS_TOKEN_REQ";
|
|
100
100
|
ClassId[ClassId["REGISTER_PUSH_NOTIFICATIONS_TOKEN_RESP"] = 2003] = "REGISTER_PUSH_NOTIFICATIONS_TOKEN_RESP";
|
|
101
101
|
ClassId[ClassId["CLIENT_DEBUG_REQUEST"] = 77777] = "CLIENT_DEBUG_REQUEST";
|