@smartico/public-api 0.0.232 → 0.0.233
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/package.json
CHANGED
|
@@ -74,7 +74,7 @@ export const SAWTemplatesTransform = (items: SAWTemplate[]): TMiniGameTemplate[]
|
|
|
74
74
|
custom_data: IntUtils.JsonOrText(p.saw_prize_ui_definition?.custom_data),
|
|
75
75
|
prize_modifiers: p.saw_prize_ui_definition.prize_modifiers,
|
|
76
76
|
allow_split_decimal: p.saw_prize_ui_definition.allow_split_decimal,
|
|
77
|
-
hide_prize_from_history: p.saw_prize_ui_definition.hide_prize_from_history
|
|
77
|
+
hide_prize_from_history: p.saw_prize_ui_definition.hide_prize_from_history,
|
|
78
78
|
};
|
|
79
79
|
return y;
|
|
80
80
|
}),
|
package/src/WSAPI/WSAPITypes.ts
CHANGED
|
@@ -74,7 +74,7 @@ export interface TMiniGamePrize {
|
|
|
74
74
|
/** When enabled, you can split prize value by decimal values */
|
|
75
75
|
allow_split_decimal?: boolean;
|
|
76
76
|
/** When enabled, you can hide prize from prize history */
|
|
77
|
-
hide_prize_from_history?:boolean;
|
|
77
|
+
hide_prize_from_history?: boolean;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
/**
|