@loopback/service-proxy 6.1.3 → 6.1.5

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.
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import { Application, Binding, BindingAddress, BindingFromClassOptions, Component, Constructor, MixinTarget, Provider, ServiceOptions } from '@loopback/core';
2
3
  /**
3
4
  * Interface for classes with `new` operator.
@@ -152,6 +153,7 @@ export declare function ServiceMixin<T extends MixinTarget<Application>>(superCl
152
153
  (eventName: "bind" | "unbind", listener: import("@loopback/core").ContextEventListener): Application;
153
154
  (event: string | symbol, listener: (...args: any[]) => void): Application;
154
155
  };
156
+ [EventEmitter.captureRejectionSymbol]?: ((error: Error, event: string, ...args: any[]) => void) | undefined;
155
157
  addListener: (eventName: string | symbol, listener: (...args: any[]) => void) => Application;
156
158
  removeListener: (eventName: string | symbol, listener: (...args: any[]) => void) => Application;
157
159
  off: (eventName: string | symbol, listener: (...args: any[]) => void) => Application;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/service-proxy",
3
3
  "description": "A common set of interfaces for interacting with service oriented backends such as REST APIs, SOAP Web Services, and gRPC microservices",
4
- "version": "6.1.3",
4
+ "version": "6.1.5",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -38,15 +38,15 @@
38
38
  "@loopback/core": "^5.0.0"
39
39
  },
40
40
  "dependencies": {
41
- "loopback-datasource-juggler": "^4.28.9",
41
+ "loopback-datasource-juggler": "^5.0.5",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
45
- "@loopback/build": "^10.1.3",
46
- "@loopback/core": "^5.1.3",
47
- "@loopback/eslint-config": "^14.0.4",
48
- "@loopback/testlab": "^6.1.3",
49
- "@types/node": "^16.18.50"
45
+ "@loopback/build": "^10.1.5",
46
+ "@loopback/core": "^5.1.5",
47
+ "@loopback/eslint-config": "^14.0.5",
48
+ "@loopback/testlab": "^6.1.5",
49
+ "@types/node": "^16.18.70"
50
50
  },
51
- "gitHead": "9107199cdf1597260ee03e2a903b7db0dec8445d"
51
+ "gitHead": "3f73360ac38e1615317cae977ac20c2e124e3518"
52
52
  }