@royalinvest/dto 0.46.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.
Files changed (36) hide show
  1. package/dist/ca/ab/amountOfRent.d.ts +11 -0
  2. package/dist/ca/ab/amountOfRent.js +2 -0
  3. package/dist/ca/ab/deposit.d.ts +11 -0
  4. package/dist/ca/ab/deposit.js +2 -0
  5. package/dist/ca/ab/includedItem.d.ts +24 -0
  6. package/dist/ca/ab/includedItem.js +2 -0
  7. package/dist/ca/ab/index.d.ts +29 -0
  8. package/dist/ca/ab/index.js +2 -0
  9. package/dist/ca/ab/inspectionReport.d.ts +4 -0
  10. package/dist/ca/ab/inspectionReport.js +2 -0
  11. package/dist/ca/ab/miscellaneos.d.ts +3 -0
  12. package/dist/ca/ab/miscellaneos.js +2 -0
  13. package/dist/ca/ab/occupants.d.ts +5 -0
  14. package/dist/ca/ab/occupants.js +2 -0
  15. package/dist/ca/ab/premisesAndManagement.d.ts +13 -0
  16. package/dist/ca/ab/premisesAndManagement.js +2 -0
  17. package/dist/ca/ab/responsibilityOfTheTenant.d.ts +15 -0
  18. package/dist/ca/ab/responsibilityOfTheTenant.js +2 -0
  19. package/dist/ca/ab/schedule.d.ts +3 -0
  20. package/dist/ca/ab/schedule.js +2 -0
  21. package/dist/ca/ab/sectionParty.d.ts +11 -0
  22. package/dist/ca/ab/sectionParty.js +2 -0
  23. package/dist/ca/ab/servingOfDocuments.d.ts +5 -0
  24. package/dist/ca/ab/servingOfDocuments.js +2 -0
  25. package/dist/ca/ab/signatures.d.ts +3 -0
  26. package/dist/ca/ab/signatures.js +2 -0
  27. package/dist/ca/ab/termOfAgreement.d.ts +17 -0
  28. package/dist/ca/ab/termOfAgreement.js +2 -0
  29. package/dist/ca/index.d.ts +1 -0
  30. package/dist/ca/index.js +1 -0
  31. package/dist/contractUsage.d.ts +2 -1
  32. package/dist/index.d.ts +1 -0
  33. package/dist/index.js +1 -0
  34. package/dist/signature-confirmation.d.ts +9 -0
  35. package/dist/signature-confirmation.js +2 -0
  36. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ export interface IAmountOfRent {
2
+ tenant_pay: string;
3
+ tenant_pay_mounth: string;
4
+ cash: boolean;
5
+ cheque: boolean;
6
+ other: boolean;
7
+ other_text: string;
8
+ rent_is_due_on: string;
9
+ day_of_each: string;
10
+ day_of_each_1?: string;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface IInspectionReport {
2
+ report_attached: boolean;
3
+ report_not_attached: boolean;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ export interface IMiscellaneos {
2
+ schedule: string;
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface IOccupants {
2
+ name_all_adults: string;
3
+ name_all_adults_1?: string;
4
+ type_of_property: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ export interface ISchedule {
2
+ terms_note: string;
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ import { field } from "../../field";
2
+ export interface ISectionParty {
3
+ lessor: (field & {
4
+ province: string;
5
+ work_telephone: string;
6
+ })[];
7
+ lessee: (field & {
8
+ province: string;
9
+ work_telephone: string;
10
+ })[];
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface IServingOfDocuments {
2
+ the_landlord: boolean;
3
+ the_agent: boolean;
4
+ the_superintendent: boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ export interface ISignatures {
2
+ other: string;
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
1
  export * from "./bc/sections";
2
2
  export * from "./on";
3
3
  export * from "./mb";
4
+ export * from "./ab";
package/dist/ca/index.js CHANGED
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./bc/sections"), exports);
18
18
  __exportStar(require("./on"), exports);
19
19
  __exportStar(require("./mb"), exports);
20
+ __exportStar(require("./ab"), exports);
@@ -1,6 +1,7 @@
1
1
  export interface IPaginatedResponse<T> {
2
2
  total_count: number;
3
- next_cursor: string;
3
+ next_cursor?: string;
4
+ prev_cursor?: string;
4
5
  data: T[];
5
6
  }
6
7
  export interface IContractUsage {
package/dist/index.d.ts CHANGED
@@ -64,3 +64,4 @@ export * from "./template";
64
64
  export * from "./user";
65
65
  export * from "./yes-no";
66
66
  export * from "./contractUsage";
67
+ export * from "./signature-confirmation";
package/dist/index.js CHANGED
@@ -80,3 +80,4 @@ __exportStar(require("./template"), exports);
80
80
  __exportStar(require("./user"), exports);
81
81
  __exportStar(require("./yes-no"), exports);
82
82
  __exportStar(require("./contractUsage"), exports);
83
+ __exportStar(require("./signature-confirmation"), exports);
@@ -0,0 +1,9 @@
1
+ export interface ISignConfirmation {
2
+ code: string;
3
+ signatureId: string;
4
+ ipAddress: string;
5
+ documentName: string;
6
+ date: string;
7
+ creatorName: string;
8
+ creatorEmail: string;
9
+ }
@@ -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.46.0",
3
+ "version": "0.48.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",