@royalinvest/dto 0.47.0 → 0.48.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/ca/ab/amountOfRent.d.ts +11 -0
- package/dist/ca/ab/amountOfRent.js +2 -0
- package/dist/ca/ab/deposit.d.ts +11 -0
- package/dist/ca/ab/deposit.js +2 -0
- package/dist/ca/ab/includedItem.d.ts +24 -0
- package/dist/ca/ab/includedItem.js +2 -0
- package/dist/ca/ab/index.d.ts +29 -0
- package/dist/ca/ab/index.js +2 -0
- package/dist/ca/ab/inspectionReport.d.ts +4 -0
- package/dist/ca/ab/inspectionReport.js +2 -0
- package/dist/ca/ab/miscellaneos.d.ts +3 -0
- package/dist/ca/ab/miscellaneos.js +2 -0
- package/dist/ca/ab/occupants.d.ts +5 -0
- package/dist/ca/ab/occupants.js +2 -0
- package/dist/ca/ab/premisesAndManagement.d.ts +13 -0
- package/dist/ca/ab/premisesAndManagement.js +2 -0
- package/dist/ca/ab/responsibilityOfTheTenant.d.ts +15 -0
- package/dist/ca/ab/responsibilityOfTheTenant.js +2 -0
- package/dist/ca/ab/schedule.d.ts +3 -0
- package/dist/ca/ab/schedule.js +2 -0
- package/dist/ca/ab/sectionParty.d.ts +11 -0
- package/dist/ca/ab/sectionParty.js +2 -0
- package/dist/ca/ab/servingOfDocuments.d.ts +5 -0
- package/dist/ca/ab/servingOfDocuments.js +2 -0
- package/dist/ca/ab/signatures.d.ts +3 -0
- package/dist/ca/ab/signatures.js +2 -0
- package/dist/ca/ab/termOfAgreement.d.ts +17 -0
- package/dist/ca/ab/termOfAgreement.js +2 -0
- package/dist/ca/index.d.ts +1 -0
- package/dist/ca/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface IDeposit {
|
|
2
|
+
no_deposit: boolean;
|
|
3
|
+
deposit_amount: boolean;
|
|
4
|
+
deposit_amount_text: string;
|
|
5
|
+
bank_info: string;
|
|
6
|
+
deduction_agree: boolean;
|
|
7
|
+
deduction_statement: boolean;
|
|
8
|
+
deduction_estimate: boolean;
|
|
9
|
+
interest_annual: boolean;
|
|
10
|
+
interest_compound: boolean;
|
|
11
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface IIncludedItem {
|
|
2
|
+
stove: boolean;
|
|
3
|
+
refrigerator: boolean;
|
|
4
|
+
laundry_facilities: boolean;
|
|
5
|
+
dishwasher: boolean;
|
|
6
|
+
furniture: boolean;
|
|
7
|
+
carpets: boolean;
|
|
8
|
+
window_coverings: boolean;
|
|
9
|
+
natural_gas: boolean;
|
|
10
|
+
cable_service: boolean;
|
|
11
|
+
heat: boolean;
|
|
12
|
+
water: boolean;
|
|
13
|
+
garbage_collection: boolean;
|
|
14
|
+
electricity: boolean;
|
|
15
|
+
parking: boolean;
|
|
16
|
+
parking_spaces: string;
|
|
17
|
+
parking_space: string;
|
|
18
|
+
sewage_disposal: boolean;
|
|
19
|
+
other: boolean;
|
|
20
|
+
other_text: string;
|
|
21
|
+
other_text_1?: string;
|
|
22
|
+
other_text_2?: string;
|
|
23
|
+
other_text_3?: string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IBaseLeaseDetails } from "../../baseLeaseDetails";
|
|
2
|
+
import { IAmountOfRent } from "./amountOfRent";
|
|
3
|
+
import { IDeposit } from "./deposit";
|
|
4
|
+
import { IIncludedItem } from "./includedItem";
|
|
5
|
+
import { IInspectionReport } from "./inspectionReport";
|
|
6
|
+
import { IMiscellaneos } from "./miscellaneos";
|
|
7
|
+
import { IOccupants } from "./occupants";
|
|
8
|
+
import { IPremisesAndManagement } from "./premisesAndManagement";
|
|
9
|
+
import { IResponsibilityOfTheTenant } from "./responsibilityOfTheTenant";
|
|
10
|
+
import { ISchedule } from "./schedule";
|
|
11
|
+
import { ISectionParty } from "./sectionParty";
|
|
12
|
+
import { IServingOfDocuments } from "./servingOfDocuments";
|
|
13
|
+
import { ISignatures } from "./signatures";
|
|
14
|
+
import { ITermOfAgreement } from "./termOfAgreement";
|
|
15
|
+
export interface ICAABResidentialTenancyAgreement extends IBaseLeaseDetails {
|
|
16
|
+
sectionParty: ISectionParty;
|
|
17
|
+
occupants: IOccupants;
|
|
18
|
+
premisesAndManagement: IPremisesAndManagement;
|
|
19
|
+
servingOfDocuments: IServingOfDocuments;
|
|
20
|
+
termOfAgreement: ITermOfAgreement;
|
|
21
|
+
amountOfRent: IAmountOfRent;
|
|
22
|
+
includedItem: IIncludedItem;
|
|
23
|
+
responsibilityOfTheTenant: IResponsibilityOfTheTenant;
|
|
24
|
+
deposit: IDeposit;
|
|
25
|
+
inspectionReport: IInspectionReport;
|
|
26
|
+
miscellaneos: IMiscellaneos;
|
|
27
|
+
signatures: ISignatures;
|
|
28
|
+
schedule: ISchedule;
|
|
29
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IAddress } from "../../address";
|
|
2
|
+
export interface IPremisesAndManagement extends IAddress {
|
|
3
|
+
id: string;
|
|
4
|
+
number_of_rooms: string;
|
|
5
|
+
tenant_mailing_address: string;
|
|
6
|
+
tenant_mailing_address_1?: string;
|
|
7
|
+
phone_number_work: string;
|
|
8
|
+
phone_number_home: string;
|
|
9
|
+
email: string;
|
|
10
|
+
cell: string;
|
|
11
|
+
emergency_contact: string;
|
|
12
|
+
phone_numbers: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface IResponsibilityOfTheTenant {
|
|
2
|
+
lawn_care: boolean;
|
|
3
|
+
late_payment_charges: boolean;
|
|
4
|
+
snow_removal: boolean;
|
|
5
|
+
returned_cheque_charges: boolean;
|
|
6
|
+
garbage_removal: boolean;
|
|
7
|
+
parking: boolean;
|
|
8
|
+
parking_spaces: string;
|
|
9
|
+
tenant_insurance: boolean;
|
|
10
|
+
additional_obligations: string;
|
|
11
|
+
additional_obligations_1?: string;
|
|
12
|
+
additional_obligations_2?: string;
|
|
13
|
+
additional_obligations_3?: string;
|
|
14
|
+
additional_obligations_4?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface ITermOfAgreement {
|
|
2
|
+
beginning_on: Date | null;
|
|
3
|
+
beginning_on_day?: string;
|
|
4
|
+
beginning_on_month?: string;
|
|
5
|
+
beginning_on_year?: string;
|
|
6
|
+
beginning_year: boolean;
|
|
7
|
+
beginning_month: boolean;
|
|
8
|
+
beginning_week: boolean;
|
|
9
|
+
rent_start: Date | null;
|
|
10
|
+
rent_start_day?: string;
|
|
11
|
+
rent_start_month?: string;
|
|
12
|
+
rent_start_year?: string;
|
|
13
|
+
rent_end: Date | null;
|
|
14
|
+
rent_end_day?: string;
|
|
15
|
+
rent_end_month?: string;
|
|
16
|
+
rent_end_year?: string;
|
|
17
|
+
}
|
package/dist/ca/index.d.ts
CHANGED
package/dist/ca/index.js
CHANGED
package/package.json
CHANGED