Skip to content

Commit

Permalink
fix(core): Fix bad import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Apr 11, 2019
1 parent f8065de commit e126d2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/core/e2e/shop-auth.e2e-spec.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* tslint:disable:no-non-null-assertion */
import { RegisterCustomerInput } from '@vendure/common/lib/generated-shop-types';
import { CreateAdministrator, CreateRole, GetCustomer, Permission } from '@vendure/common/lib/generated-types';
import { pick } from '@vendure/common/lib/pick';
import { DocumentNode } from 'graphql';
import gql from 'graphql-tag';
import path from 'path';

import { CREATE_ADMINISTRATOR, CREATE_ROLE } from '../../../admin-ui/src/app/data/definitions/administrator-definitions';
import { GET_CUSTOMER } from '../../../admin-ui/src/app/data/definitions/customer-definitions';
import { pick } from '../../common/lib/pick';
import { InjectorFn, VendurePlugin } from '../src/config/vendure-plugin/vendure-plugin';
import { EventBus } from '../src/event-bus/event-bus';
import { AccountRegistrationEvent } from '../src/event-bus/events/account-registration-event';
Expand Down
6 changes: 2 additions & 4 deletions packages/core/src/api/resolvers/shop/shop-auth.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ import {
RefreshCustomerVerificationMutationArgs,
RegisterCustomerAccountMutationArgs,
RequestPasswordResetMutationArgs,
RequestUpdateCustomerEmailAddressMutationArgs,
ResetPasswordMutationArgs,
UpdateCustomerEmailAddressMutationArgs,
UpdateCustomerPasswordMutationArgs,
VerifyCustomerAccountMutationArgs,
} from '@vendure/common/lib/generated-shop-types';
import { Request, Response } from 'express';

import {
RequestUpdateCustomerEmailAddressMutationArgs,
UpdateCustomerEmailAddressMutationArgs,
} from '../../../../../common/src/generated-shop-types';
import { ForbiddenError, PasswordResetTokenError, VerificationTokenError } from '../../../common/error/errors';
import { ConfigService } from '../../../config/config.service';
import { AuthService } from '../../../service/services/auth.service';
Expand Down

0 comments on commit e126d2e

Please sign in to comment.