@smartico/public-api 0.0.279 → 0.0.281

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.
Files changed (68) hide show
  1. package/dist/MiniGames/SAWBuyInType.d.ts +0 -1
  2. package/dist/MiniGames/SAWGameType.d.ts +0 -1
  3. package/dist/MiniGames/SAWPrizeType.d.ts +0 -1
  4. package/dist/MiniGames/SAWTemplateUI.d.ts +1 -0
  5. package/dist/Missions/index.d.ts +1 -0
  6. package/dist/SmarticoLib/index.d.ts +1 -0
  7. package/dist/Tournaments/Tournament.d.ts +3 -2
  8. package/dist/Tournaments/TournamentRegistrationStatus.d.ts +0 -1
  9. package/dist/Tournaments/TournamentRegistrationType.d.ts +0 -1
  10. package/dist/WSAPI/WSAPITypes.d.ts +26 -1
  11. package/dist/index.js +57 -62
  12. package/dist/index.js.map +1 -1
  13. package/dist/index.modern.mjs +53 -58
  14. package/dist/index.modern.mjs.map +1 -1
  15. package/docs/README.md +103 -0
  16. package/docs/classes/SAWUtils.md +27 -0
  17. package/docs/classes/WSAPI.md +5 -2
  18. package/docs/enums/AchCustomLayoutTheme.md +25 -0
  19. package/docs/enums/AchMissionsTabsOptions.md +19 -0
  20. package/docs/enums/AchOverviewMissionsFilter.md +31 -0
  21. package/docs/enums/BonusStatus-1.md +49 -0
  22. package/docs/enums/BonusStatus.md +37 -0
  23. package/docs/enums/SAWAcknowledgeType.md +25 -0
  24. package/docs/enums/SAWBuyInType.md +31 -0
  25. package/docs/enums/SAWGameType.md +61 -0
  26. package/docs/enums/SAWPrizeType.md +61 -0
  27. package/docs/enums/SAWWheelLayout.md +25 -0
  28. package/docs/enums/SAWWinSoundType.md +31 -0
  29. package/docs/enums/TournamentRegistrationStatus.md +43 -0
  30. package/docs/enums/TournamentRegistrationType.md +43 -0
  31. package/docs/interfaces/BonusMetaMap.md +9 -0
  32. package/docs/interfaces/BonusTemplateMetaMap.md +25 -0
  33. package/docs/interfaces/SAWAcknowledgeSpinPushRequest.md +79 -0
  34. package/docs/interfaces/SAWDoAknowledgeRequest.md +43 -0
  35. package/docs/interfaces/SAWDoAknowledgeResponse.md +43 -0
  36. package/docs/interfaces/SAWDoSpinRequest.md +79 -0
  37. package/docs/interfaces/SAWDoSpinResponse.md +87 -0
  38. package/docs/interfaces/SAWEventSawPush.md +55 -0
  39. package/docs/interfaces/SAWGetTemplatesRequest.md +79 -0
  40. package/docs/interfaces/SAWGetTemplatesResponse.md +63 -0
  41. package/docs/interfaces/SAWPrize.md +107 -0
  42. package/docs/interfaces/SAWPrizeDropAknowledgeRequest.md +55 -0
  43. package/docs/interfaces/SAWPrizeDropAknowledgeResponse.md +43 -0
  44. package/docs/interfaces/SAWPrizeDropWinPush.md +67 -0
  45. package/docs/interfaces/SAWPrizeUI.md +157 -0
  46. package/docs/interfaces/SAWPrizesHistory.md +49 -0
  47. package/docs/interfaces/SAWSpinsCountPush.md +49 -0
  48. package/docs/interfaces/SAWTemplate.md +154 -0
  49. package/docs/interfaces/SAWTemplateUI.md +7 -1
  50. package/docs/interfaces/SAWWinningHistoryRequest.md +61 -0
  51. package/docs/interfaces/SAWWinningHistoryResponse.md +69 -0
  52. package/docs/interfaces/TBonus.md +3 -3
  53. package/docs/interfaces/TSawHistory.md +1 -1
  54. package/docs/interfaces/TUICustomSection.md +3 -3
  55. package/package.json +1 -1
  56. package/src/MiniGames/SAWBuyInType.ts +0 -1
  57. package/src/MiniGames/SAWGameType.ts +0 -2
  58. package/src/MiniGames/SAWGetTemplatesResponse.ts +1 -1
  59. package/src/MiniGames/SAWPrizeType.ts +0 -1
  60. package/src/MiniGames/SAWTemplateUI.ts +1 -0
  61. package/src/Missions/index.ts +1 -0
  62. package/src/SmarticoLib/index.ts +1 -0
  63. package/src/Tournaments/Tournament.ts +4 -2
  64. package/src/Tournaments/TournamentRegistrationStatus.ts +0 -1
  65. package/src/Tournaments/TournamentRegistrationType.ts +0 -1
  66. package/src/WSAPI/WSAPI.ts +1 -16
  67. package/src/WSAPI/WSAPITypes.ts +30 -6
  68. package/tsconfig.json +4 -5
