rerobe-js-orm 4.2.8 → 4.3.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.
@@ -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',
@@ -26,6 +26,8 @@ export default class Order extends Base {
26
26
  ahlens: string;
27
27
  ribbnMobilePOS: string;
28
28
  ribbnWebPOS: string;
29
+ ribbnSellThroughChannelPartner: string;
30
+ ribbnSellOnChannelPartner: string;
29
31
  };
30
32
  static FULFILLMENT_TYPES: {
31
33
  fulfilled: string;
@@ -553,7 +553,7 @@ class Product extends Base_1.default {
553
553
  {
554
554
  title: 'Product Details',
555
555
  attributes: [
556
- size && `${t('Size')}: ${t(standardSize ? standardSize : size)}`,
556
+ size && `${t('Label size')}: ${t(size)}`,
557
557
  gender && `${t('Primary segment')}: ${t(gender)}`,
558
558
  productCategory && `${t('Category')}: ${t(productCategory)}`,
559
559
  productType && `${t('Type')}: ${t(productType)}`,
@@ -588,7 +588,7 @@ class Product extends Base_1.default {
588
588
  title: 'Additional Remarks',
589
589
  attributes: [
590
590
  productRemarks && `${t('Remarks')}: ${t(productRemarks)}`,
591
- careInstructions && `${t('Care instrutions')}: ${t(careInstructions)}`,
591
+ careInstructions && `${t('Care instructions')}: ${t(careInstructions)}`,
592
592
  ].filter(Boolean),
593
593
  },
594
594
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "4.2.8",
3
+ "version": "4.3.0",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",