@chopkola/common 1.0.175 → 1.0.177
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/types/products.d.ts +56 -1
- package/package.json +1 -1
|
@@ -132,6 +132,61 @@ export type UpdateProductVariantInput = Partial<CreateProductVariantInput>;
|
|
|
132
132
|
export type CreateInventoryItemInput = Omit<BaseInventoryItem, "id" | "created_at" | "updated_at" | "stock_status"> & InventoryLink;
|
|
133
133
|
export type UpdateInventoryItemInput = Partial<CreateInventoryItemInput>;
|
|
134
134
|
export type CreateStockMovementInput = Omit<StockMovement, "id" | "created_at" | "updated_at">;
|
|
135
|
+
export interface CategoryLite {
|
|
136
|
+
id: UUID;
|
|
137
|
+
name: string;
|
|
138
|
+
slug: string;
|
|
139
|
+
}
|
|
140
|
+
export interface ProductAggregateLite {
|
|
141
|
+
id: UUID;
|
|
142
|
+
vendor_id: UUID;
|
|
143
|
+
name: string;
|
|
144
|
+
slug: string;
|
|
145
|
+
sku: string | null;
|
|
146
|
+
description: string | null;
|
|
147
|
+
brand: string | null;
|
|
148
|
+
images: string[] | null;
|
|
149
|
+
tags: string[] | null;
|
|
150
|
+
attributes: Record<string, unknown> | null;
|
|
151
|
+
is_approved: boolean;
|
|
152
|
+
created_at: Date;
|
|
153
|
+
category: CategoryLite | null;
|
|
154
|
+
}
|
|
155
|
+
export interface ProductVariantAggregateLite {
|
|
156
|
+
id: UUID;
|
|
157
|
+
product_id: UUID;
|
|
158
|
+
name_suffix: string | null;
|
|
159
|
+
sku: string | null;
|
|
160
|
+
options: Record<string, unknown> | null;
|
|
161
|
+
images: string[] | null;
|
|
162
|
+
is_default: boolean;
|
|
163
|
+
}
|
|
164
|
+
export interface VendorLite {
|
|
165
|
+
id: UUID;
|
|
166
|
+
business_name: string;
|
|
167
|
+
slug: string;
|
|
168
|
+
logo_url: string | null;
|
|
169
|
+
}
|
|
170
|
+
export interface InventoryItemAggregate {
|
|
171
|
+
id: UUID;
|
|
172
|
+
vendor_id: UUID;
|
|
173
|
+
product_id: UUID | null;
|
|
174
|
+
product_variant_id: UUID | null;
|
|
175
|
+
sku: string | null;
|
|
176
|
+
price: number;
|
|
177
|
+
discount_price: number | null;
|
|
178
|
+
currency: string;
|
|
179
|
+
quantity_available: number;
|
|
180
|
+
low_stock_threshold: number | null;
|
|
181
|
+
stock_status: string;
|
|
182
|
+
is_visible: boolean;
|
|
183
|
+
is_featured: boolean;
|
|
184
|
+
created_at: Date;
|
|
185
|
+
updated_at: Date;
|
|
186
|
+
product: ProductAggregateLite | null;
|
|
187
|
+
product_variant: ProductVariantAggregateLite | null;
|
|
188
|
+
vendor: VendorLite;
|
|
189
|
+
}
|
|
135
190
|
export interface VendorProductsManagementData {
|
|
136
191
|
products: ProductAggregate[];
|
|
137
192
|
stats: VendorProductsStats;
|
|
@@ -144,5 +199,5 @@ export interface ProductDetailsData {
|
|
|
144
199
|
product: ProductAggregate;
|
|
145
200
|
}
|
|
146
201
|
export type WebApplicationProductsResourceData = {
|
|
147
|
-
products:
|
|
202
|
+
products: InventoryItemAggregate[];
|
|
148
203
|
};
|