@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/esm2020/src/dispatchers/entity-dispatcher-factory.mjs +3 -1
- package/esm2020/src/selectors/entity-selectors$.mjs +3 -3
- package/fesm2015/ngrx-data.mjs +4 -2
- package/fesm2015/ngrx-data.mjs.map +1 -1
- package/fesm2020/ngrx-data.mjs +4 -2
- package/fesm2020/ngrx-data.mjs.map +1 -1
- package/package.json +4 -4
- package/schematics/ng-add/schema.json +4 -1
- package/schematics-core/utility/libs-version.js +1 -1
- package/schematics-core/utility/libs-version.js.map +1 -1
- package/src/dispatchers/entity-dispatcher-factory.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngrx/data",
|
|
3
|
-
"version": "14.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.
|
|
26
|
-
"@ngrx/effects": "14.0.
|
|
27
|
-
"@ngrx/entity": "14.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",
|
|
@@ -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,
|
|
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;
|