@thorprovider/types 3.15.3 → 4.0.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 +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +1 -1
- package/src/admin/DropshippingAdmin.ts +9 -0
package/dist/index.d.mts
CHANGED
|
@@ -3828,6 +3828,15 @@ interface DropshipperProduct {
|
|
|
3828
3828
|
subtitle?: string | null;
|
|
3829
3829
|
description?: string | null;
|
|
3830
3830
|
handle?: string | null;
|
|
3831
|
+
/** Physical dimensions and shipping metadata */
|
|
3832
|
+
width?: number | null;
|
|
3833
|
+
height?: number | null;
|
|
3834
|
+
length?: number | null;
|
|
3835
|
+
weight?: number | null;
|
|
3836
|
+
material?: string | null;
|
|
3837
|
+
origin_country?: string | null;
|
|
3838
|
+
hs_code?: string | null;
|
|
3839
|
+
mid_code?: string | null;
|
|
3831
3840
|
collection?: {
|
|
3832
3841
|
id: string;
|
|
3833
3842
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3828,6 +3828,15 @@ interface DropshipperProduct {
|
|
|
3828
3828
|
subtitle?: string | null;
|
|
3829
3829
|
description?: string | null;
|
|
3830
3830
|
handle?: string | null;
|
|
3831
|
+
/** Physical dimensions and shipping metadata */
|
|
3832
|
+
width?: number | null;
|
|
3833
|
+
height?: number | null;
|
|
3834
|
+
length?: number | null;
|
|
3835
|
+
weight?: number | null;
|
|
3836
|
+
material?: string | null;
|
|
3837
|
+
origin_country?: string | null;
|
|
3838
|
+
hs_code?: string | null;
|
|
3839
|
+
mid_code?: string | null;
|
|
3831
3840
|
collection?: {
|
|
3832
3841
|
id: string;
|
|
3833
3842
|
title: string;
|
package/package.json
CHANGED
|
@@ -200,6 +200,15 @@ export interface DropshipperProduct {
|
|
|
200
200
|
subtitle?: string | null;
|
|
201
201
|
description?: string | null;
|
|
202
202
|
handle?: string | null;
|
|
203
|
+
/** Physical dimensions and shipping metadata */
|
|
204
|
+
width?: number | null;
|
|
205
|
+
height?: number | null;
|
|
206
|
+
length?: number | null;
|
|
207
|
+
weight?: number | null;
|
|
208
|
+
material?: string | null;
|
|
209
|
+
origin_country?: string | null;
|
|
210
|
+
hs_code?: string | null;
|
|
211
|
+
mid_code?: string | null;
|
|
203
212
|
collection?: {
|
|
204
213
|
id: string;
|
|
205
214
|
title: string;
|