@thorprovider/types 3.15.1 → 3.15.2
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/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/admin/DropshippingAdmin.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -4021,6 +4021,9 @@ interface DropshipperOrderItem {
|
|
|
4021
4021
|
cost_subtotal: number;
|
|
4022
4022
|
profit: number;
|
|
4023
4023
|
thumbnail: string | null;
|
|
4024
|
+
/** Minimum quantity of the cost tier that matched this item at order.placed.
|
|
4025
|
+
* null when no tier matching occurred (base price was used). */
|
|
4026
|
+
applied_tier_min_qty?: number | null;
|
|
4024
4027
|
}
|
|
4025
4028
|
/** Order totals with profit breakdown */
|
|
4026
4029
|
interface DropshipperOrderTotals {
|
package/dist/index.d.ts
CHANGED
|
@@ -4021,6 +4021,9 @@ interface DropshipperOrderItem {
|
|
|
4021
4021
|
cost_subtotal: number;
|
|
4022
4022
|
profit: number;
|
|
4023
4023
|
thumbnail: string | null;
|
|
4024
|
+
/** Minimum quantity of the cost tier that matched this item at order.placed.
|
|
4025
|
+
* null when no tier matching occurred (base price was used). */
|
|
4026
|
+
applied_tier_min_qty?: number | null;
|
|
4024
4027
|
}
|
|
4025
4028
|
/** Order totals with profit breakdown */
|
|
4026
4029
|
interface DropshipperOrderTotals {
|
package/package.json
CHANGED
|
@@ -417,6 +417,9 @@ export interface DropshipperOrderItem {
|
|
|
417
417
|
cost_subtotal: number;
|
|
418
418
|
profit: number;
|
|
419
419
|
thumbnail: string | null;
|
|
420
|
+
/** Minimum quantity of the cost tier that matched this item at order.placed.
|
|
421
|
+
* null when no tier matching occurred (base price was used). */
|
|
422
|
+
applied_tier_min_qty?: number | null;
|
|
420
423
|
}
|
|
421
424
|
|
|
422
425
|
/** Order totals with profit breakdown */
|