@opexa/portal-sdk 0.59.97 → 0.59.99

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