@wix/echo 1.0.22 → 1.0.23
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/echo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
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.2"
|
|
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": "
|
|
46
|
+
"falconPackageHash": "75ae88b1a111c68e780bc17d7b06ee7d3aabec2f2f7d1a0ac810e0f7"
|
|
47
47
|
}
|
|
@@ -130,6 +130,15 @@ interface EchoOptions {
|
|
|
130
130
|
someDate?: Date;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
/**
|
|
134
|
+
* Another override description function 4
|
|
135
|
+
* @param arg1 - 1st part of the message
|
|
136
|
+
* @public
|
|
137
|
+
* @documentationMaturity preview
|
|
138
|
+
* @requiredField arg1
|
|
139
|
+
* @param arg2 - modified comment for arg2 el hovav
|
|
140
|
+
* @returns ## override return 4
|
|
141
|
+
*/
|
|
133
142
|
declare function echo$1(httpClient: HttpClient): (arg1: string, options?: EchoOptions) => Promise<string>;
|
|
134
143
|
declare const onEchoDispatched$1: EventDefinition<EchoDispatchedEnvelope, "wix.metroinspector.v1.echo_dispatched">;
|
|
135
144
|
|
|
@@ -239,6 +239,15 @@ interface EchoOptions {
|
|
|
239
239
|
declare const __metadata: {
|
|
240
240
|
PACKAGE_NAME: string;
|
|
241
241
|
};
|
|
242
|
+
/**
|
|
243
|
+
* Another override description function 4
|
|
244
|
+
* @param arg1 - 1st part of the message
|
|
245
|
+
* @public
|
|
246
|
+
* @documentationMaturity preview
|
|
247
|
+
* @requiredField arg1
|
|
248
|
+
* @param arg2 - modified comment for arg2 el hovav
|
|
249
|
+
* @returns ## override return 4
|
|
250
|
+
*/
|
|
242
251
|
declare function echo(httpClient: HttpClient): (arg1: string, options?: EchoOptions) => Promise<string>;
|
|
243
252
|
declare const onEchoDispatched: EventDefinition<EchoDispatchedEnvelope, "wix.metroinspector.v1.echo_dispatched">;
|
|
244
253
|
|