lombongo-api-client 0.0.101 → 0.0.102
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/types.d.ts +7 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -156,10 +156,16 @@ declare class Transactions {
|
|
|
156
156
|
getFXConfig(originalCurrencyId: number, finalCurrencyId: number, amount: number): Promise<AxiosResponse>;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
+
declare enum KycVerified {
|
|
160
|
+
NOT_VERIFIED = "NOT_VERIFIED",
|
|
161
|
+
VERIFICATION_PENDING = "VERIFICATION_PENDING",
|
|
162
|
+
VERIFICATION_FAILED = "VERIFICATION_FAILED",
|
|
163
|
+
VERIFIED = "VERIFIED"
|
|
164
|
+
}
|
|
159
165
|
declare class Users {
|
|
160
166
|
private client;
|
|
161
167
|
constructor(client: ApiClient);
|
|
162
|
-
verifyKyc(): Promise<
|
|
168
|
+
verifyKyc(): Promise<KycVerified>;
|
|
163
169
|
}
|
|
164
170
|
|
|
165
171
|
declare class Veriff {
|