@aprilium/tripsm_message-support 0.0.6 → 0.0.7
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.
@@ -71,7 +71,7 @@ exports.StateNames = {
|
|
71
71
|
messageSupportStateName: "message-support",
|
72
72
|
};
|
73
73
|
exports.reducers = {
|
74
|
-
messageSupport: state_1.
|
74
|
+
messageSupport: state_1.MessageSupportReducerFunction,
|
75
75
|
};
|
76
76
|
var newReducer = function (stateImmerClass, initialState) { return (0, immer_reducer_1.createReducerFunction)(stateImmerClass, initialState); };
|
77
77
|
exports.newReducer = newReducer;
|
@@ -29,4 +29,4 @@ export declare class MessageSupportState extends ImmerReducer<State> {
|
|
29
29
|
addMessageSupportFailure(errorMessageSupport: string, technicalErrorMessageSupport: technicalErrorMessageType): void;
|
30
30
|
}
|
31
31
|
export declare const MessageSupportActions: import("immer-reducer").ActionCreators<typeof MessageSupportState>;
|
32
|
-
export declare const
|
32
|
+
export declare const MessageSupportReducerFunction: import("immer-reducer").ImmerReducerFunction<typeof MessageSupportState>;
|
@@ -15,7 +15,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
15
15
|
};
|
16
16
|
})();
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
18
|
-
exports.
|
18
|
+
exports.MessageSupportReducerFunction = exports.MessageSupportActions = exports.MessageSupportState = exports.initialState = void 0;
|
19
19
|
var immer_reducer_1 = require("immer-reducer");
|
20
20
|
exports.initialState = {
|
21
21
|
getMessageSupport: {
|
@@ -79,4 +79,4 @@ var MessageSupportState = /** @class */ (function (_super) {
|
|
79
79
|
}(immer_reducer_1.ImmerReducer));
|
80
80
|
exports.MessageSupportState = MessageSupportState;
|
81
81
|
exports.MessageSupportActions = (0, immer_reducer_1.createActionCreators)(MessageSupportState);
|
82
|
-
exports.
|
82
|
+
exports.MessageSupportReducerFunction = (0, immer_reducer_1.createReducerFunction)(MessageSupportState, exports.initialState);
|