@smartico/public-api 0.0.160 → 0.0.161
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/SAWEventSawPush.d.ts +1 -1
- package/dist/MiniGames/SAWPrize.d.ts +1 -0
- package/dist/WSAPI/WSAPITypes.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -0
- package/dist/index.modern.mjs.map +1 -1
- package/docs/interfaces/TMiniGamePrize.md +6 -0
- package/docs/interfaces/TMissionOrBadge.md +8 -0
- package/package.json +1 -1
- package/src/MiniGames/SAWEventSawPush.ts +1 -1
- package/src/MiniGames/SAWGetTemplatesResponse.ts +1 -0
- package/src/MiniGames/SAWPrize.ts +1 -0
- package/src/WSAPI/WSAPITypes.ts +2 -0
|
@@ -101,6 +101,14 @@ The amount of time in milliseconds that user has to complete the mission
|
|
|
101
101
|
|
|
102
102
|
___
|
|
103
103
|
|
|
104
|
+
### active\_from\_ts
|
|
105
|
+
|
|
106
|
+
• **active\_from\_ts**: `number`
|
|
107
|
+
|
|
108
|
+
Holds time from which mission will become available, for the missions that are targeted to be available from specific date/time
|
|
109
|
+
|
|
110
|
+
___
|
|
111
|
+
|
|
104
112
|
### dt\_start
|
|
105
113
|
|
|
106
114
|
• **dt\_start**: `number`
|
package/package.json
CHANGED
|
@@ -50,6 +50,7 @@ export const SAWTemplatesTransform = (items: SAWTemplate[]): TMiniGameTemplate[]
|
|
|
50
50
|
acknowledge_dp: p.saw_prize_ui_definition.acknowledge_dp,
|
|
51
51
|
acknowledge_action_title: p.saw_prize_ui_definition.acknowledge_action_title,
|
|
52
52
|
pool: p.pool,
|
|
53
|
+
pool_initial: p.pool_initial,
|
|
53
54
|
wins_count: p.wins_count,
|
|
54
55
|
};
|
|
55
56
|
return y;
|
package/src/WSAPI/WSAPITypes.ts
CHANGED