@wix/echo 1.0.33 → 1.0.34
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/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as metroinspector from '@wix/echo_metroinspector';
|
|
2
|
-
export { metroinspector
|
|
2
|
+
export { metroinspector };
|
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yEAA2D;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yEAA2D;AAElD,wCAAc"}
|
package/build/es/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as metroinspector from '@wix/echo_metroinspector';
|
|
2
|
-
export { metroinspector
|
|
2
|
+
export { metroinspector };
|
package/build/es/index.js
CHANGED
package/build/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC;AAE3D,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,0BAA0B,CAAC;AAE3D,OAAO,EAAE,cAAc,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/echo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.34",
|
|
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.
|
|
21
|
+
"@wix/echo_metroinspector": "1.0.10"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"glob": "^10.4.1",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"fqdn": ""
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"falconPackageHash": "
|
|
46
|
+
"falconPackageHash": "352b090ec32ae17f46600ea67b15e7b7f6d37ae154901dcec0df028c"
|
|
47
47
|
}
|
|
@@ -254,7 +254,16 @@ interface EchoOptions {
|
|
|
254
254
|
someDate?: Date;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
-
declare function echo$1(httpClient: HttpClient):
|
|
257
|
+
declare function echo$1(httpClient: HttpClient): EchoSignature;
|
|
258
|
+
interface EchoSignature {
|
|
259
|
+
/**
|
|
260
|
+
* Another override description function 4
|
|
261
|
+
* @param - 1st part of the message
|
|
262
|
+
* @param - modified comment for arg2 el hovav
|
|
263
|
+
* @returns ## override return 4
|
|
264
|
+
*/
|
|
265
|
+
(arg1: string, options?: EchoOptions | undefined): Promise<string>;
|
|
266
|
+
}
|
|
258
267
|
declare const onEchoDispatched$1: EventDefinition<EchoDispatchedEnvelope, "wix.metroinspector.v1.echo_dispatched">;
|
|
259
268
|
|
|
260
269
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
@@ -262,12 +271,6 @@ declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor:
|
|
|
262
271
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
263
272
|
|
|
264
273
|
type _publicEchoType = typeof echo$1;
|
|
265
|
-
/**
|
|
266
|
-
* Another override description function 4
|
|
267
|
-
* @param arg1 - 1st part of the message
|
|
268
|
-
* @param arg2 - modified comment for arg2 el hovav
|
|
269
|
-
* @returns ## override return 4
|
|
270
|
-
*/
|
|
271
274
|
declare const echo: ReturnType<typeof createRESTModule<_publicEchoType>>;
|
|
272
275
|
|
|
273
276
|
type _publicOnEchoDispatchedType = typeof onEchoDispatched$1;
|
|
@@ -254,7 +254,16 @@ interface EchoOptions {
|
|
|
254
254
|
someDate?: Date;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
-
declare function echo$1(httpClient: HttpClient):
|
|
257
|
+
declare function echo$1(httpClient: HttpClient): EchoSignature;
|
|
258
|
+
interface EchoSignature {
|
|
259
|
+
/**
|
|
260
|
+
* Another override description function 4
|
|
261
|
+
* @param - 1st part of the message
|
|
262
|
+
* @param - modified comment for arg2 el hovav
|
|
263
|
+
* @returns ## override return 4
|
|
264
|
+
*/
|
|
265
|
+
(arg1: string, options?: EchoOptions | undefined): Promise<string>;
|
|
266
|
+
}
|
|
258
267
|
declare const onEchoDispatched$1: EventDefinition<EchoDispatchedEnvelope, "wix.metroinspector.v1.echo_dispatched">;
|
|
259
268
|
|
|
260
269
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
@@ -262,12 +271,6 @@ declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor:
|
|
|
262
271
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
263
272
|
|
|
264
273
|
type _publicEchoType = typeof echo$1;
|
|
265
|
-
/**
|
|
266
|
-
* Another override description function 4
|
|
267
|
-
* @param arg1 - 1st part of the message
|
|
268
|
-
* @param arg2 - modified comment for arg2 el hovav
|
|
269
|
-
* @returns ## override return 4
|
|
270
|
-
*/
|
|
271
274
|
declare const echo: ReturnType<typeof createRESTModule<_publicEchoType>>;
|
|
272
275
|
|
|
273
276
|
type _publicOnEchoDispatchedType = typeof onEchoDispatched$1;
|