@capillarytech/creatives-library 8.0.51 → 8.0.52-alpha.0

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/creatives-library",
3
3
  "author": "meharaj",
4
- "version": "8.0.51",
4
+ "version": "8.0.52-alpha.0",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
@@ -265,6 +265,11 @@ export function* capSagaForFetchSchemaForEntity() {
265
265
  watchFetchSchemaForEntity(),
266
266
  ]);
267
267
  }
268
+ export function* capSagaLiquidEntity() {
269
+ yield all([
270
+ watchLiquidEntity(),
271
+ ]);
272
+ };
268
273
 
269
274
  export function* v2CapSagas() {
270
275
  yield all([
@@ -51,7 +51,7 @@ import injectReducer from '../../utils/injectReducer';
51
51
  import injectSaga from '../../utils/injectSaga';
52
52
  import creativesContainerReducer from './reducer';
53
53
  import { compose } from 'redux';
54
- import { capSagaForFetchSchemaForEntity } from '../Cap/sagas';
54
+ import { capSagaForFetchSchemaForEntity,capSagaLiquidEntity } from '../Cap/sagas';
55
55
  import { v2TemplateSagaWatchGetDefaultBeeTemplates } from '../Templates/sagas';
56
56
  import {
57
57
  CAP_SPACE_32, CAP_SPACE_56, CAP_SPACE_64,
@@ -1447,6 +1447,7 @@ function mapDispatchToProps(dispatch) {
1447
1447
  const withConnect = connect(mapStatesToProps, mapDispatchToProps);
1448
1448
  const withReducer = injectReducer({ key: 'creativesContainer', reducer: creativesContainerReducer });
1449
1449
  const withSaga = injectSaga({ key: 'cap', saga: capSagaForFetchSchemaForEntity });
1450
+ const withLiquidSaga = injectSaga({ key: 'liquid', saga: capSagaLiquidEntity });
1450
1451
  const withDefaultTempSaga = injectSaga({ key: 'creativesContainer', saga: v2TemplateSagaWatchGetDefaultBeeTemplates });
1451
1452
 
1452
- export default compose(withSaga, withDefaultTempSaga, withReducer, withConnect)(injectIntl(Creatives));
1453
+ export default compose(withSaga,withLiquidSaga, withDefaultTempSaga, withReducer, withConnect)(injectIntl(Creatives));