@wix/echo 1.0.48 → 1.0.49
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/build/cjs/another-components.d.ts +22 -0
- package/build/cjs/another-components.js +35 -0
- package/build/cjs/another-components.js.map +1 -0
- package/build/cjs/components.d.ts +27 -0
- package/build/cjs/components.js +41 -0
- package/build/cjs/components.js.map +1 -0
- package/build/es/another-components.d.mts +22 -0
- package/build/es/another-components.mjs +22 -0
- package/build/es/another-components.mjs.map +1 -0
- package/build/internal/cjs/another-components.d.ts +22 -0
- package/build/internal/cjs/another-components.js +35 -0
- package/build/internal/cjs/another-components.js.map +1 -0
- package/build/internal/es/another-components.d.mts +22 -0
- package/build/internal/es/another-components.mjs +22 -0
- package/build/internal/es/another-components.mjs.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
2
|
+
|
|
3
|
+
function _mergeNamespaces(n, m) {
|
|
4
|
+
m.forEach(function (e) {
|
|
5
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
6
|
+
if (k !== 'default' && !(k in n)) {
|
|
7
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
8
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return e[k]; }
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
return Object.freeze(n);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
var anotherComponentsAnotherServerActions = /*#__PURE__*/_mergeNamespaces({
|
|
19
|
+
__proto__: null
|
|
20
|
+
}, [serverActions]);
|
|
21
|
+
|
|
22
|
+
export { anotherComponentsAnotherServerActions as AnotherServerActions };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// another-components.ts
|
|
22
|
+
var another_components_exports = {};
|
|
23
|
+
__export(another_components_exports, {
|
|
24
|
+
AnotherServerActions: () => another_components_another_server_actions_exports
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(another_components_exports);
|
|
27
|
+
|
|
28
|
+
// sdk-exports/another-components-another-server-actions.ts
|
|
29
|
+
var another_components_another_server_actions_exports = {};
|
|
30
|
+
__reExport(another_components_another_server_actions_exports, require("@wix/headless-stores/server-actions"));
|
|
31
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
32
|
+
0 && (module.exports = {
|
|
33
|
+
AnotherServerActions
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=another-components.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../another-components.ts","../../sdk-exports/another-components-another-server-actions.ts"],"sourcesContent":["export * as AnotherServerActions from './sdk-exports/another-components-another-server-actions.js';\n","export * from '@wix/headless-stores/server-actions';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA,8DAAc;","names":[]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as react from '@wix/headless-stores/react';
|
|
2
|
+
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
3
|
+
|
|
4
|
+
function _mergeNamespaces(n, m) {
|
|
5
|
+
m.forEach(function (e) {
|
|
6
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
7
|
+
if (k !== 'default' && !(k in n)) {
|
|
8
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
9
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () { return e[k]; }
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
return Object.freeze(n);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
var componentsComponents = /*#__PURE__*/_mergeNamespaces({
|
|
20
|
+
__proto__: null
|
|
21
|
+
}, [react]);
|
|
22
|
+
|
|
23
|
+
var componentsServerActions = /*#__PURE__*/_mergeNamespaces({
|
|
24
|
+
__proto__: null
|
|
25
|
+
}, [serverActions]);
|
|
26
|
+
|
|
27
|
+
export { componentsComponents as Components, componentsServerActions as ServerActions };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// components.ts
|
|
22
|
+
var components_exports = {};
|
|
23
|
+
__export(components_exports, {
|
|
24
|
+
Components: () => components_components_exports,
|
|
25
|
+
ServerActions: () => components_server_actions_exports
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(components_exports);
|
|
28
|
+
|
|
29
|
+
// sdk-exports/components-components.ts
|
|
30
|
+
var components_components_exports = {};
|
|
31
|
+
__reExport(components_components_exports, require("@wix/headless-stores/react"));
|
|
32
|
+
|
|
33
|
+
// sdk-exports/components-server-actions.ts
|
|
34
|
+
var components_server_actions_exports = {};
|
|
35
|
+
__reExport(components_server_actions_exports, require("@wix/headless-stores/server-actions"));
|
|
36
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
37
|
+
0 && (module.exports = {
|
|
38
|
+
Components,
|
|
39
|
+
ServerActions
|
|
40
|
+
});
|
|
41
|
+
//# sourceMappingURL=components.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../components.ts","../../sdk-exports/components-components.ts","../../sdk-exports/components-server-actions.ts"],"sourcesContent":["export * as Components from './sdk-exports/components-components.js';\nexport * as ServerActions from './sdk-exports/components-server-actions.js';\n","export * from '@wix/headless-stores/react';\n","export * from '@wix/headless-stores/server-actions';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA,0CAAc;;;ACAd;AAAA,8CAAc;","names":[]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
2
|
+
|
|
3
|
+
function _mergeNamespaces(n, m) {
|
|
4
|
+
m.forEach(function (e) {
|
|
5
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
6
|
+
if (k !== 'default' && !(k in n)) {
|
|
7
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
8
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return e[k]; }
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
return Object.freeze(n);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
var anotherComponentsAnotherServerActions = /*#__PURE__*/_mergeNamespaces({
|
|
19
|
+
__proto__: null
|
|
20
|
+
}, [serverActions]);
|
|
21
|
+
|
|
22
|
+
export { anotherComponentsAnotherServerActions as AnotherServerActions };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __copyProps = (to, from, except, desc) => {
|
|
6
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
7
|
+
for (let key of __getOwnPropNames(from))
|
|
8
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
9
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
+
}
|
|
11
|
+
return to;
|
|
12
|
+
};
|
|
13
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
14
|
+
|
|
15
|
+
// sdk-exports/another-components-another-server-actions.ts
|
|
16
|
+
var another_components_another_server_actions_exports = {};
|
|
17
|
+
__reExport(another_components_another_server_actions_exports, server_actions_star);
|
|
18
|
+
import * as server_actions_star from "@wix/headless-stores/server-actions";
|
|
19
|
+
export {
|
|
20
|
+
another_components_another_server_actions_exports as AnotherServerActions
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=another-components.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../sdk-exports/another-components-another-server-actions.ts"],"sourcesContent":["export * from '@wix/headless-stores/server-actions';\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,qCAAc;","names":[]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
2
|
+
|
|
3
|
+
function _mergeNamespaces(n, m) {
|
|
4
|
+
m.forEach(function (e) {
|
|
5
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
6
|
+
if (k !== 'default' && !(k in n)) {
|
|
7
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
8
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return e[k]; }
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
return Object.freeze(n);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
var anotherComponentsAnotherServerActions = /*#__PURE__*/_mergeNamespaces({
|
|
19
|
+
__proto__: null
|
|
20
|
+
}, [serverActions]);
|
|
21
|
+
|
|
22
|
+
export { anotherComponentsAnotherServerActions as AnotherServerActions };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// another-components.ts
|
|
22
|
+
var another_components_exports = {};
|
|
23
|
+
__export(another_components_exports, {
|
|
24
|
+
AnotherServerActions: () => another_components_another_server_actions_exports
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(another_components_exports);
|
|
27
|
+
|
|
28
|
+
// sdk-exports/another-components-another-server-actions.ts
|
|
29
|
+
var another_components_another_server_actions_exports = {};
|
|
30
|
+
__reExport(another_components_another_server_actions_exports, require("@wix/headless-stores/server-actions"));
|
|
31
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
32
|
+
0 && (module.exports = {
|
|
33
|
+
AnotherServerActions
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=another-components.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../another-components.ts","../../../sdk-exports/another-components-another-server-actions.ts"],"sourcesContent":["export * as AnotherServerActions from './sdk-exports/another-components-another-server-actions.js';\n","export * from '@wix/headless-stores/server-actions';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA,8DAAc;","names":[]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
2
|
+
|
|
3
|
+
function _mergeNamespaces(n, m) {
|
|
4
|
+
m.forEach(function (e) {
|
|
5
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
6
|
+
if (k !== 'default' && !(k in n)) {
|
|
7
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
8
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return e[k]; }
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
return Object.freeze(n);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
var anotherComponentsAnotherServerActions = /*#__PURE__*/_mergeNamespaces({
|
|
19
|
+
__proto__: null
|
|
20
|
+
}, [serverActions]);
|
|
21
|
+
|
|
22
|
+
export { anotherComponentsAnotherServerActions as AnotherServerActions };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __copyProps = (to, from, except, desc) => {
|
|
6
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
7
|
+
for (let key of __getOwnPropNames(from))
|
|
8
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
9
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
+
}
|
|
11
|
+
return to;
|
|
12
|
+
};
|
|
13
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
14
|
+
|
|
15
|
+
// sdk-exports/another-components-another-server-actions.ts
|
|
16
|
+
var another_components_another_server_actions_exports = {};
|
|
17
|
+
__reExport(another_components_another_server_actions_exports, server_actions_star);
|
|
18
|
+
import * as server_actions_star from "@wix/headless-stores/server-actions";
|
|
19
|
+
export {
|
|
20
|
+
another_components_another_server_actions_exports as AnotherServerActions
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=another-components.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../sdk-exports/another-components-another-server-actions.ts"],"sourcesContent":["export * from '@wix/headless-stores/server-actions';\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,qCAAc;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/echo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.49",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"fqdn": ""
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
|
-
"falconPackageHash": "
|
|
70
|
+
"falconPackageHash": "004dd2eaaf4f91c9419c98a029e0df5042a26df13a2a51bc03f79cbe"
|
|
71
71
|
}
|