complex good module

This commit is contained in:
2026-03-16 20:59:28 +03:30
parent 739aef67a3
commit f2766e2d7d
17 changed files with 375 additions and 0 deletions
@@ -0,0 +1,23 @@
import ISummary from '@/core/models';
export interface IConsumerComplexGoodRawResponse {
id: string;
name: string;
sku: string;
category: ISummary;
unit_type: string;
pricing_model: string;
description?: string;
created_at: string;
updated_at: string;
}
export interface IConsumerComplexGoodResponse extends IConsumerComplexGoodRawResponse {}
export interface IConsumerComplexGoodRequest {
name: string;
sku: string;
category_id: string;
unit_type: string;
pricing_model: string;
description?: string;
}