@opexa/portal-sdk 0.59.40 → 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.d.cts CHANGED
@@ -826,6 +826,7 @@ interface MobileNumberCreateAccountInput__next {
826
826
  testPass?: boolean;
827
827
  fingerprint?: string;
828
828
  gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
829
+ referralCode?: string;
829
830
  }
830
831
  type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
831
832
  type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
package/dist/index.d.ts CHANGED
@@ -826,6 +826,7 @@ interface MobileNumberCreateAccountInput__next {
826
826
  testPass?: boolean;
827
827
  fingerprint?: string;
828
828
  gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
829
+ referralCode?: string;
829
830
  }
830
831
  type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
831
832
  type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
package/dist/index.js CHANGED
@@ -1932,6 +1932,9 @@ var REGISTER_MEMBER_ACCOUNT_BY_MOBILE_NUMBER_MUTATION__NEXT = gql`
1932
1932
  ... on InvalidPlatformError {
1933
1933
  __typename
1934
1934
  }
1935
+ ... on Error {
1936
+ __typename
1937
+ }
1935
1938
  }
1936
1939
  }
1937
1940
  `;
@@ -9981,8 +9984,14 @@ var Sdk = class {
9981
9984
  ...this.marketDomain && {
9982
9985
  domain: this.marketDomain
9983
9986
  },
9987
+ ...this.cxd && {
9988
+ cellxpertCxd: this.cxd
9989
+ },
9984
9990
  ...input.fingerprint && {
9985
9991
  fingerprint: input.fingerprint
9992
+ },
9993
+ ...input.referralCode && {
9994
+ referralCode: input.referralCode
9986
9995
  }
9987
9996
  });
9988
9997
  return res2.ok ? { ok: true, data: { id } } : res2;