@royalinvest/dto 0.4.0 → 0.4.2
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/address.d.ts +9 -0
- package/dist/address.js +2 -0
- package/dist/auth.d.ts +5 -0
- package/dist/auth.js +2 -0
- package/dist/category.d.ts +4 -0
- package/dist/category.js +2 -0
- package/dist/country.d.ts +5 -0
- package/dist/country.js +2 -0
- package/dist/enum/index.d.ts +14 -0
- package/dist/enum/index.js +20 -0
- package/dist/expense.d.ts +11 -0
- package/dist/expense.js +2 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +35 -0
- package/dist/key-value.d.ts +4 -0
- package/dist/key-value.js +2 -0
- package/dist/lease-list-item.d.ts +8 -0
- package/dist/lease-list-item.js +2 -0
- package/dist/lease.d.ts +10 -0
- package/dist/lease.js +2 -0
- package/dist/login.d.ts +4 -0
- package/dist/login.js +2 -0
- package/dist/notification.d.ts +12 -0
- package/dist/notification.js +2 -0
- package/dist/property.d.ts +9 -0
- package/dist/property.js +2 -0
- package/dist/quebec-lease-dwelling/index.d.ts +20 -0
- package/dist/quebec-lease-dwelling/index.js +2 -0
- package/dist/quebec-lease-dwelling/sectionA.d.ts +16 -0
- package/dist/quebec-lease-dwelling/sectionA.js +2 -0
- package/dist/quebec-lease-dwelling/sectionB.d.ts +38 -0
- package/dist/quebec-lease-dwelling/sectionB.js +2 -0
- package/dist/quebec-lease-dwelling/sectionC.d.ts +7 -0
- package/dist/quebec-lease-dwelling/sectionC.js +2 -0
- package/dist/quebec-lease-dwelling/sectionD.d.ts +15 -0
- package/dist/quebec-lease-dwelling/sectionD.js +2 -0
- package/dist/quebec-lease-dwelling/sectionE.d.ts +26 -0
- package/dist/quebec-lease-dwelling/sectionE.js +2 -0
- package/dist/quebec-lease-dwelling/sectionF.d.ts +6 -0
- package/dist/quebec-lease-dwelling/sectionF.js +2 -0
- package/dist/quebec-lease-dwelling/sectionG.d.ts +7 -0
- package/dist/quebec-lease-dwelling/sectionG.js +2 -0
- package/dist/quebec-lease-dwelling/sectionH.d.ts +3 -0
- package/dist/quebec-lease-dwelling/sectionH.js +2 -0
- package/dist/quebec-lease-dwelling/sectionI.d.ts +3 -0
- package/dist/quebec-lease-dwelling/sectionI.js +2 -0
- package/dist/sign-up.d.ts +8 -0
- package/dist/sign-up.js +2 -0
- package/dist/sort.d.ts +1 -0
- package/dist/sort.js +2 -0
- package/dist/state.d.ts +7 -0
- package/dist/state.js +2 -0
- package/dist/template.d.ts +7 -0
- package/dist/template.js +2 -0
- package/dist/user.d.ts +6 -0
- package/dist/user.js +2 -0
- package/dist/yes-no.d.ts +4 -0
- package/dist/yes-no.js +2 -0
- package/package.json +1 -1
package/dist/address.js
ADDED
package/dist/auth.d.ts
ADDED
package/dist/auth.js
ADDED
package/dist/category.js
ADDED
package/dist/country.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum PartyTypeEnum {
|
|
2
|
+
default = "",
|
|
3
|
+
lessor = "lessor",
|
|
4
|
+
lessee = "lessee"
|
|
5
|
+
}
|
|
6
|
+
export declare enum RentTypeEnum {
|
|
7
|
+
default = "",
|
|
8
|
+
fixed = "fixed",
|
|
9
|
+
indeterminate = "indeterminate"
|
|
10
|
+
}
|
|
11
|
+
export declare enum LeaseStatusEnum {
|
|
12
|
+
draft = "draft",
|
|
13
|
+
published = "published"
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
4
|
+
var PartyTypeEnum;
|
|
5
|
+
(function (PartyTypeEnum) {
|
|
6
|
+
PartyTypeEnum["default"] = "";
|
|
7
|
+
PartyTypeEnum["lessor"] = "lessor";
|
|
8
|
+
PartyTypeEnum["lessee"] = "lessee";
|
|
9
|
+
})(PartyTypeEnum || (exports.PartyTypeEnum = PartyTypeEnum = {}));
|
|
10
|
+
var RentTypeEnum;
|
|
11
|
+
(function (RentTypeEnum) {
|
|
12
|
+
RentTypeEnum["default"] = "";
|
|
13
|
+
RentTypeEnum["fixed"] = "fixed";
|
|
14
|
+
RentTypeEnum["indeterminate"] = "indeterminate";
|
|
15
|
+
})(RentTypeEnum || (exports.RentTypeEnum = RentTypeEnum = {}));
|
|
16
|
+
var LeaseStatusEnum;
|
|
17
|
+
(function (LeaseStatusEnum) {
|
|
18
|
+
LeaseStatusEnum["draft"] = "draft";
|
|
19
|
+
LeaseStatusEnum["published"] = "published";
|
|
20
|
+
})(LeaseStatusEnum || (exports.LeaseStatusEnum = LeaseStatusEnum = {}));
|
package/dist/expense.js
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export * from "./enum";
|
|
2
|
+
export * from "./quebec-lease-dwelling";
|
|
3
|
+
export * from "./address";
|
|
4
|
+
export * from "./country";
|
|
5
|
+
export * from "./lease-list-item";
|
|
6
|
+
export * from "./lease";
|
|
7
|
+
export * from "./property";
|
|
8
|
+
export * from "./state";
|
|
9
|
+
export * from "./template";
|
|
10
|
+
export * from "./yes-no";
|
|
11
|
+
export * from "./login";
|
|
12
|
+
export * from "./sign-up";
|
|
13
|
+
export * from "./user";
|
|
14
|
+
export * from "./auth";
|
|
15
|
+
export * from "./notification";
|
|
16
|
+
export * from "./expense";
|
|
17
|
+
export * from "./sort";
|
|
18
|
+
export * from "./key-value";
|
|
19
|
+
export * from "./category";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
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("./enum"), exports);
|
|
18
|
+
__exportStar(require("./quebec-lease-dwelling"), exports);
|
|
19
|
+
__exportStar(require("./address"), exports);
|
|
20
|
+
__exportStar(require("./country"), exports);
|
|
21
|
+
__exportStar(require("./lease-list-item"), exports);
|
|
22
|
+
__exportStar(require("./lease"), exports);
|
|
23
|
+
__exportStar(require("./property"), exports);
|
|
24
|
+
__exportStar(require("./state"), exports);
|
|
25
|
+
__exportStar(require("./template"), exports);
|
|
26
|
+
__exportStar(require("./yes-no"), exports);
|
|
27
|
+
__exportStar(require("./login"), exports);
|
|
28
|
+
__exportStar(require("./sign-up"), exports);
|
|
29
|
+
__exportStar(require("./user"), exports);
|
|
30
|
+
__exportStar(require("./auth"), exports);
|
|
31
|
+
__exportStar(require("./notification"), exports);
|
|
32
|
+
__exportStar(require("./expense"), exports);
|
|
33
|
+
__exportStar(require("./sort"), exports);
|
|
34
|
+
__exportStar(require("./key-value"), exports);
|
|
35
|
+
__exportStar(require("./category"), exports);
|
package/dist/lease.d.ts
ADDED
package/dist/lease.js
ADDED
package/dist/login.d.ts
ADDED
package/dist/login.js
ADDED
package/dist/property.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { sectionA } from "./sectionA";
|
|
2
|
+
import { sectionB } from "./sectionB";
|
|
3
|
+
import { sectionC } from "./sectionC";
|
|
4
|
+
import { sectionD } from "./sectionD";
|
|
5
|
+
import { sectionE } from "./sectionE";
|
|
6
|
+
import { sectionF } from "./sectionF";
|
|
7
|
+
import { sectionG } from "./sectionG";
|
|
8
|
+
import { sectionH } from "./sectionH";
|
|
9
|
+
import { sectionI } from "./sectionI";
|
|
10
|
+
export interface Sections {
|
|
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
|
+
sectionI: sectionI;
|
|
20
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PartyTypeEnum } from "../enum";
|
|
2
|
+
import { IAddress } from "../address";
|
|
3
|
+
export interface sectionA {
|
|
4
|
+
lessor: fields[];
|
|
5
|
+
lessee: fields[];
|
|
6
|
+
represented_by: string;
|
|
7
|
+
}
|
|
8
|
+
interface fields extends IAddress {
|
|
9
|
+
id?: string;
|
|
10
|
+
name: string;
|
|
11
|
+
email: string;
|
|
12
|
+
type: PartyTypeEnum;
|
|
13
|
+
telephone: string;
|
|
14
|
+
other_telephone?: string;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { IAddress } from "../address";
|
|
2
|
+
export interface sectionB extends IAddress {
|
|
3
|
+
id?: string;
|
|
4
|
+
number_of_rooms: string;
|
|
5
|
+
residential_purposes: string;
|
|
6
|
+
specify_if_not_residential?: string;
|
|
7
|
+
divided_co_ownership: string;
|
|
8
|
+
outdoor_parking: boolean;
|
|
9
|
+
outdoor_parking_number_of_places?: string;
|
|
10
|
+
outdoor_parking_spaces?: string;
|
|
11
|
+
indoor_parking: boolean;
|
|
12
|
+
indoor_parking_number_of_places?: string;
|
|
13
|
+
indoor_parking_spaces?: string;
|
|
14
|
+
locker_storage_space: boolean;
|
|
15
|
+
specify_locker_storage_space?: string;
|
|
16
|
+
other_accessories_dependencies: string;
|
|
17
|
+
furniture_included: string;
|
|
18
|
+
tables_included: boolean;
|
|
19
|
+
tables_amount?: string;
|
|
20
|
+
chairs_included: boolean;
|
|
21
|
+
chairs_amount?: string;
|
|
22
|
+
drawers_included: boolean;
|
|
23
|
+
drawers_amount?: string;
|
|
24
|
+
couches_included: boolean;
|
|
25
|
+
couches_amount?: string;
|
|
26
|
+
armchairs_included: boolean;
|
|
27
|
+
armchairs_amount?: string;
|
|
28
|
+
beds_included: boolean;
|
|
29
|
+
beds_amount?: string;
|
|
30
|
+
beds_size?: string;
|
|
31
|
+
other_furniture_info?: string;
|
|
32
|
+
stove_included: boolean;
|
|
33
|
+
microwave_included: boolean;
|
|
34
|
+
dishwasher_included: boolean;
|
|
35
|
+
fridge_included: boolean;
|
|
36
|
+
washer_included: boolean;
|
|
37
|
+
dryer_included: boolean;
|
|
38
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface sectionD {
|
|
2
|
+
rent_amount: string;
|
|
3
|
+
service_amount: string;
|
|
4
|
+
total_rent_amount: string;
|
|
5
|
+
rent_frequency: string;
|
|
6
|
+
subsidy_program: string;
|
|
7
|
+
subsidy_program_specify: string;
|
|
8
|
+
first_payment_date: Date | null;
|
|
9
|
+
rent_paid_first_day_of: string;
|
|
10
|
+
rent_paid_specify: string;
|
|
11
|
+
rent_payment_method: string;
|
|
12
|
+
rent_payment_other_specify: string;
|
|
13
|
+
post_dated_cheques: string;
|
|
14
|
+
place_of_payment: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface sectionE {
|
|
2
|
+
by_laws_immovable_given: Date | null;
|
|
3
|
+
by_laws_immovable_divided_coownership_given: Date | null;
|
|
4
|
+
work_repaire_before_lease: string;
|
|
5
|
+
work_repaire_during_lease: string;
|
|
6
|
+
janitorial_services: string;
|
|
7
|
+
janitor_name: string;
|
|
8
|
+
janitor_email: string;
|
|
9
|
+
janitor_telephone: string;
|
|
10
|
+
janitor_other_telephone: string;
|
|
11
|
+
heating: string;
|
|
12
|
+
heating_type: string[];
|
|
13
|
+
other_than_for_heating_electracity: string;
|
|
14
|
+
other_than_for_heating_gas: string;
|
|
15
|
+
hot_water_heater_rental_fee: string;
|
|
16
|
+
hot_water: string;
|
|
17
|
+
water_consuption_tax: string;
|
|
18
|
+
snow_removal_parking: string;
|
|
19
|
+
snow_removal_balcony: string;
|
|
20
|
+
snow_removal_entrance_driveway: string;
|
|
21
|
+
snow_removal_stairs: string;
|
|
22
|
+
right_access_land: string;
|
|
23
|
+
right_access_land_specify: string;
|
|
24
|
+
keep_animal: string;
|
|
25
|
+
keep_animal_specify: string;
|
|
26
|
+
}
|
package/dist/sign-up.js
ADDED
package/dist/sort.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type SortType = "asc" | "desc";
|
package/dist/sort.js
ADDED
package/dist/state.d.ts
ADDED
package/dist/state.js
ADDED
package/dist/template.js
ADDED
package/dist/user.d.ts
ADDED
package/dist/user.js
ADDED
package/dist/yes-no.d.ts
ADDED
package/dist/yes-no.js
ADDED