@royalinvest/dto 0.30.0 → 0.31.0

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.
@@ -18,7 +18,8 @@ export declare enum LeaseStatusEnum {
18
18
  Expired = "expired",
19
19
  Signed = "signed",
20
20
  PendingSignature = "pendingSignature",
21
- Cancelled = "cancelled"
21
+ Cancelled = "cancelled",
22
+ Voided = "voided"
22
23
  }
23
24
  export declare enum SignatureType {
24
25
  initials = "initials",
@@ -25,6 +25,7 @@ var LeaseStatusEnum;
25
25
  LeaseStatusEnum["Signed"] = "signed";
26
26
  LeaseStatusEnum["PendingSignature"] = "pendingSignature";
27
27
  LeaseStatusEnum["Cancelled"] = "cancelled";
28
+ LeaseStatusEnum["Voided"] = "voided";
28
29
  })(LeaseStatusEnum || (exports.LeaseStatusEnum = LeaseStatusEnum = {}));
29
30
  var SignatureType;
30
31
  (function (SignatureType) {
@@ -16,3 +16,9 @@ export interface IMessageGenerate {
16
16
  export interface IMessageGenerateSigned {
17
17
  party: ISignaturePartySigned;
18
18
  }
19
+ export interface IMessageGenerateVoided {
20
+ user_id: string;
21
+ contract_id: string;
22
+ file_id: string;
23
+ file_name: string;
24
+ }
@@ -14,3 +14,8 @@ export interface ISignedNotification {
14
14
  file_id: string;
15
15
  party: ISignaturePartyBasic;
16
16
  }
17
+ export interface IVoidedNotification {
18
+ user_id: string;
19
+ file_id: string;
20
+ contract_id: string;
21
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.30.0",
3
+ "version": "0.31.0",
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",