@capillarytech/creatives-library 9.0.61-alpha.1 → 9.0.61-alpha.2
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
|
@@ -82,7 +82,9 @@ import CapVideoUpload from '../../v2Components/CapVideoUpload';
|
|
|
82
82
|
import './index.scss';
|
|
83
83
|
import { ViberFooter } from './style';
|
|
84
84
|
import injectReducer from '../../utils/injectReducer';
|
|
85
|
+
import injectSaga from '../../utils/injectSaga';
|
|
85
86
|
import v2ViberReducer from './reducer';
|
|
87
|
+
import { v2ViberSagas } from './sagas';
|
|
86
88
|
|
|
87
89
|
|
|
88
90
|
const { TextArea } = CapInput;
|
|
@@ -1610,6 +1612,7 @@ const mapDispatchToProps = (dispatch) => ({
|
|
|
1610
1612
|
});
|
|
1611
1613
|
|
|
1612
1614
|
const withReducer = injectReducer({ key: 'viber', reducer: v2ViberReducer });
|
|
1615
|
+
const withViberSaga = injectSaga({ key: 'viber', saga: v2ViberSagas });
|
|
1613
1616
|
|
|
1614
1617
|
export default withCreatives({
|
|
1615
1618
|
WrappedComponent: injectIntl(Viber),
|
|
@@ -1617,4 +1620,5 @@ export default withCreatives({
|
|
|
1617
1620
|
mapDispatchToProps,
|
|
1618
1621
|
userAuth: true,
|
|
1619
1622
|
reducers: [withReducer],
|
|
1623
|
+
sagas: [withViberSaga],
|
|
1620
1624
|
});
|