@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/{chunk-MJLXQ6HC.js → chunk-QDA6QPFR.js} +20 -2
- package/dist/chunk-QDA6QPFR.js.map +1 -0
- package/dist/index.cjs +23 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/services/index.cjs +18 -0
- package/dist/services/index.cjs.map +1 -1
- package/dist/services/index.d.cts +3 -2
- package/dist/services/index.d.ts +3 -2
- package/dist/services/index.js +1 -1
- package/dist/{types-CNyq_tWA.d.cts → types-AijGHxca.d.cts} +4 -1
- package/dist/{types-CFrQAxhE.d.ts → types-DeKD2Ta0.d.ts} +4 -1
- package/package.json +1 -1
- package/dist/chunk-MJLXQ6HC.js.map +0 -1
package/dist/services/index.cjs
CHANGED
|
@@ -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
|