@capillarytech/creatives-library 6.11.0 → 6.11.1
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 +7 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -23,6 +23,11 @@ import Email from './v2Containers/Email/index';
|
|
|
23
23
|
import emailReducer from './v2Containers/Email/reducer';
|
|
24
24
|
import emailSaga from './v2Containers/Email/sagas';
|
|
25
25
|
|
|
26
|
+
import BeeEditor from './v2Containers/BeeEditor/index';
|
|
27
|
+
import beeReducer from './v2Containers/BeeEditor/reducer';
|
|
28
|
+
import beeSaga from './v2Containers/BeeEditor/sagas';
|
|
29
|
+
|
|
30
|
+
|
|
26
31
|
import CallTask from './v2Containers/CallTask/index';
|
|
27
32
|
import callTaskReducer from './v2Containers/CallTask/reducer';
|
|
28
33
|
import callTaskSaga from './v2Containers/CallTask/sagas';
|
|
@@ -80,6 +85,7 @@ const TemplatesContainer = {Templates, templateReducer, templateSaga};
|
|
|
80
85
|
const SmsCreateContainer = {SmsCreate, smsCreateReducer, smsCreateSaga};
|
|
81
86
|
const SmsEditContainer = {SmsEdit, smsEditReducer, smsEditSaga};
|
|
82
87
|
const EmailContainer = {Email, emailReducer, emailSaga};
|
|
88
|
+
const BeeContainer ={ BeeEditor,beeReducer,beeSaga}
|
|
83
89
|
const CallTaskContainer = {CallTask, callTaskReducer, callTaskSaga};
|
|
84
90
|
const WeChatMapTemplateContainer = {WeChatMapTemplate, weChatMapTemplateReducer, weChatMapTemplateSaga};
|
|
85
91
|
const WeChatRichMediaCreateContainer = {WeChatRichMediaCreate, weChatRichMediaCreateReducer, weChatRichMediaCreateSaga};
|
|
@@ -111,6 +117,7 @@ export { CapContainer,
|
|
|
111
117
|
SmsCreateContainer,
|
|
112
118
|
SmsEditContainer,
|
|
113
119
|
EmailContainer,
|
|
120
|
+
BeeContainer,
|
|
114
121
|
CallTaskContainer,
|
|
115
122
|
WeChatMapTemplateContainer,
|
|
116
123
|
WeChatRichMediaCreateContainer,
|