@opexa/portal-sdk 0.8.1 → 0.8.2

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.cjs CHANGED
@@ -2367,6 +2367,9 @@ var AccountService = class {
2367
2367
  headers: {
2368
2368
  ...variables.reCAPTCHAResponse && {
2369
2369
  "google-recaptcha-response": reCAPTCHAResponse
2370
+ },
2371
+ ...variables.testPass && {
2372
+ "Test-Pass": "true"
2370
2373
  }
2371
2374
  }
2372
2375
  });
@@ -5646,6 +5649,7 @@ var Sdk = class {
5646
5649
  mobileNumber: addAreaCode(input.mobileNumber, await this.locale)
5647
5650
  },
5648
5651
  mobileNumberVerificationCode: input.mobileVerificationCode,
5652
+ testPass: input.testPass,
5649
5653
  reCAPTCHAResponse: input.reCAPTCHAResponse
5650
5654
  });
5651
5655
  return res2.ok ? { ok: true, data: { id } } : res2;