rerobe-js-orm 3.0.36 → 3.0.37

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.
@@ -4,6 +4,7 @@ export default class CustomerNotification extends Base {
4
4
  createdAt: string;
5
5
  merchantId: string;
6
6
  customerId: string;
7
+ referenceId: string;
7
8
  type: CustomerNotificationType;
8
9
  data: any;
9
10
  subject: string;
@@ -8,6 +8,7 @@ class CustomerNotification extends Base_1.default {
8
8
  this.createdAt = (props === null || props === void 0 ? void 0 : props.createdAt) || '';
9
9
  this.merchantId = (props === null || props === void 0 ? void 0 : props.merchantId) || '';
10
10
  this.customerId = (props === null || props === void 0 ? void 0 : props.customerId) || '';
11
+ this.referenceId = (props === null || props === void 0 ? void 0 : props.referenceId) || '';
11
12
  this.type = props === null || props === void 0 ? void 0 : props.type;
12
13
  this.data = props === null || props === void 0 ? void 0 : props.data;
13
14
  this.subject = (props === null || props === void 0 ? void 0 : props.subject) || '';
@@ -21,6 +22,7 @@ class CustomerNotification extends Base_1.default {
21
22
  createdAt: this.createdAt,
22
23
  merchantId: this.merchantId,
23
24
  customerId: this.customerId,
25
+ referenceId: this.referenceId,
24
26
  type: this.type,
25
27
  data: this.data,
26
28
  subject: this.subject,
@@ -7,6 +7,7 @@ declare type CustomerNotificationAttributes = {
7
7
  createdAt: string;
8
8
  merchantId: string;
9
9
  customerId: string;
10
+ referenceId: string;
10
11
  type: CustomerNotificationType;
11
12
  data: any;
12
13
  subject: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "3.0.36",
3
+ "version": "3.0.37",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",