@thorprovider/types 3.15.2 → 3.15.3
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 +3 -0
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
|
@@ -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
|
|