package/docs/README.md CHANGED
@@ -2,26 +2,43 @@
2
2
 
3
3
  ## Enumerations
4
4
 
5
+ - [BonusStatus](enums/BonusStatus.md)
5
6
  - [AchCustomSectionType](enums/AchCustomSectionType.md)
7
+ - [AchCustomLayoutTheme](enums/AchCustomLayoutTheme.md)
8
+ - [AchMissionsTabsOptions](enums/AchMissionsTabsOptions.md)
9
+ - [AchOverviewMissionsFilter](enums/AchOverviewMissionsFilter.md)
6
10
  - [InboxCategories](enums/InboxCategories.md)
7
11
  - [JackpotContributionType](enums/JackpotContributionType.md)
8
12
  - [JackPotTemparature](enums/JackPotTemparature.md)
9
13
  - [JackpotType](enums/JackpotType.md)
10
14
  - [LeaderBoardPeriodType](enums/LeaderBoardPeriodType.md)
11
15
  - [PrizeModifiers](enums/PrizeModifiers.md)
16
+ - [SAWAcknowledgeType](enums/SAWAcknowledgeType.md)
12
17
  - [SAWAcknowledgeTypeName](enums/SAWAcknowledgeTypeName.md)
13
18
  - [SAWAskForUsername](enums/SAWAskForUsername.md)
19
+ - [SAWBuyInType](enums/SAWBuyInType.md)
14
20
  - [SAWBuyInTypeName](enums/SAWBuyInTypeName.md)
15
21
  - [SAWGameLayout](enums/SAWGameLayout.md)
22
+ - [SAWGameType](enums/SAWGameType.md)
16
23
  - [SAWGameTypeName](enums/SAWGameTypeName.md)
24
+ - [SAWPrizeType](enums/SAWPrizeType.md)
17
25
  - [MiniGamePrizeTypeName](enums/MiniGamePrizeTypeName.md)
18
26
  - [SAWSpinErrorCode](enums/SAWSpinErrorCode.md)
27
+ - [SAWWheelLayout](enums/SAWWheelLayout.md)
28
+ - [SAWWinSoundType](enums/SAWWinSoundType.md)
19
29
  - [AchievementAvailabilityStatus](enums/AchievementAvailabilityStatus.md)
20
30
  - [RaffleDrawInstanceState](enums/RaffleDrawInstanceState.md)
21
31
  - [RaffleDrawTypeExecution](enums/RaffleDrawTypeExecution.md)
22
32
  - [BuyStoreItemErrorCode](enums/BuyStoreItemErrorCode.md)
23
33
  - [TournamentRegistrationError](enums/TournamentRegistrationError.md)
34
+ - [TournamentRegistrationStatus](enums/TournamentRegistrationStatus.md)
24
35
  - [TournamentRegistrationStatusName](enums/TournamentRegistrationStatusName.md)
36
+ - [TournamentRegistrationType](enums/TournamentRegistrationType.md)
37
+ - [BonusStatus](enums/BonusStatus-1.md)
38
+
39
+ ## Classes
40
+
41
+ - [SAWUtils](classes/SAWUtils.md)
25
42
 
26
43
  ## Interfaces
27
44
 
@@ -47,7 +64,25 @@
47
64
  - [JackpotsOptinResponse](interfaces/JackpotsOptinResponse.md)
48
65
  - [JackpotsOptoutRequest](interfaces/JackpotsOptoutRequest.md)
