@veloceapps/sdk 11.0.0-18 → 11.0.0-19

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.
@@ -118,7 +118,6 @@ var CmsAction;
118
118
  (function (CmsAction) {
119
119
  CmsAction.GO_TO_PAGE = '[CMS]_GO_TO_PAGE';
120
120
  CmsAction.UPDATE_CUSTOMIZATION = '[CMS]_UPDATE_CUSTOMIZATION';
121
- CmsAction.EMIT_CUSTOMIZATION_CHANGES = '[CMS]_EMIT_CUSTOMIZATION_CHANGES';
122
121
  CmsAction.SHOW_OVERLAY = '[CMS]_SHOW_OVERLAY';
123
122
  CmsAction.HIDE_OVERLAY = '[CMS]_HIDE_OVERLAY';
124
123
  CmsAction.HIDE_ALL_OVERLAYS = '[CMS]_HIDE_ALL_OVERLAYS';
@@ -144,17 +143,6 @@ var CmsAction;
144
143
  payload: { value },
145
144
  };
146
145
  };
147
- /**
148
- * Emit customization page changes
149
- *
150
- * @param changes - object with customization page changes
151
- */
152
- CmsAction.EmitCustomizationChanges = (changes) => {
153
- return {
154
- type: CmsAction.EMIT_CUSTOMIZATION_CHANGES,
155
- payload: { changes },
156
- };
157
- };
158
146
  /**
159
147
  * Show an Overlay on the selected page
160
148
  *