@thorprovider/types 3.14.3 → 3.14.4

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
  items: DropshipperOrderItem[];
4053
4053
  totals: DropshipperOrderTotals;
4054
4054
  payment_collected_by: 'dropshipper' | 'provider' | null;
4055
+ payment_method?: {
4056
+ id: string;
4057
+ name: string;
4058
+ } | null;
4059
+ paid_amount?: number;
4060
+ due_date?: string | null;
4055
4061
  settlement_status: 'settled' | 'unsettled';
4056
4062
  timeline: DropshipperOrderTimelineEvent[];
4057
4063
  }
package/dist/index.d.ts CHANGED
@@ -4052,6 +4052,12 @@ interface DropshipperOrderDetail {
4052
4052
  items: DropshipperOrderItem[];
4053
4053
  totals: DropshipperOrderTotals;
4054
4054
  payment_collected_by: 'dropshipper' | 'provider' | null;
4055
+ payment_method?: {
4056
+ id: string;
4057
+ name: string;
4058
+ } | null;
4059
+ paid_amount?: number;
4060
+ due_date?: string | null;
4055
4061
  settlement_status: 'settled' | 'unsettled';
4056
4062
  timeline: DropshipperOrderTimelineEvent[];
4057
4063
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thorprovider/types",
3
- "version": "3.14.3",
3
+ "version": "3.14.4",
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,9 @@ export interface DropshipperOrderDetail {
449
449
  items: DropshipperOrderItem[];
450
450
  totals: DropshipperOrderTotals;
451
451
  payment_collected_by: 'dropshipper' | 'provider' | null;
452
+ payment_method?: { id: string; name: string } | null;
453
+ paid_amount?: number;
454
+ due_date?: string | null;
452
455
  settlement_status: 'settled' | 'unsettled';
453
456
  timeline: DropshipperOrderTimelineEvent[];
454
457
  }