@thorprovider/types 3.13.7 → 3.14.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
@@ -3807,6 +3807,20 @@ interface DropshipperProduct {
3807
3807
  /** Default margin applied to variants that do not have an override. */
3808
3808
  margin_percent?: number;
3809
3809
  variants: DropshipperVariant[];
3810
+ subtitle?: string | null;
3811
+ description?: string | null;
3812
+ handle?: string | null;
3813
+ collection?: {
3814
+ id: string;
3815
+ title: string;
3816
+ handle?: string;
3817
+ } | null;
3818
+ medusa_categories?: Array<{
3819
+ id: string;
3820
+ name: string;
3821
+ handle?: string;
3822
+ parent_category_id?: string | null;
3823
+ }>;
3810
3824
  }
3811
3825
  /** Options for `GET /admin/thor/dropshipper/products` */
3812
3826
  interface GetDropshipperProductsOptions {
package/dist/index.d.ts CHANGED
@@ -3807,6 +3807,20 @@ interface DropshipperProduct {
3807
3807
  /** Default margin applied to variants that do not have an override. */
3808
3808
  margin_percent?: number;
3809
3809
  variants: DropshipperVariant[];
3810
+ subtitle?: string | null;
3811
+ description?: string | null;
3812
+ handle?: string | null;
3813
+ collection?: {
3814
+ id: string;
3815
+ title: string;
3816
+ handle?: string;
3817
+ } | null;
3818
+ medusa_categories?: Array<{
3819
+ id: string;
3820
+ name: string;
3821
+ handle?: string;
3822
+ parent_category_id?: string | null;
3823
+ }>;
3810
3824
  }
3811
3825
  /** Options for `GET /admin/thor/dropshipper/products` */
3812
3826
  interface GetDropshipperProductsOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thorprovider/types",
3
- "version": "3.13.7",
3
+ "version": "3.14.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",
@@ -179,6 +179,20 @@ export interface DropshipperProduct {
179
179
  /** Default margin applied to variants that do not have an override. */
180
180
  margin_percent?: number;
181
181
  variants: DropshipperVariant[];
182
+ subtitle?: string | null;
183
+ description?: string | null;
184
+ handle?: string | null;
185
+ collection?: {
186
+ id: string;
187
+ title: string;
188
+ handle?: string;
189
+ } | null;
190
+ medusa_categories?: Array<{
191
+ id: string;
192
+ name: string;
193
+ handle?: string;
194
+ parent_category_id?: string | null;
195
+ }>;
182
196
  }
183
197
 
184
198
  /** Options for `GET /admin/thor/dropshipper/products` */