import Faker from 'faker' interface ICreate { product_reference: string } export const create = (): ICreate => ({ product_reference: Faker.random.uuid() })