@thorprovider/types 3.14.5 → 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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
- package/src/admin/DropshippingAdmin.ts +7 -0
package/dist/index.d.mts
CHANGED
|
@@ -4042,6 +4042,7 @@ interface DropshipperOrderDetail {
|
|
|
4042
4042
|
id: string;
|
|
4043
4043
|
display_id: number;
|
|
4044
4044
|
status: string;
|
|
4045
|
+
payment_status?: string;
|
|
4045
4046
|
fulfillment_status: string | null;
|
|
4046
4047
|
created_at: string;
|
|
4047
4048
|
currency_code: string;
|
|
@@ -4051,6 +4052,12 @@ interface DropshipperOrderDetail {
|
|
|
4051
4052
|
shipping_address: DropshipperOrderShippingAddress;
|
|
4052
4053
|
items: DropshipperOrderItem[];
|
|
4053
4054
|
totals: DropshipperOrderTotals;
|
|
4055
|
+
shipping_method?: {
|
|
4056
|
+
id: string;
|
|
4057
|
+
name: string;
|
|
4058
|
+
amount: number;
|
|
4059
|
+
shipping_option_id: string | null;
|
|
4060
|
+
} | null;
|
|
4054
4061
|
payment_collected_by: 'dropshipper' | 'provider' | null;
|
|
4055
4062
|
payment_method?: {
|
|
4056
4063
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4042,6 +4042,7 @@ interface DropshipperOrderDetail {
|
|
|
4042
4042
|
id: string;
|
|
4043
4043
|
display_id: number;
|
|
4044
4044
|
status: string;
|
|
4045
|
+
payment_status?: string;
|
|
4045
4046
|
fulfillment_status: string | null;
|
|
4046
4047
|
created_at: string;
|
|
4047
4048
|
currency_code: string;
|
|
@@ -4051,6 +4052,12 @@ interface DropshipperOrderDetail {
|
|
|
4051
4052
|
shipping_address: DropshipperOrderShippingAddress;
|
|
4052
4053
|
items: DropshipperOrderItem[];
|
|
4053
4054
|
totals: DropshipperOrderTotals;
|
|
4055
|
+
shipping_method?: {
|
|
4056
|
+
id: string;
|
|
4057
|
+
name: string;
|
|
4058
|
+
amount: number;
|
|
4059
|
+
shipping_option_id: string | null;
|
|
4060
|
+
} | null;
|
|
4054
4061
|
payment_collected_by: 'dropshipper' | 'provider' | null;
|
|
4055
4062
|
payment_method?: {
|
|
4056
4063
|
id: string;
|
package/package.json
CHANGED
|
@@ -441,6 +441,7 @@ export interface DropshipperOrderDetail {
|
|
|
441
441
|
id: string;
|
|
442
442
|
display_id: number;
|
|
443
443
|
status: string;
|
|
444
|
+
payment_status?: string;
|
|
444
445
|
fulfillment_status: string | null;
|
|
445
446
|
created_at: string;
|
|
446
447
|
currency_code: string;
|
|
@@ -448,6 +449,12 @@ export interface DropshipperOrderDetail {
|
|
|
448
449
|
shipping_address: DropshipperOrderShippingAddress;
|
|
449
450
|
items: DropshipperOrderItem[];
|
|
450
451
|
totals: DropshipperOrderTotals;
|
|
452
|
+
shipping_method?: {
|
|
453
|
+
id: string;
|
|
454
|
+
name: string;
|
|
455
|
+
amount: number;
|
|
456
|
+
shipping_option_id: string | null;
|
|
457
|
+
} | null;
|
|
451
458
|
payment_collected_by: 'dropshipper' | 'provider' | null;
|
|
452
459
|
payment_method?: { id: string; name: string } | null;
|
|
453
460
|
paid_amount?: number;
|