@royalinvest/dto 0.20.2 → 0.20.3
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.
- package/dist/enum/index.js +9 -9
- package/dist/lease-list-item.d.ts +1 -0
- package/package.json +2 -2
package/dist/enum/index.js
CHANGED
|
@@ -8,13 +8,13 @@ var PartyTypeEnum;
|
|
|
8
8
|
PartyTypeEnum["lessee"] = "lessee";
|
|
9
9
|
PartyTypeEnum["coSigner"] = "coSigner";
|
|
10
10
|
PartyTypeEnum["spouse"] = "spouse";
|
|
11
|
-
})(PartyTypeEnum
|
|
11
|
+
})(PartyTypeEnum = exports.PartyTypeEnum || (exports.PartyTypeEnum = {}));
|
|
12
12
|
var RentTypeEnum;
|
|
13
13
|
(function (RentTypeEnum) {
|
|
14
14
|
RentTypeEnum["default"] = "";
|
|
15
15
|
RentTypeEnum["fixed"] = "fixed";
|
|
16
16
|
RentTypeEnum["indeterminate"] = "indeterminate";
|
|
17
|
-
})(RentTypeEnum
|
|
17
|
+
})(RentTypeEnum = exports.RentTypeEnum || (exports.RentTypeEnum = {}));
|
|
18
18
|
var LeaseStatusEnum;
|
|
19
19
|
(function (LeaseStatusEnum) {
|
|
20
20
|
LeaseStatusEnum["Default"] = "";
|
|
@@ -25,12 +25,12 @@ var LeaseStatusEnum;
|
|
|
25
25
|
LeaseStatusEnum["Signed"] = "signed";
|
|
26
26
|
LeaseStatusEnum["PendingSignature"] = "pendingSignature";
|
|
27
27
|
LeaseStatusEnum["Cancelled"] = "cancelled";
|
|
28
|
-
})(LeaseStatusEnum
|
|
28
|
+
})(LeaseStatusEnum = exports.LeaseStatusEnum || (exports.LeaseStatusEnum = {}));
|
|
29
29
|
var SignatureType;
|
|
30
30
|
(function (SignatureType) {
|
|
31
31
|
SignatureType["initials"] = "initials";
|
|
32
32
|
SignatureType["signature"] = "signature";
|
|
33
|
-
})(SignatureType
|
|
33
|
+
})(SignatureType = exports.SignatureType || (exports.SignatureType = {}));
|
|
34
34
|
var SignStatusEnum;
|
|
35
35
|
(function (SignStatusEnum) {
|
|
36
36
|
SignStatusEnum["notSigned"] = "notSigned";
|
|
@@ -38,26 +38,26 @@ var SignStatusEnum;
|
|
|
38
38
|
SignStatusEnum["signed"] = "signed";
|
|
39
39
|
SignStatusEnum["cancelled"] = "cancelled";
|
|
40
40
|
SignStatusEnum["signaturePending"] = "signaturePending";
|
|
41
|
-
})(SignStatusEnum
|
|
41
|
+
})(SignStatusEnum = exports.SignStatusEnum || (exports.SignStatusEnum = {}));
|
|
42
42
|
var NotificationTypeEnum;
|
|
43
43
|
(function (NotificationTypeEnum) {
|
|
44
44
|
NotificationTypeEnum["documentReady"] = "document_ready";
|
|
45
45
|
NotificationTypeEnum["documentSigned"] = "document_signed";
|
|
46
|
-
})(NotificationTypeEnum
|
|
46
|
+
})(NotificationTypeEnum = exports.NotificationTypeEnum || (exports.NotificationTypeEnum = {}));
|
|
47
47
|
var SignActionEnum;
|
|
48
48
|
(function (SignActionEnum) {
|
|
49
49
|
SignActionEnum["viewed"] = "viewed";
|
|
50
50
|
SignActionEnum["cancelled"] = "cancelled";
|
|
51
51
|
SignActionEnum["sentInvitation"] = "sentInvitation";
|
|
52
52
|
SignActionEnum["signed"] = "signed";
|
|
53
|
-
})(SignActionEnum
|
|
53
|
+
})(SignActionEnum = exports.SignActionEnum || (exports.SignActionEnum = {}));
|
|
54
54
|
var SignatureDateTypeEnum;
|
|
55
55
|
(function (SignatureDateTypeEnum) {
|
|
56
56
|
SignatureDateTypeEnum["equalDayMonthYearBoxes"] = "equalDayMonthYearBoxes";
|
|
57
|
-
})(SignatureDateTypeEnum
|
|
57
|
+
})(SignatureDateTypeEnum = exports.SignatureDateTypeEnum || (exports.SignatureDateTypeEnum = {}));
|
|
58
58
|
var LeaseNoticeTypeEnum;
|
|
59
59
|
(function (LeaseNoticeTypeEnum) {
|
|
60
60
|
LeaseNoticeTypeEnum["Modification"] = "modification";
|
|
61
61
|
LeaseNoticeTypeEnum["Repossessing"] = "repossessing";
|
|
62
62
|
LeaseNoticeTypeEnum["Eviction"] = "eviction";
|
|
63
|
-
})(LeaseNoticeTypeEnum
|
|
63
|
+
})(LeaseNoticeTypeEnum = exports.LeaseNoticeTypeEnum || (exports.LeaseNoticeTypeEnum = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@royalinvest/dto",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.3",
|
|
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",
|
|
@@ -29,4 +29,4 @@
|
|
|
29
29
|
"author": "Samos Technologies Inc.",
|
|
30
30
|
"license": "ISC",
|
|
31
31
|
"dependencies": {}
|
|
32
|
-
}
|
|
32
|
+
}
|