@opexa/portal-sdk 0.59.39 → 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/dist/index.cjs CHANGED
@@ -1733,12 +1733,6 @@ var MEMBER_ACCOUNT_QUERY = gql`
1733
1733
  gigUserId
1734
1734
  }
1735
1735
  }
1736
- ... on Member {
1737
- dailyTotalBet
1738
- monthlyTotalBet
1739
- dailyTotalDeposit
1740
- monthlyTotalDeposit
1741
- }
1742
1736
  }
1743
1737
  }
1744
1738
 
@@ -1943,6 +1937,9 @@ var REGISTER_MEMBER_ACCOUNT_BY_MOBILE_NUMBER_MUTATION__NEXT = gql`
1943
1937
  ... on InvalidPlatformError {
1944
1938
  __typename
1945
1939
  }
1940
+ ... on Error {
1941
+ __typename
1942
+ }
1946
1943
  }
1947
1944
  }
1948
1945
  `;
@@ -9992,8 +9989,14 @@ var Sdk = class {
9992
9989
  ...this.marketDomain && {
9993
9990
  domain: this.marketDomain
9994
9991
  },
9992
+ ...this.cxd && {
9993
+ cellxpertCxd: this.cxd
9994
+ },
9995
9995
  ...input.fingerprint && {
9996
9996
  fingerprint: input.fingerprint
9997
+ },
9998
+ ...input.referralCode && {
9999
+ referralCode: input.referralCode
9997
10000
  }
9998
10001
  });
9999
10002
  return res2.ok ? { ok: true, data: { id } } : res2;