@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thorprovider/types",
3
- "version": "3.14.1",
3
+ "version": "3.14.2",
4
4
  "description": "Shared TypeScript types for Thor Commerce ecosystem - Framework-agnostic type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -341,6 +341,7 @@ export interface DropshipperShippingOption {
341
341
  currency_code: string;
342
342
  price_type: string;
343
343
  is_default: boolean;
344
+ fulfillment_set_type: string | null;
344
345
  type: {
345
346
  id: string;
346
347
  label: string;
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
  /**