@royalinvest/dto 0.36.2 → 0.37.1

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.
@@ -5,7 +5,8 @@ export interface ICertificateFormData {
5
5
  status: string;
6
6
  serial_number: string;
7
7
  creation_date: string;
8
- number_of_pages: number;
8
+ page_count: number;
9
+ hash: string;
9
10
  };
10
11
  signature_parties: {
11
12
  id: string;
@@ -14,7 +15,7 @@ export interface ICertificateFormData {
14
15
  email_address: string;
15
16
  ip_address: string;
16
17
  signature_date: string;
17
- signature_file_blob?: string;
18
+ signature_blob_path?: string;
18
19
  signature_base64_images?: string[];
19
20
  }[];
20
21
  }
@@ -0,0 +1,8 @@
1
+ export interface IFileCertificate {
2
+ file_base64: string;
3
+ file_type: string;
4
+ file_name: string;
5
+ }
6
+ export interface IFileCertificateStatus {
7
+ available: boolean;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -15,6 +15,7 @@ export * from "./enum";
15
15
  export * from "./expense";
16
16
  export * from "./field";
17
17
  export * from "./file";
18
+ export * from "./fileCertificate";
18
19
  export * from "./fileMetadata";
19
20
  export * from "./fileView";
20
21
  export * from "./key-value";
@@ -39,8 +40,8 @@ export * from "./placeholderCollection";
39
40
  export * from "./profile";
40
41
  export * from "./property";
41
42
  export * from "./propertyUnit";
42
- export * from "./quebec-lease-dwelling";
43
43
  export * from "./quebec-lease-dwelling-cooperative";
44
+ export * from "./quebec-lease-dwelling";
44
45
  export * from "./savedSignature";
45
46
  export * from "./signature-party";
46
47
  export * from "./signatureParty";
package/dist/index.js CHANGED
@@ -31,6 +31,7 @@ __exportStar(require("./enum"), exports);
31
31
  __exportStar(require("./expense"), exports);
32
32
  __exportStar(require("./field"), exports);
33
33
  __exportStar(require("./file"), exports);
34
+ __exportStar(require("./fileCertificate"), exports);
34
35
  __exportStar(require("./fileMetadata"), exports);
35
36
  __exportStar(require("./fileView"), exports);
36
37
  __exportStar(require("./key-value"), exports);
@@ -55,8 +56,8 @@ __exportStar(require("./placeholderCollection"), exports);
55
56
  __exportStar(require("./profile"), exports);
56
57
  __exportStar(require("./property"), exports);
57
58
  __exportStar(require("./propertyUnit"), exports);
58
- __exportStar(require("./quebec-lease-dwelling"), exports);
59
59
  __exportStar(require("./quebec-lease-dwelling-cooperative"), exports);
60
+ __exportStar(require("./quebec-lease-dwelling"), exports);
60
61
  __exportStar(require("./savedSignature"), exports);
61
62
  __exportStar(require("./signature-party"), exports);
62
63
  __exportStar(require("./signatureParty"), exports);
@@ -33,8 +33,9 @@ export interface IMessageGenerateVoided {
33
33
  generate_hash?: boolean;
34
34
  }
35
35
  export interface IMessageGenerateCertificate {
36
- language: string;
37
- blob_name: string;
36
+ file_id: string;
37
+ blob_path: string;
38
38
  form_data: ICertificateFormData;
39
39
  form_instructions: JSON;
40
+ language: string;
40
41
  }
@@ -1,3 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- ;
@@ -26,3 +26,7 @@ export interface IVoidedNotification {
26
26
  notify_party_email: boolean;
27
27
  generated_file_details?: IPhysicalFileDetails;
28
28
  }
29
+ export interface IGeneratedCertificateNotification {
30
+ file_id: string;
31
+ blob_path: string;
32
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.36.2",
3
+ "version": "0.37.1",
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",