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.
Files changed (2) hide show
  1. package/dist/types.d.ts +7 -1
  2. 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<boolean>;
168
+ verifyKyc(): Promise<KycVerified>;
163
169
  }
164
170
 
165
171
  declare class Veriff {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lombongo-api-client",
3
- "version": "0.0.101",
3
+ "version": "0.0.102",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/esm/base.js",