@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.
package/dist/index.cjs CHANGED
@@ -3675,6 +3675,7 @@ var MEMBER_VERIFICATION_REQUEST_FRAGMENT = gql`
3675
3675
  id
3676
3676
  url
3677
3677
  }
3678
+ _selfieImage
3678
3679
  permanentAddress
3679
3680
  currentAddress
3680
3681
  sourceOfIncome
@@ -3755,6 +3756,13 @@ var SUBMIT_MEMBER_VERIFICATION_REQUEST_IMAGE_DETAILS_MUTATION__NEXT = gql`
3755
3756
  _submitMemberVerificationRequestImageDetails(input: $input)
3756
3757
  }
3757
3758
  `;
3759
+ var SUBMIT_MEMBER_VERIFICATION_REQUEST_PERSONAL_DETAILS_MUTATION__NEXT = gql`
3760
+ mutation SubmitMemberVerificationRequestPersonalDetails(
3761
+ $input: SubmitMemberVerificationRequestPersonalDetailsInput!
3762
+ ) {
3763
+ _submitMemberVerificationRequestPersonalDetails(input: $input)
3764
+ }
3765
+ `;
3758
3766
  var START_MEMBER_VERIFICATION_REQUEST_FACE_LIVENESS_SESSION = gql`
3759
3767
  mutation StartMemberVerificationRequestFaceLivenessSession {
3760
3768
  startMemberVerificationRequestFaceLivenessSession
@@ -4667,6 +4675,17 @@ var AccountService = class {
4667
4675
  data: res.data.submitMemberVerificationRequestPersonalDetails
4668
4676
  };
4669
4677
  }
4678
+ async submitMemberVerificationRequestPersonalDetails__next(variables) {
4679
+ const res = await this.client.request(
4680
+ SUBMIT_MEMBER_VERIFICATION_REQUEST_PERSONAL_DETAILS_MUTATION__NEXT,
4681
+ variables
4682
+ );
4683
+ if (!res.ok) return res;
4684
+ return {
4685
+ ok: true,
4686
+ data: res.data._submitMemberVerificationRequestPersonalDetails
4687
+ };
4688
+ }
4670
4689
  async memberVerificationRequestAutomaticApprovalEnabled() {
4671
4690
  const res = await this.client.request(
4672
4691
  MEMBER_VERIFICATION_REQUEST_AUTOMATIC_APPROVAL_ENABLED_QUERY
@@ -10310,6 +10329,7 @@ var Transformer = class {
10310
10329
  dateOfBirth: data.dateOfBirth ? new Date(data.dateOfBirth) : void 0,
10311
10330
  idFrontImage: data.idFrontImage ?? void 0,
10312
10331
  selfieImage: data.selfieImage ?? void 0,
10332
+ _selfieImage: data._selfieImage ?? null,
10313
10333
  permanentAddress: data.permanentAddress ?? void 0,
10314
10334
  currentAddress: data.currentAddress ?? void 0,
10315
10335
  sourceOfIncome: data.sourceOfIncome ?? void 0,
@@ -13113,6 +13133,11 @@ var Sdk = class {
13113
13133
  { input }
13114
13134
  );
13115
13135
  }
13136
+ async submitMemberVerificationRequestPersonalDetails__next(input) {
13137
+ return await this.accountService.submitMemberVerificationRequestPersonalDetails__next(
13138
+ { input }
13139
+ );
13140
+ }
13116
13141
  async startMemberVerificationRequestFaceLivenessSession() {
13117
13142
  return await this.accountService.startMemberVerificationRequestFaceLivenessSession();
13118
13143
  }