@agility/content-sync 1.2.0-beta.6 → 1.2.0-beta.7

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.
@@ -13600,6 +13600,9 @@ module.exports = {
13600
13600
  // ESM COMPAT FLAG
13601
13601
  __webpack_require__.r(__webpack_exports__);
13602
13602
 
13603
+ // EXPORTS
13604
+ __webpack_require__.d(__webpack_exports__, "getSyncClient", function() { return /* binding */ getSyncClient; });
13605
+
13603
13606
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/defineProperty.js
13604
13607
  var defineProperty = __webpack_require__(2);
13605
13608
  var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty);
@@ -14746,7 +14749,7 @@ function createSyncClient(userConfig) {
14746
14749
  };
14747
14750
  }
14748
14751
 
14749
- /* harmony default export */ var sync_client = __webpack_exports__["default"] = ({ getSyncClient: getSyncClient });
14752
+
14750
14753
 
14751
14754
  /***/ })
14752
14755
  /******/ ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agility/content-sync",
3
- "version": "1.2.0-beta.6",
3
+ "version": "1.2.0-beta.7",
4
4
  "description": "JavaScript SDK for synchronizing content from Agility CMS",
5
5
  "main": "dist/agility-sync-sdk.node.js",
6
6
  "scripts": {
@@ -82,4 +82,4 @@ function createSyncClient(userConfig) {
82
82
  }
83
83
  }
84
84
 
85
- export default { getSyncClient }
85
+ export { getSyncClient }
@@ -1,5 +1,5 @@
1
1
  //import agilitySync from '../dist/agility-sync-sdk.node'
2
- import agilitySync from '../src/sync-client'
2
+ import * as agilitySync from '../src/sync-client'
3
3
 
4
4
  import storeInterfaceConsole from '../src/store-interface-console'
5
5