vesant-sdk 1.7.0-dev.ac305d8 → 1.7.0-dev.b4284ca

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 (75) hide show
  1. package/dist/{client-DoMSYMMR.d.ts → client-0NOPDnT0.d.ts} +29 -26
  2. package/dist/{client-DMIRx7Tu.d.mts → client-CvWNRwwg.d.mts} +29 -26
  3. package/dist/{client-ZNdnpWe7.d.mts → client-Dps40EtF.d.mts} +2 -2
  4. package/dist/{client-C3DCmGe9.d.ts → client-SMxqod4j.d.ts} +2 -2
  5. package/dist/{client-BolQlL5e.d.mts → client-q9fN8Hhf.d.mts} +103 -1
  6. package/dist/{client-BolQlL5e.d.ts → client-q9fN8Hhf.d.ts} +103 -1
  7. package/dist/compliance/index.d.mts +3 -3
  8. package/dist/compliance/index.d.ts +3 -3
  9. package/dist/compliance/index.js +133 -22
  10. package/dist/compliance/index.js.map +1 -1
  11. package/dist/compliance/index.mjs +133 -22
  12. package/dist/compliance/index.mjs.map +1 -1
  13. package/dist/decisions/index.d.mts +1 -1
  14. package/dist/decisions/index.d.ts +1 -1
  15. package/dist/decisions/index.js +68 -7
  16. package/dist/decisions/index.js.map +1 -1
  17. package/dist/decisions/index.mjs +68 -7
  18. package/dist/decisions/index.mjs.map +1 -1
  19. package/dist/geolocation/index.d.mts +59 -4
  20. package/dist/geolocation/index.d.ts +59 -4
  21. package/dist/geolocation/index.js +136 -19
  22. package/dist/geolocation/index.js.map +1 -1
  23. package/dist/geolocation/index.mjs +134 -20
  24. package/dist/geolocation/index.mjs.map +1 -1
  25. package/dist/index-CPOrMRaH.d.ts +264 -0
  26. package/dist/index-CimDmgZb.d.mts +264 -0
  27. package/dist/index.d.mts +27 -10
  28. package/dist/index.d.ts +27 -10
  29. package/dist/index.js +325 -67
  30. package/dist/index.js.map +1 -1
  31. package/dist/index.mjs +318 -68
  32. package/dist/index.mjs.map +1 -1
  33. package/dist/kyc/core.d.mts +2 -2
  34. package/dist/kyc/core.d.ts +2 -2
  35. package/dist/kyc/core.js +94 -19
  36. package/dist/kyc/core.js.map +1 -1
  37. package/dist/kyc/core.mjs +94 -19
  38. package/dist/kyc/core.mjs.map +1 -1
  39. package/dist/kyc/index.d.mts +110 -13
  40. package/dist/kyc/index.d.ts +110 -13
  41. package/dist/kyc/index.js +94 -19
  42. package/dist/kyc/index.js.map +1 -1
  43. package/dist/kyc/index.mjs +94 -19
  44. package/dist/kyc/index.mjs.map +1 -1
  45. package/dist/react.d.mts +9 -3
  46. package/dist/react.d.ts +9 -3
  47. package/dist/react.js +180 -77
  48. package/dist/react.js.map +1 -1
  49. package/dist/react.mjs +180 -77
  50. package/dist/react.mjs.map +1 -1
  51. package/dist/risk-profile/index.d.mts +1 -1
  52. package/dist/risk-profile/index.d.ts +1 -1
  53. package/dist/risk-profile/index.js +68 -7
  54. package/dist/risk-profile/index.js.map +1 -1
  55. package/dist/risk-profile/index.mjs +68 -7
  56. package/dist/risk-profile/index.mjs.map +1 -1
  57. package/dist/scores/index.d.mts +1 -1
  58. package/dist/scores/index.d.ts +1 -1
  59. package/dist/scores/index.js +68 -7
  60. package/dist/scores/index.js.map +1 -1
  61. package/dist/scores/index.mjs +68 -7
  62. package/dist/scores/index.mjs.map +1 -1
  63. package/dist/tax/index.d.mts +3 -26
  64. package/dist/tax/index.d.ts +3 -26
  65. package/dist/tax/index.js +74 -19
  66. package/dist/tax/index.js.map +1 -1
  67. package/dist/tax/index.mjs +74 -19
  68. package/dist/tax/index.mjs.map +1 -1
  69. package/dist/webhooks/index.d.mts +2 -189
  70. package/dist/webhooks/index.d.ts +2 -189
  71. package/dist/webhooks/index.js +85 -21
  72. package/dist/webhooks/index.js.map +1 -1
  73. package/dist/webhooks/index.mjs +85 -22
  74. package/dist/webhooks/index.mjs.map +1 -1
  75. package/package.json +4 -1
