@fas-core/shared-types 1.0.39 → 1.0.41

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
@@ -188,6 +188,7 @@ interface IStock extends BaseEntity {
188
188
 
189
189
  interface IProductVariantFields {
190
190
  description: string;
191
+ overview: string;
191
192
  price: IPrice;
192
193
  quantity: number;
193
194
  brand: IBrand;
@@ -209,7 +210,6 @@ interface IVariant extends BaseEntity, IProductVariantFields {
209
210
  sku: string;
210
211
  slug: string;
211
212
  product: IProduct;
212
- variantAttributes: IKeyValue[];
213
213
  }
214
214
 
215
215
  interface IProduct extends BaseEntity, IProductVariantFields {
@@ -217,7 +217,6 @@ interface IProduct extends BaseEntity, IProductVariantFields {
217
217
  slug: string;
218
218
  sku: string;
219
219
  hasVariants: boolean;
220
- variantOptions: IKeyValue[];
221
220
  variants: IVariant[];
222
221
  }
223
222
 
package/dist/index.d.ts CHANGED
@@ -188,6 +188,7 @@ interface IStock extends BaseEntity {
188
188
 
189
189
  interface IProductVariantFields {
190
190
  description: string;
191
+ overview: string;
191
192
  price: IPrice;
192
193
  quantity: number;
193
194
  brand: IBrand;
@@ -209,7 +210,6 @@ interface IVariant extends BaseEntity, IProductVariantFields {
209
210
  sku: string;
210
211
  slug: string;
211
212
  product: IProduct;
212
- variantAttributes: IKeyValue[];
213
213
  }
214
214
 
215
215
  interface IProduct extends BaseEntity, IProductVariantFields {
@@ -217,7 +217,6 @@ interface IProduct extends BaseEntity, IProductVariantFields {
217
217
  slug: string;
218
218
  sku: string;
219
219
  hasVariants: boolean;
220
- variantOptions: IKeyValue[];
221
220
  variants: IVariant[];
222
221
  }
223
222
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fas-core/shared-types",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "description": "FAS Core Shared Types - A collection of shared TypeScript types for the FAS Core SDK.",
5
5
  "author": "ibreakloops",
6
6
  "license": "UNLICENSED",