@wix/echo 1.0.23 → 1.0.25

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.
@@ -1 +1,2 @@
1
- export * as metroinspector from '@wix/echo_metroinspector';
1
+ import * as metroinspector from '@wix/echo_metroinspector';
2
+ export { metroinspector, };
@@ -24,5 +24,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.metroinspector = void 0;
27
- exports.metroinspector = __importStar(require("@wix/echo_metroinspector"));
27
+ const metroinspector = __importStar(require("@wix/echo_metroinspector"));
28
+ exports.metroinspector = metroinspector;
28
29
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2EAA2D"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yEAA2D;AAGzD,wCAAc"}
@@ -1 +1,2 @@
1
- export * as metroinspector from '@wix/echo_metroinspector';
1
+ import * as metroinspector from '@wix/echo_metroinspector';
2
+ export { metroinspector, };
package/build/es/index.js CHANGED
@@ -1,2 +1,3 @@
1
- export * as metroinspector from '@wix/echo_metroinspector';
1
+ import * as metroinspector from '@wix/echo_metroinspector';
2
+ export { metroinspector, };
2
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC;AAE3D,OAAO,EACL,cAAc,GACf,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/echo",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/echo_metroinspector": "1.0.2"
21
+ "@wix/echo_metroinspector": "1.0.3"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@wix/sdk": "https://cdn.dev.wixpress.com/@wix/sdk/02e8069ab2fd783e0e6a080fc7d590e76cb26ab93c8389574286305b.tar.gz",
@@ -43,5 +43,5 @@
43
43
  "fqdn": ""
44
44
  }
45
45
  },
46
- "falconPackageHash": "75ae88b1a111c68e780bc17d7b06ee7d3aabec2f2f7d1a0ac810e0f7"
46
+ "falconPackageHash": "6331b969018459c7428b34f3a8da5af7f0f6f3e8aac44311090ff975"
47
47
  }
@@ -142,6 +142,15 @@ interface EchoOptions {
142
142
  declare function echo$1(httpClient: HttpClient): (arg1: string, options?: EchoOptions) => Promise<string>;
143
143
  declare const onEchoDispatched$1: EventDefinition<EchoDispatchedEnvelope, "wix.metroinspector.v1.echo_dispatched">;
144
144
 
145
+ /**
146
+ * Another thing for context
147
+ * @param arg1 - 1st part of the message
148
+ * @public
149
+ * @documentationMaturity preview
150
+ * @requiredField arg1
151
+ * @param arg2 - modified comment for arg2 el hovav
152
+ * @returns ## override return 4
153
+ */
145
154
  declare const echo: BuildRESTFunction<typeof echo$1>;
146
155
  declare const onEchoDispatched: BuildEventDefinition<typeof onEchoDispatched$1>;
147
156