package/dist/kyc/index.js CHANGED
@@ -1,5 +1,18 @@
1
1
  'use strict';
2
2
 
3
+ // src/core/auth.ts
4
+ var StaticApiKeyProvider = class {
5
+ constructor(apiKey) {
6
+ this.apiKey = apiKey;
7
+ }
8
+ async getCredential() {
9
+ return this.apiKey ? { scheme: "Bearer", token: this.apiKey } : null;
10
+ }
11
+ canRefresh() {
12
+ return false;
13
+ }
14
+ };
15
+
3
16
  // src/core/errors.ts
4
17
  var VesantError = class _VesantError extends Error {
5
18
  constructor(message, code, statusCode, details) {
@@ -241,6 +254,12 @@ var BaseClient = class {
241
254
  if (!config.tenantId?.trim()) {
242
255
  throw new ValidationError("tenantId is required and must be a non-empty string", ["tenantId"]);
243
256
  }
257
+ if (typeof fetch === "undefined") {
258
+ throw new VesantError(
259
+ "The Vesant SDK requires a global fetch (Node.js >= 18). Upgrade Node or provide a fetch polyfill.",
260
+ "RUNTIME_UNSUPPORTED"
261
+ );
262
+ }
244
263
  this.interceptors = config.interceptors || [];
245
264
  this.logger = config.logger || createConsoleLogger();
246
265
  let environment = config.environment;
@@ -259,11 +278,12 @@ var BaseClient = class {
259
278
  environment,
260
279
  headers: config.headers || {},
261
280
  timeout: config.timeout || 1e4,
262
- retries: config.retries || 3,
281
+ retries: config.retries ?? 3,
263
282
  debug: config.debug || false,
264
283
  interceptors: this.interceptors,
265
284
  logger: this.logger
266
285
  };
286
+ this.authProvider = config.authProvider ?? (apiKey ? new StaticApiKeyProvider(apiKey) : void 0);
267
287
  if (config.circuitBreaker) {
268
288
  this.circuitBreaker = new CircuitBreaker(config.circuitBreaker);
269
289
  }
@@ -271,6 +291,19 @@ var BaseClient = class {
271
291
  this.rateLimitTracker = new RateLimitTracker();
272
292
  }
273
293
  }
294
+ /**
295
+ * Resolve the Idempotency-Key for a request. Mutating methods (POST/PUT/PATCH)
296
+ * get the caller-supplied key or a freshly minted UUID; non-mutating methods get
297
+ * none. requestWithRetry resolves this once and injects it so every retry reuses
298
+ * one key (letting the server dedup replays); a direct request() resolves per call.
299
+ */
300
+ resolveIdempotencyKey(method, requestOptions) {
301
+ const isMutating = ["POST", "PUT", "PATCH"].includes((method || "GET").toUpperCase());
302
+ if (!isMutating) {
303
+ return void 0;
304
+ }
305
+ return requestOptions?.idempotencyKey ?? generateUUID();
306
+ }
274
307
  /**
275
308
  * Make an HTTP request with timeout and error handling
276
309
  */
@@ -296,15 +329,20 @@ var BaseClient = class {
296
329
  ...this.config.headers,
297
330
  ...options.headers || {}
298
331
  };
299
- if (this.config.apiKey) {
300
- headers["Authorization"] = `Bearer ${this.config.apiKey}`;
332
+ const credential = await this.authProvider?.getCredential({
333
+ tenantId: this.config.tenantId,
334
+ requestId
335
+ });
336
+ if (credential) {
337
+ headers["Authorization"] = `${credential.scheme ?? "Bearer"} ${credential.token}`;
301
338
  }
302
339
  if (this.config.environment === "sandbox") {
303
340
  headers["X-Sandbox"] = "true";
304
341
  }
305
342
  const method = (options.method || "GET").toUpperCase();
306
- if (["POST", "PUT", "PATCH"].includes(method)) {
307
- headers["Idempotency-Key"] = requestOptions?.idempotencyKey || generateUUID();
343
+ const idempotencyKey = this.resolveIdempotencyKey(method, requestOptions);
344
+ if (idempotencyKey) {
345
+ headers["Idempotency-Key"] = idempotencyKey;
308
346
  }
309
347
  const controller = new AbortController();
310
348
  const timeoutId = setTimeout(() => controller.abort(), this.config.timeout);
@@ -325,10 +363,28 @@ var BaseClient = class {
325
363
  if (this.config.debug) {
326
364
  this.logger.debug(`${finalOptions.method || "GET"} ${endpoint}`);
327
365
  }
328
- const response = await fetch(url, {
366
+ let response = await fetch(url, {
329
367
  ...finalOptions,
330
368
  signal: controller.signal
331
369
  });
370
+ if (response.status === 401 && this.authProvider?.canRefresh?.()) {
371
+ const refreshed = await this.authProvider.getCredential({
372
+ tenantId: this.config.tenantId,
373
+ requestId,
374
+ forceRefresh: true
375
+ });
376
+ if (refreshed) {
377
+ this.config.onCredentialRotated?.({ reason: "unauthorized" });
378
+ finalOptions = {
379
+ ...finalOptions,
380
+ headers: {
381
+ ...finalOptions.headers,
382
+ Authorization: `${refreshed.scheme ?? "Bearer"} ${refreshed.token}`
383
+ }
384
+ };
385
+ response = await fetch(url, { ...finalOptions, signal: controller.signal });
386
+ }
387
+ }
332
388
  clearTimeout(timeoutId);
333
389
  if (this.rateLimitTracker) {
334
390
  this.rateLimitTracker.updateFromHeaders(response.headers);
@@ -417,9 +473,11 @@ var BaseClient = class {
417
473
  */
418
474
  async requestWithRetry(endpoint, options = {}, serviceURL, retries = this.config.retries, requestOptions) {
419
475
  let lastError;
476
+ const idempotencyKey = this.resolveIdempotencyKey(options.method || "GET", requestOptions);
477
+ const attemptOptions = idempotencyKey ? { ...requestOptions, idempotencyKey } : requestOptions;
420
478
  for (let attempt = 0; attempt <= retries; attempt++) {
421
479
  try {
422
- return await this.request(endpoint, options, serviceURL, requestOptions);
480
+ return await this.request(endpoint, options, serviceURL, attemptOptions);
423
481
  } catch (error) {
424
482
  lastError = error instanceof Error ? error : new Error("Unknown error");
425
483
  if (requestOptions?.signal?.aborted) {
@@ -516,6 +574,9 @@ var BaseClient = class {
516
574
  if (config.interceptors) {
517
575
  this.interceptors = config.interceptors;
518
576
  }
577
+ if (config.authProvider !== void 0 || config.apiKey !== void 0) {
578
+ this.authProvider = this.config.authProvider ?? (this.config.apiKey ? new StaticApiKeyProvider(this.config.apiKey) : void 0);
579
+ }
519
580
  }
520
581
  /**
521
582
  * Get current configuration (readonly)
@@ -603,7 +664,13 @@ var KycClient = class extends BaseClient {
603
664
  *
604
665
  * Generates a link that the user can visit to submit their KYC documents.
605
666
  *
606
- * @param request - Request containing the user ID, optional redirect URL, and optional callback URL (receives POST requests)
667
+ * Optionally pass the customer's registered identity data as
668
+ * `customer_data` (same shape as the geolocation `customer_data` block).
669
+ * It seeds the customer's risk profile so document verification can
670
+ * cross-check the submitted document against trusted reference data;
671
+ * fields never overwrite data already on the profile.
672
+ *
673
+ * @param request - Request containing the user ID, optional redirect URL, optional callback URL (receives POST requests), and optional customer identity data
607
674
  * @returns Response containing the redirect link and KYC ID
608
675
  *
609
676
  * @example
@@ -611,19 +678,27 @@ var KycClient = class extends BaseClient {
611
678
  * const result = await client.requestKycSubmitLink({
612
679
  * user_id: "user_123",
613
680
  * redirect_url: "https://merchant.com/kyc-complete", // optional
614
- * callback_url: "https://merchant.com/api/kyc-webhook" // optional - receives POST requests on status change
681
+ * callback_url: "https://merchant.com/api/kyc-webhook", // optional - receives POST requests on status change
682
+ * customer_data: { // optional - seeds the risk profile for document cross-checks
683
+ * full_name: "John Doe",
684
+ * date_of_birth: "1999-06-02", // ISO 8601
685
+ * email: "john@example.com",
686
+ * phone: "+94771234567",
687
+ * address: "12 Main St, Colombo", // used for address verification
688
+ * country: "LK"
689
+ * }
615
690
  * });
616
691
  *
617
692
  * console.log(`Redirect user to: ${result.link}`);
618
693
  * console.log(`KYC ID: ${result.kyc_id}`);
619
694
  * ```
620
695
  */
621
- async requestKycSubmitLink(request) {
696
+ async requestKycSubmitLink(request, requestOptions) {
622
697
  return this.requestWithRetry("/api/v1/kyc/request", {
623
698
  method: "POST",
624
699
  body: JSON.stringify(request),
625
700
  headers: this.getUserHeaders()
626
- });
701
+ }, void 0, void 0, requestOptions);
627
702
  }
628
703
  /**
629
704
  * Create a Event-Based Face Verification session.
@@ -656,12 +731,12 @@ var KycClient = class extends BaseClient {
656
731
  *
657
732
  * @param request - Token from `createEventBasedFaceVerificationSession`, plus the base64 selfie.
658
733
  */
659
- async submitEventBasedFaceVerificationSession(request) {
734
+ async submitEventBasedFaceVerificationSession(request, requestOptions) {
660
735
  return this.request("/api/v1/kyc/face/submit", {
661
736
  method: "POST",
662
737
  body: JSON.stringify(request),
663
738
  headers: this.getUserHeaders()
664
- });
739
+ }, void 0, requestOptions);
665
740
  }
666
741
  /**
667
742
  * Look up the current state of a Event-Based Face Verification session by its
@@ -760,7 +835,7 @@ var KycClient = class extends BaseClient {
760
835
  * @example
761
836
  * ```typescript
762
837
  * const result = await client.submitVerification({
763
- * reference: "customer_123",
838
+ * reference: "4d2aff34-ab86-422d-992e-50b1234a5b67",
764
839
  * email: "customer@example.com",
765
840
  * country: "US",
766
841
  * document: {
@@ -777,12 +852,12 @@ var KycClient = class extends BaseClient {
777
852
  * console.log(`Verification submitted: ${result.reference}`);
778
853
  * ```
779
854
  */
780
- async submitVerification(request) {
855
+ async submitVerification(request, requestOptions) {
781
856
  return this.requestWithRetry("/api/v1/kyc/submit", {
782
857
  method: "POST",
783
858
  body: JSON.stringify(request),
784
859
  headers: this.getUserHeaders()
785
- });
860
+ }, void 0, void 0, requestOptions);
786
861
  }
787
862
  /**
788
863
  * Get a KYC request by ID
@@ -792,7 +867,7 @@ var KycClient = class extends BaseClient {
792
867
  *
793
868
  * @example
794
869
  * ```typescript
795
- * const kyc = await client.getKycRequest("kyc_abc123");
870
+ * const kyc = await client.getKycRequest("550e8400-e29b-41d4-a716-446655440000");
796
871
  * console.log(`Status: ${kyc.status}, ID Verified: ${kyc.id_verified}`);
797
872
  * ```
798
873
  */
@@ -867,7 +942,7 @@ var KycClient = class extends BaseClient {
867
942
  * @example
868
943
  * ```typescript
869
944
  * await client.requestAdditionalDocuments({
870
- * id: "kyc_abc123",
945
+ * id: "550e8400-e29b-41d4-a716-446655440000",
871
946
  * document_types: ["address", "document_two"],
872
947
  * message: "Please provide proof of address and secondary ID"
873
948
  * });
@@ -888,7 +963,7 @@ var KycClient = class extends BaseClient {
888
963
  *
889
964
  * @example
890
965
  * ```typescript
891
- * const proofs = await client.getProofDownloadURLs("kyc_abc123");
966
+ * const proofs = await client.getProofDownloadURLs("550e8400-e29b-41d4-a716-446655440000");
892
967
  * proofs.forEach(proof => {
893
968
  * console.log(`${proof.type}: ${proof.url} (expires: ${proof.expires_at})`);
894
969
  * });