@ngrx/data 16.0.1 → 16.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngrx/data",
3
- "version": "16.0.1",
3
+ "version": "16.2.0",
4
4
  "description": "API management for NgRx",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,9 +22,9 @@
22
22
  "peerDependencies": {
23
23
  "@angular/common": "^16.0.0",
24
24
  "@angular/core": "^16.0.0",
25
- "@ngrx/store": "16.0.1",
26
- "@ngrx/effects": "16.0.1",
27
- "@ngrx/entity": "16.0.1",
25
+ "@ngrx/store": "16.2.0",
26
+ "@ngrx/effects": "16.2.0",
27
+ "@ngrx/entity": "16.2.0",
28
28
  "rxjs": "^6.5.3 || ^7.5.0"
29
29
  },
30
30
  "schematics": "./schematics/collection.json",
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.platformVersion = void 0;
4
- exports.platformVersion = '^16.0.1';
4
+ exports.platformVersion = '^16.2.0';
5
5
  //# sourceMappingURL=libs-version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"libs-version.js","sourceRoot":"","sources":["../../../../../modules/data/schematics-core/utility/libs-version.ts"],"names":[],"mappings":";;;AAAa,QAAA,eAAe,GAAG,SAAS,CAAC","sourcesContent":["export const platformVersion = '^16.0.1';\n"]}
1
+ {"version":3,"file":"libs-version.js","sourceRoot":"","sources":["../../../../../modules/data/schematics-core/utility/libs-version.ts"],"names":[],"mappings":";;;AAAa,QAAA,eAAe,GAAG,SAAS,CAAC","sourcesContent":["export const platformVersion = '^16.2.0';\n"]}
@@ -6,10 +6,9 @@ import { RequestData } from './interfaces';
6
6
  * @param error the HttpErrorResponse or the error thrown by the service
7
7
  * @param requestData the HTTP request information such as the method and the url.
8
8
  */
9
- export declare class DataServiceError {
9
+ export declare class DataServiceError extends Error {
10
10
  error: any;
11
11
  requestData: RequestData | null;
12
- message: string | null;
13
12
  constructor(error: any, requestData: RequestData | null);
14
13
  }
15
14
  /** Payload for an EntityAction data service error such as QUERY_ALL_ERROR */