@fas-core/shared-types 1.0.40 → 1.0.42

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
@@ -210,7 +210,6 @@ interface IVariant extends BaseEntity, IProductVariantFields {
210
210
  sku: string;
211
211
  slug: string;
212
212
  product: IProduct;
213
- variantAttributes: IKeyValue[];
214
213
  }
215
214
 
216
215
  interface IProduct extends BaseEntity, IProductVariantFields {
@@ -218,7 +217,6 @@ interface IProduct extends BaseEntity, IProductVariantFields {
218
217
  slug: string;
219
218
  sku: string;
220
219
  hasVariants: boolean;
221
- variantOptions: IKeyValue[];
222
220
  variants: IVariant[];
223
221
  }
224
222
 
@@ -344,6 +342,8 @@ interface ICustomer extends BaseEntity {
344
342
  allowedStores: Array<string | Types.ObjectId>;
345
343
  orders: IOrder[];
346
344
  isStoreAdmin: boolean;
345
+ resetPasswordTokenHash: string;
346
+ resetPasswordTokenExpiresAt: Date | null;
347
347
  }
348
348
 
349
349
  interface IState extends BaseEntity {
package/dist/index.d.ts CHANGED
@@ -210,7 +210,6 @@ interface IVariant extends BaseEntity, IProductVariantFields {
210
210
  sku: string;
211
211
  slug: string;
212
212
  product: IProduct;
213
- variantAttributes: IKeyValue[];
214
213
  }
215
214
 
216
215
  interface IProduct extends BaseEntity, IProductVariantFields {
@@ -218,7 +217,6 @@ interface IProduct extends BaseEntity, IProductVariantFields {
218
217
  slug: string;
219
218
  sku: string;
220
219
  hasVariants: boolean;
221
- variantOptions: IKeyValue[];
222
220
  variants: IVariant[];
223
221
  }
224
222
 
@@ -344,6 +342,8 @@ interface ICustomer extends BaseEntity {
344
342
  allowedStores: Array<string | Types.ObjectId>;
345
343
  orders: IOrder[];
346
344
  isStoreAdmin: boolean;
345
+ resetPasswordTokenHash: string;
346
+ resetPasswordTokenExpiresAt: Date | null;
347
347
  }
348
348
 
349
349
  interface IState extends BaseEntity {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fas-core/shared-types",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
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",