49
66
  - [JackpotsOptoutResponse](interfaces/JackpotsOptoutResponse.md)
67
+ - [SAWAcknowledgeSpinPushRequest](interfaces/SAWAcknowledgeSpinPushRequest.md)
68
+ - [SAWDoAknowledgeRequest](interfaces/SAWDoAknowledgeRequest.md)
69
+ - [SAWDoAknowledgeResponse](interfaces/SAWDoAknowledgeResponse.md)
70
+ - [SAWDoSpinRequest](interfaces/SAWDoSpinRequest.md)
71
+ - [SAWDoSpinResponse](interfaces/SAWDoSpinResponse.md)
72
+ - [SAWEventSawPush](interfaces/SAWEventSawPush.md)
73
+ - [SAWGetTemplatesRequest](interfaces/SAWGetTemplatesRequest.md)
74
+ - [SAWGetTemplatesResponse](interfaces/SAWGetTemplatesResponse.md)
75
+ - [SAWPrize](interfaces/SAWPrize.md)
76
+ - [SAWPrizeDropAknowledgeRequest](interfaces/SAWPrizeDropAknowledgeRequest.md)
77
+ - [SAWPrizeDropAknowledgeResponse](interfaces/SAWPrizeDropAknowledgeResponse.md)
78
+ - [SAWPrizeDropWinPush](interfaces/SAWPrizeDropWinPush.md)
79
+ - [SAWPrizeUI](interfaces/SAWPrizeUI.md)
80
+ - [SAWSpinsCountPush](interfaces/SAWSpinsCountPush.md)
81
+ - [SAWTemplate](interfaces/SAWTemplate.md)
50
82
  - [SAWTemplateUI](interfaces/SAWTemplateUI.md)
83
+ - [SAWWinningHistoryRequest](interfaces/SAWWinningHistoryRequest.md)
84
+ - [SAWWinningHistoryResponse](interfaces/SAWWinningHistoryResponse.md)
85
+ - [SAWPrizesHistory](interfaces/SAWPrizesHistory.md)
51
86
  - [GetDrawRunRequest](interfaces/GetDrawRunRequest.md)
52
87
  - [GetDrawRunResponse](interfaces/GetDrawRunResponse.md)
53
88
  - [GetRaffleDrawRunsHistoryRequest](interfaces/GetRaffleDrawRunsHistoryRequest.md)
@@ -94,6 +129,8 @@
94
129
  - [TSegmentCheckResult](interfaces/TSegmentCheckResult.md)
95
130
  - [TUICustomSection](interfaces/TUICustomSection.md)
96
131
  - [TBonus](interfaces/TBonus.md)
132
+ - [BonusTemplateMetaMap](interfaces/BonusTemplateMetaMap.md)
133
+ - [BonusMetaMap](interfaces/BonusMetaMap.md)
97
134
  - [TClaimBonusResult](interfaces/TClaimBonusResult.md)
98
135
  - [TSawHistory](interfaces/TSawHistory.md)
99
136
  - [TRaffle](interfaces/TRaffle.md)
@@ -113,3 +150,69 @@
113
150
  ### TournamentRegistrationTypeName
114
151
 
115
152
  Ƭ **TournamentRegistrationTypeName**: ``"AUTO"`` \| ``"OPT_IN"`` \| ``"BUY_IN_POINTS"`` \| ``"MANUAL_APPROVAL"`` \| ``"REQUIRES_QUALIFICATION"`` \| ``"BUY_IN_GEMS"`` \| ``"BUY_IN_DIAMONDS"`` \| ``"UNKNOWN"``
