@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.
package/dist/index.cjs CHANGED
@@ -3755,6 +3755,13 @@ var SUBMIT_MEMBER_VERIFICATION_REQUEST_IMAGE_DETAILS_MUTATION__NEXT = gql`
3755
3755
  _submitMemberVerificationRequestImageDetails(input: $input)
3756
3756
  }
3757
3757
  `;
3758
+ var SUBMIT_MEMBER_VERIFICATION_REQUEST_PERSONAL_DETAILS_MUTATION__NEXT = gql`
3759
+ mutation SubmitMemberVerificationRequestPersonalDetails(
3760
+ $input: SubmitMemberVerificationRequestPersonalDetailsInput!
3761
+ ) {
3762
+ _submitMemberVerificationRequestPersonalDetails(input: $input)
3763
+ }
3764
+ `;
3758
3765
  var START_MEMBER_VERIFICATION_REQUEST_FACE_LIVENESS_SESSION = gql`
3759
3766
  mutation StartMemberVerificationRequestFaceLivenessSession {
3760
3767
  startMemberVerificationRequestFaceLivenessSession
@@ -4667,6 +4674,17 @@ var AccountService = class {
4667
4674
  data: res.data.submitMemberVerificationRequestPersonalDetails
4668
4675
  };
4669
4676
  }
4677
+ async submitMemberVerificationRequestPersonalDetails__next(variables) {
4678
+ const res = await this.client.request(
4679
+ SUBMIT_MEMBER_VERIFICATION_REQUEST_PERSONAL_DETAILS_MUTATION__NEXT,
4680
+ variables
4681
+ );
4682
+ if (!res.ok) return res;
4683
+ return {
4684
+ ok: true,
4685
+ data: res.data._submitMemberVerificationRequestPersonalDetails
4686
+ };
4687
+ }
4670
4688
  async memberVerificationRequestAutomaticApprovalEnabled() {
4671
4689
  const res = await this.client.request(
4672
4690
  MEMBER_VERIFICATION_REQUEST_AUTOMATIC_APPROVAL_ENABLED_QUERY
@@ -13113,6 +13131,11 @@ var Sdk = class {
13113
13131
  { input }
13114
13132
  );
13115
13133
  }
13134
+ async submitMemberVerificationRequestPersonalDetails__next(input) {
13135
+ return await this.accountService.submitMemberVerificationRequestPersonalDetails__next(
13136
+ { input }
13137
+ );
13138
+ }
13116
13139
  async startMemberVerificationRequestFaceLivenessSession() {
13117
13140
  return await this.accountService.startMemberVerificationRequestFaceLivenessSession();
13118
13141
  }