@conduit-client/service-aura-network 3.21.0 → 3.23.0

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.
@@ -7,10 +7,10 @@ type ActionConfig = {
7
7
  headers?: object;
8
8
  sourceContext?: object;
9
9
  };
10
- type AuraRawResponseBody<Data extends Record<string, any> = Record<string, any>> = {
10
+ type AuraRawResponseBody<Data extends Record<string, unknown> = Record<string, unknown>> = {
11
11
  getReturnValue: () => Data;
12
12
  };
13
- type executeGlobalControllerRawResponse = (endpoint: string, params: any, config?: ActionConfig) => Promise<AuraRawResponseBody<any>>;
13
+ type executeGlobalControllerRawResponse = (endpoint: string, params: unknown, config?: ActionConfig) => Promise<AuraRawResponseBody>;
14
14
  export type AuraNetworkService = executeGlobalControllerRawResponse;
15
15
  export type IAuraNetwork = executeGlobalControllerRawResponse;
16
16
  export type NamedAuraNetworkService<Name extends string = 'auraNetwork'> = NamedService<Name, IAuraNetwork>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduit-client/service-aura-network",
3
- "version": "3.21.0",
3
+ "version": "3.23.0",
4
4
  "private": false,
5
5
  "description": "Luvio Network Service",
6
6
  "type": "module",
@@ -31,8 +31,8 @@
31
31
  "watch": "npm run build --watch"
32
32
  },
33
33
  "dependencies": {
34
- "@conduit-client/service-instrumentation": "3.21.0",
35
- "@conduit-client/utils": "3.21.0"
34
+ "@conduit-client/service-instrumentation": "3.23.0",
35
+ "@conduit-client/utils": "3.23.0"
36
36
  },
37
37
  "volta": {
38
38
  "extends": "../../../../package.json"