@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.js CHANGED
@@ -1656,9 +1656,8 @@ var MEMBER_ACCOUNT_QUERY = gql`
1656
1656
  }
1657
1657
  `;
1658
1658
  var MEMBER_WITH_CELLXPERT_DETAILS_QUERY = gql`
1659
- query GetMemberWithCellxpertDetails($id: ObjectId) {
1660
- node(id: $id) {
1661
- id
1659
+ query MemberAccountCelleExpertId {
1660
+ memberAccount: self {
1662
1661
  ... on MemberAccount {
1663
1662
  id
1664
1663
  cellxpertDetails {
@@ -3423,8 +3422,8 @@ var AccountService = class {
3423
3422
  data: res.data.memberAccount
3424
3423
  };
3425
3424
  }
3426
- async memberWithCellxpertDetails(variables) {
3427
- const res = await this.client.request(MEMBER_WITH_CELLXPERT_DETAILS_QUERY, variables);
3425
+ async memberWithCellxpertDetails() {
3426
+ const res = await this.client.request(MEMBER_WITH_CELLXPERT_DETAILS_QUERY);
3428
3427
  if (!res.ok) return res;
3429
3428
  return {
3430
3429
  ok: true,
@@ -9189,7 +9188,7 @@ var Sdk = class {
9189
9188
  };
9190
9189
  }
9191
9190
  async memberWithCellxpertDetails() {
9192
- const res = await this.accountService.memberWithCellxpertDetails({});
9191
+ const res = await this.accountService.memberWithCellxpertDetails();
9193
9192
  if (!res.ok) return res;
9194
9193
  return {
9195
9194
  ok: true,