Adjust ngrx-accelerator library utilities
Several store connector utilities have been moved from the ngrx-accelerator library to ngrx-integration-interface. The following utilities were moved:
-
OneCxActionsconstant -
oneCxReducerconstant -
OneCxSelectorstype -
getOneCxSelectorsfunction -
createOneCxSelectorfunction -
LocationStatetype -
OneCxStateinterface -
NavigatedEventStoreConnectorServiceclass -
provideNavigatedEventStoreConnectorprovider function -
PermissionsStoreConnectorServiceclass -
providePermissionsStoreConnectorprovider function
Update the imports for the utilities listed above to reference ngrx‑integration‑interface instead of ngrx‑accelerator.
Example:
Before
import { OneCxActions } from 'ngrx-accelerator';
After
import { OneCxActions } from 'ngrx-integration-interface';