mario-core 2.9.389-release → 2.9.390-release
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/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/redux/commons/action.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -38381,6 +38381,7 @@ var showMenuBar = toolkit.createAction("common/showMenuBar");
|
|
|
38381
38381
|
var showFontSize = toolkit.createAction("common/showFontSize");
|
|
38382
38382
|
var setEnableIEP = toolkit.createAction("common/setEnableIEP");
|
|
38383
38383
|
var setEnableSurvey = toolkit.createAction("common/setEnableSurvey");
|
|
38384
|
+
var setEnableMarioAi = toolkit.createAction("common/setEnableMarioAi");
|
|
38384
38385
|
var setSandboxMode = toolkit.createAction("common/setSandboxMode");
|
|
38385
38386
|
var setConversationOneToOne = toolkit.createAction("common/setConversationOneToOne");
|
|
38386
38387
|
var setLanguage = toolkit.createAction("common/setLanguage");
|
|
@@ -48769,6 +48770,7 @@ var initialState = {
|
|
|
48769
48770
|
defaultFontSize: 16,
|
|
48770
48771
|
isEnableIEP: true,
|
|
48771
48772
|
isEnableSurvey: false,
|
|
48773
|
+
isEnableMarioAi: false,
|
|
48772
48774
|
isConversationOneToOne: false,
|
|
48773
48775
|
isSandboxMode: false,
|
|
48774
48776
|
isLoginGoogle: false,
|
|
@@ -48823,6 +48825,8 @@ var commonReducer = toolkit.createReducer(initialState, function (builder) {
|
|
|
48823
48825
|
state.isEnableIEP = action.payload;
|
|
48824
48826
|
}).addCase(setEnableSurvey, function (state, action) {
|
|
48825
48827
|
state.isEnableSurvey = action.payload;
|
|
48828
|
+
}).addCase(setEnableMarioAi, function (state, action) {
|
|
48829
|
+
state.isEnableMarioAi = action.payload;
|
|
48826
48830
|
}).addCase(setConversationOneToOne, function (state, action) {
|
|
48827
48831
|
state.isConversationOneToOne = action.payload;
|
|
48828
48832
|
}).addCase(setLanguage, function (state, action) {
|