@smartico/public-api 0.0.343 → 0.0.345
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/MiniGames/SAWExposeUserSpinId.d.ts +6 -0
- package/dist/MiniGames/SAWGameLayout.d.ts +6 -0
- package/dist/WSAPI/WSAPITypes.d.ts +5 -1
- package/dist/index.js +42 -14
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +45 -15
- package/dist/index.modern.mjs.map +1 -1
- package/docs/api/README.md +2 -8
- package/docs/api/enums/SAWExposeUserSpinIdName.md +13 -0
- package/docs/api/enums/SAWGameLayoutName.md +13 -0
- package/docs/api/interfaces/TMiniGameTemplate.md +16 -0
- package/docs/native/PROTOCOL.md +907 -406
- package/package.json +1 -1
- package/src/MiniGames/SAWExposeUserSpinId.ts +16 -1
- package/src/MiniGames/SAWGameLayout.ts +16 -1
- package/src/MiniGames/SAWGetTemplatesResponse.ts +10 -1
- package/src/WSAPI/WSAPITypes.ts +5 -1
- package/docs/README.md +0 -230
- package/docs/api/interfaces/GemsDiamondsLog.md +0 -43
- package/docs/api/interfaces/PointsLog.md +0 -43
package/docs/api/README.md
CHANGED
|
@@ -23,9 +23,11 @@
|
|
|
23
23
|
- [SAWBuyInType](enums/SAWBuyInType.md)
|
|
24
24
|
- [SAWBuyInTypeName](enums/SAWBuyInTypeName.md)
|
|
25
25
|
- [SAWExposeUserSpinId](enums/SAWExposeUserSpinId.md)
|
|
26
|
+
- [SAWExposeUserSpinIdName](enums/SAWExposeUserSpinIdName.md)
|
|
26
27
|
- [SAWGameDifficultyType](enums/SAWGameDifficultyType.md)
|
|
27
28
|
- [SAWGameDifficultyTypeName](enums/SAWGameDifficultyTypeName.md)
|
|
28
29
|
- [SAWGameLayout](enums/SAWGameLayout.md)
|
|
30
|
+
- [SAWGameLayoutName](enums/SAWGameLayoutName.md)
|
|
29
31
|
- [SAWGameType](enums/SAWGameType.md)
|
|
30
32
|
- [SAWGameTypeName](enums/SAWGameTypeName.md)
|
|
31
33
|
- [SAWPrizeType](enums/SAWPrizeType.md)
|
|
@@ -48,8 +50,6 @@
|
|
|
48
50
|
|
|
49
51
|
## Interfaces
|
|
50
52
|
|
|
51
|
-
- [PointsLog](interfaces/PointsLog.md)
|
|
52
|
-
- [GemsDiamondsLog](interfaces/GemsDiamondsLog.md)
|
|
53
53
|
- [AchRelatedGame](interfaces/AchRelatedGame.md)
|
|
54
54
|
- [Bonus](interfaces/Bonus.md)
|
|
55
55
|
- [UICustomSection](interfaces/UICustomSection.md)
|
|
@@ -178,12 +178,6 @@
|
|
|
178
178
|
|
|
179
179
|
## Type Aliases
|
|
180
180
|
|
|
181
|
-
### ActivityLogEntry
|
|
182
|
-
|
|
183
|
-
Ƭ **ActivityLogEntry**: [`PointsLog`](interfaces/PointsLog.md) \| [`GemsDiamondsLog`](interfaces/GemsDiamondsLog.md)
|
|
184
|
-
|
|
185
|
-
___
|
|
186
|
-
|
|
187
181
|
### TournamentRegistrationTypeName
|
|
188
182
|
|
|
189
183
|
Ƭ **TournamentRegistrationTypeName**: ``"AUTO"`` \| ``"OPT_IN"`` \| ``"BUY_IN_POINTS"`` \| ``"MANUAL_APPROVAL"`` \| ``"REQUIRES_QUALIFICATION"`` \| ``"BUY_IN_GEMS"`` \| ``"BUY_IN_DIAMONDS"`` \| ``"UNKNOWN"``
|
|
@@ -231,6 +231,14 @@ The UI definition of the mini-game
|
|
|
231
231
|
|
|
232
232
|
___
|
|
233
233
|
|
|
234
|
+
### game\_layout
|
|
235
|
+
|
|
236
|
+
• `Optional` **game\_layout**: [`SAWGameLayoutName`](../enums/SAWGameLayoutName.md)
|
|
237
|
+
|
|
238
|
+
The layout of the game
|
|
239
|
+
|
|
240
|
+
___
|
|
241
|
+
|
|
234
242
|
### show\_prize\_history
|
|
235
243
|
|
|
236
244
|
• `Optional` **show\_prize\_history**: `boolean`
|
|
@@ -252,3 +260,11 @@ ___
|
|
|
252
260
|
• `Optional` **max\_spins\_period\_ms**: `number`
|
|
253
261
|
|
|
254
262
|
The period of time in milliseconds during which the user can do the maximum number of attempts
|
|
263
|
+
|
|
264
|
+
___
|
|
265
|
+
|
|
266
|
+
### expose\_user\_spin\_id
|
|
267
|
+
|
|
268
|
+
• `Optional` **expose\_user\_spin\_id**: [`SAWExposeUserSpinIdName`](../enums/SAWExposeUserSpinIdName.md)
|
|
269
|
+
|
|
270
|
+
The ID of the user spin id to expose on the game
|