@royalinvest/dto 0.31.1 → 0.32.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.
@@ -30,7 +30,8 @@ export declare enum SignStatusEnum {
30
30
  sent = "sent",
31
31
  signed = "signed",
32
32
  cancelled = "cancelled",
33
- signaturePending = "signaturePending"
33
+ signaturePending = "signaturePending",
34
+ Voided = "voided"
34
35
  }
35
36
  export declare enum NotificationTypeEnum {
36
37
  documentReady = "document_ready",
@@ -39,6 +39,7 @@ var SignStatusEnum;
39
39
  SignStatusEnum["signed"] = "signed";
40
40
  SignStatusEnum["cancelled"] = "cancelled";
41
41
  SignStatusEnum["signaturePending"] = "signaturePending";
42
+ SignStatusEnum["Voided"] = "voided";
42
43
  })(SignStatusEnum || (exports.SignStatusEnum = SignStatusEnum = {}));
43
44
  var NotificationTypeEnum;
44
45
  (function (NotificationTypeEnum) {
package/dist/index.d.ts CHANGED
@@ -20,7 +20,9 @@ export * from "./lease-duplicate";
20
20
  export * from "./lease-list-item";
21
21
  export * from "./lease-of-dwelling-notice";
22
22
  export * from "./lease";
23
+ export * from "./leaseNoticeRule";
23
24
  export * from "./leaseSaveTypeEnum";
25
+ export * from "./list-response";
24
26
  export * from "./messageGenerate";
25
27
  export * from "./messageNotification";
26
28
  export * from "./noticeRule";
@@ -28,6 +30,7 @@ export * from "./notification";
28
30
  export * from "./party";
29
31
  export * from "./placeholder-date";
30
32
  export * from "./placeholder";
33
+ export * from "./placeholderCollection";
31
34
  export * from "./profile";
32
35
  export * from "./property";
33
36
  export * from "./propertyUnit";
@@ -47,5 +50,3 @@ export * from "./template-variant";
47
50
  export * from "./template";
48
51
  export * from "./user";
49
52
  export * from "./yes-no";
50
- export * from "./list-response";
51
- export * from "./leaseNoticeRule";
package/dist/index.js CHANGED
@@ -36,7 +36,9 @@ __exportStar(require("./lease-duplicate"), exports);
36
36
  __exportStar(require("./lease-list-item"), exports);
37
37
  __exportStar(require("./lease-of-dwelling-notice"), exports);
38
38
  __exportStar(require("./lease"), exports);
39
+ __exportStar(require("./leaseNoticeRule"), exports);
39
40
  __exportStar(require("./leaseSaveTypeEnum"), exports);
41
+ __exportStar(require("./list-response"), exports);
40
42
  __exportStar(require("./messageGenerate"), exports);
41
43
  __exportStar(require("./messageNotification"), exports);
42
44
  __exportStar(require("./noticeRule"), exports);
@@ -44,6 +46,7 @@ __exportStar(require("./notification"), exports);
44
46
  __exportStar(require("./party"), exports);
45
47
  __exportStar(require("./placeholder-date"), exports);
46
48
  __exportStar(require("./placeholder"), exports);
49
+ __exportStar(require("./placeholderCollection"), exports);
47
50
  __exportStar(require("./profile"), exports);
48
51
  __exportStar(require("./property"), exports);
49
52
  __exportStar(require("./propertyUnit"), exports);
@@ -63,5 +66,3 @@ __exportStar(require("./template-variant"), exports);
63
66
  __exportStar(require("./template"), exports);
64
67
  __exportStar(require("./user"), exports);
65
68
  __exportStar(require("./yes-no"), exports);
66
- __exportStar(require("./list-response"), exports);
67
- __exportStar(require("./leaseNoticeRule"), exports);
@@ -12,6 +12,7 @@ export interface IMessageGenerate {
12
12
  template_name: LeaseTypeEnum;
13
13
  file_id?: string;
14
14
  isEdit?: boolean;
15
+ addendum_instructions?: JSON;
15
16
  }
16
17
  export interface IMessageGenerateSigned {
17
18
  party: ISignaturePartySigned;
@@ -1,3 +1,4 @@
1
+ import { IPlaceholderCollection } from "./placeholderCollection";
1
2
  import { ISignaturePartyBasic } from "./signaturePartyBasic";
2
3
  export interface IGeneratedNotification {
3
4
  contract_id: string;
@@ -9,6 +10,7 @@ export interface IGeneratedNotification {
9
10
  template_variant_id: string;
10
11
  file_id?: string;
11
12
  isEdit?: boolean;
13
+ generated_placeholders?: IPlaceholderCollection;
12
14
  }
13
15
  export interface ISignedNotification {
14
16
  file_id: string;
@@ -0,0 +1,6 @@
1
+ import { IPlaceholder } from "./placeholder";
2
+ import { IDatePlaceholder } from "./placeholder-date";
3
+ export interface IPlaceholderCollection {
4
+ signature_placeholders?: IPlaceholder[];
5
+ date_placeholders?: IDatePlaceholder[];
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.31.1",
3
+ "version": "0.32.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",