@opexa/portal-sdk 0.59.40 → 0.59.41
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/README.md +1634 -1634
- package/dist/index.cjs +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1937,6 +1937,9 @@ var REGISTER_MEMBER_ACCOUNT_BY_MOBILE_NUMBER_MUTATION__NEXT = gql`
|
|
|
1937
1937
|
... on InvalidPlatformError {
|
|
1938
1938
|
__typename
|
|
1939
1939
|
}
|
|
1940
|
+
... on Error {
|
|
1941
|
+
__typename
|
|
1942
|
+
}
|
|
1940
1943
|
}
|
|
1941
1944
|
}
|
|
1942
1945
|
`;
|
|
@@ -9986,8 +9989,14 @@ var Sdk = class {
|
|
|
9986
9989
|
...this.marketDomain && {
|
|
9987
9990
|
domain: this.marketDomain
|
|
9988
9991
|
},
|
|
9992
|
+
...this.cxd && {
|
|
9993
|
+
cellxpertCxd: this.cxd
|
|
9994
|
+
},
|
|
9989
9995
|
...input.fingerprint && {
|
|
9990
9996
|
fingerprint: input.fingerprint
|
|
9997
|
+
},
|
|
9998
|
+
...input.referralCode && {
|
|
9999
|
+
referralCode: input.referralCode
|
|
9991
10000
|
}
|
|
9992
10001
|
});
|
|
9993
10002
|
return res2.ok ? { ok: true, data: { id } } : res2;
|