@ngrx/data 21.0.1 → 21.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngrx/data",
3
- "version": "21.0.1",
3
+ "version": "21.1.1",
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": "^21.0.0",
24
24
  "@angular/core": "^21.0.0",
25
- "@ngrx/store": "21.0.1",
26
- "@ngrx/effects": "21.0.1",
27
- "@ngrx/entity": "21.0.1",
25
+ "@ngrx/store": "21.1.1",
26
+ "@ngrx/effects": "21.1.1",
27
+ "@ngrx/entity": "21.1.1",
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 = '^21.0.1';
4
+ exports.platformVersion = '^21.1.1';
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 = '^21.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 = '^21.1.1';\n"]}
@@ -123,10 +123,6 @@ interface RequestData {
123
123
  * Same as HttpClient's HttpParamsOptions which at the time of writing was
124
124
  * NOT exported at package level
125
125
  * https://github.com/angular/angular/issues/22013
126
- *
127
- * @deprecated Use HttpOptions instead. getWithQuery still accepts QueryParams as its
128
- * first argument, but HttpOptions.httpParams uses Angular's own HttpParamsOptions which
129
- * HttpClient accepts as an argument.
130
126
  */
131
127
  interface QueryParams {
132
128
  [name: string]: string | number | boolean | ReadonlyArray<string | number | boolean>;