@thorprovider/types 3.14.1 → 3.14.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 +1 -0
- package/src/cart.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -907,6 +907,8 @@ interface ShippingMethod {
|
|
|
907
907
|
description?: string;
|
|
908
908
|
/** Estimated delivery time (e.g., '3-5 business days') */
|
|
909
909
|
estimatedDays?: string;
|
|
910
|
+
/** The parent fulfillment set type from Medusa (e.g., 'shipping', 'pickup', 'pick-up') */
|
|
911
|
+
fulfillmentSetType?: string | null;
|
|
910
912
|
}
|
|
911
913
|
/**
|
|
912
914
|
* Main cart type - normalized across all providers
|
|
@@ -3949,6 +3951,7 @@ interface DropshipperShippingOption {
|
|
|
3949
3951
|
currency_code: string;
|
|
3950
3952
|
price_type: string;
|
|
3951
3953
|
is_default: boolean;
|
|
3954
|
+
fulfillment_set_type: string | null;
|
|
3952
3955
|
type: {
|
|
3953
3956
|
id: string;
|
|
3954
3957
|
label: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -907,6 +907,8 @@ interface ShippingMethod {
|
|
|
907
907
|
description?: string;
|
|
908
908
|
/** Estimated delivery time (e.g., '3-5 business days') */
|
|
909
909
|
estimatedDays?: string;
|
|
910
|
+
/** The parent fulfillment set type from Medusa (e.g., 'shipping', 'pickup', 'pick-up') */
|
|
911
|
+
fulfillmentSetType?: string | null;
|
|
910
912
|
}
|
|
911
913
|
/**
|
|
912
914
|
* Main cart type - normalized across all providers
|
|
@@ -3949,6 +3951,7 @@ interface DropshipperShippingOption {
|
|
|
3949
3951
|
currency_code: string;
|
|
3950
3952
|
price_type: string;
|
|
3951
3953
|
is_default: boolean;
|
|
3954
|
+
fulfillment_set_type: string | null;
|
|
3952
3955
|
type: {
|
|
3953
3956
|
id: string;
|
|
3954
3957
|
label: string;
|
package/package.json
CHANGED
package/src/cart.ts
CHANGED
|
@@ -63,6 +63,9 @@ export interface ShippingMethod {
|
|
|
63
63
|
|
|
64
64
|
/** Estimated delivery time (e.g., '3-5 business days') */
|
|
65
65
|
estimatedDays?: string;
|
|
66
|
+
|
|
67
|
+
/** The parent fulfillment set type from Medusa (e.g., 'shipping', 'pickup', 'pick-up') */
|
|
68
|
+
fulfillmentSetType?: string | null;
|
|
66
69
|
}
|
|
67
70
|
|
|
68
71
|
/**
|