@royalinvest/dto 0.41.2 → 0.42.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.
@@ -0,0 +1,113 @@
1
+ import { IAddress } from "../../address";
2
+ import { field } from "../../field";
3
+ import { IBaseLeaseDetails } from "../../baseLeaseDetails";
4
+ export interface ICABCResidentialTenancyAgreement extends IBaseLeaseDetails {
5
+ sections: sections;
6
+ }
7
+ export interface sections extends IAddress {
8
+ rtb_26: boolean;
9
+ lessor: (field & {
10
+ last_name: string;
11
+ })[];
12
+ lessee: (field & {
13
+ last_name: string;
14
+ })[];
15
+ address_id?: string;
16
+ no: string;
17
+ apt: string;
18
+ street: string;
19
+ city: string;
20
+ province: string;
21
+ postal: string;
22
+ landlord: boolean;
23
+ landlord_agent: boolean;
24
+ service_unit: string;
25
+ service_street: string;
26
+ service_city: string;
27
+ service_postal: string;
28
+ service_province: string;
29
+ service_daytime_phone_number: string;
30
+ service_other_phone_number: string;
31
+ service_fax_number_for_service: string;
32
+ agreement_start: Date | null;
33
+ agreement_start_day?: string;
34
+ agreement_start_month?: string;
35
+ agreement_start_year?: string;
36
+ check_a: boolean;
37
+ check_b: boolean;
38
+ weekly: boolean;
39
+ bi_weekly: boolean;
40
+ another_periodic_other: boolean;
41
+ another_periodic_other_text: string;
42
+ check_c: boolean;
43
+ fixed_term_ending: Date | null;
44
+ fixed_term_ending_day?: string;
45
+ fixed_term_ending_month?: string;
46
+ fixed_term_ending_year?: string;
47
+ check_d: boolean;
48
+ check_e: boolean;
49
+ reason_tenant_must_vacate: string;
50
+ section_number: string;
51
+ rent_pay: string;
52
+ rent_pay_day: boolean;
53
+ rent_pay_week: boolean;
54
+ rent_pay_month: boolean;
55
+ rental_period: string;
56
+ rental_period_day: boolean;
57
+ rental_period_week: boolean;
58
+ rental_period_month: boolean;
59
+ water: boolean;
60
+ cablevision: boolean;
61
+ electricity: boolean;
62
+ internet: boolean;
63
+ heat: boolean;
64
+ gas: boolean;
65
+ sewage_disposal: boolean;
66
+ snow_removal: boolean;
67
+ storage: boolean;
68
+ recreation_facilities: boolean;
69
+ garbage_collection: boolean;
70
+ recycling_services: boolean;
71
+ kitchen_scrap_collection: boolean;
72
+ laundry: boolean;
73
+ free_laundry: boolean;
74
+ refrigerator: boolean;
75
+ dishwasher: boolean;
76
+ stove_and_oven: boolean;
77
+ window_coverings: boolean;
78
+ furniture: boolean;
79
+ carpets: boolean;
80
+ vehicles_parking: boolean;
81
+ vehicles_parking_text: string;
82
+ other_1: boolean;
83
+ other_1_text: string;
84
+ other_2: boolean;
85
+ other_2_text: string;
86
+ other_3: boolean;
87
+ other_3_text: string;
88
+ additional_information: boolean;
89
+ additional_information_text: string;
90
+ security_deposit: string;
91
+ security_deposit_date: Date | null;
92
+ security_deposit_date_day?: string;
93
+ security_deposit_date_month?: string;
94
+ security_deposit_date_year?: string;
95
+ not_applicable: boolean;
96
+ damage_deposit: string;
97
+ damage_deposit_date: Date | null;
98
+ damage_deposit_date_day?: string;
99
+ damage_deposit_date_month?: string;
100
+ damage_deposit_date_year?: string;
101
+ is_addendum: boolean;
102
+ is_not_addendum: boolean;
103
+ number_pages: string;
104
+ number_additional: string;
105
+ reply_lessor_1_last_name: string;
106
+ reply_lessor_1_name: string;
107
+ reply_lessor_2_last_name: string;
108
+ reply_lessor_2_name: string;
109
+ reply_lessee_1_last_name: string;
110
+ reply_lessee_1_name: string;
111
+ reply_lessee_2_last_name: string;
112
+ reply_lessee_2_name: string;
113
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from "./bc/sections";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./bc/sections"), exports);
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export * from "./address";
2
2
  export * from "./auth";
3
3
  export * from "./balance";
4
4
  export * from "./base64Image";
5
+ export * from "./ca";
5
6
  export * from "./category";
6
7
  export * from "./certificateFormData";
7
8
  export * from "./checkout";
package/dist/index.js CHANGED
@@ -18,6 +18,7 @@ __exportStar(require("./address"), exports);
18
18
  __exportStar(require("./auth"), exports);
19
19
  __exportStar(require("./balance"), exports);
20
20
  __exportStar(require("./base64Image"), exports);
21
+ __exportStar(require("./ca"), exports);
21
22
  __exportStar(require("./category"), exports);
22
23
  __exportStar(require("./certificateFormData"), exports);
23
24
  __exportStar(require("./checkout"), exports);
package/dist/state.d.ts CHANGED
@@ -1,5 +1,7 @@
1
+ import { ICountry } from "./country";
1
2
  export interface IState {
2
3
  id?: string;
3
4
  name: string;
4
5
  abbrev: string;
6
+ country?: ICountry;
5
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.41.2",
3
+ "version": "0.42.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",