rerobe-js-orm 2.7.39 → 2.7.40

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.
@@ -7,6 +7,7 @@ export namespace PAYMENT_TYPES {
7
7
  const creditCard: string;
8
8
  const klarna: string;
9
9
  const swish: string;
10
+ const shoppingCredit: string;
10
11
  }
11
12
  export namespace ORDER_STATES {
12
13
  const draft: string;
@@ -10,6 +10,7 @@ exports.PAYMENT_TYPES = {
10
10
  creditCard: 'CREDIT_CARD',
11
11
  klarna: 'KLARNA',
12
12
  swish: 'SWISH',
13
+ shoppingCredit: 'SHOPPING_CREDIT',
13
14
  };
14
15
  exports.ORDER_STATES = {
15
16
  draft: 'DRAFT',
@@ -9,6 +9,7 @@ export default class Order extends Base {
9
9
  creditCard: string;
10
10
  klarna: string;
11
11
  swish: string;
12
+ shoppingCredit: string;
12
13
  };
13
14
  static ORDER_STATES: {
14
15
  draft: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "2.7.39",
3
+ "version": "2.7.40",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",