@royalinvest/dto 0.49.6 → 0.49.7

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.
@@ -1,3 +1,4 @@
1
+ import { BulkPurchaseSourceTypeEnum } from "./enum";
1
2
  import { PaymentIntervalType } from "./payment";
2
3
  export interface ICheckout {
3
4
  contract_id?: string;
@@ -29,9 +30,3 @@ export interface ISubscribe {
29
30
  plan_id: string;
30
31
  interval: PaymentIntervalType;
31
32
  }
32
- export declare enum BulkPurchaseSourceTypeEnum {
33
- SYSTEM = "system",
34
- USER = "user",
35
- PROMOTION = "promotion",
36
- REFERRAL = "referral"
37
- }
package/dist/checkout.js CHANGED
@@ -1,10 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BulkPurchaseSourceTypeEnum = void 0;
4
- var BulkPurchaseSourceTypeEnum;
5
- (function (BulkPurchaseSourceTypeEnum) {
6
- BulkPurchaseSourceTypeEnum["SYSTEM"] = "system";
7
- BulkPurchaseSourceTypeEnum["USER"] = "user";
8
- BulkPurchaseSourceTypeEnum["PROMOTION"] = "promotion";
9
- BulkPurchaseSourceTypeEnum["REFERRAL"] = "referral";
10
- })(BulkPurchaseSourceTypeEnum || (exports.BulkPurchaseSourceTypeEnum = BulkPurchaseSourceTypeEnum = {}));
@@ -91,3 +91,9 @@ export declare enum TextAlignmentEnum {
91
91
  left = "left",
92
92
  center = "center"
93
93
  }
94
+ export declare enum BulkPurchaseSourceTypeEnum {
95
+ SYSTEM = "system",
96
+ USER = "user",
97
+ PROMOTION = "promotion",
98
+ REFERRAL = "referral"
99
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TextAlignmentEnum = exports.LeaseDurationEnum = exports.LeaseTermTypeEnum = exports.LeaseCategoryEnum = exports.LeaseTypeEnum = exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
3
+ exports.BulkPurchaseSourceTypeEnum = exports.TextAlignmentEnum = exports.LeaseDurationEnum = exports.LeaseTermTypeEnum = exports.LeaseCategoryEnum = exports.LeaseTypeEnum = exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
4
4
  var PartyTypeEnum;
5
5
  (function (PartyTypeEnum) {
6
6
  PartyTypeEnum["default"] = "";
@@ -98,3 +98,10 @@ var TextAlignmentEnum;
98
98
  TextAlignmentEnum["left"] = "left";
99
99
  TextAlignmentEnum["center"] = "center";
100
100
  })(TextAlignmentEnum || (exports.TextAlignmentEnum = TextAlignmentEnum = {}));
101
+ var BulkPurchaseSourceTypeEnum;
102
+ (function (BulkPurchaseSourceTypeEnum) {
103
+ BulkPurchaseSourceTypeEnum["SYSTEM"] = "system";
104
+ BulkPurchaseSourceTypeEnum["USER"] = "user";
105
+ BulkPurchaseSourceTypeEnum["PROMOTION"] = "promotion";
106
+ BulkPurchaseSourceTypeEnum["REFERRAL"] = "referral";
107
+ })(BulkPurchaseSourceTypeEnum || (exports.BulkPurchaseSourceTypeEnum = BulkPurchaseSourceTypeEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.49.6",
3
+ "version": "0.49.7",
4
4
  "description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./dist/index.d.ts",