@royalinvest/dto 0.55.4 → 0.56.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.
package/dist/address.d.ts
CHANGED
package/dist/enum/index.d.ts
CHANGED
package/dist/enum/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UnitMeasurementEnum = exports.BulkPurchaseSourceTypeEnum = exports.TextAlignmentEnum = exports.LeaseDurationEnum = exports.LeaseTermTypeEnum = exports.LeaseCategoryEnum = exports.LeaseTypeEnum = exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
4
4
|
var PartyTypeEnum;
|
|
5
5
|
(function (PartyTypeEnum) {
|
|
6
6
|
PartyTypeEnum["default"] = "";
|
|
@@ -110,7 +110,3 @@ var UnitMeasurementEnum;
|
|
|
110
110
|
UnitMeasurementEnum["UNIT"] = "unit";
|
|
111
111
|
UnitMeasurementEnum["MEGABYTE"] = "megabyte";
|
|
112
112
|
})(UnitMeasurementEnum || (exports.UnitMeasurementEnum = UnitMeasurementEnum = {}));
|
|
113
|
-
var ReportTypeEnum;
|
|
114
|
-
(function (ReportTypeEnum) {
|
|
115
|
-
ReportTypeEnum["CreditCheck"] = "CreditCheck";
|
|
116
|
-
})(ReportTypeEnum || (exports.ReportTypeEnum = ReportTypeEnum = {}));
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { LeaseTypeEnum
|
|
1
|
+
import { LeaseTypeEnum } from "./enum";
|
|
2
2
|
import { ICertificateFormData } from "./certificateFormData";
|
|
3
3
|
import { IContractParty } from "./contractParty";
|
|
4
4
|
import { IDocumentDrawingInstructions } from "./documentDrawingInstructions";
|
|
5
5
|
import { IFileMetadata } from "./fileMetadata";
|
|
6
6
|
import { ISignaturePartySigned } from "./signaturePartySigned";
|
|
7
7
|
import { IInvoiceRenderData } from "./invoiceRenderData";
|
|
8
|
-
import {
|
|
8
|
+
import { ICreditCheckReportData } from "./creditCheckReport";
|
|
9
9
|
export interface IMessageGenerate {
|
|
10
10
|
contract_id: string;
|
|
11
11
|
details: JSON;
|
|
@@ -49,11 +49,9 @@ export interface IMessageGenerateInvoice {
|
|
|
49
49
|
language: string;
|
|
50
50
|
data: IInvoiceRenderData;
|
|
51
51
|
}
|
|
52
|
-
export interface
|
|
52
|
+
export interface IMessageGenerateCreditCheckReport {
|
|
53
53
|
report_id: string;
|
|
54
|
-
|
|
55
|
-
report_data: IReportData;
|
|
54
|
+
report_data: ICreditCheckReportData;
|
|
56
55
|
blob_path: string;
|
|
57
|
-
|
|
58
|
-
language?: string;
|
|
56
|
+
language: string;
|
|
59
57
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ReportTypeEnum } from "./enum";
|
|
2
1
|
import { IPhysicalFileDetails } from "./physicalFileDetails";
|
|
3
2
|
import { IPlaceholderCollection } from "./placeholderCollection";
|
|
4
3
|
import { ISignaturePartyBasic } from "./signaturePartyBasic";
|
|
@@ -38,10 +37,9 @@ export interface IGeneratedInvoiceNotification {
|
|
|
38
37
|
invoice_number: string;
|
|
39
38
|
language: string;
|
|
40
39
|
}
|
|
41
|
-
export interface
|
|
40
|
+
export interface IGeneratedCreditCheckReportNotification {
|
|
42
41
|
report_id: string;
|
|
43
|
-
report_type: ReportTypeEnum;
|
|
44
42
|
blob_path: string;
|
|
45
|
-
hash
|
|
46
|
-
language
|
|
43
|
+
hash: string;
|
|
44
|
+
language: string;
|
|
47
45
|
}
|
package/package.json
CHANGED
package/dist/reportData.d.ts
DELETED
package/dist/reportData.js
DELETED