@opexa/portal-sdk 0.59.41 → 0.59.42

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
@@ -1915,8 +1915,8 @@ var REGISTER_MEMBER_ACCOUNT_MUTATION__NEXT = gql`
1915
1915
  }
1916
1916
  `;
1917
1917
  var REGISTER_MEMBER_ACCOUNT_BY_MOBILE_NUMBER_MUTATION__NEXT = gql`
1918
- mutation RegisterMemberAccountByMobileNumber($input: _RegisterMemberAccountByMobileNumberInput!) {
1919
- registerMemberAccountByMobileNumber: _registerMemberAccountByMobileNumber(input: $input) {
1918
+ mutation RegisterMemberAccountByMobileNumber($input: _RegisterMemberAccountByMobileNumberInput!, $referralCode: String) {
1919
+ registerMemberAccountByMobileNumber: _registerMemberAccountByMobileNumber(input: $input, referralCode: $referralCode) {
1920
1920
  ... on MobileNumberNotAvailableError {
1921
1921
  __typename
1922
1922
  }
@@ -9977,16 +9977,16 @@ var Sdk = class {
9977
9977
  emailAddress: input.emailAddress,
9978
9978
  branchCode: input.branchCode,
9979
9979
  agentCode: input.agentCode,
9980
- gigRewardsQuestDetails: input.gigRewardsQuestDetails
9980
+ gigRewardsQuestDetails: input.gigRewardsQuestDetails,
9981
+ ...this.cxd && {
9982
+ cellxpertCxd: this.cxd
9983
+ }
9981
9984
  },
9982
9985
  testPass: input.testPass,
9983
9986
  reCAPTCHAResponse: input.reCAPTCHAResponse,
9984
9987
  ...this.marketDomain && {
9985
9988
  domain: this.marketDomain
9986
9989
  },
9987
- ...this.cxd && {
9988
- cellxpertCxd: this.cxd
9989
- },
9990
9990
  ...input.fingerprint && {
9991
9991
  fingerprint: input.fingerprint
9992
9992
  },