@@ -1,5 +1,5 @@
import { Controller, Get, Param } from '@nestjs/common';
-import { PaginatedList } from '../../common/common-types';
+import { PaginatedList } from '../../../../shared/shared-types';
import { Customer } from '../../entity/customer/customer.entity';
import { CustomerService } from '../../service/customer.service';
import { Mutation, Query, ResolveProperty, Resolver } from '@nestjs/graphql';
import { Address } from '../../entity/address/address.entity';
import { CreateCustomerDto } from '../../entity/customer/customer.dto';
import { Mutation, Query, Resolver } from '@nestjs/graphql';
import { Product } from '../../entity/product/product.entity';
import { IdCodecService } from '../../service/id-codec.service';
import { ProductVariantService } from '../../service/product-variant.service';
@@ -1,4 +1,4 @@
-import { ID } from '../common/common-types';
+import { ID } from '../../../shared/shared-types';
export type PrimaryKeyType = 'increment' | 'uuid';
-import { DeepPartial } from '../common/common-types';
+import { DeepPartial } from '../../../shared/shared-types';
import { VendureConfig } from './vendure-config';
/**
@@ -1,6 +1,6 @@
import { CorsOptions } from '@nestjs/common/interfaces/external/cors-options.interface';
import { ConnectionOptions } from 'typeorm';
-import { DeepPartial, ReadOnlyRequired } from '../common/common-types';
+import { DeepPartial, ReadOnlyRequired } from '../../../shared/shared-types';
import { LanguageCode } from '../locale/language-code';
import { AutoIncrementIdStrategy } from './auto-increment-id-strategy';
import { EntityIdStrategy } from './entity-id-strategy';
import { Column, Entity, ManyToOne } from 'typeorm';
-import { DeepPartial } from '../../common/common-types';
+import { DeepPartial } from '../../../../shared/shared-types';
import { VendureEntity } from '../base/base.entity';
import { Customer } from '../customer/customer.entity';
import { Column, Entity, JoinColumn, OneToOne } from 'typeorm';
import { User } from '../user/user.entity';
import { CreateDateColumn, PrimaryGeneratedColumn, UpdateDateColumn } from 'typeorm';
-import { DeepPartial, ID } from '../../common/common-types';
+import { DeepPartial, ID } from '../../../../shared/shared-types';
import { getConfig } from '../../config/vendure-config';
const primaryKeyType = getConfig().entityIdStrategy.primaryKeyType as any;
import { Column, Entity, JoinColumn, OneToMany, OneToOne } from 'typeorm';
import { Address } from '../address/address.entity';
import { LanguageCode } from '../../locale/language-code';
import { Translation } from '../../locale/locale-types';
import { Column, Entity, OneToMany } from 'typeorm';
import { LocaleString, Translatable, Translation } from '../../locale/locale-types';
import { ProductOption } from '../product-option/product-option.entity';
import { Column, Entity, ManyToOne, OneToMany } from 'typeorm';
import { ProductOptionGroup } from '../product-option-group/product-option-group.entity';
import { Column, CreateDateColumn, Entity, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from 'typeorm';
import { Column, Entity, JoinTable, ManyToMany, ManyToOne, OneToMany } from 'typeorm';
import { Translation, TranslationInput } from '../../locale/locale-types';
import { Column, Entity, JoinTable, ManyToMany, OneToMany } from 'typeorm';
import { Column, Entity } from 'typeorm';
import { Role } from '../../auth/role';
@Entity()
import { VendureEntity } from '../entity/base/base.entity';
import { LanguageCode } from './language-code';
import { EntityManager } from 'typeorm';
-import { DeepPartial, Type } from '../common/common-types';
+import { DeepPartial, Type } from '../../../shared/shared-types';
import { foundIn, not } from '../common/utils';
import { Translatable, Translation, TranslationInput } from './locale-types';
@@ -1,7 +1,7 @@
import { Injectable } from '@nestjs/common';
-import { ReadOnlyRequired } from '../common/common-types';
+import { ReadOnlyRequired } from '../../../shared/shared-types';
import { EntityIdStrategy } from '../config/entity-id-strategy';
import { getConfig, VendureConfig } from '../config/vendure-config';
@@ -1,9 +1,9 @@
import { InjectConnection } from '@nestjs/typeorm';
import { Connection } from 'typeorm';
+import { ID, PaginatedList } from '../../../shared/shared-types';
import { PasswordService } from '../auth/password.service';
import { Role } from '../auth/role';
-import { ID, PaginatedList } from '../common/common-types';
import { CreateAddressDto } from '../entity/address/address.dto';
import { Address } from '../entity/address/address.entity';
import { CreateCustomerDto } from '../entity/customer/customer.dto';
import { ConfigService } from './config.service';
import { DEFAULT_LANGUAGE_CODE } from '../common/constants';
import { ProductOptionGroupTranslation } from '../entity/product-option-group/product-option-group-translation.entity';
import {
import { ProductOptionGroup } from '../entity/product-option-group/product-option-group.entity';
import { ProductOptionTranslation } from '../entity/product-option/product-option-translation.entity';
import { ProductTranslation } from '../entity/product/product-translation.entity';
import { AbstractRepository, EntityManager, Repository } from 'typeorm';
-import { Type } from '../common/common-types';
+import { Type } from '../../../shared/shared-types';
import { MockClass } from './testing-types';