@thorprovider/types 3.15.2 → 3.16.0

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
@@ -4037,7 +4037,10 @@ interface DropshipperOrderTotals {
4037
4037
  }
4038
4038
  /** Timeline event on an order */
4039
4039
  interface DropshipperOrderTimelineEvent {
4040
+ id: string;
4040
4041
  event: string;
4042
+ description?: string;
4043
+ type?: "info" | "success" | "warning" | "error";
4041
4044
  timestamp: string;
4042
4045
  }
4043
4046
  /** Full order detail as returned by GET /admin/thor/dropshipper/orders/:id */
package/dist/index.d.ts CHANGED
@@ -4037,7 +4037,10 @@ interface DropshipperOrderTotals {
4037
4037
  }
4038
4038
  /** Timeline event on an order */
4039
4039
  interface DropshipperOrderTimelineEvent {
4040
+ id: string;
4040
4041
  event: string;
4042
+ description?: string;
4043
+ type?: "info" | "success" | "warning" | "error";
4041
4044
  timestamp: string;
4042
4045
  }
4043
4046
  /** Full order detail as returned by GET /admin/thor/dropshipper/orders/:id */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thorprovider/types",
3
- "version": "3.15.2",
3
+ "version": "3.16.0",
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",
@@ -435,7 +435,10 @@ export interface DropshipperOrderTotals {
435
435
 
436
436
  /** Timeline event on an order */
437
437
  export interface DropshipperOrderTimelineEvent {
438
+ id: string;
438
439
  event: string;
440
+ description?: string;
441
+ type?: "info" | "success" | "warning" | "error";
439
442
  timestamp: string;
440
443
  }
441
444