@wix/echo 1.0.63 → 1.0.65
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/components.d.ts +1 -2
- package/build/cjs/components.js +2 -5
- package/build/cjs/components.js.map +1 -1
- package/build/cjs/server-actions.d.ts +2 -0
- package/build/cjs/server-actions.js +41 -0
- package/build/cjs/server-actions.js.map +1 -0
- package/build/es/components.d.mts +1 -2
- package/build/es/components.mjs +1 -3
- package/build/es/components.mjs.map +1 -1
- package/build/es/server-actions.d.mts +2 -0
- package/build/es/server-actions.mjs +6 -0
- package/build/es/server-actions.mjs.map +1 -0
- package/build/internal/cjs/components.d.ts +1 -2
- package/build/internal/cjs/components.js +2 -5
- package/build/internal/cjs/components.js.map +1 -1
- package/build/internal/cjs/server-actions.d.ts +2 -0
- package/build/internal/cjs/server-actions.js +41 -0
- package/build/internal/cjs/server-actions.js.map +1 -0
- package/build/internal/es/components.d.mts +1 -2
- package/build/internal/es/components.mjs +1 -3
- package/build/internal/es/components.mjs.map +1 -1
- package/build/internal/es/server-actions.d.mts +2 -0
- package/build/internal/es/server-actions.mjs +6 -0
- package/build/internal/es/server-actions.mjs.map +1 -0
- package/package.json +10 -4
- package/serverActions/package.json +3 -0
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as react from '@wix/headless-stores/react';
|
|
2
2
|
export { react as StoresComponents };
|
|
3
|
-
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
4
|
-
export { serverActions as StoresServerActions };
|
|
5
3
|
import '@wix/auto_sdk_echo_calculator';
|
|
6
4
|
import '@wix/auto_sdk_echo_metroinspector';
|
|
7
5
|
import '@wix/auto_sdk_echo_calculator/meta';
|
|
8
6
|
import '@wix/auto_sdk_echo_metroinspector/meta';
|
|
7
|
+
import '@wix/headless-stores/server-actions';
|
package/build/cjs/components.js
CHANGED
|
@@ -30,15 +30,12 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// components.ts
|
|
31
31
|
var components_exports = {};
|
|
32
32
|
__export(components_exports, {
|
|
33
|
-
StoresComponents: () => StoresComponents
|
|
34
|
-
StoresServerActions: () => StoresServerActions
|
|
33
|
+
StoresComponents: () => StoresComponents
|
|
35
34
|
});
|
|
36
35
|
module.exports = __toCommonJS(components_exports);
|
|
37
36
|
var StoresComponents = __toESM(require("@wix/headless-stores/react"));
|
|
38
|
-
var StoresServerActions = __toESM(require("@wix/headless-stores/server-actions"));
|
|
39
37
|
// Annotate the CommonJS export names for ESM import in node:
|
|
40
38
|
0 && (module.exports = {
|
|
41
|
-
StoresComponents
|
|
42
|
-
StoresServerActions
|
|
39
|
+
StoresComponents
|
|
43
40
|
});
|
|
44
41
|
//# sourceMappingURL=components.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react'
|
|
1
|
+
{"version":3,"sources":["../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react';"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAkC;","names":[]}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// server-actions.ts
|
|
31
|
+
var server_actions_exports = {};
|
|
32
|
+
__export(server_actions_exports, {
|
|
33
|
+
StoresServerActions: () => StoresServerActions
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(server_actions_exports);
|
|
36
|
+
var StoresServerActions = __toESM(require("@wix/headless-stores/server-actions"));
|
|
37
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
38
|
+
0 && (module.exports = {
|
|
39
|
+
StoresServerActions
|
|
40
|
+
});
|
|
41
|
+
//# sourceMappingURL=server-actions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../server-actions.ts"],"sourcesContent":["export * as StoresServerActions from '@wix/headless-stores/server-actions';"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0BAAqC;","names":[]}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as react from '@wix/headless-stores/react';
|
|
2
2
|
export { react as StoresComponents };
|
|
3
|
-
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
4
|
-
export { serverActions as StoresServerActions };
|
|
5
3
|
import '@wix/auto_sdk_echo_calculator';
|
|
6
4
|
import '@wix/auto_sdk_echo_metroinspector';
|
|
7
5
|
import '@wix/auto_sdk_echo_calculator/meta';
|
|
8
6
|
import '@wix/auto_sdk_echo_metroinspector/meta';
|
|
7
|
+
import '@wix/headless-stores/server-actions';
|
package/build/es/components.mjs
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
// components.ts
|
|
2
2
|
import * as StoresComponents from "@wix/headless-stores/react";
|
|
3
|
-
import * as StoresServerActions from "@wix/headless-stores/server-actions";
|
|
4
3
|
export {
|
|
5
|
-
StoresComponents
|
|
6
|
-
StoresServerActions
|
|
4
|
+
StoresComponents
|
|
7
5
|
};
|
|
8
6
|
//# sourceMappingURL=components.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react'
|
|
1
|
+
{"version":3,"sources":["../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react';"],"mappings":";AAAA,YAAY,sBAAsB;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../server-actions.ts"],"sourcesContent":["export * as StoresServerActions from '@wix/headless-stores/server-actions';"],"mappings":";AAAA,YAAY,yBAAyB;","names":[]}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as react from '@wix/headless-stores/react';
|
|
2
2
|
export { react as StoresComponents };
|
|
3
|
-
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
4
|
-
export { serverActions as StoresServerActions };
|
|
5
3
|
import '@wix/auto_sdk_echo_calculator';
|
|
6
4
|
import '@wix/auto_sdk_echo_metroinspector';
|
|
7
5
|
import '@wix/auto_sdk_echo_calculator/meta';
|
|
8
6
|
import '@wix/auto_sdk_echo_metroinspector/meta';
|
|
7
|
+
import '@wix/headless-stores/server-actions';
|
|
@@ -30,15 +30,12 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// components.ts
|
|
31
31
|
var components_exports = {};
|
|
32
32
|
__export(components_exports, {
|
|
33
|
-
StoresComponents: () => StoresComponents
|
|
34
|
-
StoresServerActions: () => StoresServerActions
|
|
33
|
+
StoresComponents: () => StoresComponents
|
|
35
34
|
});
|
|
36
35
|
module.exports = __toCommonJS(components_exports);
|
|
37
36
|
var StoresComponents = __toESM(require("@wix/headless-stores/react"));
|
|
38
|
-
var StoresServerActions = __toESM(require("@wix/headless-stores/server-actions"));
|
|
39
37
|
// Annotate the CommonJS export names for ESM import in node:
|
|
40
38
|
0 && (module.exports = {
|
|
41
|
-
StoresComponents
|
|
42
|
-
StoresServerActions
|
|
39
|
+
StoresComponents
|
|
43
40
|
});
|
|
44
41
|
//# sourceMappingURL=components.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react'
|
|
1
|
+
{"version":3,"sources":["../../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react';"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAkC;","names":[]}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// server-actions.ts
|
|
31
|
+
var server_actions_exports = {};
|
|
32
|
+
__export(server_actions_exports, {
|
|
33
|
+
StoresServerActions: () => StoresServerActions
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(server_actions_exports);
|
|
36
|
+
var StoresServerActions = __toESM(require("@wix/headless-stores/server-actions"));
|
|
37
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
38
|
+
0 && (module.exports = {
|
|
39
|
+
StoresServerActions
|
|
40
|
+
});
|
|
41
|
+
//# sourceMappingURL=server-actions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../server-actions.ts"],"sourcesContent":["export * as StoresServerActions from '@wix/headless-stores/server-actions';"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0BAAqC;","names":[]}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as react from '@wix/headless-stores/react';
|
|
2
2
|
export { react as StoresComponents };
|
|
3
|
-
import * as serverActions from '@wix/headless-stores/server-actions';
|
|
4
|
-
export { serverActions as StoresServerActions };
|
|
5
3
|
import '@wix/auto_sdk_echo_calculator';
|
|
6
4
|
import '@wix/auto_sdk_echo_metroinspector';
|
|
7
5
|
import '@wix/auto_sdk_echo_calculator/meta';
|
|
8
6
|
import '@wix/auto_sdk_echo_metroinspector/meta';
|
|
7
|
+
import '@wix/headless-stores/server-actions';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
// components.ts
|
|
2
2
|
import * as StoresComponents from "@wix/headless-stores/react";
|
|
3
|
-
import * as StoresServerActions from "@wix/headless-stores/server-actions";
|
|
4
3
|
export {
|
|
5
|
-
StoresComponents
|
|
6
|
-
StoresServerActions
|
|
4
|
+
StoresComponents
|
|
7
5
|
};
|
|
8
6
|
//# sourceMappingURL=components.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react'
|
|
1
|
+
{"version":3,"sources":["../../../components.ts"],"sourcesContent":["export * as StoresComponents from '@wix/headless-stores/react';"],"mappings":";AAAA,YAAY,sBAAsB;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../server-actions.ts"],"sourcesContent":["export * as StoresServerActions from '@wix/headless-stores/server-actions';"],"mappings":";AAAA,YAAY,yBAAyB;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/echo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.65",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -29,18 +29,24 @@
|
|
|
29
29
|
"import": "./build/es/components.mjs",
|
|
30
30
|
"require": "./build/cjs/components.js",
|
|
31
31
|
"types": "./build/es/components.d.mts"
|
|
32
|
+
},
|
|
33
|
+
"./serverActions": {
|
|
34
|
+
"import": "./build/es/server-actions.mjs",
|
|
35
|
+
"require": "./build/cjs/server-actions.js",
|
|
36
|
+
"types": "./build/es/server-actions.d.mts"
|
|
32
37
|
}
|
|
33
38
|
},
|
|
34
39
|
"files": [
|
|
35
40
|
"build",
|
|
36
41
|
"meta",
|
|
37
42
|
"service-plugins",
|
|
38
|
-
"components"
|
|
43
|
+
"components",
|
|
44
|
+
"serverActions"
|
|
39
45
|
],
|
|
40
46
|
"dependencies": {
|
|
41
47
|
"@wix/auto_sdk_echo_calculator": "1.0.1",
|
|
42
48
|
"@wix/auto_sdk_echo_metroinspector": "1.0.2",
|
|
43
|
-
"@wix/headless-stores": "0.0.
|
|
49
|
+
"@wix/headless-stores": "0.0.9"
|
|
44
50
|
},
|
|
45
51
|
"devDependencies": {
|
|
46
52
|
"@types/react": "^19.0.0",
|
|
@@ -70,5 +76,5 @@
|
|
|
70
76
|
"optional": true
|
|
71
77
|
}
|
|
72
78
|
},
|
|
73
|
-
"falconPackageHash": "
|
|
79
|
+
"falconPackageHash": "b7e7b96eca5d65c4fccbcc2afc1c3b6ecdd303ad25cca86047347d37"
|
|
74
80
|
}
|