@smartico/public-api 0.0.317 → 0.0.318
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/SAWDoSpinResponse.d.ts +1 -0
- package/dist/MiniGames/SAWExposeUserSpinId.d.ts +4 -0
- package/dist/MiniGames/SAWTemplateUI.d.ts +2 -0
- package/dist/MiniGames/index.d.ts +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +7 -1
- package/dist/index.modern.mjs.map +1 -1
- package/docs/README.md +1 -0
- package/docs/enums/SAWExposeUserSpinId.md +13 -0
- package/docs/interfaces/SAWDoSpinResponse.md +6 -0
- package/docs/interfaces/SAWTemplateUI.md +6 -0
- package/package.json +1 -1
- package/src/MiniGames/SAWDoSpinResponse.ts +1 -0
- package/src/MiniGames/SAWExposeUserSpinId.ts +4 -0
- package/src/MiniGames/SAWTemplateUI.ts +2 -0
- package/src/MiniGames/index.ts +1 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SAWAskForUsername } from './SAWAskForUsername';
|
|
2
|
+
import { SAWExposeUserSpinId } from './SAWExposeUserSpinId';
|
|
2
3
|
import { SAWGameDifficultyType } from './SAWGameDifficulty';
|
|
3
4
|
import { SAWGameLayout } from './SAWGameLayout';
|
|
4
5
|
import { SAWWheelLayout } from './SAWWheelLayout';
|
|
@@ -42,6 +43,7 @@ export interface SAWTemplateUI {
|
|
|
42
43
|
disable_background_music?: boolean;
|
|
43
44
|
custom_section_id?: number;
|
|
44
45
|
only_in_custom_section?: boolean;
|
|
46
|
+
expose_user_spin_id?: SAWExposeUserSpinId;
|
|
45
47
|
custom_data: any;
|
|
46
48
|
placeholder1?: string;
|
|
47
49
|
placeholder2?: string;
|
package/dist/index.js
CHANGED
|
@@ -595,6 +595,12 @@ var SawGameDifficultyTypeNamed = function SawGameDifficultyTypeNamed(type) {
|
|
|
595
595
|
return (_SAWGameDifficultyTyp = {}, _SAWGameDifficultyTyp[exports.SAWGameDifficultyType.EASY] = exports.SAWGameDifficultyTypeName.EASY, _SAWGameDifficultyTyp[exports.SAWGameDifficultyType.MEDIUM] = exports.SAWGameDifficultyTypeName.MEDIUM, _SAWGameDifficultyTyp[exports.SAWGameDifficultyType.HARD] = exports.SAWGameDifficultyTypeName.HARD, _SAWGameDifficultyTyp)[type];
|
|
596
596
|
};
|
|
597
597
|
|
|
598
|
+
exports.SAWExposeUserSpinId = void 0;
|
|
599
|
+
(function (SAWExposeUserSpinId) {
|
|
600
|
+
SAWExposeUserSpinId[SAWExposeUserSpinId["UserId"] = 1] = "UserId";
|
|
601
|
+
SAWExposeUserSpinId[SAWExposeUserSpinId["SpinId"] = 2] = "SpinId";
|
|
602
|
+
})(exports.SAWExposeUserSpinId || (exports.SAWExposeUserSpinId = {}));
|
|
603
|
+
|
|
598
604
|
var NodeCache = /*#__PURE__*/function () {
|
|
599
605
|
function NodeCache() {
|
|
600
606
|
var _this = this;
|