@loopback/repository 3.4.0 → 3.4.1

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 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.4.1](https://github.com/strongloop/loopback-next/compare/@loopback/repository@3.4.0...@loopback/repository@3.4.1) (2021-02-09)
7
+
8
+ **Note:** Version bump only for package @loopback/repository
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.4.0](https://github.com/strongloop/loopback-next/compare/@loopback/repository@3.3.0...@loopback/repository@3.4.0) (2021-01-21)
7
15
 
8
16
 
@@ -217,6 +217,8 @@ export declare function RepositoryMixin<T extends MixinTarget<Application>>(supe
217
217
  (event: string | symbol, listener: (...args: any[]) => void): Application;
218
218
  };
219
219
  addListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
220
+ prependListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
221
+ prependOnceListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
220
222
  removeListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
221
223
  off: (event: string | symbol, listener: (...args: any[]) => void) => Application;
222
224
  removeAllListeners: (event?: string | symbol | undefined) => Application;
@@ -225,10 +227,8 @@ export declare function RepositoryMixin<T extends MixinTarget<Application>>(supe
225
227
  listeners: (event: string | symbol) => Function[];
226
228
  rawListeners: (event: string | symbol) => Function[];
227
229
  emit: (event: string | symbol, ...args: any[]) => boolean;
228
- listenerCount: (type: string | symbol) => number;
229
- prependListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
230
- prependOnceListener: (event: string | symbol, listener: (...args: any[]) => void) => Application;
231
230
  eventNames: () => (string | symbol)[];
231
+ listenerCount: (type: string | symbol) => number;
232
232
  };
233
233
  } & T;
234
234
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loopback/repository",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "Define and implement a common set of interfaces for interacting with databases",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,21 +22,21 @@
22
22
  "access": "public"
23
23
  },
24
24
  "peerDependencies": {
25
- "@loopback/core": "^2.14.0"
25
+ "@loopback/core": "^2.14.1"
26
26
  },
27
27
  "dependencies": {
28
- "@loopback/filter": "^1.3.1",
28
+ "@loopback/filter": "^1.3.2",
29
29
  "@types/debug": "^4.1.5",
30
30
  "debug": "^4.3.1",
31
31
  "lodash": "^4.17.20",
32
32
  "loopback-datasource-juggler": "^4.26.0",
33
- "tslib": "^2.0.3"
33
+ "tslib": "^2.1.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@loopback/build": "^6.2.9",
37
- "@loopback/core": "^2.14.0",
37
+ "@loopback/core": "^2.14.1",
38
38
  "@loopback/eslint-config": "^10.0.5",
39
- "@loopback/testlab": "^3.2.11",
39
+ "@loopback/testlab": "^3.2.12",
40
40
  "@types/bson": "^4.0.3",
41
41
  "@types/json-schema": "^7.0.7",
42
42
  "@types/lodash": "^4.14.168",
@@ -54,5 +54,5 @@
54
54
  "url": "https://github.com/strongloop/loopback-next.git",
55
55
  "directory": "packages/repository"
56
56
  },
57
- "gitHead": "fd33be0291c4653bee885535d27ebfd8af264e42"
57
+ "gitHead": "0fcf97fa1e87457de85f8f1b6b5cbf9f4f0bd640"
58
58
  }