Skip to content

Commit

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

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

import { DaffCartStorageService } from '@daffodil/cart';
import { DaffCartStorageFailure } from '@daffodil/cart/state';
import {
DaffCartWithStoreCredit,
DAFF_CART_STORE_CREDIT_ERROR_MATCHER,
} from '@daffodil/cart-store-credit';
import { DaffCartWithStoreCredit } from '@daffodil/cart-store-credit';
import {
DaffCartStoreCreditDriver,
DaffCartStoreCreditDriverInterface,
Expand All @@ -41,6 +38,7 @@ import {
DaffCartStoreCreditRemoveFailure,
DaffCartStoreCreditRemoveSuccess,
} from '../actions/store-credit.actions';
import { DAFF_CART_STORE_CREDIT_ERROR_MATCHER } from '../injection-tokens/public_api';

@Injectable()
export class DaffCartStoreCreditEffects<
Expand Down
1 change: 1 addition & 0 deletions libs/cart-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 9caf019

Please sign in to comment.