vesant-sdk 1.7.0 → 1.7.1-dev.301c6df
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/{client-DtH2RLuy.d.ts → client-B3DCAHlg.d.ts} +2 -2
- package/dist/{client-DrjgZoH_.d.mts → client-BwXMQA2a.d.mts} +64 -42
- package/dist/{client-B0qhE2kr.d.mts → client-D23KhWeh.d.mts} +2 -2
- package/dist/{client-DF7hlMEz.d.ts → client-fy3trF2K.d.ts} +64 -42
- package/dist/{client-BolQlL5e.d.mts → client-q9fN8Hhf.d.mts} +103 -1
- package/dist/{client-BolQlL5e.d.ts → client-q9fN8Hhf.d.ts} +103 -1
- package/dist/compliance/index.d.mts +3 -3
- package/dist/compliance/index.d.ts +3 -3
- package/dist/compliance/index.js +181 -91
- package/dist/compliance/index.js.map +1 -1
- package/dist/compliance/index.mjs +181 -91
- package/dist/compliance/index.mjs.map +1 -1
- package/dist/decisions/index.d.mts +1 -1
- package/dist/decisions/index.d.ts +1 -1
- package/dist/decisions/index.js +69 -8
- package/dist/decisions/index.js.map +1 -1
- package/dist/decisions/index.mjs +69 -8
- package/dist/decisions/index.mjs.map +1 -1
- package/dist/geolocation/index.d.mts +68 -7
- package/dist/geolocation/index.d.ts +68 -7
- package/dist/geolocation/index.js +186 -91
- package/dist/geolocation/index.js.map +1 -1
- package/dist/geolocation/index.mjs +183 -92
- package/dist/geolocation/index.mjs.map +1 -1
- package/dist/index-C3zUKydT.d.mts +264 -0
- package/dist/index-DSDgS09k.d.ts +264 -0
- package/dist/index.d.mts +26 -9
- package/dist/index.d.ts +26 -9
- package/dist/index.js +354 -120
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +346 -121
- package/dist/index.mjs.map +1 -1
- package/dist/kyc/core.d.mts +1 -1
- package/dist/kyc/core.d.ts +1 -1
- package/dist/kyc/core.js +75 -14
- package/dist/kyc/core.js.map +1 -1
- package/dist/kyc/core.mjs +75 -14
- package/dist/kyc/core.mjs.map +1 -1
- package/dist/kyc/index.d.mts +4 -4
- package/dist/kyc/index.d.ts +4 -4
- package/dist/kyc/index.js +75 -14
- package/dist/kyc/index.js.map +1 -1
- package/dist/kyc/index.mjs +75 -14
- package/dist/kyc/index.mjs.map +1 -1
- package/dist/react.d.mts +7 -3
- package/dist/react.d.ts +7 -3
- package/dist/react.js +70 -33
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +70 -33
- package/dist/react.mjs.map +1 -1
- package/dist/risk-profile/index.d.mts +1 -1
- package/dist/risk-profile/index.d.ts +1 -1
- package/dist/risk-profile/index.js +69 -8
- package/dist/risk-profile/index.js.map +1 -1
- package/dist/risk-profile/index.mjs +69 -8
- package/dist/risk-profile/index.mjs.map +1 -1
- package/dist/scores/index.d.mts +1 -1
- package/dist/scores/index.d.ts +1 -1
- package/dist/scores/index.js +69 -8
- package/dist/scores/index.js.map +1 -1
- package/dist/scores/index.mjs +69 -8
- package/dist/scores/index.mjs.map +1 -1
- package/dist/tax/index.d.mts +2 -2
- package/dist/tax/index.d.ts +2 -2
- package/dist/tax/index.js +74 -10
- package/dist/tax/index.js.map +1 -1
- package/dist/tax/index.mjs +74 -10
- package/dist/tax/index.mjs.map +1 -1
- package/dist/webhooks/index.d.mts +2 -189
- package/dist/webhooks/index.d.ts +2 -189
- package/dist/webhooks/index.js +85 -21
- package/dist/webhooks/index.js.map +1 -1
- package/dist/webhooks/index.mjs +85 -22
- package/dist/webhooks/index.mjs.map +1 -1
- package/package.json +4 -1
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
// src/core/auth.ts
|
|
2
|
+
var StaticApiKeyProvider = class {
|
|
3
|
+
constructor(apiKey) {
|
|
4
|
+
this.apiKey = apiKey;
|
|
5
|
+
}
|
|
6
|
+
async getCredential() {
|
|
7
|
+
return this.apiKey ? { scheme: "Bearer", token: this.apiKey } : null;
|
|
8
|
+
}
|
|
9
|
+
canRefresh() {
|
|
10
|
+
return false;
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
|
|
1
14
|
// src/core/errors.ts
|
|
2
15
|
var VesantError = class _VesantError extends Error {
|
|
3
16
|
constructor(message, code, statusCode, details) {
|
|
@@ -214,7 +227,7 @@ function createConsoleLogger() {
|
|
|
214
227
|
}
|
|
215
228
|
|
|
216
229
|
// src/core/version.ts
|
|
217
|
-
var SDK_VERSION = "1.7.
|
|
230
|
+
var SDK_VERSION = "1.7.1";
|
|
218
231
|
|
|
219
232
|
// src/shared/browser-utils.ts
|
|
220
233
|
function generateUUID() {
|
|
@@ -296,6 +309,12 @@ var BaseClient = class {
|
|
|
296
309
|
if (!config.tenantId?.trim()) {
|
|
297
310
|
throw new ValidationError("tenantId is required and must be a non-empty string", ["tenantId"]);
|
|
298
311
|
}
|
|
312
|
+
if (typeof fetch === "undefined") {
|
|
313
|
+
throw new VesantError(
|
|
314
|
+
"The Vesant SDK requires a global fetch (Node.js >= 18). Upgrade Node or provide a fetch polyfill.",
|
|
315
|
+
"RUNTIME_UNSUPPORTED"
|
|
316
|
+
);
|
|
317
|
+
}
|
|
299
318
|
this.interceptors = config.interceptors || [];
|
|
300
319
|
this.logger = config.logger || createConsoleLogger();
|
|
301
320
|
let environment = config.environment;
|
|
@@ -314,11 +333,12 @@ var BaseClient = class {
|
|
|
314
333
|
environment,
|
|
315
334
|
headers: config.headers || {},
|
|
316
335
|
timeout: config.timeout || 1e4,
|
|
317
|
-
retries: config.retries
|
|
336
|
+
retries: config.retries ?? 3,
|
|
318
337
|
debug: config.debug || false,
|
|
319
338
|
interceptors: this.interceptors,
|
|
320
339
|
logger: this.logger
|
|
321
340
|
};
|
|
341
|
+
this.authProvider = config.authProvider ?? (apiKey ? new StaticApiKeyProvider(apiKey) : void 0);
|
|
322
342
|
if (config.circuitBreaker) {
|
|
323
343
|
this.circuitBreaker = new CircuitBreaker(config.circuitBreaker);
|
|
324
344
|
}
|
|
@@ -326,6 +346,19 @@ var BaseClient = class {
|
|
|
326
346
|
this.rateLimitTracker = new RateLimitTracker();
|
|
327
347
|
}
|
|
328
348
|
}
|
|
349
|
+
/**
|
|
350
|
+
* Resolve the Idempotency-Key for a request. Mutating methods (POST/PUT/PATCH)
|
|
351
|
+
* get the caller-supplied key or a freshly minted UUID; non-mutating methods get
|
|
352
|
+
* none. requestWithRetry resolves this once and injects it so every retry reuses
|
|
353
|
+
* one key (letting the server dedup replays); a direct request() resolves per call.
|
|
354
|
+
*/
|
|
355
|
+
resolveIdempotencyKey(method, requestOptions) {
|
|
356
|
+
const isMutating = ["POST", "PUT", "PATCH"].includes((method || "GET").toUpperCase());
|
|
357
|
+
if (!isMutating) {
|
|
358
|
+
return void 0;
|
|
359
|
+
}
|
|
360
|
+
return requestOptions?.idempotencyKey ?? generateUUID();
|
|
361
|
+
}
|
|
329
362
|
/**
|
|
330
363
|
* Make an HTTP request with timeout and error handling
|
|
331
364
|
*/
|
|
@@ -351,15 +384,20 @@ var BaseClient = class {
|
|
|
351
384
|
...this.config.headers,
|
|
352
385
|
...options.headers || {}
|
|
353
386
|
};
|
|
354
|
-
|
|
355
|
-
|
|
387
|
+
const credential = await this.authProvider?.getCredential({
|
|
388
|
+
tenantId: this.config.tenantId,
|
|
389
|
+
requestId
|
|
390
|
+
});
|
|
391
|
+
if (credential) {
|
|
392
|
+
headers["Authorization"] = `${credential.scheme ?? "Bearer"} ${credential.token}`;
|
|
356
393
|
}
|
|
357
394
|
if (this.config.environment === "sandbox") {
|
|
358
395
|
headers["X-Sandbox"] = "true";
|
|
359
396
|
}
|
|
360
397
|
const method = (options.method || "GET").toUpperCase();
|
|
361
|
-
|
|
362
|
-
|
|
398
|
+
const idempotencyKey = this.resolveIdempotencyKey(method, requestOptions);
|
|
399
|
+
if (idempotencyKey) {
|
|
400
|
+
headers["Idempotency-Key"] = idempotencyKey;
|
|
363
401
|
}
|
|
364
402
|
const controller = new AbortController();
|
|
365
403
|
const timeoutId = setTimeout(() => controller.abort(), this.config.timeout);
|
|
@@ -380,10 +418,28 @@ var BaseClient = class {
|
|
|
380
418
|
if (this.config.debug) {
|
|
381
419
|
this.logger.debug(`${finalOptions.method || "GET"} ${endpoint}`);
|
|
382
420
|
}
|
|
383
|
-
|
|
421
|
+
let response = await fetch(url, {
|
|
384
422
|
...finalOptions,
|
|
385
423
|
signal: controller.signal
|
|
386
424
|
});
|
|
425
|
+
if (response.status === 401 && this.authProvider?.canRefresh?.()) {
|
|
426
|
+
const refreshed = await this.authProvider.getCredential({
|
|
427
|
+
tenantId: this.config.tenantId,
|
|
428
|
+
requestId,
|
|
429
|
+
forceRefresh: true
|
|
430
|
+
});
|
|
431
|
+
if (refreshed) {
|
|
432
|
+
this.config.onCredentialRotated?.({ reason: "unauthorized" });
|
|
433
|
+
finalOptions = {
|
|
434
|
+
...finalOptions,
|
|
435
|
+
headers: {
|
|
436
|
+
...finalOptions.headers,
|
|
437
|
+
Authorization: `${refreshed.scheme ?? "Bearer"} ${refreshed.token}`
|
|
438
|
+
}
|
|
439
|
+
};
|
|
440
|
+
response = await fetch(url, { ...finalOptions, signal: controller.signal });
|
|
441
|
+
}
|
|
442
|
+
}
|
|
387
443
|
clearTimeout(timeoutId);
|
|
388
444
|
if (this.rateLimitTracker) {
|
|
389
445
|
this.rateLimitTracker.updateFromHeaders(response.headers);
|
|
@@ -472,9 +528,11 @@ var BaseClient = class {
|
|
|
472
528
|
*/
|
|
473
529
|
async requestWithRetry(endpoint, options = {}, serviceURL, retries = this.config.retries, requestOptions) {
|
|
474
530
|
let lastError;
|
|
531
|
+
const idempotencyKey = this.resolveIdempotencyKey(options.method || "GET", requestOptions);
|
|
532
|
+
const attemptOptions = idempotencyKey ? { ...requestOptions, idempotencyKey } : requestOptions;
|
|
475
533
|
for (let attempt = 0; attempt <= retries; attempt++) {
|
|
476
534
|
try {
|
|
477
|
-
return await this.request(endpoint, options, serviceURL,
|
|
535
|
+
return await this.request(endpoint, options, serviceURL, attemptOptions);
|
|
478
536
|
} catch (error) {
|
|
479
537
|
lastError = error instanceof Error ? error : new Error("Unknown error");
|
|
480
538
|
if (requestOptions?.signal?.aborted) {
|
|
@@ -571,6 +629,9 @@ var BaseClient = class {
|
|
|
571
629
|
if (config.interceptors) {
|
|
572
630
|
this.interceptors = config.interceptors;
|
|
573
631
|
}
|
|
632
|
+
if (config.authProvider !== void 0 || config.apiKey !== void 0) {
|
|
633
|
+
this.authProvider = this.config.authProvider ?? (this.config.apiKey ? new StaticApiKeyProvider(this.config.apiKey) : void 0);
|
|
634
|
+
}
|
|
574
635
|
}
|
|
575
636
|
/**
|
|
576
637
|
* Get current configuration (readonly)
|
|
@@ -598,27 +659,63 @@ var BaseClient = class {
|
|
|
598
659
|
}
|
|
599
660
|
};
|
|
600
661
|
|
|
601
|
-
// src/geolocation/
|
|
602
|
-
var
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
);
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
662
|
+
// src/geolocation/integrity.ts
|
|
663
|
+
var isNil = (v) => v === null || v === void 0;
|
|
664
|
+
function assessGpsIntegrity(input, opts = {}) {
|
|
665
|
+
const flags = [];
|
|
666
|
+
const now = opts.now ?? (() => Date.now());
|
|
667
|
+
const maxAgeMs = opts.maxAgeMs ?? 6e4;
|
|
668
|
+
const minAccuracy = opts.minAccuracyMeters ?? 1;
|
|
669
|
+
const { accuracy, altitude, altitudeAccuracy, heading, speed, timestamp } = input;
|
|
670
|
+
if (isNil(accuracy)) {
|
|
671
|
+
flags.push("accuracy_missing");
|
|
672
|
+
} else if (accuracy === 0) {
|
|
673
|
+
flags.push("accuracy_zero");
|
|
674
|
+
} else if (accuracy < minAccuracy) {
|
|
675
|
+
flags.push("accuracy_implausibly_small");
|
|
676
|
+
}
|
|
677
|
+
const hasMotion = !isNil(heading) || !isNil(speed);
|
|
678
|
+
if (hasMotion && (isNil(accuracy) || accuracy === 0)) {
|
|
679
|
+
flags.push("motion_without_accuracy");
|
|
680
|
+
}
|
|
681
|
+
if (!isNil(altitude) && isNil(altitudeAccuracy)) {
|
|
682
|
+
flags.push("altitude_without_accuracy");
|
|
683
|
+
}
|
|
684
|
+
if (timestamp !== void 0 && now() - timestamp > maxAgeMs) {
|
|
685
|
+
flags.push("stale_timestamp");
|
|
618
686
|
}
|
|
619
|
-
|
|
620
|
-
|
|
687
|
+
if (opts.permissionState === "denied" || opts.permissionState === "prompt") {
|
|
688
|
+
flags.push(`permission_${opts.permissionState}`);
|
|
689
|
+
}
|
|
690
|
+
return { suspicious: flags.length > 0, flags };
|
|
691
|
+
}
|
|
692
|
+
function gpsIntegrityInputFromPosition(position) {
|
|
693
|
+
const c = position.coords;
|
|
694
|
+
return {
|
|
695
|
+
latitude: c.latitude,
|
|
696
|
+
longitude: c.longitude,
|
|
697
|
+
accuracy: c.accuracy,
|
|
698
|
+
altitude: c.altitude,
|
|
699
|
+
altitudeAccuracy: c.altitudeAccuracy,
|
|
700
|
+
heading: c.heading,
|
|
701
|
+
speed: c.speed,
|
|
702
|
+
timestamp: position.timestamp
|
|
703
|
+
};
|
|
621
704
|
}
|
|
705
|
+
async function probeGeolocationPermission() {
|
|
706
|
+
try {
|
|
707
|
+
if (typeof navigator === "undefined" || !navigator.permissions?.query) {
|
|
708
|
+
return "unavailable";
|
|
709
|
+
}
|
|
710
|
+
const status = await navigator.permissions.query({ name: "geolocation" });
|
|
711
|
+
return status.state;
|
|
712
|
+
} catch {
|
|
713
|
+
return "unavailable";
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
// src/geolocation/ciphertext.ts
|
|
718
|
+
var CIPHER_TEXT_EXPIRY_MINUTES = 5;
|
|
622
719
|
function getWebGLInfo() {
|
|
623
720
|
if (typeof document === "undefined") return null;
|
|
624
721
|
try {
|
|
@@ -650,6 +747,7 @@ async function requestGPSLocation(timeout = 1e4, highAccuracy = true) {
|
|
|
650
747
|
if (typeof navigator === "undefined" || !navigator.geolocation) {
|
|
651
748
|
return null;
|
|
652
749
|
}
|
|
750
|
+
const permissionState = await probeGeolocationPermission();
|
|
653
751
|
return new Promise((resolve) => {
|
|
654
752
|
navigator.geolocation.getCurrentPosition(
|
|
655
753
|
(position) => {
|
|
@@ -666,6 +764,7 @@ async function requestGPSLocation(timeout = 1e4, highAccuracy = true) {
|
|
|
666
764
|
resolve(null);
|
|
667
765
|
return;
|
|
668
766
|
}
|
|
767
|
+
const { flags } = assessGpsIntegrity(gpsIntegrityInputFromPosition(position), { permissionState });
|
|
669
768
|
resolve({
|
|
670
769
|
latitude,
|
|
671
770
|
longitude,
|
|
@@ -674,7 +773,8 @@ async function requestGPSLocation(timeout = 1e4, highAccuracy = true) {
|
|
|
674
773
|
altitude_accuracy: position.coords.altitudeAccuracy ?? void 0,
|
|
675
774
|
heading: position.coords.heading ?? void 0,
|
|
676
775
|
speed: position.coords.speed ?? void 0,
|
|
677
|
-
timestamp: position.timestamp
|
|
776
|
+
timestamp: position.timestamp,
|
|
777
|
+
integrity_flags: flags.length ? flags : void 0
|
|
678
778
|
});
|
|
679
779
|
},
|
|
680
780
|
() => {
|
|
@@ -741,6 +841,9 @@ async function generateCipherText(options, config) {
|
|
|
741
841
|
);
|
|
742
842
|
if (location) {
|
|
743
843
|
locationData = location;
|
|
844
|
+
if (location.integrity_flags?.length) {
|
|
845
|
+
warnings.push(`GPS integrity flags (advisory): ${location.integrity_flags.join(", ")}`);
|
|
846
|
+
}
|
|
744
847
|
} else if (gpsRequiredByConfig) {
|
|
745
848
|
throw new VesantError(
|
|
746
849
|
`GPS location is required for ${options.reason} by tenant configuration, but GPS was not available or permission was denied`,
|
|
@@ -770,15 +873,7 @@ async function generateCipherText(options, config) {
|
|
|
770
873
|
};
|
|
771
874
|
const encoded = encodePayload(payload);
|
|
772
875
|
const timestamp = now.getTime().toString(36);
|
|
773
|
-
|
|
774
|
-
const hmacKey = options.signingKey || options.apiKey;
|
|
775
|
-
if (hmacKey) {
|
|
776
|
-
const message = `02.${timestamp}.${encoded}`;
|
|
777
|
-
const hmac = await computeHMAC(hmacKey, message);
|
|
778
|
-
cipherText = `${message}.${hmac}`;
|
|
779
|
-
} else {
|
|
780
|
-
cipherText = `01.${timestamp}.${encoded}`;
|
|
781
|
-
}
|
|
876
|
+
const cipherText = `01.${timestamp}.${encoded}`;
|
|
782
877
|
return {
|
|
783
878
|
cipherText,
|
|
784
879
|
locationCaptured: !!locationData,
|
|
@@ -787,6 +882,7 @@ async function generateCipherText(options, config) {
|
|
|
787
882
|
expiresAt: expiry.toISOString()
|
|
788
883
|
};
|
|
789
884
|
}
|
|
885
|
+
var collectDeviceSignals = generateCipherText;
|
|
790
886
|
function decodeCipherText(cipherText) {
|
|
791
887
|
try {
|
|
792
888
|
const parts = cipherText.split(".");
|
|
@@ -860,8 +956,8 @@ var GeolocationClient = class extends BaseClient {
|
|
|
860
956
|
* ```
|
|
861
957
|
*/
|
|
862
958
|
async verifyIP(request, requestOptions) {
|
|
863
|
-
if (!request.ip_address
|
|
864
|
-
throw new ValidationError("ip_address
|
|
959
|
+
if (request.ip_address !== void 0 && !request.ip_address.trim()) {
|
|
960
|
+
throw new ValidationError("ip_address, when provided, must be a non-empty string", ["ip_address"]);
|
|
865
961
|
}
|
|
866
962
|
return this.requestWithRetry("/api/v1/geo/verify", {
|
|
867
963
|
method: "POST",
|
|
@@ -914,37 +1010,50 @@ var GeolocationClient = class extends BaseClient {
|
|
|
914
1010
|
* ```
|
|
915
1011
|
*/
|
|
916
1012
|
async getGPSConfig(requestOptions) {
|
|
917
|
-
|
|
918
|
-
if (config.signing_key) {
|
|
919
|
-
this.cachedSigningKey = config.signing_key;
|
|
920
|
-
}
|
|
921
|
-
return config;
|
|
1013
|
+
return this.requestWithRetry("/api/v1/geo/config", void 0, void 0, void 0, requestOptions);
|
|
922
1014
|
}
|
|
923
1015
|
/**
|
|
924
|
-
*
|
|
1016
|
+
* Mint a short-lived, single-use device-signals nonce.
|
|
925
1017
|
*
|
|
926
|
-
*
|
|
927
|
-
*
|
|
1018
|
+
* The nonce is bound to the tenant, user, and event type and is consumed
|
|
1019
|
+
* server-side during validation, so a captured device-signals envelope cannot
|
|
1020
|
+
* be replayed. `validateCipherText` mints and attaches one automatically; call
|
|
1021
|
+
* this directly only if you manage the nonce yourself.
|
|
928
1022
|
*
|
|
929
|
-
* @
|
|
1023
|
+
* @param userId - User ID the nonce is bound to
|
|
1024
|
+
* @param eventType - Event type the nonce is bound to (login, registration, ...)
|
|
1025
|
+
* @returns The nonce and its expiry
|
|
1026
|
+
*/
|
|
1027
|
+
async fetchSignalsNonce(userId, eventType, requestOptions) {
|
|
1028
|
+
if (!userId?.trim()) {
|
|
1029
|
+
throw new ValidationError("userId is required and must be a non-empty string", ["userId"]);
|
|
1030
|
+
}
|
|
1031
|
+
const request = { user_id: userId, event_type: eventType };
|
|
1032
|
+
return this.request(
|
|
1033
|
+
"/api/v1/geo/signals-token",
|
|
1034
|
+
{
|
|
1035
|
+
method: "POST",
|
|
1036
|
+
body: JSON.stringify(request)
|
|
1037
|
+
},
|
|
1038
|
+
void 0,
|
|
1039
|
+
requestOptions
|
|
1040
|
+
);
|
|
1041
|
+
}
|
|
1042
|
+
/**
|
|
1043
|
+
* Best-effort nonce mint for validation. Returns undefined if minting fails —
|
|
1044
|
+
* the server is the sole authority and blocks when a nonce is required, so this
|
|
1045
|
+
* never downgrades security on the client's say-so.
|
|
930
1046
|
*/
|
|
931
|
-
async
|
|
1047
|
+
async resolveSignalsNonce(userId, eventType, requestOptions) {
|
|
932
1048
|
try {
|
|
933
|
-
const
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
requestOptions
|
|
1049
|
+
const { nonce } = await this.fetchSignalsNonce(userId, eventType, requestOptions);
|
|
1050
|
+
return nonce;
|
|
1051
|
+
} catch (err) {
|
|
1052
|
+
this.logger.warn(
|
|
1053
|
+
`Failed to mint device-signals nonce; proceeding without it: ${err instanceof Error ? err.message : String(err)}`
|
|
939
1054
|
);
|
|
940
|
-
|
|
941
|
-
this.cachedSigningKey = response.signing_key;
|
|
942
|
-
return response.signing_key;
|
|
943
|
-
}
|
|
944
|
-
} catch {
|
|
1055
|
+
return void 0;
|
|
945
1056
|
}
|
|
946
|
-
const config = await this.getGPSConfig(requestOptions);
|
|
947
|
-
return config.signing_key;
|
|
948
1057
|
}
|
|
949
1058
|
// ============================================================================
|
|
950
1059
|
// CipherText Validation
|
|
@@ -997,12 +1106,14 @@ var GeolocationClient = class extends BaseClient {
|
|
|
997
1106
|
if (!userId?.trim()) {
|
|
998
1107
|
throw new ValidationError("userId is required and must be a non-empty string", ["userId"]);
|
|
999
1108
|
}
|
|
1109
|
+
const nonce = await this.resolveSignalsNonce(userId, eventType, requestOptions);
|
|
1000
1110
|
const request = {
|
|
1001
1111
|
cipher_text: cipherText,
|
|
1002
1112
|
user_id: userId,
|
|
1003
1113
|
event_type: eventType,
|
|
1004
1114
|
expected_ip: expectedIP,
|
|
1005
|
-
customer_data: customerData
|
|
1115
|
+
customer_data: customerData,
|
|
1116
|
+
nonce
|
|
1006
1117
|
};
|
|
1007
1118
|
return this.requestWithRetry(
|
|
1008
1119
|
"/api/v1/geo/validate-ciphertext",
|
|
@@ -1211,20 +1322,12 @@ var GeolocationClient = class extends BaseClient {
|
|
|
1211
1322
|
*
|
|
1212
1323
|
* @example
|
|
1213
1324
|
* ```typescript
|
|
1214
|
-
* //
|
|
1325
|
+
* // GPS (the web SDK is GPS + IP only; the server handles the IP fallback)
|
|
1215
1326
|
* const result = await client.captureLocation(token, {
|
|
1216
1327
|
* latitude: 37.7749,
|
|
1217
1328
|
* longitude: -122.4194,
|
|
1218
1329
|
* accuracy: 10
|
|
1219
1330
|
* });
|
|
1220
|
-
*
|
|
1221
|
-
* // Using WiFi positioning (fallback)
|
|
1222
|
-
* const result = await client.captureLocation(token, {
|
|
1223
|
-
* wifi_networks: [
|
|
1224
|
-
* { macAddress: "00:11:22:33:44:55", signalStrength: -50 },
|
|
1225
|
-
* { macAddress: "AA:BB:CC:DD:EE:FF", signalStrength: -70 }
|
|
1226
|
-
* ]
|
|
1227
|
-
* });
|
|
1228
1331
|
* ```
|
|
1229
1332
|
*/
|
|
1230
1333
|
async captureLocation(token, capture, requestOptions) {
|
|
@@ -1237,40 +1340,28 @@ var GeolocationClient = class extends BaseClient {
|
|
|
1237
1340
|
// CipherText Generation
|
|
1238
1341
|
// ============================================================================
|
|
1239
1342
|
/**
|
|
1240
|
-
* Generate a
|
|
1241
|
-
*
|
|
1242
|
-
* Automatically passes the client's API key for HMAC signing (v02 format).
|
|
1243
|
-
* If no API key is configured, falls back to unsigned v01 format.
|
|
1343
|
+
* Generate a device-signals envelope containing device and location data,
|
|
1344
|
+
* validated by the server.
|
|
1244
1345
|
*
|
|
1245
|
-
* @param options - Options for
|
|
1346
|
+
* @param options - Options for envelope generation
|
|
1246
1347
|
* @param gpsConfig - Optional GPS config (from getGPSConfig)
|
|
1247
|
-
* @returns
|
|
1348
|
+
* @returns The device-signals envelope result
|
|
1248
1349
|
*
|
|
1249
1350
|
* @example
|
|
1250
1351
|
* ```typescript
|
|
1251
1352
|
* const result = await client.generateCipherText({ reason: 'login' });
|
|
1252
|
-
* console.log(result.cipherText); //
|
|
1353
|
+
* console.log(result.cipherText); // device-signals envelope
|
|
1253
1354
|
* ```
|
|
1254
1355
|
*/
|
|
1255
1356
|
async generateCipherText(options, gpsConfig) {
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
if (!signingKey) {
|
|
1259
|
-
signingKey = await this.fetchSigningKey();
|
|
1260
|
-
}
|
|
1261
|
-
if (!resolvedGpsConfig) {
|
|
1262
|
-
resolvedGpsConfig = await this.getGPSConfig();
|
|
1263
|
-
}
|
|
1264
|
-
return generateCipherText(
|
|
1265
|
-
{ ...options, signingKey: signingKey || void 0 },
|
|
1266
|
-
resolvedGpsConfig
|
|
1267
|
-
);
|
|
1357
|
+
const resolvedGpsConfig = gpsConfig ?? await this.getGPSConfig();
|
|
1358
|
+
return generateCipherText(options, resolvedGpsConfig);
|
|
1268
1359
|
}
|
|
1269
1360
|
// ============================================================================
|
|
1270
1361
|
// Utility Methods (inherited from BaseClient: healthCheck, updateConfig, getConfig, buildQueryString)
|
|
1271
1362
|
// ============================================================================
|
|
1272
1363
|
};
|
|
1273
1364
|
|
|
1274
|
-
export { GeolocationClient, decodeCipherText, generateCipherText, isCipherTextExpired };
|
|
1365
|
+
export { GeolocationClient, assessGpsIntegrity, collectDeviceSignals, decodeCipherText, generateCipherText, gpsIntegrityInputFromPosition, isCipherTextExpired, probeGeolocationPermission };
|
|
1275
1366
|
//# sourceMappingURL=index.mjs.map
|
|
1276
1367
|
//# sourceMappingURL=index.mjs.map
|