vesant-sdk 1.7.0-dev.059da4f → 1.7.0-dev.117915b

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/index.mjs CHANGED
@@ -1798,9 +1798,6 @@ var ComplianceClient = class {
1798
1798
  if (cipherTextResult.risk?.is_blocked) {
1799
1799
  blockReasons.push(...cipherTextResult.risk.block_reasons_structured ?? []);
1800
1800
  }
1801
- if (cipherTextResult.risk?.location_mismatch) {
1802
- blockReasons.push(sdkReasons.gpsIPMismatch());
1803
- }
1804
1801
  }
1805
1802
  if (geoVerification.gps_required && !cipherTextResult) {
1806
1803
  blockReasons.push(sdkReasons.gpsRequired());
@@ -3329,15 +3326,6 @@ var TaxClient = class extends BaseClient {
3329
3326
  { method: "POST" }
3330
3327
  );
3331
3328
  }
3332
- async requestTaxFormWithProfile(input) {
3333
- return this.request(
3334
- "/api/v1/tax/customer-tax-profiles/request-form-with-profile",
3335
- {
3336
- method: "POST",
3337
- body: JSON.stringify(input)
3338
- }
3339
- );
3340
- }
3341
3329
  async checkTINStatus(customerID) {
3342
3330
  return this.requestWithRetry(
3343
3331
  `/api/v1/tax/customer-tax-profiles/${customerID}/check-tin`,
@@ -3364,7 +3352,7 @@ var TaxClient = class extends BaseClient {
3364
3352
  }
3365
3353
  async getCustomerDocuments(customerID) {
3366
3354
  return this.request(
3367
- `/api/v1/tax/customer-tax-profiles/${customerID}/documents`
3355
+ `/api/v1/tm/customer-tax-profiles/${customerID}/documents`
3368
3356
  );
3369
3357
  }
3370
3358
  async downloadTaxForm(customerID, requestOptions) {