@ngrx/data 21.1.0 → 22.0.0-beta.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/fesm2022/ngrx-data.mjs +90 -87
- package/fesm2022/ngrx-data.mjs.map +1 -1
- package/package.json +8 -7
- package/schematics-core/tsconfig.lib.json +23 -0
- package/schematics-core/utility/libs-version.js +1 -1
- package/schematics-core/utility/libs-version.js.map +1 -1
- package/types/ngrx-data.d.ts +8 -12
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: "
|
|
56
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
55
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityActionFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
56
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityActionFactory }); }
|
|
57
57
|
}
|
|
58
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
58
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityActionFactory, decorators: [{
|
|
59
59
|
type: Injectable
|
|
60
60
|
}] });
|
|
61
61
|
|
|
@@ -662,10 +662,10 @@ class DefaultHttpUrlGenerator {
|
|
|
662
662
|
...(entityHttpResourceUrls || {}),
|
|
663
663
|
};
|
|
664
664
|
}
|
|
665
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
666
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
665
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultHttpUrlGenerator, deps: [{ token: Pluralizer }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
666
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultHttpUrlGenerator }); }
|
|
667
667
|
}
|
|
668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultHttpUrlGenerator, decorators: [{
|
|
669
669
|
type: Injectable
|
|
670
670
|
}], ctorParameters: () => [{ type: Pluralizer }] });
|
|
671
671
|
/** Remove leading & trailing spaces or slashes */
|
|
@@ -864,10 +864,10 @@ class DefaultDataServiceFactory {
|
|
|
864
864
|
create(entityName) {
|
|
865
865
|
return new DefaultDataService(entityName, this.http, this.httpUrlGenerator, this.config);
|
|
866
866
|
}
|
|
867
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
868
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
867
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", 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: "22.0.0", ngImport: i0, type: DefaultDataServiceFactory }); }
|
|
869
869
|
}
|
|
870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultDataServiceFactory, decorators: [{
|
|
871
871
|
type: Injectable
|
|
872
872
|
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: HttpUrlGenerator }, { type: DefaultDataServiceConfig, decorators: [{
|
|
873
873
|
type: Optional
|
|
@@ -881,7 +881,10 @@ function createEntityDefinition(metadata) {
|
|
|
881
881
|
metadata.entityName = entityName = entityName.trim();
|
|
882
882
|
const selectId = metadata.selectId || defaultSelectId;
|
|
883
883
|
const sortComparer = (metadata.sortComparer = metadata.sortComparer || false);
|
|
884
|
-
const entityAdapter = createEntityAdapter({
|
|
884
|
+
const entityAdapter = createEntityAdapter({
|
|
885
|
+
selectId,
|
|
886
|
+
sortComparer,
|
|
887
|
+
});
|
|
885
888
|
const entityDispatcherOptions = metadata.entityDispatcherOptions || {};
|
|
886
889
|
const initialState = entityAdapter.getInitialState({
|
|
887
890
|
entityName,
|
|
@@ -983,10 +986,10 @@ class EntityDefinitionService {
|
|
|
983
986
|
registerDefinitions(definitions) {
|
|
984
987
|
Object.assign(this.definitions, definitions);
|
|
985
988
|
}
|
|
986
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
987
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
989
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDefinitionService, deps: [{ token: ENTITY_METADATA_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
990
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDefinitionService }); }
|
|
988
991
|
}
|
|
989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDefinitionService, decorators: [{
|
|
990
993
|
type: Injectable
|
|
991
994
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
992
995
|
type: Optional
|
|
@@ -1123,10 +1126,10 @@ class EntityCacheDataService {
|
|
|
1123
1126
|
}
|
|
1124
1127
|
return idSelector;
|
|
1125
1128
|
}
|
|
1126
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1127
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1129
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheDataService, deps: [{ token: EntityDefinitionService }, { token: i1.HttpClient }, { token: DefaultDataServiceConfig, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1130
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheDataService }); }
|
|
1128
1131
|
}
|
|
1129
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheDataService, decorators: [{
|
|
1130
1133
|
type: Injectable
|
|
1131
1134
|
}], ctorParameters: () => [{ type: EntityDefinitionService }, { type: i1.HttpClient }, { type: DefaultDataServiceConfig, decorators: [{
|
|
1132
1135
|
type: Optional
|
|
@@ -1185,10 +1188,10 @@ class EntityDataService {
|
|
|
1185
1188
|
registerServices(services) {
|
|
1186
1189
|
this.services = { ...this.services, ...services };
|
|
1187
1190
|
}
|
|
1188
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1189
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1191
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataService, deps: [{ token: DefaultDataServiceFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1192
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataService }); }
|
|
1190
1193
|
}
|
|
1191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataService, decorators: [{
|
|
1192
1195
|
type: Injectable
|
|
1193
1196
|
}], ctorParameters: () => [{ type: DefaultDataServiceFactory }] });
|
|
1194
1197
|
|
|
@@ -1228,10 +1231,10 @@ class DefaultPersistenceResultHandler {
|
|
|
1228
1231
|
return action;
|
|
1229
1232
|
};
|
|
1230
1233
|
}
|
|
1231
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1232
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1234
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultPersistenceResultHandler, deps: [{ token: Logger }, { token: EntityActionFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1235
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultPersistenceResultHandler }); }
|
|
1233
1236
|
}
|
|
1234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultPersistenceResultHandler, decorators: [{
|
|
1235
1238
|
type: Injectable
|
|
1236
1239
|
}], ctorParameters: () => [{ type: Logger }, { type: EntityActionFactory }] });
|
|
1237
1240
|
|
|
@@ -1266,10 +1269,10 @@ class CorrelationIdGenerator {
|
|
|
1266
1269
|
this.seed += 1;
|
|
1267
1270
|
return this.prefix + this.seed;
|
|
1268
1271
|
}
|
|
1269
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1270
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1272
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: CorrelationIdGenerator, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1273
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: CorrelationIdGenerator }); }
|
|
1271
1274
|
}
|
|
1272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: CorrelationIdGenerator, decorators: [{
|
|
1273
1276
|
type: Injectable
|
|
1274
1277
|
}] });
|
|
1275
1278
|
|
|
@@ -1294,10 +1297,10 @@ class EntityDispatcherDefaultOptions {
|
|
|
1294
1297
|
/** True if entities in a cache saveEntities request are saved optimistically; false if saved pessimistically. */
|
|
1295
1298
|
this.optimisticSaveEntities = false;
|
|
1296
1299
|
}
|
|
1297
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1298
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1300
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDispatcherDefaultOptions, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1301
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDispatcherDefaultOptions }); }
|
|
1299
1302
|
}
|
|
1300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDispatcherDefaultOptions, decorators: [{
|
|
1301
1304
|
type: Injectable
|
|
1302
1305
|
}] });
|
|
1303
1306
|
|
|
@@ -1443,10 +1446,10 @@ class EntityCacheDispatcher {
|
|
|
1443
1446
|
: throwError(act.payload);
|
|
1444
1447
|
}));
|
|
1445
1448
|
}
|
|
1446
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1447
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1449
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheDispatcher, deps: [{ token: CorrelationIdGenerator }, { token: EntityDispatcherDefaultOptions }, { token: ScannedActionsSubject }, { token: i3.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1450
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheDispatcher }); }
|
|
1448
1451
|
}
|
|
1449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheDispatcher, decorators: [{
|
|
1450
1453
|
type: Injectable
|
|
1451
1454
|
}], ctorParameters: () => [{ type: CorrelationIdGenerator }, { type: EntityDispatcherDefaultOptions }, { type: i4.Observable, decorators: [{
|
|
1452
1455
|
type: Inject,
|
|
@@ -1925,10 +1928,10 @@ class EntityDispatcherFactory {
|
|
|
1925
1928
|
ngOnDestroy() {
|
|
1926
1929
|
this.raSubscription.unsubscribe();
|
|
1927
1930
|
}
|
|
1928
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1929
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1931
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", 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 }); }
|
|
1932
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDispatcherFactory }); }
|
|
1930
1933
|
}
|
|
1931
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1934
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDispatcherFactory, decorators: [{
|
|
1932
1935
|
type: Injectable
|
|
1933
1936
|
}], ctorParameters: () => [{ type: EntityActionFactory }, { type: i3.Store }, { type: EntityDispatcherDefaultOptions }, { type: i4.Observable, decorators: [{
|
|
1934
1937
|
type: Inject,
|
|
@@ -2031,10 +2034,10 @@ class EntityCacheEffects {
|
|
|
2031
2034
|
return merge(entityNames.map((name) => entityActionFactory.create(name, EntityOp.SET_LOADING, false)));
|
|
2032
2035
|
};
|
|
2033
2036
|
}
|
|
2034
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2035
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2037
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", 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 }); }
|
|
2038
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheEffects }); }
|
|
2036
2039
|
}
|
|
2037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheEffects, decorators: [{
|
|
2038
2041
|
type: Injectable
|
|
2039
2042
|
}], ctorParameters: () => [{ type: i1$1.Actions }, { type: EntityCacheDataService }, { type: EntityActionFactory }, { type: Logger }, { type: undefined, decorators: [{
|
|
2040
2043
|
type: Optional
|
|
@@ -2167,10 +2170,10 @@ class EntityEffects {
|
|
|
2167
2170
|
// as app likely assumes asynchronous response.
|
|
2168
2171
|
return of(successAction).pipe(delay(this.responseDelay, this.scheduler || asyncScheduler));
|
|
2169
2172
|
}
|
|
2170
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2171
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2173
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", 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 }); }
|
|
2174
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityEffects }); }
|
|
2172
2175
|
}
|
|
2173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityEffects, decorators: [{
|
|
2174
2177
|
type: Injectable
|
|
2175
2178
|
}], ctorParameters: () => [{ type: i1$1.Actions }, { type: EntityDataService }, { type: EntityActionFactory }, { type: PersistenceResultHandler }, { type: undefined, decorators: [{
|
|
2176
2179
|
type: Optional
|
|
@@ -2487,10 +2490,10 @@ class EntityCollectionCreator {
|
|
|
2487
2490
|
const initialState = def && def.initialState;
|
|
2488
2491
|
return (initialState || createEmptyEntityCollection(entityName));
|
|
2489
2492
|
}
|
|
2490
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2491
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2493
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionCreator, deps: [{ token: EntityDefinitionService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2494
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionCreator }); }
|
|
2492
2495
|
}
|
|
2493
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionCreator, decorators: [{
|
|
2494
2497
|
type: Injectable
|
|
2495
2498
|
}], ctorParameters: () => [{ type: EntityDefinitionService, decorators: [{
|
|
2496
2499
|
type: Optional
|
|
@@ -2582,10 +2585,10 @@ class EntitySelectorsFactory {
|
|
|
2582
2585
|
...entitySelectors,
|
|
2583
2586
|
};
|
|
2584
2587
|
}
|
|
2585
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2586
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2588
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntitySelectorsFactory, deps: [{ token: EntityCollectionCreator, optional: true }, { token: ENTITY_CACHE_SELECTOR_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2589
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntitySelectorsFactory }); }
|
|
2587
2590
|
}
|
|
2588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntitySelectorsFactory, decorators: [{
|
|
2589
2592
|
type: Injectable
|
|
2590
2593
|
}], ctorParameters: () => [{ type: EntityCollectionCreator, decorators: [{
|
|
2591
2594
|
type: Optional
|
|
@@ -2630,10 +2633,10 @@ class EntitySelectors$Factory {
|
|
|
2630
2633
|
selectors$['errors$'] = this.entityActionErrors$.pipe(ofEntityType(entityName));
|
|
2631
2634
|
return selectors$;
|
|
2632
2635
|
}
|
|
2633
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2634
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2636
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntitySelectors$Factory, deps: [{ token: i3.Store }, { token: i1$1.Actions }, { token: ENTITY_CACHE_SELECTOR_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2637
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntitySelectors$Factory }); }
|
|
2635
2638
|
}
|
|
2636
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntitySelectors$Factory, decorators: [{
|
|
2637
2640
|
type: Injectable
|
|
2638
2641
|
}], ctorParameters: () => [{ type: i3.Store }, { type: i1$1.Actions }, { type: undefined, decorators: [{
|
|
2639
2642
|
type: Inject,
|
|
@@ -2665,10 +2668,10 @@ class EntityCollectionServiceElementsFactory {
|
|
|
2665
2668
|
selectors$,
|
|
2666
2669
|
};
|
|
2667
2670
|
}
|
|
2668
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2669
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2671
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionServiceElementsFactory, deps: [{ token: EntityDispatcherFactory }, { token: EntityDefinitionService }, { token: EntitySelectorsFactory }, { token: EntitySelectors$Factory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2672
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionServiceElementsFactory }); }
|
|
2670
2673
|
}
|
|
2671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionServiceElementsFactory, decorators: [{
|
|
2672
2675
|
type: Injectable
|
|
2673
2676
|
}], ctorParameters: () => [{ type: EntityDispatcherFactory }, { type: EntityDefinitionService }, { type: EntitySelectorsFactory }, { type: EntitySelectors$Factory }] });
|
|
2674
2677
|
|
|
@@ -2689,10 +2692,10 @@ class EntityCollectionServiceFactory {
|
|
|
2689
2692
|
create(entityName) {
|
|
2690
2693
|
return new EntityCollectionServiceBase(entityName, this.entityCollectionServiceElementsFactory);
|
|
2691
2694
|
}
|
|
2692
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2693
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2695
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionServiceFactory, deps: [{ token: EntityCollectionServiceElementsFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2696
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionServiceFactory }); }
|
|
2694
2697
|
}
|
|
2695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionServiceFactory, decorators: [{
|
|
2696
2699
|
type: Injectable
|
|
2697
2700
|
}], ctorParameters: () => [{ type: EntityCollectionServiceElementsFactory }] });
|
|
2698
2701
|
|
|
@@ -2716,10 +2719,10 @@ class EntityServicesElements {
|
|
|
2716
2719
|
this.entityCache$ = entitySelectors$Factory.entityCache$;
|
|
2717
2720
|
this.reducedActions$ = entityDispatcherFactory.reducedActions$;
|
|
2718
2721
|
}
|
|
2719
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2720
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2722
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityServicesElements, deps: [{ token: EntityCollectionServiceFactory }, { token: EntityDispatcherFactory }, { token: EntitySelectors$Factory }, { token: i3.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2723
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityServicesElements }); }
|
|
2721
2724
|
}
|
|
2722
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityServicesElements, decorators: [{
|
|
2723
2726
|
type: Injectable
|
|
2724
2727
|
}], ctorParameters: () => [{ type: EntityCollectionServiceFactory }, { type: EntityDispatcherFactory }, { type: EntitySelectors$Factory }, { type: i3.Store }] });
|
|
2725
2728
|
|
|
@@ -2831,10 +2834,10 @@ class EntityServicesBase {
|
|
|
2831
2834
|
});
|
|
2832
2835
|
}
|
|
2833
2836
|
}
|
|
2834
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2835
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2837
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityServicesBase, deps: [{ token: EntityServicesElements }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2838
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityServicesBase }); }
|
|
2836
2839
|
}
|
|
2837
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2840
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityServicesBase, decorators: [{
|
|
2838
2841
|
type: Injectable
|
|
2839
2842
|
}], ctorParameters: () => [{ type: EntityServicesElements }] });
|
|
2840
2843
|
|
|
@@ -4236,10 +4239,10 @@ class EntityCollectionReducerMethodsFactory {
|
|
|
4236
4239
|
const methodsClass = new EntityCollectionReducerMethods(entityName, definition);
|
|
4237
4240
|
return methodsClass.methods;
|
|
4238
4241
|
}
|
|
4239
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4240
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4242
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerMethodsFactory, deps: [{ token: EntityDefinitionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4243
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerMethodsFactory }); }
|
|
4241
4244
|
}
|
|
4242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerMethodsFactory, decorators: [{
|
|
4243
4246
|
type: Injectable
|
|
4244
4247
|
}], ctorParameters: () => [{ type: EntityDefinitionService }] });
|
|
4245
4248
|
|
|
@@ -4257,10 +4260,10 @@ class EntityCollectionReducerFactory {
|
|
|
4257
4260
|
return reducerMethod ? reducerMethod(collection, action) : collection;
|
|
4258
4261
|
};
|
|
4259
4262
|
}
|
|
4260
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4261
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4263
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerFactory, deps: [{ token: EntityCollectionReducerMethodsFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4264
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerFactory }); }
|
|
4262
4265
|
}
|
|
4263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerFactory, decorators: [{
|
|
4264
4267
|
type: Injectable
|
|
4265
4268
|
}], ctorParameters: () => [{ type: EntityCollectionReducerMethodsFactory }] });
|
|
4266
4269
|
|
|
@@ -4315,10 +4318,10 @@ class EntityCollectionReducerRegistry {
|
|
|
4315
4318
|
const keys = reducers ? Object.keys(reducers) : [];
|
|
4316
4319
|
keys.forEach((key) => this.registerReducer(key, reducers[key]));
|
|
4317
4320
|
}
|
|
4318
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4319
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4321
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerRegistry, deps: [{ token: EntityCollectionReducerFactory }, { token: ENTITY_COLLECTION_META_REDUCERS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4322
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerRegistry }); }
|
|
4320
4323
|
}
|
|
4321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCollectionReducerRegistry, decorators: [{
|
|
4322
4325
|
type: Injectable
|
|
4323
4326
|
}], ctorParameters: () => [{ type: EntityCollectionReducerFactory }, { type: undefined, decorators: [{
|
|
4324
4327
|
type: Optional
|
|
@@ -4582,10 +4585,10 @@ class EntityCacheReducerFactory {
|
|
|
4582
4585
|
});
|
|
4583
4586
|
return entityCache;
|
|
4584
4587
|
}
|
|
4585
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4586
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4588
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheReducerFactory, deps: [{ token: EntityCollectionCreator }, { token: EntityCollectionReducerRegistry }, { token: Logger }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4589
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheReducerFactory }); }
|
|
4587
4590
|
}
|
|
4588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityCacheReducerFactory, decorators: [{
|
|
4589
4592
|
type: Injectable
|
|
4590
4593
|
}], ctorParameters: () => [{ type: EntityCollectionCreator }, { type: EntityCollectionReducerRegistry }, { type: Logger }] });
|
|
4591
4594
|
|
|
@@ -4620,10 +4623,10 @@ class DefaultLogger {
|
|
|
4620
4623
|
}
|
|
4621
4624
|
}
|
|
4622
4625
|
}
|
|
4623
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4624
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4626
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultLogger, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4627
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultLogger }); }
|
|
4625
4628
|
}
|
|
4626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultLogger, decorators: [{
|
|
4627
4630
|
type: Injectable
|
|
4628
4631
|
}] });
|
|
4629
4632
|
|
|
@@ -4683,10 +4686,10 @@ class DefaultPluralizer {
|
|
|
4683
4686
|
registerPluralNames(pluralNames) {
|
|
4684
4687
|
this.pluralNames = { ...this.pluralNames, ...(pluralNames || {}) };
|
|
4685
4688
|
}
|
|
4686
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4687
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4689
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultPluralizer, deps: [{ token: PLURAL_NAMES_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4690
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultPluralizer }); }
|
|
4688
4691
|
}
|
|
4689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: DefaultPluralizer, decorators: [{
|
|
4690
4693
|
type: Injectable
|
|
4691
4694
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
4692
4695
|
type: Optional
|
|
@@ -4957,11 +4960,11 @@ class EntityDataModuleWithoutEffects {
|
|
|
4957
4960
|
providers: [provideEntityDataConfig(config)],
|
|
4958
4961
|
};
|
|
4959
4962
|
}
|
|
4960
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4961
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
4962
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
4963
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModuleWithoutEffects, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4964
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModuleWithoutEffects }); }
|
|
4965
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModuleWithoutEffects, providers: [BASE_ENTITY_DATA_PROVIDERS] }); }
|
|
4963
4966
|
}
|
|
4964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4967
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModuleWithoutEffects, decorators: [{
|
|
4965
4968
|
type: NgModule,
|
|
4966
4969
|
args: [{
|
|
4967
4970
|
providers: [BASE_ENTITY_DATA_PROVIDERS],
|
|
@@ -4980,11 +4983,11 @@ class EntityDataModule {
|
|
|
4980
4983
|
providers: [provideEntityDataConfig(config)],
|
|
4981
4984
|
};
|
|
4982
4985
|
}
|
|
4983
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4984
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
4985
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
4986
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4987
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModule, imports: [EntityDataModuleWithoutEffects] }); }
|
|
4988
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModule, providers: [ENTITY_DATA_EFFECTS_PROVIDERS], imports: [EntityDataModuleWithoutEffects] }); }
|
|
4986
4989
|
}
|
|
4987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4990
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EntityDataModule, decorators: [{
|
|
4988
4991
|
type: NgModule,
|
|
4989
4992
|
args: [{
|
|
4990
4993
|
imports: [EntityDataModuleWithoutEffects],
|