@opexa/portal-sdk 0.59.97 → 0.59.98

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.
@@ -3734,6 +3734,13 @@ var SUBMIT_MEMBER_VERIFICATION_REQUEST_IMAGE_DETAILS_MUTATION__NEXT = gql`
3734
3734
  _submitMemberVerificationRequestImageDetails(input: $input)
3735
3735
  }
3736
3736
  `;
3737
+ var SUBMIT_MEMBER_VERIFICATION_REQUEST_PERSONAL_DETAILS_MUTATION__NEXT = gql`
3738
+ mutation SubmitMemberVerificationRequestPersonalDetails(
3739
+ $input: SubmitMemberVerificationRequestPersonalDetailsInput!
3740
+ ) {
3741
+ _submitMemberVerificationRequestPersonalDetails(input: $input)
3742
+ }
3743
+ `;
3737
3744
  var START_MEMBER_VERIFICATION_REQUEST_FACE_LIVENESS_SESSION = gql`
3738
3745
  mutation StartMemberVerificationRequestFaceLivenessSession {
3739
3746
  startMemberVerificationRequestFaceLivenessSession
@@ -4646,6 +4653,17 @@ var AccountService = class {
4646
4653
  data: res.data.submitMemberVerificationRequestPersonalDetails
4647
4654
  };
4648
4655
  }
4656
+ async submitMemberVerificationRequestPersonalDetails__next(variables) {
4657
+ const res = await this.client.request(
4658
+ SUBMIT_MEMBER_VERIFICATION_REQUEST_PERSONAL_DETAILS_MUTATION__NEXT,
4659
+ variables
4660
+ );
4661
+ if (!res.ok) return res;
4662
+ return {
4663
+ ok: true,
4664
+ data: res.data._submitMemberVerificationRequestPersonalDetails
4665
+ };
4666
+ }
4649
4667
  async memberVerificationRequestAutomaticApprovalEnabled() {
4650
4668
  const res = await this.client.request(
4651
4669
  MEMBER_VERIFICATION_REQUEST_AUTOMATIC_APPROVAL_ENABLED_QUERY