@royalinvest/dto 0.22.7 → 0.22.9
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/addendum.d.ts +3 -0
- package/dist/addendum.js +2 -0
- package/dist/baseLeaseDetails.d.ts +5 -0
- package/dist/baseLeaseDetails.js +2 -0
- package/dist/enum/index.d.ts +4 -0
- package/dist/enum/index.js +6 -1
- package/dist/lease-of-dwelling-notice.d.ts +2 -2
- package/dist/messageGenerate.d.ts +2 -0
- package/dist/quebec-lease-dwelling/index.d.ts +2 -4
- package/package.json +1 -1
package/dist/addendum.js
ADDED
package/dist/enum/index.d.ts
CHANGED
package/dist/enum/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
3
|
+
exports.TemplateNameEnum = 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"] = "";
|
|
@@ -61,3 +61,8 @@ var LeaseNoticeTypeEnum;
|
|
|
61
61
|
LeaseNoticeTypeEnum["Repossessing"] = "repossessing";
|
|
62
62
|
LeaseNoticeTypeEnum["Eviction"] = "eviction";
|
|
63
63
|
})(LeaseNoticeTypeEnum = exports.LeaseNoticeTypeEnum || (exports.LeaseNoticeTypeEnum = {}));
|
|
64
|
+
var TemplateNameEnum;
|
|
65
|
+
(function (TemplateNameEnum) {
|
|
66
|
+
TemplateNameEnum["LeaseOfDwelling"] = "Lease of a Dwelling";
|
|
67
|
+
TemplateNameEnum["LeaseOfDwellingNotice"] = "Lease of a Dwelling Notice";
|
|
68
|
+
})(TemplateNameEnum = exports.TemplateNameEnum || (exports.TemplateNameEnum = {}));
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { IBaseLeaseDetails } from "./baseLeaseDetails";
|
|
2
|
+
export interface ILeaseOfDwellingNotice extends IBaseLeaseDetails {
|
|
2
3
|
lessee_name: string;
|
|
3
4
|
lessee_address: string;
|
|
4
5
|
amount_of_rent_checkbox_1: boolean;
|
|
@@ -34,5 +35,4 @@ export interface ILeaseOfDwellingNotice {
|
|
|
34
35
|
response_accept: boolean;
|
|
35
36
|
response_refuse: boolean;
|
|
36
37
|
response_renewing: boolean;
|
|
37
|
-
contract_number?: string;
|
|
38
38
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ContractType } from "./contract-type";
|
|
2
|
+
import { TemplateNameEnum } from "./enum";
|
|
2
3
|
import { ISignaturePartySigned } from "./signaturePartySigned";
|
|
3
4
|
export interface IMessageGenerate {
|
|
4
5
|
contract_id: string;
|
|
@@ -9,6 +10,7 @@ export interface IMessageGenerate {
|
|
|
9
10
|
template_variant_language: string;
|
|
10
11
|
template_variant_mime_type: string;
|
|
11
12
|
template_variant_id: string;
|
|
13
|
+
template_name: TemplateNameEnum;
|
|
12
14
|
file_id?: string;
|
|
13
15
|
isEdit?: boolean;
|
|
14
16
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IBaseLeaseDetails } from "../baseLeaseDetails";
|
|
2
2
|
import { sectionA } from "./sectionA";
|
|
3
3
|
import { sectionB } from "./sectionB";
|
|
4
4
|
import { sectionC } from "./sectionC";
|
|
@@ -8,7 +8,7 @@ import { sectionF } from "./sectionF";
|
|
|
8
8
|
import { sectionG } from "./sectionG";
|
|
9
9
|
import { sectionH } from "./sectionH";
|
|
10
10
|
import { sectionI } from "./sectionI";
|
|
11
|
-
export interface ILeaseOfDwelling {
|
|
11
|
+
export interface ILeaseOfDwelling extends IBaseLeaseDetails {
|
|
12
12
|
sectionA: sectionA;
|
|
13
13
|
sectionB: sectionB;
|
|
14
14
|
sectionC: sectionC;
|
|
@@ -18,6 +18,4 @@ export interface ILeaseOfDwelling {
|
|
|
18
18
|
sectionG: sectionG;
|
|
19
19
|
sectionH: sectionH;
|
|
20
20
|
sectionI: sectionI;
|
|
21
|
-
addendum?: addendum;
|
|
22
|
-
contract_number: string;
|
|
23
21
|
}
|
package/package.json
CHANGED