@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 +9 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
@@ -1728,12 +1728,6 @@ var MEMBER_ACCOUNT_QUERY = gql`
|
|
|
1728
1728
|
gigUserId
|
|
1729
1729
|
}
|
|
1730
1730
|
}
|
|
1731
|
-
... on Member {
|
|
1732
|
-
dailyTotalBet
|
|
1733
|
-
monthlyTotalBet
|
|
1734
|
-
dailyTotalDeposit
|
|
1735
|
-
monthlyTotalDeposit
|
|
1736
|
-
}
|
|
1737
1731
|
}
|
|
1738
1732
|
}
|
|
1739
1733
|
|
|
@@ -1938,6 +1932,9 @@ var REGISTER_MEMBER_ACCOUNT_BY_MOBILE_NUMBER_MUTATION__NEXT = gql`
|
|
|
1938
1932
|
... on InvalidPlatformError {
|
|
1939
1933
|
__typename
|
|
1940
1934
|
}
|
|
1935
|
+
... on Error {
|
|
1936
|
+
__typename
|
|
1937
|
+
}
|
|
1941
1938
|
}
|
|
1942
1939
|
}
|
|
1943
1940
|
`;
|
|
@@ -9987,8 +9984,14 @@ var Sdk = class {
|
|
|
9987
9984
|
...this.marketDomain && {
|
|
9988
9985
|
domain: this.marketDomain
|
|
9989
9986
|
},
|
|
9987
|
+
...this.cxd && {
|
|
9988
|
+
cellxpertCxd: this.cxd
|
|
9989
|
+
},
|
|
9990
9990
|
...input.fingerprint && {
|
|
9991
9991
|
fingerprint: input.fingerprint
|
|
9992
|
+
},
|
|
9993
|
+
...input.referralCode && {
|
|
9994
|
+
referralCode: input.referralCode
|
|
9992
9995
|
}
|
|
9993
9996
|
});
|
|
9994
9997
|
return res2.ok ? { ok: true, data: { id } } : res2;
|