export type ProductCreatePriceRuleDto = { shopId: string; verticalId: string; productId: string; combinationId?: string; groupId?: string; price: number; quantityOfProducts?: number; reduction?: number; reductionType?: 'percentage' | 'amount'; dateStart?: Date; dateEnd?: Date; active: boolean; };