@paydala-payments/models 0.4.84 → 0.4.86
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/queries_result.d.ts +22 -21
- package/package.json +1 -1
package/dist/queries_result.d.ts
CHANGED
@@ -1,29 +1,30 @@
|
|
1
1
|
import { KYCInfo } from "./kyc_info";
|
2
2
|
export interface KYCQuery extends Omit<KYCInfo, "address"> {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
address: string;
|
4
|
+
addressStreet: string;
|
5
|
+
addressCity: string;
|
6
|
+
addressState: string;
|
7
|
+
addressZip: string;
|
8
8
|
}
|
9
9
|
type KYCKey = keyof KYCQuery;
|
10
10
|
export interface QueriesResult {
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
};
|
20
|
-
policyScore: string;
|
21
|
-
status: "pass" | "review" | "reject";
|
22
|
-
policyStatus: "pass" | "reject";
|
23
|
-
created: string;
|
24
|
-
compliance?: {
|
25
|
-
success: false;
|
26
|
-
message: string;
|
11
|
+
active: boolean;
|
12
|
+
id: string;
|
13
|
+
query: string;
|
14
|
+
verified: Partial<KYCInfo>;
|
15
|
+
error?: {
|
16
|
+
[key in KYCKey]?: {
|
17
|
+
updateValidation?: { max: string };
|
18
|
+
message: string;
|
27
19
|
};
|
20
|
+
};
|
21
|
+
policyScore: string;
|
22
|
+
status: "pass" | "review" | "reject";
|
23
|
+
policyStatus: "pass" | "reject";
|
24
|
+
created: string;
|
25
|
+
compliance?: {
|
26
|
+
success: false;
|
27
|
+
message: string;
|
28
|
+
};
|
28
29
|
}
|
29
30
|
export {};
|