@wix/echo 1.0.22 → 1.0.24

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.22",
3
+ "version": "1.0.24",
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.1"
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": "ccc441413df9b1201de1a9f2b38f388740def639a035170674d25d85"
46
+ "falconPackageHash": "0b34b296a46397d5ddfa1237b944c016f75ee53e5e19dd7cee9ea6fb"
47
47
  }
@@ -130,9 +130,27 @@ 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
 
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
+ */
136
154
  declare const echo: BuildRESTFunction<typeof echo$1>;
137
155
  declare const onEchoDispatched: BuildEventDefinition<typeof onEchoDispatched$1>;
138
156
 
@@ -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