rerobe-js-orm 4.3.0 → 4.3.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.
@@ -27,12 +27,22 @@ export default class Product extends Base {
27
27
  standardSize: string;
28
28
  internationalSize: string;
29
29
  materialComposition: MaterialComposition;
30
+ status: string;
31
+ compareAtPrice: string | undefined;
32
+ costPerItem: string | undefined;
33
+ purchasePrice: string;
34
+ suggestedResalePrice: string;
30
35
  salePrice: string;
31
36
  isOnSale: string;
32
37
  discountType: string;
33
38
  discountValue: string;
34
39
  selectedForClearance: string;
35
- status: string;
40
+ priceRange: string;
41
+ clearanceTimestamp: number | null;
42
+ soldTimestamp: number | null;
43
+ soldSellerPaidTimestamp: number | null;
44
+ soldSellerToBePaidTimestamp: number | null;
45
+ isTaxable: string | undefined;
36
46
  };
37
47
  updateSelfFromTranslatedTextArray(translatedTextArray?: string[]): void;
38
48
  autoCreateTitle(): string;
@@ -428,12 +428,22 @@ class Product extends Base_1.default {
428
428
  standardSize: this.filterAttributes.standardSize,
429
429
  internationalSize: this.filterAttributes.internationalSize,
430
430
  materialComposition: this.filterAttributes.materialComposition,
431
+ status: this.consignmentAttributes.status,
432
+ compareAtPrice: this.attributes.compareAtPrice,
433
+ costPerItem: this.attributes.costPerItem,
434
+ purchasePrice: this.consignmentAttributes.purchasePrice,
435
+ suggestedResalePrice: this.consignmentAttributes.suggestedResalePrice,
431
436
  salePrice: this.consignmentAttributes.salePrice,
432
437
  isOnSale: this.consignmentAttributes.isOnSale,
433
438
  discountType: this.consignmentAttributes.discountType,
434
439
  discountValue: this.consignmentAttributes.discountValue,
435
440
  selectedForClearance: this.consignmentAttributes.selectedForClearance,
436
- status: this.consignmentAttributes.status,
441
+ priceRange: this.filterAttributes.priceRange,
442
+ clearanceTimestamp: this.timestampAttributes.clearanceTimestamp,
443
+ soldTimestamp: this.timestampAttributes.soldTimestamp,
444
+ soldSellerPaidTimestamp: this.timestampAttributes.soldSellerPaidTimestamp,
445
+ soldSellerToBePaidTimestamp: this.timestampAttributes.soldSellerToBePaidTimestamp,
446
+ isTaxable: this.attributes.isTaxable,
437
447
  };
438
448
  }
439
449
  updateSelfFromTranslatedTextArray(translatedTextArray = []) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",