@royalinvest/dto 0.71.21 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.71.21",
3
+ "version": "0.71.22",
4
4
  "description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",