@spider-mesh/core 1.0.25 → 1.0.27

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.
@@ -8,7 +8,7 @@ export type RemoteService<T = {
8
8
  $safe_mode: () => {
9
9
  [K in keyof T as (T[K] extends (...args: any) => any ? K : '')]: T[K] extends (...args: any) => any ? ((...args: Parameters<T[K]>) => [
10
10
  Error | null,
11
- Promise<Awaited<ReturnType<T[K]>>> | null
11
+ Awaited<ReturnType<T[K]>> | null
12
12
  ]) : null;
13
13
  };
14
14
  } & {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spider-mesh/core",
3
3
  "type": "module",
4
- "version": "1.0.25",
4
+ "version": "1.0.27",
5
5
  "description": "Lightweight microservice framework for typescript, auto discovery, load-balancing, fault-torrent, multiple transporters",
6
6
  "main": "build/index.js",
7
7
  "types": "build/index.d.ts",