rerobe-js-orm 4.2.9 → 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.
|
@@ -24,6 +24,8 @@ export namespace SALES_CHANNELS {
|
|
|
24
24
|
const ahlens: string;
|
|
25
25
|
const ribbnMobilePOS: string;
|
|
26
26
|
const ribbnWebPOS: string;
|
|
27
|
+
const ribbnSellThroughChannelPartner: string;
|
|
28
|
+
const ribbnSellOnChannelPartner: string;
|
|
27
29
|
}
|
|
28
30
|
export namespace FULFILLMENT_TYPES {
|
|
29
31
|
const fulfilled: string;
|
|
@@ -27,6 +27,8 @@ exports.SALES_CHANNELS = {
|
|
|
27
27
|
ahlens: 'AHLENS',
|
|
28
28
|
ribbnMobilePOS: 'RIBBN_MOBILE_POS',
|
|
29
29
|
ribbnWebPOS: 'RIBBN_WEB_POS',
|
|
30
|
+
ribbnSellThroughChannelPartner: 'RIBBN_SELL_THROUGH_CHANNEL_PARTNER',
|
|
31
|
+
ribbnSellOnChannelPartner: 'RIBBN_SELL_ON_CHANNEL_PARTNER',
|
|
30
32
|
};
|
|
31
33
|
exports.FULFILLMENT_TYPES = {
|
|
32
34
|
fulfilled: 'FULFILLED',
|
package/lib/models/Order.d.ts
CHANGED
package/lib/models/Product.d.ts
CHANGED
|
@@ -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
|
-
|
|
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;
|
package/lib/models/Product.js
CHANGED
|
@@ -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
|
-
|
|
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 = []) {
|