@royalinvest/dto 0.63.3 → 0.64.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.
@@ -256,6 +256,8 @@ export interface ICreditCheckConsentTenantInfoResponse {
256
256
  sender_email: string;
257
257
  screening_questionnaire_id?: string;
258
258
  rental_address: IAddress;
259
+ tenant_email: string;
260
+ user_id?: string;
259
261
  }
260
262
  export interface ICreditCheckReportFileDownload {
261
263
  id: string;
@@ -1,15 +1,18 @@
1
1
  import { IKeyValue } from "./key-value";
2
2
  export interface ICreditCheckReportData {
3
3
  bureau: string;
4
- title: string;
5
- subtitle: string;
6
4
  header: IKeyValue[];
7
5
  footer: ICreditCheckReportFooter;
8
- details: ICreditCheckReportDetails;
6
+ chapters: ICreditCheckReportChapter[];
7
+ }
8
+ export interface ICreditCheckReportChapter {
9
+ title: string;
10
+ subtitle?: string;
11
+ details?: ICreditCheckReportDetails;
9
12
  sections: ICreditCheckReportSection[];
10
13
  }
11
14
  export interface ICreditCheckReportSection {
12
- title: string;
15
+ title?: string;
13
16
  newPage?: boolean;
14
17
  subsections: ICreditCheckReportSubsection[];
15
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.63.3",
3
+ "version": "0.64.1",
4
4
  "description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",