@capillarytech/creatives-library 2.0.86 → 2.0.87
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/index.js +9 -9
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -36,22 +36,22 @@ import mobilepushEditReducer from './v2Containers/MobilePush/Edit/reducer';
|
|
|
36
36
|
import mobilepushEditSaga from './v2Containers/MobilePush/Edit/sagas';
|
|
37
37
|
|
|
38
38
|
|
|
39
|
-
import LineCreate from './
|
|
40
|
-
import lineCreateReducer from './
|
|
41
|
-
import lineCreateSaga from './
|
|
39
|
+
import LineCreate from './v2Containers/Line/Create';
|
|
40
|
+
import lineCreateReducer from './v2Containers/Line/Create/reducer';
|
|
41
|
+
import lineCreateSaga from './v2Containers/Line/Create/sagas';
|
|
42
42
|
|
|
43
|
-
import LineEdit from './
|
|
44
|
-
import lineEditReducer from './
|
|
45
|
-
import lineEditSaga from './
|
|
43
|
+
import LineEdit from './v2Containers/Line/Edit';
|
|
44
|
+
import lineEditReducer from './v2Containers/Line/Edit/reducer';
|
|
45
|
+
import lineEditSaga from './v2Containers/Line/Edit/sagas';
|
|
46
46
|
import TemplatesV2 from './v2Containers/TemplatesV2/index';
|
|
47
47
|
|
|
48
48
|
import CreativesContainer from './v2Containers/CreativesContainer';
|
|
49
49
|
import CreativesContainerReducer from './v2Containers/CreativesContainer/reducer';
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
export {default as Ebill} from './
|
|
53
|
-
export {default as EbillReducer} from './
|
|
54
|
-
export {default as EbillSaga} from './
|
|
52
|
+
export {default as Ebill} from './v2Containers/Ebill';
|
|
53
|
+
export {default as EbillReducer} from './v2Containers/Ebill/reducer';
|
|
54
|
+
export {default as EbillSaga} from './v2Containers/Ebill/sagas';
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
const CapContainer = {Cap, capReducer, capSaga};
|