rerobe-js-orm 4.2.9 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "4.2.9",
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",