153
+
154
+ ## Variables
155
+
156
+ ### PrizeModifiersKeysNames
157
+
158
+ • `Const` **PrizeModifiersKeysNames**: `Object`
159
+
160
+ #### Type declaration
161
+
162
+ | Name | Type |
163
+ | :------ | :------ |
164
+ | `1` | `string` |
165
+ | `2` | `string` |
166
+ | `3` | `string` |
167
+ | `4` | `string` |
168
+ | `5` | `string` |
169
+ | `6` | `string` |
170
+ | `7` | `string` |
171
+ | `8` | `string` |
172
+
173
+ ___
174
+
175
+ ### SAWWinSoundFiles
176
+
177
+ • `Const` **SAWWinSoundFiles**: `Object`
178
+
179
+ #### Type declaration
180
+
181
+ | Name | Type |
182
+ | :------ | :------ |
183
+ | `4` | `any` |
184
+ | `1` | `string` |
185
+ | `2` | `string` |
186
+ | `3` | `string` |
187
+
188
+ ## Functions
189
+
190
+ ### SAWTemplatesTransform
191
+
192
+ ▸ **SAWTemplatesTransform**(`items`): [`TMiniGameTemplate`](interfaces/TMiniGameTemplate.md)[]
193
+
194
+ #### Parameters
195
+
196
+ | Name | Type |
197
+ | :------ | :------ |
198
+ | `items` | [`SAWTemplate`](interfaces/SAWTemplate.md)[] |
199
+
200
+ #### Returns
201
+
202
+ [`TMiniGameTemplate`](interfaces/TMiniGameTemplate.md)[]
203
+
204
+ ___
205
+
206
+ ### SAWHistoryTransform
207
+
208
+ ▸ **SAWHistoryTransform**(`items`): [`TSawHistory`](interfaces/TSawHistory.md)[]
209
+
210
+ #### Parameters
211
+
212
+ | Name | Type |
213
+ | :------ | :------ |
214
+ | `items` | [`SAWPrizesHistory`](interfaces/SAWPrizesHistory.md)[] |
215
+
216
+ #### Returns
217
+
218
+ [`TSawHistory`](interfaces/TSawHistory.md)[]
@@ -0,0 +1,27 @@
1
+ # Class: SAWUtils
2
+
3
+ ## Constructors
4
+
5
+ ### constructor
6
+
7
+ • **new SAWUtils**()
8
+
9
+ ## Methods
10
+
11
+ ### canPlay
12
+
13
+ ▸ `Static` **canPlay**(`t`, `user_balances`): `boolean`
14
+
15
+ #### Parameters
16
+
17
+ | Name | Type |
18
+ | :------ | :------ |
19
+ | `t` | [`SAWTemplate`](../interfaces/SAWTemplate.md) |
20
+ | `user_balances` | `Object` |
21
+ | `user_balances.ach_points_balance` | `number` |
22
+ | `user_balances.ach_gems_balance` | `number` |
23
+ | `user_balances.ach_diamonds_balance` | `number` |
24
+
25
+ #### Returns
26
+
27
+ `boolean`
@@ -303,6 +303,9 @@ ___
303
303
  Returns purchased items based on the provided parameters. "Limit" and "offset" indicate the range of items to be fetched.
304
304
  The maximum number of items per request is limited to 20.
305
305
  You can leave this params empty and by default it will return list of purchased items ranging from 0 to 20.
306
+ The returned store items are cached for 30 seconds. But you can pass the onUpdate callback as a parameter.
307
+ Note that each time you call getStorePurchasedItems with a new onUpdate callback, the old one will be overwritten by the new one.
308
+ The onUpdate callback will be called on purchase of the store item and the last 20 items will be passed to it.
306
309
 
307
310
  **Example**:
