@ngrx/data 14.0.0-rc.0 → 14.0.2

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": "14.0.0-rc.0",
3
+ "version": "14.0.2",
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": "^14.0.0",
24
24
  "@angular/core": "^14.0.0",
25
- "@ngrx/store": "14.0.0-rc.0",
26
- "@ngrx/effects": "14.0.0-rc.0",
27
- "@ngrx/entity": "14.0.0-rc.0",
25
+ "@ngrx/store": "14.0.2",
26
+ "@ngrx/effects": "14.0.2",
27
+ "@ngrx/entity": "14.0.2",
28
28
  "rxjs": "^6.5.3 || ^7.5.0"
29
29
  },
30
30
  "schematics": "./schematics/collection.json",
@@ -18,7 +18,10 @@
18
18
  "type": "string",
19
19
  "format": "path",
20
20
  "description": "The path to the module.",
21
- "visible": false
21
+ "visible": false,
22
+ "$default": {
23
+ "$source": "workingDirectory"
24
+ }
22
25
  },
23
26
  "project": {
24
27
  "type": "string",
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  exports.__esModule = true;
3
3
  exports.platformVersion = void 0;
4
- exports.platformVersion = '^14.0.0-rc.0';
4
+ exports.platformVersion = '^14.0.2';
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,cAAc,CAAC","sourcesContent":["export const platformVersion = '^14.0.0-rc.0';\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 = '^14.0.2';\n"]}
@@ -32,10 +32,12 @@ export declare class EntityDispatcherFactory implements OnDestroy {
32
32
  /**
33
33
  * Function that returns the primary key for an entity `T`.
34
34
  * Usually acquired from `EntityDefinition` metadata.
35
+ * @param {IdSelector<T>} selectId
35
36
  */
36
37
  selectId?: IdSelector<T>,
37
38
  /** Defaults for options that influence dispatcher behavior such as whether
38
39
  * `add()` is optimistic or pessimistic;
40
+ * @param {Partial<EntityDispatcherDefaultOptions>} defaultOptions
39
41
  */
40
42
  defaultOptions?: Partial<EntityDispatcherDefaultOptions>): EntityDispatcher<T>;
41
43
  ngOnDestroy(): void;