@royalinvest/dto 0.33.2 → 0.34.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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface ICertificateFormData {
|
|
2
|
+
document: {
|
|
3
|
+
id: string;
|
|
4
|
+
title: string;
|
|
5
|
+
status: string;
|
|
6
|
+
serial_number: string;
|
|
7
|
+
creation_date: string;
|
|
8
|
+
number_of_pages: number;
|
|
9
|
+
};
|
|
10
|
+
signature_parties: {
|
|
11
|
+
id: string;
|
|
12
|
+
role: string;
|
|
13
|
+
full_name: string;
|
|
14
|
+
email_address: string;
|
|
15
|
+
ip_address: string;
|
|
16
|
+
signature_date: string;
|
|
17
|
+
signature_file_blob?: string;
|
|
18
|
+
signature_base64_images?: string[];
|
|
19
|
+
}[];
|
|
20
|
+
}
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./address"), exports);
|
|
18
18
|
__exportStar(require("./auth"), exports);
|
|
19
19
|
__exportStar(require("./category"), exports);
|
|
20
|
+
__exportStar(require("./certificateFormData"), exports);
|
|
20
21
|
__exportStar(require("./checkout"), exports);
|
|
21
22
|
__exportStar(require("./co-singer"), exports);
|
|
22
23
|
__exportStar(require("./contract-type"), exports);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { LeaseTypeEnum } from "./enum";
|
|
2
2
|
import { ISignaturePartySigned } from "./signaturePartySigned";
|
|
3
3
|
import { IContractParty } from "./contractParty";
|
|
4
|
+
import { ICertificateFormData } from "./certificateFormData";
|
|
4
5
|
export interface IMessageGenerate {
|
|
5
6
|
contract_id: string;
|
|
6
7
|
details: JSON;
|
|
@@ -30,3 +31,9 @@ export interface IMessageGenerateDrawingInstructions {
|
|
|
30
31
|
addendum: JSON;
|
|
31
32
|
attachments: JSON;
|
|
32
33
|
}
|
|
34
|
+
export interface IMessageGenerateCertificate {
|
|
35
|
+
language: string;
|
|
36
|
+
blob_name: string;
|
|
37
|
+
form_data: ICertificateFormData;
|
|
38
|
+
form_instructions: JSON;
|
|
39
|
+
}
|
package/dist/messageGenerate.js
CHANGED
package/dist/template.d.ts
CHANGED
|
@@ -11,14 +11,8 @@ export interface ITemplate {
|
|
|
11
11
|
sub_description?: string;
|
|
12
12
|
sku?: string;
|
|
13
13
|
code?: string;
|
|
14
|
-
sale_label?:
|
|
15
|
-
|
|
16
|
-
content: string;
|
|
17
|
-
};
|
|
18
|
-
new_label?: {
|
|
19
|
-
enabled: boolean;
|
|
20
|
-
content: string;
|
|
21
|
-
};
|
|
14
|
+
sale_label?: string;
|
|
15
|
+
new_label?: string;
|
|
22
16
|
price_sale?: number;
|
|
23
17
|
tax?: number;
|
|
24
18
|
images?: string[];
|
package/package.json
CHANGED