n8n-nodes-wix 1.0.2 → 1.0.4

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/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
- export { WixSiteList } from './nodes/sites';
1
+ import { WixSiteList } from './nodes/sites/WixSiteList.node';
2
+ export { WixSiteList };
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.WixSiteList = void 0;
4
- var sites_1 = require("./nodes/sites");
5
- Object.defineProperty(exports, "WixSiteList", { enumerable: true, get: function () { return sites_1.WixSiteList; } });
4
+ const WixSiteList_node_1 = require("./nodes/sites/WixSiteList.node");
5
+ Object.defineProperty(exports, "WixSiteList", { enumerable: true, get: function () { return WixSiteList_node_1.WixSiteList; } });
6
+ module.exports = { WixSiteList: WixSiteList_node_1.WixSiteList };
package/index.ts CHANGED
@@ -1 +1,4 @@
1
- export { WixSiteList } from './nodes/sites'
1
+ import { WixSiteList } from './nodes/sites/WixSiteList.node'
2
+
3
+ export { WixSiteList }
4
+ module.exports = { WixSiteList }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-wix",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Wix sites node for n8n",
5
5
  "keywords": [
6
6
  "wix",
package/tsconfig.json CHANGED
@@ -10,4 +10,4 @@
10
10
  },
11
11
  "include": ["nodes/**/*.ts", "index.ts"],
12
12
  "exclude": ["node_modules"]
13
- }
13
+ }
File without changes