308
311
  ```
@@ -481,7 +484,7 @@ ___
481
484
 
482
485
  ### miniGameWinAcknowledgeRequest
483
486
 
484
- ▸ **miniGameWinAcknowledgeRequest**(`request_id`): `Promise`\<`SAWDoAknowledgeResponse`\>
487
+ ▸ **miniGameWinAcknowledgeRequest**(`request_id`): `Promise`\<[`SAWDoAknowledgeResponse`](../interfaces/SAWDoAknowledgeResponse.md)\>
485
488
 
486
489
  Sends the acknowledge request with specific client_request_id from minigame history in order to claim prize
487
490
  **Example**:
@@ -499,7 +502,7 @@ _smartico.api.miniGameWinAcknowledgeRequest('2a189322-31bb-4119-b943-bx7868ff8dc
499
502
 
500
503
  #### Returns
501
504
 
502
- `Promise`\<`SAWDoAknowledgeResponse`\>
505
+ `Promise`\<[`SAWDoAknowledgeResponse`](../interfaces/SAWDoAknowledgeResponse.md)\>
503
506
 
504
507
  ___
505
508
 
@@ -0,0 +1,25 @@
1
+ # Enumeration: AchCustomLayoutTheme
2
+
3
+ ## Enumeration Members
4
+
5
+ ### VALENTINES\_LIGHT
6
+
7
+ • **VALENTINES\_LIGHT** = ``"valentines-light"``
8
+
9
+ ___
10
+
11
+ ### VALENTINES\_DARK
12
+
13
+ • **VALENTINES\_DARK** = ``"valentines-dark"``
14
+
15
+ ___
16
+
17
+ ### EURO\_2024
18
+
19
+ • **EURO\_2024** = ``"euro-2024"``
20
+
21
+ ___
22
+
23
+ ### GENERIC
24
+
25
+ • **GENERIC** = ``"generic"``
@@ -0,0 +1,19 @@
1
+ # Enumeration: AchMissionsTabsOptions
2
+
3
+ ## Enumeration Members
4
+
5
+ ### ONLY\_OVERVIEW
6
+
7
+ • **ONLY\_OVERVIEW** = ``1``
8
+
9
+ ___
10
+
11
+ ### NO\_OVERVIEW
12
+
13
+ • **NO\_OVERVIEW** = ``2``
14
+
15
+ ___
16
+
17
+ ### ALL
18
+
19
+ • **ALL** = ``3``
@@ -0,0 +1,31 @@
1
+ # Enumeration: AchOverviewMissionsFilter
2
+
3
+ ## Enumeration Members
4
+
5
+ ### ANY
6
+
7
+ • **ANY** = ``1``
8
+
9
+ ___
10
+
11
+ ### ALL\_MISSIONS
12
+
13
+ • **ALL\_MISSIONS** = ``2``
14
+
15
+ ___
16
+
17
+ ### ALL\_EXCEPT\_COMPLETED
18
+
19
+ • **ALL\_EXCEPT\_COMPLETED** = ``3``
20
+
21
+ ___
22
+
23
+ ### ALL\_EXCEPT\_LOCKED
24
+
25
+ • **ALL\_EXCEPT\_LOCKED** = ``4``
26
+
27
+ ___
28
+
29
+ ### ALL\_EXCEPT\_COMPLETED\_AND\_LOCKED
30
+
31
+ • **ALL\_EXCEPT\_COMPLETED\_AND\_LOCKED** = ``5``
@@ -0,0 +1,49 @@
1
+ # Enumeration: BonusStatus
2
+
3
+ ## Enumeration Members
4
+
5
+ ### New
6
+
7
+ • **New** = ``1``
8
+
9
+ The bonus is newly created (shouldn't be shown to the client)
10
+
11
+ ___
12
+
13
+ ### COUPON\_ISSUED
14
+
15
+ • **COUPON\_ISSUED** = ``2``
16
+
17
+ The bonus is issued and available for redemption but has not been redeemed yet
18
+
19
+ ___
20
+
21
+ ### REDEEMED
22
+
23
+ • **REDEEMED** = ``3``
24
+
25
+ The bonus has been successfully redeemed
26
+
27
+ ___
28
+
29
+ ### REDEEM\_FAILED
30
+
31
+ • **REDEEM\_FAILED** = ``4``
32
+
33
+ The bonus is still valid, but a previous redemption attempt failed
34
+
35
+ ___
36
+
37
+ ### COUPON\_ISSUE\_FAILED
38
+
39
+ • **COUPON\_ISSUE\_FAILED** = ``5``
40
+
41
+ Failed to issue the bonus (shouldn't be shown to the client)
42
+
43
+ ___
44
+
45
+ ### EXPIRED
46
+
47
+ • **EXPIRED** = ``6``
48
+
49
+ The bonus was issued but has expired and can no longer be redeemed (shouldn't be shown to the client)
@@ -0,0 +1,37 @@
1
+ # Enumeration: BonusStatus
2
+
3
+ ## Enumeration Members
4
+
5
+ ### New
6
+
7
+ • **New** = ``1``
8
+
9
+ ___
10
+
11
+ ### COUPON\_ISSUED
12
+
13
+ • **COUPON\_ISSUED** = ``2``
14
+
15
+ ___
16
+
17
+ ### REDEEMED
18
+
19
+ • **REDEEMED** = ``3``
20
+
21
+ ___
22
+
23
+ ### REDEEM\_FAILED
24
+
25
+ • **REDEEM\_FAILED** = ``4``
26
+
27
+ ___
28
+
29
+ ### COUPON\_ISSUE\_FAILED
30
+
31
+ • **COUPON\_ISSUE\_FAILED** = ``5``
32
+
33
+ ___
34
+
35
+ ### EXPIRED
36
+
37
+ • **EXPIRED** = ``6``
@@ -0,0 +1,25 @@
1
+ # Enumeration: SAWAcknowledgeType
2
+
3
+ ## Enumeration Members
4
+
5
+ ### Silent
6
+
7
+ • **Silent** = ``1``
8
+
9
+ ___
10
+
11
+ ### QuickMessage
12
+
13
+ • **QuickMessage** = ``2``
14
+
15
+ ___
16
+
17
+ ### FullMessage
18
+
19
+ • **FullMessage** = ``3``
20
+
21
+ ___
22
+
23
+ ### ExplicityAcknowledge
24
+
25
+ • **ExplicityAcknowledge** = ``4``
@@ -0,0 +1,31 @@
1
+ # Enumeration: SAWBuyInType
2
+
3
+ ## Enumeration Members
4
+
5
+ ### Free
6
+
7
+ • **Free** = ``1``
8
+
9
+ ___
10
+
11
+ ### Points
12
+
13
+ • **Points** = ``2``
14
+
15
+ ___
16
+
17
+ ### Spins
18
+
19
+ • **Spins** = ``3``
20
+
21
+ ___
22
+
23
+ ### Gems
24
+
25
+ • **Gems** = ``4``
26
+
27
+ ___
28
+
29
+ ### Diamonds
30
+
31
+ • **Diamonds** = ``5``
@@ -0,0 +1,61 @@
1
+ # Enumeration: SAWGameType
2
+
3
+ ## Enumeration Members
4
+
5
+ ### SpinAWheel
6
+
7
+ • **SpinAWheel** = ``1``
8
+
9
+ ___
10
+
11
+ ### ScratchCard
12
+
13
+ • **ScratchCard** = ``2``
14
+
15
+ ___
16
+
17
+ ### MatchX
18
+
19
+ • **MatchX** = ``3``
20
+
21
+ ___
22
+
23
+ ### GiftBox
24
+
25
+ • **GiftBox** = ``4``
26
+
27
+ ___
28
+
29
+ ### PrizeDrop
30
+
31
+ • **PrizeDrop** = ``5``
32
+
33
+ ___
34
+
35
+ ### Quiz
36
+
37
+ • **Quiz** = ``6``
38
+
39
+ ___
40
+
41
+ ### LootboxWeekdays
42
+
43
+ • **LootboxWeekdays** = ``7``
44
+
45
+ ___
46
+
47
+ ### LootboxCalendarDays
48
+
49
+ • **LootboxCalendarDays** = ``8``
50
+
51
+ ___
52
+
53
+ ### TreasureHunt
54
+
55
+ • **TreasureHunt** = ``9``
56
+
57
+ ___
58
+
59
+ ### Voyager
60
+
61
+ • **Voyager** = ``10``
@@ -0,0 +1,61 @@
1
+ # Enumeration: SAWPrizeType
2
+
3
+ ## Enumeration Members
4
+
5
+ ### NO\_PRIZE
6
+
7
+ • **NO\_PRIZE** = ``1``
8
+
9
+ ___
10
+
11
+ ### POINTS
12
+
13
+ • **POINTS** = ``2``
14
+
15
+ ___
16
+
17
+ ### BONUS
18
+
19
+ • **BONUS** = ``3``
20
+
21
+ ___
22
+
23
+ ### MANUAL
24
+
25
+ • **MANUAL** = ``4``
26
+
27
+ ___
28
+
29
+ ### SPIN
30
+
31
+ • **SPIN** = ``5``
32
+
33
+ ___
34
+
35
+ ### JACKPOT
36
+
37
+ • **JACKPOT** = ``6``
38
+
39
+ ___
40
+
41
+ ### CHANGE\_LEVEL
42
+
43
+ • **CHANGE\_LEVEL** = ``7``
44
+
45
+ ___
46
+
47
+ ### MISSION
48
+
49
+ • **MISSION** = ``8``
50
+
51
+ ___
52
+
53
+ ### RAFFLE\_TICKET
54
+
55
+ • **RAFFLE\_TICKET** = ``9``
56
+
57
+ ___
58
+
59
+ ### GEMS\_AND\_DIAMONDS
60
+
61
+ • **GEMS\_AND\_DIAMONDS** = ``10``
@@ -0,0 +1,25 @@
1
+ # Enumeration: SAWWheelLayout
2
+
3
+ ## Enumeration Members
4
+
5
+ ### Centered
6
+
7
+ • **Centered** = ``1``
8
+
9
+ ___
10
+
11
+ ### LeftAligned
12
+
13
+ • **LeftAligned** = ``2``
14
+
15
+ ___
16
+
17
+ ### RightAligned
18
+
19
+ • **RightAligned** = ``3``
20
+
21
+ ___
22
+
23
+ ### BottomAligned
24
+
25
+ • **BottomAligned** = ``4``
@@ -0,0 +1,31 @@
1
+ # Enumeration: SAWWinSoundType
2
+
3
+ ## Enumeration Members
4
+
5
+ ### Disappointing
6
+
7
+ • **Disappointing** = ``1``
8
+
9
+ ___
10
+
11
+ ### Positive
12
+
13
+ • **Positive** = ``2``
14
+
15
+ ___
16
+
17
+ ### HighlyPositive
18
+
19
+ • **HighlyPositive** = ``3``
20
+
21
+ ___
22
+
23
+ ### NoSound
24
+
25
+ • **NoSound** = ``4``
26
+
27
+ ___
28
+
29
+ ### Custom
30
+
31
+ • **Custom** = ``5``
@@ -0,0 +1,43 @@
1
+ # Enumeration: TournamentRegistrationStatus
2
+
3
+ ## Enumeration Members
4
+
5
+ ### NOT\_REGISTERED
6
+
7
+ • **NOT\_REGISTERED** = ``0``
8
+
9
+ ___
10
+
11
+ ### REGISTERED
12
+
13
+ • **REGISTERED** = ``1``
14
+
15
+ ___
16
+
17
+ ### FINISHED
18
+
19
+ • **FINISHED** = ``2``
20
+
21
+ ___
22
+
23
+ ### PENDING
24
+
25
+ • **PENDING** = ``3``
26
+
27
+ ___
28
+
29
+ ### CANCELLED
30
+
31
+ • **CANCELLED** = ``4``
32
+
33
+ ___
34
+
35
+ ### REGISTERED\_PENDING\_QUALIFICATION
36
+
37
+ • **REGISTERED\_PENDING\_QUALIFICATION** = ``5``
38
+
39
+ ___
40
+
41
+ ### QUALIFIED\_PENDING\_REGISTRATION
42
+
43
+ • **QUALIFIED\_PENDING\_REGISTRATION** = ``6``
@@ -0,0 +1,43 @@
1
+ # Enumeration: TournamentRegistrationType
2
+
3
+ ## Enumeration Members
4
+
5
+ ### AUTO
6
+
7
+ • **AUTO** = ``1``
8
+
9
+ ___
10
+
11
+ ### OPT\_IN
12
+
13
+ • **OPT\_IN** = ``2``
14
+
15
+ ___
16
+
17
+ ### BUY\_IN\_POINTS
18
+
19
+ • **BUY\_IN\_POINTS** = ``3``
20
+
21
+ ___
22
+
23
+ ### MANUAL\_APPROVAL
24
+
25
+ • **MANUAL\_APPROVAL** = ``4``
26
+
27
+ ___
28
+
29
+ ### REQUIRES\_QUALIFICATION
30
+
31
+ • **REQUIRES\_QUALIFICATION** = ``5``
32
+
33
+ ___
34
+
35
+ ### BUY\_IN\_GEMS
36
+
37
+ • **BUY\_IN\_GEMS** = ``6``
38
+
39
+ ___
40
+
41
+ ### BUY\_IN\_DIAMONDS
42
+
43
+ • **BUY\_IN\_DIAMONDS** = ``7``
@@ -0,0 +1,9 @@
1
+ # Interface: BonusMetaMap
2
+
3
+ ## Properties
4
+
5
+ ### uiAmount
6
+
7
+ • `Optional` **uiAmount**: `string`
8
+
9
+ Label and description of the bonus sent to the player