@royalinvest/dto 0.22.8 → 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/enum/index.d.ts +4 -0
- package/dist/enum/index.js +6 -1
- package/dist/messageGenerate.d.ts +2 -0
- package/package.json +1 -1
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 { 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
|
}
|
package/package.json
CHANGED