@ngrx/data 16.1.0 → 16.3.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/esm2022/src/actions/entity-action-factory.mjs +5 -6
- package/esm2022/src/dataservices/data-service-error.mjs +4 -5
- package/esm2022/src/dataservices/default-data.service.mjs +5 -6
- package/esm2022/src/dataservices/entity-cache-data.service.mjs +5 -6
- package/esm2022/src/dataservices/entity-data.service.mjs +5 -6
- package/esm2022/src/dataservices/http-url-generator.mjs +5 -6
- package/esm2022/src/dataservices/persistence-result-handler.service.mjs +5 -6
- package/esm2022/src/dispatchers/entity-cache-dispatcher.mjs +5 -6
- package/esm2022/src/dispatchers/entity-dispatcher-default-options.mjs +5 -6
- package/esm2022/src/dispatchers/entity-dispatcher-factory.mjs +5 -6
- package/esm2022/src/effects/entity-cache-effects.mjs +5 -6
- package/esm2022/src/effects/entity-effects.mjs +5 -6
- package/esm2022/src/entity-data-without-effects.module.mjs +6 -7
- package/esm2022/src/entity-data.module.mjs +6 -7
- package/esm2022/src/entity-metadata/entity-definition.service.mjs +5 -6
- package/esm2022/src/entity-services/entity-collection-service-elements-factory.mjs +5 -6
- package/esm2022/src/entity-services/entity-collection-service-factory.mjs +5 -6
- package/esm2022/src/entity-services/entity-services-base.mjs +5 -6
- package/esm2022/src/entity-services/entity-services-elements.mjs +5 -6
- package/esm2022/src/reducers/entity-cache-reducer.mjs +5 -6
- package/esm2022/src/reducers/entity-collection-creator.mjs +5 -6
- package/esm2022/src/reducers/entity-collection-reducer-methods.mjs +5 -6
- package/esm2022/src/reducers/entity-collection-reducer-registry.mjs +5 -6
- package/esm2022/src/reducers/entity-collection-reducer.mjs +5 -6
- package/esm2022/src/selectors/entity-selectors$.mjs +5 -6
- package/esm2022/src/selectors/entity-selectors.mjs +5 -6
- package/esm2022/src/utils/correlation-id-generator.mjs +5 -6
- package/esm2022/src/utils/default-logger.mjs +5 -6
- package/esm2022/src/utils/default-pluralizer.mjs +5 -6
- package/fesm2022/ngrx-data.mjs +89 -90
- package/fesm2022/ngrx-data.mjs.map +1 -1
- package/package.json +4 -4
- package/schematics/ng-add/index.js +49 -4
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics-core/utility/libs-version.js +1 -1
- package/schematics-core/utility/libs-version.js.map +1 -1
- package/schematics-core/utility/standalone.js +12 -0
- package/schematics-core/utility/standalone.js.map +1 -0
- package/src/dataservices/data-service-error.d.ts +1 -2
package/fesm2022/ngrx-data.mjs
CHANGED
|
@@ -52,10 +52,10 @@ class EntityActionFactory {
|
|
|
52
52
|
return `[${tag}] ${op}`;
|
|
53
53
|
// return `${op} [${tag}]`.toUpperCase(); // example of an alternative
|
|
54
54
|
}
|
|
55
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
56
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
55
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityActionFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
56
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityActionFactory }); }
|
|
57
57
|
}
|
|
58
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
58
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityActionFactory, decorators: [{
|
|
59
59
|
type: Injectable
|
|
60
60
|
}] });
|
|
61
61
|
|
|
@@ -546,13 +546,12 @@ function makeSuccessOp(op) {
|
|
|
546
546
|
* @param error the HttpErrorResponse or the error thrown by the service
|
|
547
547
|
* @param requestData the HTTP request information such as the method and the url.
|
|
548
548
|
*/
|
|
549
|
-
|
|
550
|
-
// in some (all?) unit tests so don't bother trying.
|
|
551
|
-
class DataServiceError {
|
|
549
|
+
class DataServiceError extends Error {
|
|
552
550
|
constructor(error, requestData) {
|
|
551
|
+
super(typeof error === 'string' ? error : extractMessage(error) ?? undefined);
|
|
553
552
|
this.error = error;
|
|
554
553
|
this.requestData = requestData;
|
|
555
|
-
this.
|
|
554
|
+
this.name = this.constructor.name;
|
|
556
555
|
}
|
|
557
556
|
}
|
|
558
557
|
// Many ways the error can be shaped. These are the ways we recognize.
|
|
@@ -663,10 +662,10 @@ class DefaultHttpUrlGenerator {
|
|
|
663
662
|
...(entityHttpResourceUrls || {}),
|
|
664
663
|
};
|
|
665
664
|
}
|
|
666
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
667
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
665
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultHttpUrlGenerator, deps: [{ token: Pluralizer }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
666
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultHttpUrlGenerator }); }
|
|
668
667
|
}
|
|
669
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultHttpUrlGenerator, decorators: [{
|
|
670
669
|
type: Injectable
|
|
671
670
|
}], ctorParameters: function () { return [{ type: Pluralizer }]; } });
|
|
672
671
|
/** Remove leading & trailing spaces or slashes */
|
|
@@ -865,10 +864,10 @@ class DefaultDataServiceFactory {
|
|
|
865
864
|
create(entityName) {
|
|
866
865
|
return new DefaultDataService(entityName, this.http, this.httpUrlGenerator, this.config);
|
|
867
866
|
}
|
|
868
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
869
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
867
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultDataServiceFactory, deps: [{ token: i1.HttpClient }, { token: HttpUrlGenerator }, { token: DefaultDataServiceConfig, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
868
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultDataServiceFactory }); }
|
|
870
869
|
}
|
|
871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultDataServiceFactory, decorators: [{
|
|
872
871
|
type: Injectable
|
|
873
872
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HttpUrlGenerator }, { type: DefaultDataServiceConfig, decorators: [{
|
|
874
873
|
type: Optional
|
|
@@ -984,10 +983,10 @@ class EntityDefinitionService {
|
|
|
984
983
|
registerDefinitions(definitions) {
|
|
985
984
|
Object.assign(this.definitions, definitions);
|
|
986
985
|
}
|
|
987
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
988
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
986
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDefinitionService, deps: [{ token: ENTITY_METADATA_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
987
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDefinitionService }); }
|
|
989
988
|
}
|
|
990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDefinitionService, decorators: [{
|
|
991
990
|
type: Injectable
|
|
992
991
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
993
992
|
type: Optional
|
|
@@ -1124,10 +1123,10 @@ class EntityCacheDataService {
|
|
|
1124
1123
|
}
|
|
1125
1124
|
return idSelector;
|
|
1126
1125
|
}
|
|
1127
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1128
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1126
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheDataService, deps: [{ token: EntityDefinitionService }, { token: i1.HttpClient }, { token: DefaultDataServiceConfig, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1127
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheDataService }); }
|
|
1129
1128
|
}
|
|
1130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheDataService, decorators: [{
|
|
1131
1130
|
type: Injectable
|
|
1132
1131
|
}], ctorParameters: function () { return [{ type: EntityDefinitionService }, { type: i1.HttpClient }, { type: DefaultDataServiceConfig, decorators: [{
|
|
1133
1132
|
type: Optional
|
|
@@ -1186,10 +1185,10 @@ class EntityDataService {
|
|
|
1186
1185
|
registerServices(services) {
|
|
1187
1186
|
this.services = { ...this.services, ...services };
|
|
1188
1187
|
}
|
|
1189
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1190
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1188
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataService, deps: [{ token: DefaultDataServiceFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1189
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataService }); }
|
|
1191
1190
|
}
|
|
1192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataService, decorators: [{
|
|
1193
1192
|
type: Injectable
|
|
1194
1193
|
}], ctorParameters: function () { return [{ type: DefaultDataServiceFactory }]; } });
|
|
1195
1194
|
|
|
@@ -1229,10 +1228,10 @@ class DefaultPersistenceResultHandler {
|
|
|
1229
1228
|
return action;
|
|
1230
1229
|
};
|
|
1231
1230
|
}
|
|
1232
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1233
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1231
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultPersistenceResultHandler, deps: [{ token: Logger }, { token: EntityActionFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1232
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultPersistenceResultHandler }); }
|
|
1234
1233
|
}
|
|
1235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultPersistenceResultHandler, decorators: [{
|
|
1236
1235
|
type: Injectable
|
|
1237
1236
|
}], ctorParameters: function () { return [{ type: Logger }, { type: EntityActionFactory }]; } });
|
|
1238
1237
|
|
|
@@ -1267,10 +1266,10 @@ class CorrelationIdGenerator {
|
|
|
1267
1266
|
this.seed += 1;
|
|
1268
1267
|
return this.prefix + this.seed;
|
|
1269
1268
|
}
|
|
1270
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1271
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1269
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: CorrelationIdGenerator, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1270
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: CorrelationIdGenerator }); }
|
|
1272
1271
|
}
|
|
1273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: CorrelationIdGenerator, decorators: [{
|
|
1274
1273
|
type: Injectable
|
|
1275
1274
|
}] });
|
|
1276
1275
|
|
|
@@ -1295,10 +1294,10 @@ class EntityDispatcherDefaultOptions {
|
|
|
1295
1294
|
/** True if entities in a cache saveEntities request are saved optimistically; false if saved pessimistically. */
|
|
1296
1295
|
this.optimisticSaveEntities = false;
|
|
1297
1296
|
}
|
|
1298
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1299
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1297
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDispatcherDefaultOptions, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1298
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDispatcherDefaultOptions }); }
|
|
1300
1299
|
}
|
|
1301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1300
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDispatcherDefaultOptions, decorators: [{
|
|
1302
1301
|
type: Injectable
|
|
1303
1302
|
}] });
|
|
1304
1303
|
|
|
@@ -1444,10 +1443,10 @@ class EntityCacheDispatcher {
|
|
|
1444
1443
|
: throwError(act.payload);
|
|
1445
1444
|
}));
|
|
1446
1445
|
}
|
|
1447
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1448
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1446
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheDispatcher, deps: [{ token: CorrelationIdGenerator }, { token: EntityDispatcherDefaultOptions }, { token: ScannedActionsSubject }, { token: i3.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1447
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheDispatcher }); }
|
|
1449
1448
|
}
|
|
1450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheDispatcher, decorators: [{
|
|
1451
1450
|
type: Injectable
|
|
1452
1451
|
}], ctorParameters: function () { return [{ type: CorrelationIdGenerator }, { type: EntityDispatcherDefaultOptions }, { type: i4.Observable, decorators: [{
|
|
1453
1452
|
type: Inject,
|
|
@@ -1926,10 +1925,10 @@ class EntityDispatcherFactory {
|
|
|
1926
1925
|
ngOnDestroy() {
|
|
1927
1926
|
this.raSubscription.unsubscribe();
|
|
1928
1927
|
}
|
|
1929
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1930
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1928
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDispatcherFactory, deps: [{ token: EntityActionFactory }, { token: i3.Store }, { token: EntityDispatcherDefaultOptions }, { token: ScannedActionsSubject }, { token: ENTITY_CACHE_SELECTOR_TOKEN }, { token: CorrelationIdGenerator }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1929
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDispatcherFactory }); }
|
|
1931
1930
|
}
|
|
1932
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1931
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDispatcherFactory, decorators: [{
|
|
1933
1932
|
type: Injectable
|
|
1934
1933
|
}], ctorParameters: function () { return [{ type: EntityActionFactory }, { type: i3.Store }, { type: EntityDispatcherDefaultOptions }, { type: i4.Observable, decorators: [{
|
|
1935
1934
|
type: Inject,
|
|
@@ -2032,10 +2031,10 @@ class EntityCacheEffects {
|
|
|
2032
2031
|
return merge(entityNames.map((name) => entityActionFactory.create(name, EntityOp.SET_LOADING, false)));
|
|
2033
2032
|
};
|
|
2034
2033
|
}
|
|
2035
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2036
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2034
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheEffects, deps: [{ token: i1$1.Actions }, { token: EntityCacheDataService }, { token: EntityActionFactory }, { token: Logger }, { token: ENTITY_EFFECTS_SCHEDULER, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2035
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheEffects }); }
|
|
2037
2036
|
}
|
|
2038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheEffects, decorators: [{
|
|
2039
2038
|
type: Injectable
|
|
2040
2039
|
}], ctorParameters: function () { return [{ type: i1$1.Actions }, { type: EntityCacheDataService }, { type: EntityActionFactory }, { type: Logger }, { type: undefined, decorators: [{
|
|
2041
2040
|
type: Optional
|
|
@@ -2168,10 +2167,10 @@ class EntityEffects {
|
|
|
2168
2167
|
// as app likely assumes asynchronous response.
|
|
2169
2168
|
return of(successAction).pipe(delay(this.responseDelay, this.scheduler || asyncScheduler));
|
|
2170
2169
|
}
|
|
2171
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2172
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2170
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityEffects, deps: [{ token: i1$1.Actions }, { token: EntityDataService }, { token: EntityActionFactory }, { token: PersistenceResultHandler }, { token: ENTITY_EFFECTS_SCHEDULER, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2171
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityEffects }); }
|
|
2173
2172
|
}
|
|
2174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityEffects, decorators: [{
|
|
2175
2174
|
type: Injectable
|
|
2176
2175
|
}], ctorParameters: function () { return [{ type: i1$1.Actions }, { type: EntityDataService }, { type: EntityActionFactory }, { type: PersistenceResultHandler }, { type: undefined, decorators: [{
|
|
2177
2176
|
type: Optional
|
|
@@ -2488,10 +2487,10 @@ class EntityCollectionCreator {
|
|
|
2488
2487
|
const initialState = def && def.initialState;
|
|
2489
2488
|
return (initialState || createEmptyEntityCollection(entityName));
|
|
2490
2489
|
}
|
|
2491
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2492
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2490
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionCreator, deps: [{ token: EntityDefinitionService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2491
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionCreator }); }
|
|
2493
2492
|
}
|
|
2494
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2493
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionCreator, decorators: [{
|
|
2495
2494
|
type: Injectable
|
|
2496
2495
|
}], ctorParameters: function () { return [{ type: EntityDefinitionService, decorators: [{
|
|
2497
2496
|
type: Optional
|
|
@@ -2583,10 +2582,10 @@ class EntitySelectorsFactory {
|
|
|
2583
2582
|
...entitySelectors,
|
|
2584
2583
|
};
|
|
2585
2584
|
}
|
|
2586
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2587
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2585
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntitySelectorsFactory, deps: [{ token: EntityCollectionCreator, optional: true }, { token: ENTITY_CACHE_SELECTOR_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2586
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntitySelectorsFactory }); }
|
|
2588
2587
|
}
|
|
2589
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntitySelectorsFactory, decorators: [{
|
|
2590
2589
|
type: Injectable
|
|
2591
2590
|
}], ctorParameters: function () { return [{ type: EntityCollectionCreator, decorators: [{
|
|
2592
2591
|
type: Optional
|
|
@@ -2631,10 +2630,10 @@ class EntitySelectors$Factory {
|
|
|
2631
2630
|
selectors$['errors$'] = this.entityActionErrors$.pipe(ofEntityType(entityName));
|
|
2632
2631
|
return selectors$;
|
|
2633
2632
|
}
|
|
2634
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2635
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2633
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntitySelectors$Factory, deps: [{ token: i3.Store }, { token: i1$1.Actions }, { token: ENTITY_CACHE_SELECTOR_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2634
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntitySelectors$Factory }); }
|
|
2636
2635
|
}
|
|
2637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntitySelectors$Factory, decorators: [{
|
|
2638
2637
|
type: Injectable
|
|
2639
2638
|
}], ctorParameters: function () { return [{ type: i3.Store }, { type: i1$1.Actions }, { type: undefined, decorators: [{
|
|
2640
2639
|
type: Inject,
|
|
@@ -2666,10 +2665,10 @@ class EntityCollectionServiceElementsFactory {
|
|
|
2666
2665
|
selectors$,
|
|
2667
2666
|
};
|
|
2668
2667
|
}
|
|
2669
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2670
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2668
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionServiceElementsFactory, deps: [{ token: EntityDispatcherFactory }, { token: EntityDefinitionService }, { token: EntitySelectorsFactory }, { token: EntitySelectors$Factory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2669
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionServiceElementsFactory }); }
|
|
2671
2670
|
}
|
|
2672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionServiceElementsFactory, decorators: [{
|
|
2673
2672
|
type: Injectable
|
|
2674
2673
|
}], ctorParameters: function () { return [{ type: EntityDispatcherFactory }, { type: EntityDefinitionService }, { type: EntitySelectorsFactory }, { type: EntitySelectors$Factory }]; } });
|
|
2675
2674
|
|
|
@@ -2690,10 +2689,10 @@ class EntityCollectionServiceFactory {
|
|
|
2690
2689
|
create(entityName) {
|
|
2691
2690
|
return new EntityCollectionServiceBase(entityName, this.entityCollectionServiceElementsFactory);
|
|
2692
2691
|
}
|
|
2693
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2694
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2692
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionServiceFactory, deps: [{ token: EntityCollectionServiceElementsFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2693
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionServiceFactory }); }
|
|
2695
2694
|
}
|
|
2696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2695
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionServiceFactory, decorators: [{
|
|
2697
2696
|
type: Injectable
|
|
2698
2697
|
}], ctorParameters: function () { return [{ type: EntityCollectionServiceElementsFactory }]; } });
|
|
2699
2698
|
|
|
@@ -2717,10 +2716,10 @@ class EntityServicesElements {
|
|
|
2717
2716
|
this.entityCache$ = entitySelectors$Factory.entityCache$;
|
|
2718
2717
|
this.reducedActions$ = entityDispatcherFactory.reducedActions$;
|
|
2719
2718
|
}
|
|
2720
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2721
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2719
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityServicesElements, deps: [{ token: EntityCollectionServiceFactory }, { token: EntityDispatcherFactory }, { token: EntitySelectors$Factory }, { token: i3.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2720
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityServicesElements }); }
|
|
2722
2721
|
}
|
|
2723
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityServicesElements, decorators: [{
|
|
2724
2723
|
type: Injectable
|
|
2725
2724
|
}], ctorParameters: function () { return [{ type: EntityCollectionServiceFactory }, { type: EntityDispatcherFactory }, { type: EntitySelectors$Factory }, { type: i3.Store }]; } });
|
|
2726
2725
|
|
|
@@ -2832,10 +2831,10 @@ class EntityServicesBase {
|
|
|
2832
2831
|
});
|
|
2833
2832
|
}
|
|
2834
2833
|
}
|
|
2835
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2836
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2834
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityServicesBase, deps: [{ token: EntityServicesElements }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2835
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityServicesBase }); }
|
|
2837
2836
|
}
|
|
2838
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityServicesBase, decorators: [{
|
|
2839
2838
|
type: Injectable
|
|
2840
2839
|
}], ctorParameters: function () { return [{ type: EntityServicesElements }]; } });
|
|
2841
2840
|
|
|
@@ -4237,10 +4236,10 @@ class EntityCollectionReducerMethodsFactory {
|
|
|
4237
4236
|
const methodsClass = new EntityCollectionReducerMethods(entityName, definition);
|
|
4238
4237
|
return methodsClass.methods;
|
|
4239
4238
|
}
|
|
4240
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4241
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4239
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerMethodsFactory, deps: [{ token: EntityDefinitionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4240
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerMethodsFactory }); }
|
|
4242
4241
|
}
|
|
4243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4242
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerMethodsFactory, decorators: [{
|
|
4244
4243
|
type: Injectable
|
|
4245
4244
|
}], ctorParameters: function () { return [{ type: EntityDefinitionService }]; } });
|
|
4246
4245
|
|
|
@@ -4258,10 +4257,10 @@ class EntityCollectionReducerFactory {
|
|
|
4258
4257
|
return reducerMethod ? reducerMethod(collection, action) : collection;
|
|
4259
4258
|
};
|
|
4260
4259
|
}
|
|
4261
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4262
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4260
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerFactory, deps: [{ token: EntityCollectionReducerMethodsFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4261
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerFactory }); }
|
|
4263
4262
|
}
|
|
4264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerFactory, decorators: [{
|
|
4265
4264
|
type: Injectable
|
|
4266
4265
|
}], ctorParameters: function () { return [{ type: EntityCollectionReducerMethodsFactory }]; } });
|
|
4267
4266
|
|
|
@@ -4316,10 +4315,10 @@ class EntityCollectionReducerRegistry {
|
|
|
4316
4315
|
const keys = reducers ? Object.keys(reducers) : [];
|
|
4317
4316
|
keys.forEach((key) => this.registerReducer(key, reducers[key]));
|
|
4318
4317
|
}
|
|
4319
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4320
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4318
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerRegistry, deps: [{ token: EntityCollectionReducerFactory }, { token: ENTITY_COLLECTION_META_REDUCERS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4319
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerRegistry }); }
|
|
4321
4320
|
}
|
|
4322
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCollectionReducerRegistry, decorators: [{
|
|
4323
4322
|
type: Injectable
|
|
4324
4323
|
}], ctorParameters: function () { return [{ type: EntityCollectionReducerFactory }, { type: undefined, decorators: [{
|
|
4325
4324
|
type: Optional
|
|
@@ -4583,10 +4582,10 @@ class EntityCacheReducerFactory {
|
|
|
4583
4582
|
});
|
|
4584
4583
|
return entityCache;
|
|
4585
4584
|
}
|
|
4586
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4587
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4585
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheReducerFactory, deps: [{ token: EntityCollectionCreator }, { token: EntityCollectionReducerRegistry }, { token: Logger }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4586
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheReducerFactory }); }
|
|
4588
4587
|
}
|
|
4589
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityCacheReducerFactory, decorators: [{
|
|
4590
4589
|
type: Injectable
|
|
4591
4590
|
}], ctorParameters: function () { return [{ type: EntityCollectionCreator }, { type: EntityCollectionReducerRegistry }, { type: Logger }]; } });
|
|
4592
4591
|
|
|
@@ -4606,10 +4605,10 @@ class DefaultLogger {
|
|
|
4606
4605
|
extra ? console.warn(message, extra) : console.warn(message);
|
|
4607
4606
|
}
|
|
4608
4607
|
}
|
|
4609
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4610
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4608
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultLogger, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4609
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultLogger }); }
|
|
4611
4610
|
}
|
|
4612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4611
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultLogger, decorators: [{
|
|
4613
4612
|
type: Injectable
|
|
4614
4613
|
}] });
|
|
4615
4614
|
|
|
@@ -4669,10 +4668,10 @@ class DefaultPluralizer {
|
|
|
4669
4668
|
registerPluralNames(pluralNames) {
|
|
4670
4669
|
this.pluralNames = { ...this.pluralNames, ...(pluralNames || {}) };
|
|
4671
4670
|
}
|
|
4672
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4673
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4671
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultPluralizer, deps: [{ token: PLURAL_NAMES_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4672
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultPluralizer }); }
|
|
4674
4673
|
}
|
|
4675
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DefaultPluralizer, decorators: [{
|
|
4676
4675
|
type: Injectable
|
|
4677
4676
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
4678
4677
|
type: Optional
|
|
@@ -4951,11 +4950,11 @@ class EntityDataModuleWithoutEffects {
|
|
|
4951
4950
|
providers: [provideEntityDataConfig(config)],
|
|
4952
4951
|
};
|
|
4953
4952
|
}
|
|
4954
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4955
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
4956
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
4953
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModuleWithoutEffects, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4954
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModuleWithoutEffects }); }
|
|
4955
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModuleWithoutEffects, providers: [BASE_ENTITY_DATA_PROVIDERS] }); }
|
|
4957
4956
|
}
|
|
4958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModuleWithoutEffects, decorators: [{
|
|
4959
4958
|
type: NgModule,
|
|
4960
4959
|
args: [{
|
|
4961
4960
|
providers: [BASE_ENTITY_DATA_PROVIDERS],
|
|
@@ -4974,11 +4973,11 @@ class EntityDataModule {
|
|
|
4974
4973
|
providers: [provideEntityDataConfig(config)],
|
|
4975
4974
|
};
|
|
4976
4975
|
}
|
|
4977
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4978
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
4979
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
4976
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4977
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModule, imports: [EntityDataModuleWithoutEffects] }); }
|
|
4978
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModule, providers: [ENTITY_DATA_EFFECTS_PROVIDERS], imports: [EntityDataModuleWithoutEffects] }); }
|
|
4980
4979
|
}
|
|
4981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EntityDataModule, decorators: [{
|
|
4982
4981
|
type: NgModule,
|
|
4983
4982
|
args: [{
|
|
4984
4983
|
imports: [EntityDataModuleWithoutEffects],
|