@smartico/public-api 0.0.181 → 0.0.182
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/SAWPrize.d.ts +2 -0
- package/dist/WSAPI/WSAPITypes.d.ts +2 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +3 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/MiniGames/SAWGetTemplatesResponse.ts +2 -0
- package/src/MiniGames/SAWPrize.ts +2 -0
- package/src/WSAPI/WSAPITypes.ts +6 -2
|
@@ -36,6 +36,8 @@ export interface TMiniGamePrize {
|
|
|
36
36
|
weekdays?: number[];
|
|
37
37
|
active_from_ts?: number;
|
|
38
38
|
active_till_ts?: number;
|
|
39
|
+
active_from?: string;
|
|
40
|
+
active_till?: string;
|
|
39
41
|
}
|
|
40
42
|
/**
|
|
41
43
|
* TMiniGamePlayResult describes the response of call to _smartico.api.playMiniGame(template_id) method
|
package/dist/index.js
CHANGED
|
@@ -420,7 +420,9 @@ var SAWTemplatesTransform = function SAWTemplatesTransform(items) {
|
|
|
420
420
|
wins_count: p.wins_count,
|
|
421
421
|
weekdays: p.weekdays,
|
|
422
422
|
active_from_ts: p.active_from_ts,
|
|
423
|
-
active_till_ts: p.active_till_ts
|
|
423
|
+
active_till_ts: p.active_till_ts,
|
|
424
|
+
active_from: p.active_from,
|
|
425
|
+
active_till: p.active_till
|
|
424
426
|
};
|
|
425
427
|
return y;
|
|
426
428
|
})
|