vesant-sdk 1.5.0 → 1.6.0
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/README.md +5 -3
- package/dist/{client-3cBb_Pp-.d.ts → client-Bd9a5o0C.d.ts} +11 -3
- package/dist/{client-DKqyESgT.d.mts → client-C4g596fI.d.mts} +11 -3
- package/dist/{client-BQRONu8q.d.mts → client-CIon-bGS.d.mts} +1 -1
- package/dist/{client-BQRONu8q.d.ts → client-CIon-bGS.d.ts} +1 -1
- package/dist/compliance/index.d.mts +18 -5
- package/dist/compliance/index.d.ts +18 -5
- package/dist/compliance/index.js +202 -38
- package/dist/compliance/index.js.map +1 -1
- package/dist/compliance/index.mjs +202 -38
- package/dist/compliance/index.mjs.map +1 -1
- package/dist/decisions/index.d.mts +2 -2
- package/dist/decisions/index.d.ts +2 -2
- package/dist/decisions/index.js +3 -1
- package/dist/decisions/index.js.map +1 -1
- package/dist/decisions/index.mjs +3 -1
- package/dist/decisions/index.mjs.map +1 -1
- package/dist/geolocation/index.d.mts +4 -4
- package/dist/geolocation/index.d.ts +4 -4
- package/dist/geolocation/index.js +3 -1
- package/dist/geolocation/index.js.map +1 -1
- package/dist/geolocation/index.mjs +3 -1
- package/dist/geolocation/index.mjs.map +1 -1
- package/dist/index.d.mts +537 -9
- package/dist/index.d.ts +537 -9
- package/dist/index.js +473 -147
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +472 -145
- package/dist/index.mjs.map +1 -1
- package/dist/kyc/core.d.mts +3 -3
- package/dist/kyc/core.d.ts +3 -3
- package/dist/kyc/core.js +3 -1
- package/dist/kyc/core.js.map +1 -1
- package/dist/kyc/core.mjs +3 -1
- package/dist/kyc/core.mjs.map +1 -1
- package/dist/kyc/index.d.mts +7 -3
- package/dist/kyc/index.d.ts +7 -3
- package/dist/kyc/index.js +3 -1
- package/dist/kyc/index.js.map +1 -1
- package/dist/kyc/index.mjs +3 -1
- package/dist/kyc/index.mjs.map +1 -1
- package/dist/react.d.mts +4 -4
- package/dist/react.d.ts +4 -4
- package/dist/react.js +1 -1
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +1 -1
- package/dist/react.mjs.map +1 -1
- package/dist/risk-profile/index.d.mts +4 -4
- package/dist/risk-profile/index.d.ts +4 -4
- package/dist/risk-profile/index.js +3 -1
- package/dist/risk-profile/index.js.map +1 -1
- package/dist/risk-profile/index.mjs +3 -1
- package/dist/risk-profile/index.mjs.map +1 -1
- package/dist/scores/index.d.mts +2 -2
- package/dist/scores/index.d.ts +2 -2
- package/dist/scores/index.js +3 -1
- package/dist/scores/index.js.map +1 -1
- package/dist/scores/index.mjs +3 -1
- package/dist/scores/index.mjs.map +1 -1
- package/dist/{types-_hsTA3Ez.d.mts → types-1RzYeSal.d.mts} +1 -1
- package/dist/{types-B1OzEQR3.d.mts → types-B4Ezqo7V.d.mts} +1 -1
- package/dist/{types-B1OzEQR3.d.ts → types-B4Ezqo7V.d.ts} +1 -1
- package/dist/{types-BnL66DB3.d.ts → types-X5Md_dD_.d.ts} +1 -1
- package/dist/webhooks/index.d.mts +1 -1
- package/dist/webhooks/index.d.ts +1 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -316,14 +316,16 @@ interface ComplianceClientConfig {
|
|
|
316
316
|
|
|
317
317
|
| Method | Description |
|
|
318
318
|
|--------|-------------|
|
|
319
|
-
| `verifyIP(request)` | Verify IP address and check compliance |
|
|
319
|
+
| `verifyIP(request)` | Verify IP address and check compliance (**use this for allowed/blocked decisions**) |
|
|
320
320
|
| `checkCompliance(countryISO)` | Check jurisdiction compliance |
|
|
321
|
-
| `validateCipherText(cipherText, userId, eventType)` | Validate device fingerprint |
|
|
322
|
-
| `validateAndVerify(cipherText, ip, userId, eventType)` | Combined cipherText + IP verification |
|
|
321
|
+
| `validateCipherText(cipherText, userId, eventType)` | Validate device fingerprint integrity (does **not** check jurisdiction rules) |
|
|
322
|
+
| `validateAndVerify(cipherText, ip, userId, eventType)` | Combined cipherText validation + IP verification |
|
|
323
323
|
| `getGPSConfig()` | Get GPS requirement config per event type |
|
|
324
324
|
| `createLocationRequest(request)` | Create a live location request |
|
|
325
325
|
| `captureLocation(token, capture)` | Submit location capture (customer-facing) |
|
|
326
326
|
|
|
327
|
+
> **Which API should I use?** For registration, login, and transaction flows, use `ComplianceClient` methods (`verifyAtRegistration`, `verifyAtLogin`, `verifyAtTransaction`). These orchestrate geolocation + risk profiling and return a single `allowed` decision. Only use `GeolocationClient` directly if you need low-level access to individual APIs.
|
|
328
|
+
|
|
327
329
|
### RiskProfileClient
|
|
328
330
|
|
|
329
331
|
| Method | Description |
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as Logger, B as BaseClient, R as RequestOptions } from './client-
|
|
2
|
-
import { P as PaginationParams } from './types-
|
|
1
|
+
import { L as Logger, B as BaseClient, R as RequestOptions } from './client-CIon-bGS.js';
|
|
2
|
+
import { P as PaginationParams } from './types-B4Ezqo7V.js';
|
|
3
3
|
|
|
4
4
|
interface DeviceFingerprintRequest {
|
|
5
5
|
device_id: string;
|
|
@@ -295,6 +295,8 @@ interface LocationVerification {
|
|
|
295
295
|
geofence_evaluation?: GeofenceEvaluation;
|
|
296
296
|
device_trust?: DeviceTrustResult;
|
|
297
297
|
record_id: string;
|
|
298
|
+
/** Whether GPS verification is required for this event type (based on tenant config) */
|
|
299
|
+
gps_required?: boolean;
|
|
298
300
|
}
|
|
299
301
|
interface ComplianceCheckResponse {
|
|
300
302
|
jurisdiction?: JurisdictionConfig;
|
|
@@ -428,6 +430,10 @@ interface GeolocationRecord {
|
|
|
428
430
|
postal_code?: string;
|
|
429
431
|
latitude: number;
|
|
430
432
|
longitude: number;
|
|
433
|
+
/** Source of the coordinates: "gps" when device GPS was provided, "ip" when derived from IP lookup */
|
|
434
|
+
position_source?: 'gps' | 'ip';
|
|
435
|
+
/** GPS accuracy in meters (only present when position_source is "gps") */
|
|
436
|
+
gps_accuracy?: number;
|
|
431
437
|
timezone?: string;
|
|
432
438
|
is_vpn: boolean;
|
|
433
439
|
is_proxy: boolean;
|
|
@@ -454,6 +460,8 @@ interface GeolocationConfigResponse {
|
|
|
454
460
|
registration: boolean;
|
|
455
461
|
transaction: boolean;
|
|
456
462
|
};
|
|
463
|
+
/** When true, GPS-verified location overrides anonymizer-based blocking */
|
|
464
|
+
trust_gps_over_anonymizer: boolean;
|
|
457
465
|
/** Public signing key (pk_) for client-side HMAC signing */
|
|
458
466
|
signing_key?: string;
|
|
459
467
|
}
|
|
@@ -1002,4 +1010,4 @@ declare class GeolocationClient extends BaseClient {
|
|
|
1002
1010
|
generateCipherText(options: Omit<CipherTextOptions, 'apiKey' | 'signingKey'>, gpsConfig?: GeolocationConfigResponse): Promise<CipherTextResult>;
|
|
1003
1011
|
}
|
|
1004
1012
|
|
|
1005
|
-
export { type
|
|
1013
|
+
export { type WiFiNetwork as $, type AlertStatus as A, type GeofenceAction as B, type CipherTextOptions as C, type DeviceFingerprintRequest as D, type GeofenceRule as E, type CreateGeofenceRuleRequest as F, GeolocationClient as G, type UpdateGeofenceRuleRequest as H, type UpdateDeviceTrustRequest as I, type JurisdictionConfig as J, type GeolocationRecord as K, type LocationVerification as L, type APIError as M, type GeolocationConfigResponse as N, type GeolocationClientConfig as O, type UseAlertsOptions as P, type UseAlertsResult as Q, type LocationRequestStatus as R, type LocationRequestChannel as S, type LocationRequest as T, type UseGeolocationOptions as U, type ValidateCipherTextRequest as V, type CreateLocationRequestRequest as W, type LocationRequestResult as X, type LocationRequestFilters as Y, type LocationRequestListResponse as Z, type ResendLocationRequestRequest as _, type UseGeolocationResult as a, type LocationCaptureRequest as a0, type LocationShareInfo as a1, type LocationCaptureResponse as a2, type UseLocationRequestsOptions as b, type UseLocationRequestsResult as c, type UseLocationCaptureOptions as d, type UseLocationCaptureResult as e, type CipherTextResult as f, type CipherTextPayload as g, type CipherTextReason as h, type DecryptedCipherText as i, type CipherTextCustomerData as j, type ValidateCipherTextResponse as k, type VerifyIPRequest as l, type GeoIPResult as m, type GeofenceEvaluation as n, type DeviceFingerprint as o, type DeviceTrustResult as p, type ComplianceCheckResponse as q, type AlertSeverity as r, type AlertType as s, type GeolocationAlert as t, type AlertFilters as u, type AlertListResponse as v, type DashboardMetrics as w, type CreateJurisdictionRequest as x, type UpdateJurisdictionRequest as y, type GeofenceRuleType as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as Logger, B as BaseClient, R as RequestOptions } from './client-
|
|
2
|
-
import { P as PaginationParams } from './types-
|
|
1
|
+
import { L as Logger, B as BaseClient, R as RequestOptions } from './client-CIon-bGS.mjs';
|
|
2
|
+
import { P as PaginationParams } from './types-B4Ezqo7V.mjs';
|
|
3
3
|
|
|
4
4
|
interface DeviceFingerprintRequest {
|
|
5
5
|
device_id: string;
|
|
@@ -295,6 +295,8 @@ interface LocationVerification {
|
|
|
295
295
|
geofence_evaluation?: GeofenceEvaluation;
|
|
296
296
|
device_trust?: DeviceTrustResult;
|
|
297
297
|
record_id: string;
|
|
298
|
+
/** Whether GPS verification is required for this event type (based on tenant config) */
|
|
299
|
+
gps_required?: boolean;
|
|
298
300
|
}
|
|
299
301
|
interface ComplianceCheckResponse {
|
|
300
302
|
jurisdiction?: JurisdictionConfig;
|
|
@@ -428,6 +430,10 @@ interface GeolocationRecord {
|
|
|
428
430
|
postal_code?: string;
|
|
429
431
|
latitude: number;
|
|
430
432
|
longitude: number;
|
|
433
|
+
/** Source of the coordinates: "gps" when device GPS was provided, "ip" when derived from IP lookup */
|
|
434
|
+
position_source?: 'gps' | 'ip';
|
|
435
|
+
/** GPS accuracy in meters (only present when position_source is "gps") */
|
|
436
|
+
gps_accuracy?: number;
|
|
431
437
|
timezone?: string;
|
|
432
438
|
is_vpn: boolean;
|
|
433
439
|
is_proxy: boolean;
|
|
@@ -454,6 +460,8 @@ interface GeolocationConfigResponse {
|
|
|
454
460
|
registration: boolean;
|
|
455
461
|
transaction: boolean;
|
|
456
462
|
};
|
|
463
|
+
/** When true, GPS-verified location overrides anonymizer-based blocking */
|
|
464
|
+
trust_gps_over_anonymizer: boolean;
|
|
457
465
|
/** Public signing key (pk_) for client-side HMAC signing */
|
|
458
466
|
signing_key?: string;
|
|
459
467
|
}
|
|
@@ -1002,4 +1010,4 @@ declare class GeolocationClient extends BaseClient {
|
|
|
1002
1010
|
generateCipherText(options: Omit<CipherTextOptions, 'apiKey' | 'signingKey'>, gpsConfig?: GeolocationConfigResponse): Promise<CipherTextResult>;
|
|
1003
1011
|
}
|
|
1004
1012
|
|
|
1005
|
-
export { type
|
|
1013
|
+
export { type WiFiNetwork as $, type AlertStatus as A, type GeofenceAction as B, type CipherTextOptions as C, type DeviceFingerprintRequest as D, type GeofenceRule as E, type CreateGeofenceRuleRequest as F, GeolocationClient as G, type UpdateGeofenceRuleRequest as H, type UpdateDeviceTrustRequest as I, type JurisdictionConfig as J, type GeolocationRecord as K, type LocationVerification as L, type APIError as M, type GeolocationConfigResponse as N, type GeolocationClientConfig as O, type UseAlertsOptions as P, type UseAlertsResult as Q, type LocationRequestStatus as R, type LocationRequestChannel as S, type LocationRequest as T, type UseGeolocationOptions as U, type ValidateCipherTextRequest as V, type CreateLocationRequestRequest as W, type LocationRequestResult as X, type LocationRequestFilters as Y, type LocationRequestListResponse as Z, type ResendLocationRequestRequest as _, type UseGeolocationResult as a, type LocationCaptureRequest as a0, type LocationShareInfo as a1, type LocationCaptureResponse as a2, type UseLocationRequestsOptions as b, type UseLocationRequestsResult as c, type UseLocationCaptureOptions as d, type UseLocationCaptureResult as e, type CipherTextResult as f, type CipherTextPayload as g, type CipherTextReason as h, type DecryptedCipherText as i, type CipherTextCustomerData as j, type ValidateCipherTextResponse as k, type VerifyIPRequest as l, type GeoIPResult as m, type GeofenceEvaluation as n, type DeviceFingerprint as o, type DeviceTrustResult as p, type ComplianceCheckResponse as q, type AlertSeverity as r, type AlertType as s, type GeolocationAlert as t, type AlertFilters as u, type AlertListResponse as v, type DashboardMetrics as w, type CreateJurisdictionRequest as x, type UpdateJurisdictionRequest as y, type GeofenceRuleType as z };
|
|
@@ -235,4 +235,4 @@ declare abstract class BaseClient {
|
|
|
235
235
|
}>;
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
-
export { BaseClient as B, type CircuitBreakerConfig as C, type Logger as L, type RequestOptions as R, type VesantConfig as V, type
|
|
238
|
+
export { BaseClient as B, type CircuitBreakerConfig as C, type Logger as L, type RequestOptions as R, type VesantConfig as V, type BaseClientConfig as a, type RequestInterceptor as b, type RequiredVesantConfig as c, type CGSConfig as d, type RequiredCGSConfig as e, type RequiredBaseClientConfig as f, type CircuitBreakerState as g, type CircuitBreakerStatus as h, CircuitBreaker as i, type RateLimitStatus as j, RateLimitTracker as k };
|
|
@@ -235,4 +235,4 @@ declare abstract class BaseClient {
|
|
|
235
235
|
}>;
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
-
export { BaseClient as B, type CircuitBreakerConfig as C, type Logger as L, type RequestOptions as R, type VesantConfig as V, type
|
|
238
|
+
export { BaseClient as B, type CircuitBreakerConfig as C, type Logger as L, type RequestOptions as R, type VesantConfig as V, type BaseClientConfig as a, type RequestInterceptor as b, type RequiredVesantConfig as c, type CGSConfig as d, type RequiredCGSConfig as e, type RequiredBaseClientConfig as f, type CircuitBreakerState as g, type CircuitBreakerStatus as h, CircuitBreaker as i, type RateLimitStatus as j, RateLimitTracker as k };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { D as DeviceFingerprintRequest, L as LocationVerification,
|
|
2
|
-
export {
|
|
1
|
+
import { D as DeviceFingerprintRequest, L as LocationVerification, k as ValidateCipherTextResponse, T as LocationRequest, G as GeolocationClient, Y as LocationRequestFilters, Z as LocationRequestListResponse } from '../client-C4g596fI.mjs';
|
|
2
|
+
export { W as CreateLocationRequestRequest, a0 as LocationCaptureRequest, a2 as LocationCaptureResponse, S as LocationRequestChannel, X as LocationRequestResult, R as LocationRequestStatus, a1 as LocationShareInfo, _ as ResendLocationRequestRequest } from '../client-C4g596fI.mjs';
|
|
3
3
|
import { RiskProfileClient } from '../risk-profile/index.mjs';
|
|
4
|
-
import { V as VesantConfig, R as RequestOptions } from '../client-
|
|
5
|
-
import { C as CustomerProfile } from '../types-
|
|
6
|
-
import { E as EntityType, P as PaginationParams } from '../types-
|
|
4
|
+
import { V as VesantConfig, R as RequestOptions } from '../client-CIon-bGS.mjs';
|
|
5
|
+
import { C as CustomerProfile } from '../types-1RzYeSal.mjs';
|
|
6
|
+
import { E as EntityType, P as PaginationParams } from '../types-B4Ezqo7V.mjs';
|
|
7
7
|
|
|
8
8
|
interface RegistrationVerificationRequest {
|
|
9
9
|
customerId: string;
|
|
@@ -15,6 +15,7 @@ interface RegistrationVerificationRequest {
|
|
|
15
15
|
entityType?: EntityType;
|
|
16
16
|
ipAddress: string;
|
|
17
17
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
18
|
+
cipherText?: string;
|
|
18
19
|
metadata?: Record<string, unknown>;
|
|
19
20
|
}
|
|
20
21
|
interface RegistrationVerificationResponse {
|
|
@@ -25,11 +26,13 @@ interface RegistrationVerificationResponse {
|
|
|
25
26
|
requiresEDD: boolean;
|
|
26
27
|
blockReasons: string[];
|
|
27
28
|
processingTime: number;
|
|
29
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
28
30
|
}
|
|
29
31
|
interface LoginVerificationRequest {
|
|
30
32
|
customerId: string;
|
|
31
33
|
ipAddress: string;
|
|
32
34
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
35
|
+
cipherText?: string;
|
|
33
36
|
metadata?: Record<string, unknown>;
|
|
34
37
|
}
|
|
35
38
|
interface LoginVerificationResponse {
|
|
@@ -39,6 +42,7 @@ interface LoginVerificationResponse {
|
|
|
39
42
|
requiresStepUp: boolean;
|
|
40
43
|
blockReasons: string[];
|
|
41
44
|
processingTime: number;
|
|
45
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
42
46
|
}
|
|
43
47
|
interface TransactionVerificationRequest {
|
|
44
48
|
customerId: string;
|
|
@@ -47,6 +51,7 @@ interface TransactionVerificationRequest {
|
|
|
47
51
|
currency: string;
|
|
48
52
|
transactionType?: 'deposit' | 'withdrawal' | 'bet' | 'transfer' | 'payout';
|
|
49
53
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
54
|
+
cipherText?: string;
|
|
50
55
|
metadata?: Record<string, unknown>;
|
|
51
56
|
}
|
|
52
57
|
interface TransactionVerificationResponse {
|
|
@@ -57,6 +62,7 @@ interface TransactionVerificationResponse {
|
|
|
57
62
|
requiresApproval: boolean;
|
|
58
63
|
blockReasons: string[];
|
|
59
64
|
processingTime: number;
|
|
65
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
60
66
|
}
|
|
61
67
|
interface TransactionRiskResult {
|
|
62
68
|
score: number;
|
|
@@ -70,6 +76,7 @@ interface EventVerificationRequest {
|
|
|
70
76
|
ipAddress: string;
|
|
71
77
|
eventType: string;
|
|
72
78
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
79
|
+
cipherText?: string;
|
|
73
80
|
metadata?: Record<string, unknown>;
|
|
74
81
|
}
|
|
75
82
|
interface EventVerificationResponse {
|
|
@@ -77,6 +84,7 @@ interface EventVerificationResponse {
|
|
|
77
84
|
geolocation: LocationVerification;
|
|
78
85
|
blockReasons: string[];
|
|
79
86
|
processingTime: number;
|
|
87
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
80
88
|
}
|
|
81
89
|
interface CurrencyRates {
|
|
82
90
|
[currency: string]: number;
|
|
@@ -264,6 +272,11 @@ declare class ComplianceClient {
|
|
|
264
272
|
verifyEvent(request: EventVerificationRequest, requestOptions?: RequestOptions): Promise<EventVerificationResponse>;
|
|
265
273
|
private shouldUpdateProfile;
|
|
266
274
|
private createProfileFromGeo;
|
|
275
|
+
/**
|
|
276
|
+
* Execute cipherText validation with graceful degradation.
|
|
277
|
+
* Returns undefined if cipherText is not provided or validation fails.
|
|
278
|
+
*/
|
|
279
|
+
private executeCipherTextValidation;
|
|
267
280
|
private calculateTransactionRisk;
|
|
268
281
|
private checkJurisdictionLimits;
|
|
269
282
|
private normalizeToUSD;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { D as DeviceFingerprintRequest, L as LocationVerification,
|
|
2
|
-
export {
|
|
1
|
+
import { D as DeviceFingerprintRequest, L as LocationVerification, k as ValidateCipherTextResponse, T as LocationRequest, G as GeolocationClient, Y as LocationRequestFilters, Z as LocationRequestListResponse } from '../client-Bd9a5o0C.js';
|
|
2
|
+
export { W as CreateLocationRequestRequest, a0 as LocationCaptureRequest, a2 as LocationCaptureResponse, S as LocationRequestChannel, X as LocationRequestResult, R as LocationRequestStatus, a1 as LocationShareInfo, _ as ResendLocationRequestRequest } from '../client-Bd9a5o0C.js';
|
|
3
3
|
import { RiskProfileClient } from '../risk-profile/index.js';
|
|
4
|
-
import { V as VesantConfig, R as RequestOptions } from '../client-
|
|
5
|
-
import { C as CustomerProfile } from '../types-
|
|
6
|
-
import { E as EntityType, P as PaginationParams } from '../types-
|
|
4
|
+
import { V as VesantConfig, R as RequestOptions } from '../client-CIon-bGS.js';
|
|
5
|
+
import { C as CustomerProfile } from '../types-X5Md_dD_.js';
|
|
6
|
+
import { E as EntityType, P as PaginationParams } from '../types-B4Ezqo7V.js';
|
|
7
7
|
|
|
8
8
|
interface RegistrationVerificationRequest {
|
|
9
9
|
customerId: string;
|
|
@@ -15,6 +15,7 @@ interface RegistrationVerificationRequest {
|
|
|
15
15
|
entityType?: EntityType;
|
|
16
16
|
ipAddress: string;
|
|
17
17
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
18
|
+
cipherText?: string;
|
|
18
19
|
metadata?: Record<string, unknown>;
|
|
19
20
|
}
|
|
20
21
|
interface RegistrationVerificationResponse {
|
|
@@ -25,11 +26,13 @@ interface RegistrationVerificationResponse {
|
|
|
25
26
|
requiresEDD: boolean;
|
|
26
27
|
blockReasons: string[];
|
|
27
28
|
processingTime: number;
|
|
29
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
28
30
|
}
|
|
29
31
|
interface LoginVerificationRequest {
|
|
30
32
|
customerId: string;
|
|
31
33
|
ipAddress: string;
|
|
32
34
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
35
|
+
cipherText?: string;
|
|
33
36
|
metadata?: Record<string, unknown>;
|
|
34
37
|
}
|
|
35
38
|
interface LoginVerificationResponse {
|
|
@@ -39,6 +42,7 @@ interface LoginVerificationResponse {
|
|
|
39
42
|
requiresStepUp: boolean;
|
|
40
43
|
blockReasons: string[];
|
|
41
44
|
processingTime: number;
|
|
45
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
42
46
|
}
|
|
43
47
|
interface TransactionVerificationRequest {
|
|
44
48
|
customerId: string;
|
|
@@ -47,6 +51,7 @@ interface TransactionVerificationRequest {
|
|
|
47
51
|
currency: string;
|
|
48
52
|
transactionType?: 'deposit' | 'withdrawal' | 'bet' | 'transfer' | 'payout';
|
|
49
53
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
54
|
+
cipherText?: string;
|
|
50
55
|
metadata?: Record<string, unknown>;
|
|
51
56
|
}
|
|
52
57
|
interface TransactionVerificationResponse {
|
|
@@ -57,6 +62,7 @@ interface TransactionVerificationResponse {
|
|
|
57
62
|
requiresApproval: boolean;
|
|
58
63
|
blockReasons: string[];
|
|
59
64
|
processingTime: number;
|
|
65
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
60
66
|
}
|
|
61
67
|
interface TransactionRiskResult {
|
|
62
68
|
score: number;
|
|
@@ -70,6 +76,7 @@ interface EventVerificationRequest {
|
|
|
70
76
|
ipAddress: string;
|
|
71
77
|
eventType: string;
|
|
72
78
|
deviceFingerprint?: DeviceFingerprintRequest;
|
|
79
|
+
cipherText?: string;
|
|
73
80
|
metadata?: Record<string, unknown>;
|
|
74
81
|
}
|
|
75
82
|
interface EventVerificationResponse {
|
|
@@ -77,6 +84,7 @@ interface EventVerificationResponse {
|
|
|
77
84
|
geolocation: LocationVerification;
|
|
78
85
|
blockReasons: string[];
|
|
79
86
|
processingTime: number;
|
|
87
|
+
cipherTextValidation?: ValidateCipherTextResponse;
|
|
80
88
|
}
|
|
81
89
|
interface CurrencyRates {
|
|
82
90
|
[currency: string]: number;
|
|
@@ -264,6 +272,11 @@ declare class ComplianceClient {
|
|
|
264
272
|
verifyEvent(request: EventVerificationRequest, requestOptions?: RequestOptions): Promise<EventVerificationResponse>;
|
|
265
273
|
private shouldUpdateProfile;
|
|
266
274
|
private createProfileFromGeo;
|
|
275
|
+
/**
|
|
276
|
+
* Execute cipherText validation with graceful degradation.
|
|
277
|
+
* Returns undefined if cipherText is not provided or validation fails.
|
|
278
|
+
*/
|
|
279
|
+
private executeCipherTextValidation;
|
|
267
280
|
private calculateTransactionRisk;
|
|
268
281
|
private checkJurisdictionLimits;
|
|
269
282
|
private normalizeToUSD;
|