@opexa/portal-sdk 0.57.1 → 0.57.2
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 +5 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1661,9 +1661,8 @@ var MEMBER_ACCOUNT_QUERY = gql`
|
|
|
1661
1661
|
}
|
|
1662
1662
|
`;
|
|
1663
1663
|
var MEMBER_WITH_CELLXPERT_DETAILS_QUERY = gql`
|
|
1664
|
-
query
|
|
1665
|
-
|
|
1666
|
-
id
|
|
1664
|
+
query MemberAccountCelleExpertId {
|
|
1665
|
+
memberAccount: self {
|
|
1667
1666
|
... on MemberAccount {
|
|
1668
1667
|
id
|
|
1669
1668
|
cellxpertDetails {
|
|
@@ -3428,8 +3427,8 @@ var AccountService = class {
|
|
|
3428
3427
|
data: res.data.memberAccount
|
|
3429
3428
|
};
|
|
3430
3429
|
}
|
|
3431
|
-
async memberWithCellxpertDetails(
|
|
3432
|
-
const res = await this.client.request(MEMBER_WITH_CELLXPERT_DETAILS_QUERY
|
|
3430
|
+
async memberWithCellxpertDetails() {
|
|
3431
|
+
const res = await this.client.request(MEMBER_WITH_CELLXPERT_DETAILS_QUERY);
|
|
3433
3432
|
if (!res.ok) return res;
|
|
3434
3433
|
return {
|
|
3435
3434
|
ok: true,
|
|
@@ -9194,7 +9193,7 @@ var Sdk = class {
|
|
|
9194
9193
|
};
|
|
9195
9194
|
}
|
|
9196
9195
|
async memberWithCellxpertDetails() {
|
|
9197
|
-
const res = await this.accountService.memberWithCellxpertDetails(
|
|
9196
|
+
const res = await this.accountService.memberWithCellxpertDetails();
|
|
9198
9197
|
if (!res.ok) return res;
|
|
9199
9198
|
return {
|
|
9200
9199
|
ok: true,
|