diff --git a/libs/customer-store-credit/src/public_api.ts b/libs/customer-store-credit/src/public_api.ts index 26ca5ddb91..037c152e5b 100644 --- a/libs/customer-store-credit/src/public_api.ts +++ b/libs/customer-store-credit/src/public_api.ts @@ -1,3 +1,2 @@ export * from './models/public_api'; -export * from './injection-tokens/public_api'; export * from './constants/public_api'; diff --git a/libs/customer-store-credit/state/src/effects/store-credit.effects.ts b/libs/customer-store-credit/state/src/effects/store-credit.effects.ts index c8b6bcfb58..e74cb30852 100644 --- a/libs/customer-store-credit/state/src/effects/store-credit.effects.ts +++ b/libs/customer-store-credit/state/src/effects/store-credit.effects.ts @@ -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, @@ -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< diff --git a/libs/customer-store-credit/src/injection-tokens/error-matcher.token.ts b/libs/customer-store-credit/state/src/injection-tokens/error-matcher.token.ts similarity index 100% rename from libs/customer-store-credit/src/injection-tokens/error-matcher.token.ts rename to libs/customer-store-credit/state/src/injection-tokens/error-matcher.token.ts diff --git a/libs/customer-store-credit/src/injection-tokens/public_api.ts b/libs/customer-store-credit/state/src/injection-tokens/public_api.ts similarity index 100% rename from libs/customer-store-credit/src/injection-tokens/public_api.ts rename to libs/customer-store-credit/state/src/injection-tokens/public_api.ts diff --git a/libs/customer-store-credit/state/src/public_api.ts b/libs/customer-store-credit/state/src/public_api.ts index 52092f15c6..0f55e7c19e 100644 --- a/libs/customer-store-credit/state/src/public_api.ts +++ b/libs/customer-store-credit/state/src/public_api.ts @@ -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';