Skip to content

Commit

Permalink
fix(elasticsearch-plugin): Fix bad import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Apr 9, 2020
1 parent 987b611 commit 99733fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Inject } from '@nestjs/common';
import { ResolveField, Resolver } from '@nestjs/graphql';

import { DeepRequired } from '../../common/lib/shared-types';
import { DeepRequired } from '@vendure/common/lib/shared-types';

import { ELASTIC_SEARCH_OPTIONS } from './constants';
import { ElasticsearchOptions } from './options';
Expand Down
4 changes: 1 addition & 3 deletions packages/elasticsearch-plugin/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ import {
SearchResponse,
SearchResult,
} from '@vendure/common/lib/generated-types';
import { ID } from '@vendure/common/lib/shared-types';
import { ID, JsonCompatible } from '@vendure/common/lib/shared-types';
import { Asset, SerializedRequestContext, WorkerMessage } from '@vendure/core';

import { JsonCompatible } from '../../common/src/shared-types';

export type ElasticSearchInput = SearchInput & {
priceRange?: PriceRange;
priceRangeWithTax?: PriceRange;
Expand Down

0 comments on commit 99733fa

Please sign in to comment.