Skip to content

Commit

Permalink
feat(authorizenet)!: move error matcher injection token to state subp…
Browse files Browse the repository at this point in the history
…ackage (#2645)

BREAKING CHANGE: error matcher injection token has moved to state subpackage
  • Loading branch information
griest024 committed Dec 11, 2023
1 parent 770718b commit 53b788b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion libs/authorizenet/src/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './models/public_api';
export * from './services/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 @@ -22,7 +22,6 @@ import {
import {
DaffAcceptJsLoadingService,
DaffAuthorizeNetTokenRequest,
DAFF_AUTHORIZENET_ERROR_MATCHER,
} from '@daffodil/authorizenet';
import {
DaffAuthorizeNetDriver,
Expand Down Expand Up @@ -57,6 +56,7 @@ import {
DAFF_AUTHORIZE_NET_STATE_CONFIG,
DaffAuthorizeNetStateConfig,
} from '../config/public_api';
import { DAFF_AUTHORIZENET_ERROR_MATCHER } from '../injection-tokens/public_api';

@Injectable()
export class DaffAuthorizeNetEffects<T extends DaffAuthorizeNetTokenRequest = DaffAuthorizeNetTokenRequest> {
Expand Down
1 change: 1 addition & 0 deletions libs/authorizenet/state/src/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export * from './actions/authorizenet.actions';
export * from './selectors/authorize-net.selector';
export * from './reducers/public_api';
export * from './config/public_api';
export * from './injection-tokens/public_api';

export { DaffAuthorizeNetFacade } from './facades/authorize-net.facade';
export { DaffAuthorizeNetFacadeInterface } from './facades/authorize-net-facade.interface';
Expand Down

0 comments on commit 53b788b

Please sign in to comment.