@royalinvest/dto 0.71.13 → 0.71.22
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { IAddress } from "../address";
|
|
2
2
|
import { IAnsweredQuestionnaire } from "./screeningQuestionnaireAnswered";
|
|
3
3
|
import { LocaleType } from "../types";
|
|
4
|
+
import { CurrencyEnum, RentCycleEnum } from "../enum";
|
|
4
5
|
export type TBureau = "transunion" | "equifax";
|
|
5
6
|
export type TCreditCheckStatus = "pass" | "fail" | "review" | "not_found";
|
|
6
7
|
export type TCreditScoreTier = "a_plus" | "a" | "b_plus" | "b" | "c_plus" | "c" | "d" | "f";
|
|
@@ -99,6 +100,9 @@ export interface ICreditCheckRequestList {
|
|
|
99
100
|
service_type: TScreeningServiceType;
|
|
100
101
|
created_at?: Date;
|
|
101
102
|
updated_at?: Date;
|
|
103
|
+
rent_amount_minor?: string;
|
|
104
|
+
rent_cycle?: RentCycleEnum;
|
|
105
|
+
currency?: CurrencyEnum;
|
|
102
106
|
}
|
|
103
107
|
export interface ISubjectAddress extends IAddress {
|
|
104
108
|
isCurrent: boolean;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RentCycleEnum = void 0;
|
|
4
|
+
var RentCycleEnum;
|
|
5
|
+
(function (RentCycleEnum) {
|
|
6
|
+
RentCycleEnum["DAILY"] = "daily";
|
|
7
|
+
RentCycleEnum["MONTHLY"] = "monthly";
|
|
8
|
+
RentCycleEnum["YEARLY"] = "yearly";
|
|
9
|
+
})(RentCycleEnum || (exports.RentCycleEnum = RentCycleEnum = {}));
|
package/dist/enum/index.d.ts
CHANGED
package/dist/enum/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.UnitMeasurementEnum = exports.BulkPurchaseSourceTypeEnum = exports.TextAlignmentEnum = exports.LeaseDurationEnum = exports.LeaseTermTypeEnum = exports.LeaseCategoryEnum = exports.LeaseTypeEnum = exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
18
18
|
__exportStar(require("./country"), exports);
|
|
19
19
|
__exportStar(require("./currency"), exports);
|
|
20
|
+
__exportStar(require("./cycle"), exports);
|
|
20
21
|
var PartyTypeEnum;
|
|
21
22
|
(function (PartyTypeEnum) {
|
|
22
23
|
PartyTypeEnum["default"] = "";
|
package/dist/propertyUnit.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
import { CurrencyEnum } from "./enum";
|
|
2
|
+
import { RentCycleEnum } from "./enum/cycle";
|
|
1
3
|
export interface IPropertyUnit {
|
|
2
4
|
id?: string;
|
|
3
5
|
unit_number: string;
|
|
4
6
|
number_of_rooms?: string;
|
|
7
|
+
rent_amount_minor?: string;
|
|
8
|
+
rent_cycle?: RentCycleEnum;
|
|
9
|
+
currency?: CurrencyEnum;
|
|
5
10
|
}
|
package/package.json
CHANGED