@use-stall/types 0.3.13 → 0.3.14
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/package.json +1 -1
- package/src/inventory.d.ts +1 -1
- package/src/product.d.ts +2 -2
package/package.json
CHANGED
package/src/inventory.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export interface UnifiedInventoryLevelType {
|
|
|
9
9
|
in_stock: number | string; // Items available for new orders (In Stock)
|
|
10
10
|
on_hand: number | string; // Total items physically present at the location
|
|
11
11
|
low_stock_threshold: number | string; // Low stock threshold specific to the location
|
|
12
|
-
|
|
12
|
+
last_updated_at: string;
|
|
13
13
|
created_at: string;
|
|
14
14
|
metadata: {
|
|
15
15
|
stall_offline_id: string;
|
package/src/product.d.ts
CHANGED
|
@@ -161,8 +161,8 @@ export interface UnifiedCollectionType {
|
|
|
161
161
|
};
|
|
162
162
|
linked_products: string[];
|
|
163
163
|
linked_categories: string[];
|
|
164
|
-
|
|
165
|
-
|
|
164
|
+
created_at: string;
|
|
165
|
+
updated_at: string;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
export interface UnifiedBrandType {
|