@royalinvest/dto 0.63.0 → 0.63.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.
|
@@ -16,6 +16,7 @@ export type TReason = {
|
|
|
16
16
|
export interface ICreateDraftCreditCheckRequest {
|
|
17
17
|
request_type: TCreditCheckInitiated;
|
|
18
18
|
bureau: TBureau;
|
|
19
|
+
screening_questionnaire_id?: string;
|
|
19
20
|
}
|
|
20
21
|
export interface ICreateDraftCreditCheckResponse {
|
|
21
22
|
request_id: string;
|
|
@@ -253,6 +254,7 @@ export interface ICreditCheckConsentTenantInfoResponse {
|
|
|
253
254
|
sender_first_name: string;
|
|
254
255
|
sender_last_name: string;
|
|
255
256
|
sender_email: string;
|
|
257
|
+
screening_questionnaire_id?: string;
|
|
256
258
|
rental_address: IAddress;
|
|
257
259
|
}
|
|
258
260
|
export interface ICreditCheckReportFileDownload {
|
package/dist/savedSignature.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { SignatureMethodType } from "./signature-party";
|
|
1
2
|
export interface ISavedSignature {
|
|
2
3
|
initials: string;
|
|
3
4
|
signature: string;
|
|
4
5
|
timestamp: string;
|
|
5
6
|
answers: SavedSignatureAnswers;
|
|
7
|
+
signatureMethod?: SignatureMethodType;
|
|
6
8
|
}
|
|
7
9
|
export type SavedSignatureAnswers = {
|
|
8
10
|
[key: string]: any;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { PartyTypeEnum } from "./enum";
|
|
2
|
-
import { SignatureMethodType } from "./signature-party";
|
|
3
2
|
export interface ISignConfirmation {
|
|
4
3
|
code: string;
|
|
5
4
|
signatureId: string;
|
|
@@ -12,5 +11,4 @@ export interface ISignConfirmation {
|
|
|
12
11
|
party_email: string;
|
|
13
12
|
party_role: PartyTypeEnum;
|
|
14
13
|
user_id?: string;
|
|
15
|
-
signatureMethod?: SignatureMethodType;
|
|
16
14
|
}
|
package/package.json
CHANGED