Skip to content

Commit

Permalink
feat(customer-store-credit)!: move error matcher injection token to s…
Browse files Browse the repository at this point in the history
…tate subpackage (#2645)

BREAKING CHANGE: error matcher injection token has moved to state subpackage
  • Loading branch information
griest024 committed Dec 11, 2023
1 parent 3343af0 commit 5cacb5d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion libs/customer-store-credit/src/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export * from './models/public_api';
export * from './injection-tokens/public_api';
export * from './constants/public_api';
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ import {

import { DaffError } from '@daffodil/core';
import { ErrorTransformer } from '@daffodil/core/state';
import {
DaffCustomerStoreCredit,
DAFF_CUSTOMER_STORE_CREDIT_ERROR_MATCHER,
} from '@daffodil/customer-store-credit';
import { DaffCustomerStoreCredit } from '@daffodil/customer-store-credit';
import {
DaffCustomerStoreCreditDriver,
DaffCustomerStoreCreditDriverInterface,
Expand All @@ -31,6 +28,7 @@ import {
DaffCustomerStoreCreditLoadSuccess,
DaffCustomerStoreCreditActions,
} from '../actions/store-credit.actions';
import { DAFF_CUSTOMER_STORE_CREDIT_ERROR_MATCHER } from '../injection-tokens/public_api';

@Injectable()
export class DaffCustomerStoreCreditEffects<
Expand Down
1 change: 1 addition & 0 deletions libs/customer-store-credit/state/src/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ export * from './actions/public_api';
export * from './reducers/public_api';
export * from './selectors/public_api';
export * from './facades/public_api';
export * from './injection-tokens/public_api';

export * from './state.module';

0 comments on commit 5cacb5d

Please sign in to comment.