@opexa/portal-sdk 0.59.45 → 0.59.46

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.
@@ -1743,6 +1743,16 @@ var MEMBER_ACCOUNT_FRAGMENT = gql`
1743
1743
  newMonthlyBetLimit
1744
1744
  newDailyDepositLimit
1745
1745
  newMonthlyDepositLimit
1746
+ agent {
1747
+ code
1748
+ }
1749
+ gigRewardsQuestDetails {
1750
+ gigUserId
1751
+ }
1752
+ cellxpertDetails {
1753
+ cxd
1754
+ dateTimeLastUpdated
1755
+ }
1746
1756
  }
1747
1757
  `;
1748
1758
  var MEMBER_ACCOUNT_QUERY = gql`
@@ -1750,9 +1760,6 @@ var MEMBER_ACCOUNT_QUERY = gql`
1750
1760
  memberAccount: self {
1751
1761
  ... on MemberAccount {
1752
1762
  ...MemberAccountCoreData
1753
- gigRewardsQuestDetails {
1754
- gigUserId
1755
- }
1756
1763
  }
1757
1764
  }
1758
1765
  }
@@ -1764,31 +1771,12 @@ var MEMBER_ACCOUNT_QUERY__DEVELOPMENT = gql`
1764
1771
  memberAccount: self {
1765
1772
  ... on MemberAccount {
1766
1773
  ...MemberAccountCoreData
1767
- agent {
1768
- code
1769
- }
1770
- gigRewardsQuestDetails {
1771
- gigUserId
1772
- }
1773
1774
  }
1774
1775
  }
1775
1776
  }
1776
1777
 
1777
1778
  ${MEMBER_ACCOUNT_FRAGMENT}
1778
1779
  `;
1779
- var MEMBER_WITH_CELLXPERT_DETAILS_QUERY = gql`
1780
- query MemberAccountCelleExpertId {
1781
- memberAccount: self {
1782
- ... on MemberAccount {
1783
- id
1784
- cellxpertDetails {
1785
- cxd
1786
- dateTimeLastUpdated
1787
- }
1788
- }
1789
- }
1790
- }
1791
- `;
1792
1780
  var MEMBER_VERIFICATION_QUERY = gql`
1793
1781
  ${FILE_FRAGMENT}
1794
1782
 
@@ -3677,14 +3665,6 @@ var AccountService = class {
3677
3665
  data: res.data.memberAccount
3678
3666
  };
3679
3667
  }
3680
- async memberWithCellxpertDetails() {
3681
- const res = await this.client.request(MEMBER_WITH_CELLXPERT_DETAILS_QUERY);
3682
- if (!res.ok) return res;
3683
- return {
3684
- ok: true,
3685
- data: res.data.node
3686
- };
3687
- }
3688
3668
  async registerMemberAccount(variables) {
3689
3669
  const { reCAPTCHAResponse, domain, ...others } = variables;
3690
3670
  const res = await this.client.request(REGISTER_MEMBER_ACCOUNT_MUTATION, others, {