@opexa/portal-sdk 0.59.62 → 0.59.63

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
@@ -10403,15 +10403,18 @@ var Sdk = class {
10403
10403
  }
10404
10404
  });
10405
10405
  }
10406
- async sendVerificationCode__next(input) {
10406
+ async sendVerificationCode__next(input, recaptchaResponse) {
10407
10407
  if (input.type === "SMS") {
10408
- return this.authService.sendVerificationCode({
10409
- channel: "SMS",
10410
- recipient: addAreaCode(input.mobileNumber, await this.locale),
10411
- ...input.strict && {
10412
- verificationType: "MEMBER"
10413
- }
10414
- });
10408
+ return this.authService.sendVerificationCode(
10409
+ {
10410
+ channel: "SMS",
10411
+ recipient: addAreaCode(input.mobileNumber, await this.locale),
10412
+ ...input.strict && {
10413
+ verificationType: "MEMBER"
10414
+ }
10415
+ },
10416
+ recaptchaResponse
10417
+ );
10415
10418
  }
10416
10419
  throw new Error("'Email' verification code is not yet supported");
10417
10420
  }