@loopback/service-proxy 3.0.6 → 3.0.7
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/CHANGELOG.md +8 -0
- package/dist/mixins/service.mixin.d.ts +3 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.7](https://github.com/strongloop/loopback-next/compare/@loopback/service-proxy@3.0.6...@loopback/service-proxy@3.0.7) (2021-02-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/service-proxy
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [3.0.6](https://github.com/strongloop/loopback-next/compare/@loopback/service-proxy@3.0.5...@loopback/service-proxy@3.0.6) (2021-01-21)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @loopback/service-proxy
|
|
@@ -155,6 +155,8 @@ export declare function ServiceMixin<T extends MixinTarget<Application>>(superCl
|
|
|
155
155
|
(event: string | symbol, listener: (...args: any[]) => void): Application;
|
|
156
156
|
};
|
|
157
157
|
addListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
|
|
158
|
+
prependListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
|
|
159
|
+
prependOnceListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
|
|
158
160
|
removeListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
|
|
159
161
|
off: (event: string | symbol, listener: (...args: any[]) => void) => Application;
|
|
160
162
|
removeAllListeners: (event?: string | symbol | undefined) => Application;
|
|
@@ -163,10 +165,8 @@ export declare function ServiceMixin<T extends MixinTarget<Application>>(superCl
|
|
|
163
165
|
listeners: (event: string | symbol) => Function[];
|
|
164
166
|
rawListeners: (event: string | symbol) => Function[];
|
|
165
167
|
emit: (event: string | symbol, ...args: any[]) => boolean;
|
|
166
|
-
listenerCount: (type: string | symbol) => number;
|
|
167
|
-
prependListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
|
|
168
|
-
prependOnceListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
|
|
169
168
|
eventNames: () => (string | symbol)[];
|
|
169
|
+
listenerCount: (type: string | symbol) => number;
|
|
170
170
|
};
|
|
171
171
|
} & T;
|
|
172
172
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/service-proxy",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"description": "A common set of interfaces for interacting with service oriented backends such as REST APIs, SOAP Web Services, and gRPC microservices",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@loopback/core": "^2.14.
|
|
27
|
+
"@loopback/core": "^2.14.1"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"loopback-datasource-juggler": "^4.26.0",
|
|
31
|
-
"tslib": "^2.0
|
|
31
|
+
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@loopback/build": "^6.2.9",
|
|
35
|
-
"@loopback/core": "^2.14.
|
|
35
|
+
"@loopback/core": "^2.14.1",
|
|
36
36
|
"@loopback/eslint-config": "^10.0.5",
|
|
37
|
-
"@loopback/testlab": "^3.2.
|
|
37
|
+
"@loopback/testlab": "^3.2.12",
|
|
38
38
|
"@types/node": "^10.17.35"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"url": "https://github.com/strongloop/loopback-next.git",
|
|
49
49
|
"directory": "packages/service-proxy"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "0fcf97fa1e87457de85f8f1b6b5cbf9f4f0bd640"
|
|
52
52
|
}
|