@royalinvest/dto 0.26.1 → 0.27.2
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/contractParty.d.ts +8 -0
- package/dist/field.d.ts +0 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/lease-list-item.d.ts +1 -1
- package/dist/lease.d.ts +3 -3
- package/dist/messageProcessContract.d.ts +4 -2
- package/package.json +2 -2
- package/dist/signatureInitials.d.ts +0 -5
- /package/dist/{signatureInitials.js → contractParty.js} +0 -0
package/dist/field.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -21,6 +21,7 @@ __exportStar(require("./checkout"), exports);
|
|
|
21
21
|
__exportStar(require("./co-singer"), exports);
|
|
22
22
|
__exportStar(require("./contract-type"), exports);
|
|
23
23
|
__exportStar(require("./contractAttachment"), exports);
|
|
24
|
+
__exportStar(require("./contractParty"), exports);
|
|
24
25
|
__exportStar(require("./country"), exports);
|
|
25
26
|
__exportStar(require("./emailMessage"), exports);
|
|
26
27
|
__exportStar(require("./enum"), exports);
|
package/dist/lease.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ContractType } from "./contract-type";
|
|
2
1
|
import { LeaseStatusEnum } from "./enum";
|
|
3
|
-
import {
|
|
2
|
+
import { ContractType } from "./contract-type";
|
|
3
|
+
import { IContractParty } from "./contractParty";
|
|
4
4
|
import { IProperty } from "./property";
|
|
5
5
|
export interface ILease {
|
|
6
6
|
id?: string;
|
|
@@ -14,6 +14,6 @@ export interface ILease {
|
|
|
14
14
|
created_at?: Date;
|
|
15
15
|
modified_at?: Date;
|
|
16
16
|
allowed_edit_before: Date | null;
|
|
17
|
-
parties?:
|
|
17
|
+
parties?: IContractParty[];
|
|
18
18
|
property?: IProperty;
|
|
19
19
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IContractParty } from "./contractParty";
|
|
2
|
+
import { IProperty } from "./property";
|
|
2
3
|
export interface IProcessContractNotification {
|
|
3
4
|
user_id: string;
|
|
4
5
|
contract_id: string;
|
|
5
|
-
|
|
6
|
+
parties?: IContractParty[];
|
|
7
|
+
property?: IProperty;
|
|
6
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@royalinvest/dto",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.2",
|
|
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",
|
|
@@ -57,4 +57,4 @@
|
|
|
57
57
|
"prettier": "^3.3.3",
|
|
58
58
|
"typescript-eslint": "^8.7.0"
|
|
59
59
|
}
|
|
60
|
-
}
|
|
60
|
+
}
|
|
File without changes
|