@thorprovider/types 3.15.0 → 3.15.1

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
@@ -4052,6 +4052,12 @@ interface DropshipperOrderDetail {
4052
4052
  shipping_address: DropshipperOrderShippingAddress;
4053
4053
  items: DropshipperOrderItem[];
4054
4054
  totals: DropshipperOrderTotals;
4055
+ shipping_method?: {
4056
+ id: string;
4057
+ name: string;
4058
+ amount: number;
4059
+ shipping_option_id: string | null;
4060
+ } | null;
4055
4061
  payment_collected_by: 'dropshipper' | 'provider' | null;
4056
4062
  payment_method?: {
4057
4063
  id: string;
package/dist/index.d.ts CHANGED
@@ -4052,6 +4052,12 @@ interface DropshipperOrderDetail {
4052
4052
  shipping_address: DropshipperOrderShippingAddress;
4053
4053
  items: DropshipperOrderItem[];
4054
4054
  totals: DropshipperOrderTotals;
4055
+ shipping_method?: {
4056
+ id: string;
4057
+ name: string;
4058
+ amount: number;
4059
+ shipping_option_id: string | null;
4060
+ } | null;
4055
4061
  payment_collected_by: 'dropshipper' | 'provider' | null;
4056
4062
  payment_method?: {
4057
4063
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thorprovider/types",
3
- "version": "3.15.0",
3
+ "version": "3.15.1",
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",
@@ -449,6 +449,12 @@ export interface DropshipperOrderDetail {
449
449
  shipping_address: DropshipperOrderShippingAddress;
450
450
  items: DropshipperOrderItem[];
451
451
  totals: DropshipperOrderTotals;
452
+ shipping_method?: {
453
+ id: string;
454
+ name: string;
455
+ amount: number;
456
+ shipping_option_id: string | null;
457
+ } | null;
452
458
  payment_collected_by: 'dropshipper' | 'provider' | null;
453
459
  payment_method?: { id: string; name: string } | null;
454
460
  paid_amount?: number;