@royalinvest/dto 0.53.0 → 0.54.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/index.d.ts CHANGED
@@ -48,6 +48,7 @@ export * from "./quebec-lease-dwelling-cooperative";
48
48
  export * from "./quebec-lease-dwelling";
49
49
  export * from "./quebec-lease-educational-institution";
50
50
  export * from "./quebec-lease-land-mobile-home";
51
+ export * from "./quebec-lease-in-low-rental-housing";
51
52
  export * from "./savedSignature";
52
53
  export * from "./signature-party";
53
54
  export * from "./signatureParty";
package/dist/index.js CHANGED
@@ -64,6 +64,7 @@ __exportStar(require("./quebec-lease-dwelling-cooperative"), exports);
64
64
  __exportStar(require("./quebec-lease-dwelling"), exports);
65
65
  __exportStar(require("./quebec-lease-educational-institution"), exports);
66
66
  __exportStar(require("./quebec-lease-land-mobile-home"), exports);
67
+ __exportStar(require("./quebec-lease-in-low-rental-housing"), exports);
67
68
  __exportStar(require("./savedSignature"), exports);
68
69
  __exportStar(require("./signature-party"), exports);
69
70
  __exportStar(require("./signatureParty"), exports);
@@ -0,0 +1,19 @@
1
+ import { IBaseLeaseDetails } from "../baseLeaseDetails";
2
+ import { sectionA } from "./sectionA";
3
+ import { sectionB } from "./sectionB";
4
+ import { sectionC } from "./sectionC";
5
+ import { sectionD } from "./sectionD";
6
+ import { sectionE } from "./sectionE";
7
+ import { sectionF } from "./sectionF";
8
+ import { sectionG } from "./sectionG";
9
+ import { sectionH } from "./sectionH";
10
+ export interface ILeaseInLowRentalHousing extends IBaseLeaseDetails {
11
+ sectionA: sectionA;
12
+ sectionB: sectionB;
13
+ sectionC: sectionC;
14
+ sectionD: sectionD;
15
+ sectionE: sectionE;
16
+ sectionF: sectionF;
17
+ sectionG: sectionG;
18
+ sectionH: sectionH;
19
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { field } from "../field";
2
+ export interface sectionA {
3
+ lessor: field[];
4
+ lessee: field[];
5
+ represented_by: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ import { IAddress } from "../address";
2
+ export interface sectionB extends IAddress {
3
+ id?: string;
4
+ number_of_rooms: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ export interface sectionC {
2
+ rent_type: string;
3
+ duration: string;
4
+ rent_start: Date | null;
5
+ rent_start_day?: string;
6
+ rent_start_month?: string;
7
+ rent_start_year?: string;
8
+ rent_end: Date | null;
9
+ rent_end_day?: string;
10
+ rent_end_month?: string;
11
+ rent_end_year?: string;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,26 @@
1
+ export interface sectionD {
2
+ rent_amount: string;
3
+ service_amount: string;
4
+ total_rent_amount: string;
5
+ rent_frequency_month: boolean;
6
+ total_cost_frequency_month: boolean;
7
+ total_rent_frequency_month: boolean;
8
+ rent_frequency_week: boolean;
9
+ total_cost_frequency_week: boolean;
10
+ total_rent_frequency_week: boolean;
11
+ first_payment_date: Date | null;
12
+ first_payment_date_day?: string;
13
+ first_payment_date_month?: string;
14
+ first_payment_date_year?: string;
15
+ rent_paid_first_day_of_month: boolean;
16
+ rent_paid_first_day_of_week: boolean;
17
+ rent_paid_specify: string;
18
+ rent_payment_method_cash: boolean;
19
+ rent_payment_method_cheque: boolean;
20
+ rent_payment_method_bank_transfer: boolean;
21
+ rent_payment_method_other: boolean;
22
+ rent_payment_other_specify: string;
23
+ post_dated_cheques_yes: boolean;
24
+ post_dated_cheques_no: boolean;
25
+ place_of_payment: string;
26
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ export interface sectionE {
2
+ by_laws_immovable_given: Date | null;
3
+ by_laws_immovable_given_day?: string;
4
+ by_laws_immovable_given_month?: string;
5
+ by_laws_immovable_given_year?: string;
6
+ other_conditions: string;
7
+ other_conditions_line_1?: string;
8
+ other_conditions_line_2?: string;
9
+ other_conditions_line_3?: string;
10
+ other_conditions_line_4?: string;
11
+ right_access_land_yes: boolean;
12
+ right_access_land_no: boolean;
13
+ right_access_land_specify: string;
14
+ keep_animal_yes: boolean;
15
+ keep_animal_no: boolean;
16
+ keep_animal_specify: string;
17
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface sectionF {
2
+ schedules: string;
3
+ schedules_line_1?: string;
4
+ schedules_line_2?: string;
5
+ schedules_line_3?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { ICosinger } from "../co-singer";
2
+ export interface sectionG {
3
+ solidarily_liable_for_lease_yes: boolean;
4
+ solidarily_liable_for_lease_no: boolean;
5
+ co_signer: ICosinger[];
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface sectionH {
2
+ spouse_id?: string;
3
+ married_civil_union_name_spouse: string;
4
+ spouse_email: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.53.0",
3
+ "version": "0.54.0",
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",