@royalinvest/dto 0.32.5 → 0.32.7

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.
@@ -31,7 +31,7 @@ export declare enum SignStatusEnum {
31
31
  signed = "signed",
32
32
  cancelled = "cancelled",
33
33
  signaturePending = "signaturePending",
34
- Voided = "voided"
34
+ voided = "voided"
35
35
  }
36
36
  export declare enum NotificationTypeEnum {
37
37
  documentReady = "document_ready",
@@ -41,7 +41,8 @@ export declare enum SignActionEnum {
41
41
  viewed = "viewed",
42
42
  cancelled = "cancelled",
43
43
  sentInvitation = "sentInvitation",
44
- signed = "signed"
44
+ signed = "signed",
45
+ voided = "voided"
45
46
  }
46
47
  export declare enum SignatureDateTypeEnum {
47
48
  equalDayMonthYearBoxes = "equalDayMonthYearBoxes",
@@ -39,7 +39,7 @@ var SignStatusEnum;
39
39
  SignStatusEnum["signed"] = "signed";
40
40
  SignStatusEnum["cancelled"] = "cancelled";
41
41
  SignStatusEnum["signaturePending"] = "signaturePending";
42
- SignStatusEnum["Voided"] = "voided";
42
+ SignStatusEnum["voided"] = "voided";
43
43
  })(SignStatusEnum || (exports.SignStatusEnum = SignStatusEnum = {}));
44
44
  var NotificationTypeEnum;
45
45
  (function (NotificationTypeEnum) {
@@ -52,6 +52,7 @@ var SignActionEnum;
52
52
  SignActionEnum["cancelled"] = "cancelled";
53
53
  SignActionEnum["sentInvitation"] = "sentInvitation";
54
54
  SignActionEnum["signed"] = "signed";
55
+ SignActionEnum["voided"] = "voided";
55
56
  })(SignActionEnum || (exports.SignActionEnum = SignActionEnum = {}));
56
57
  var SignatureDateTypeEnum;
57
58
  (function (SignatureDateTypeEnum) {
@@ -24,4 +24,5 @@ export interface IMessageGenerateVoided {
24
24
  contract_id: string;
25
25
  file_id: string;
26
26
  file_name: string;
27
+ notify_party_email: boolean;
27
28
  }
@@ -20,4 +20,5 @@ export interface IVoidedNotification {
20
20
  user_id: string;
21
21
  file_id: string;
22
22
  contract_id: string;
23
+ notify_party_email: boolean;
23
24
  }
@@ -6,6 +6,7 @@ export interface IDatePlaceholder extends ILayout {
6
6
  type: SignatureDateTypeEnum;
7
7
  markers?: IDatePlaceholderMarkers;
8
8
  style?: IDatePlaceholderStyle;
9
+ generated?: boolean;
9
10
  }
10
11
  export interface IDatePlaceholderMarkers {
11
12
  day: number;
@@ -7,6 +7,7 @@ export interface IPlaceholder extends ILayout {
7
7
  order: number;
8
8
  page: number;
9
9
  prerequisite?: IPlaceholderPrerequisite;
10
+ generated?: boolean;
10
11
  }
11
12
  export interface IPlaceholderPrerequisite {
12
13
  key: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.32.5",
3
+ "version": "0.32.7",
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",