@opexa/portal-sdk 0.58.1 → 0.58.2
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 +311 -369
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -36
- package/dist/index.d.ts +16 -36
- package/dist/index.js +311 -369
- package/dist/index.js.map +1 -1
- package/package.json +1 -2
package/dist/index.d.cts
CHANGED
|
@@ -451,11 +451,9 @@ interface JackpotPayoutsQueryVariables {
|
|
|
451
451
|
cursor: JackpotPayoutCursor;
|
|
452
452
|
};
|
|
453
453
|
}
|
|
454
|
-
interface JackpotsIdsQueryVariables extends JackpotsQueryVariables {
|
|
455
|
-
}
|
|
456
454
|
type FCMDeviceType$1 = 'IOS' | 'ANDROID';
|
|
457
455
|
type TournamentStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
458
|
-
type TournamentType$1 = 'MULTIPLIER'
|
|
456
|
+
type TournamentType$1 = 'MULTIPLIER';
|
|
459
457
|
interface TournamentsQueryVariables {
|
|
460
458
|
after?: string;
|
|
461
459
|
first?: number;
|
|
@@ -639,9 +637,6 @@ type AccountVerificationStatus = MemberAccountVerificationStatus;
|
|
|
639
637
|
interface Agent {
|
|
640
638
|
code: string;
|
|
641
639
|
}
|
|
642
|
-
interface GigRewardsQuestDetails {
|
|
643
|
-
gigUserId: string;
|
|
644
|
-
}
|
|
645
640
|
interface Account {
|
|
646
641
|
id: string;
|
|
647
642
|
name: string;
|
|
@@ -675,9 +670,7 @@ interface Account {
|
|
|
675
670
|
branchCode?: string;
|
|
676
671
|
agent?: Agent | null;
|
|
677
672
|
level: number;
|
|
678
|
-
partition?: number | null;
|
|
679
673
|
dateTimeLastActive?: Date;
|
|
680
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
681
674
|
}
|
|
682
675
|
type AccountReturn = OperationResult<never, Account>;
|
|
683
676
|
interface CellxpertDetails {
|
|
@@ -723,7 +716,6 @@ interface CreateAccountInput {
|
|
|
723
716
|
referralCode?: string;
|
|
724
717
|
verificationCode?: string;
|
|
725
718
|
reCAPTCHAResponse?: string;
|
|
726
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
727
719
|
}
|
|
728
720
|
interface NameAndPasswordCreateAccountInput {
|
|
729
721
|
type: 'NAME_AND_PASSWORD';
|
|
@@ -734,7 +726,6 @@ interface NameAndPasswordCreateAccountInput {
|
|
|
734
726
|
btag?: string;
|
|
735
727
|
domain?: string;
|
|
736
728
|
reCAPTCHAResponse?: string;
|
|
737
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
738
729
|
}
|
|
739
730
|
interface MobileNumberCreateAccountInput {
|
|
740
731
|
type: 'MOBILE_NUMBER';
|
|
@@ -750,7 +741,6 @@ interface MobileNumberCreateAccountInput {
|
|
|
750
741
|
verificationCode?: string;
|
|
751
742
|
reCAPTCHAResponse?: string;
|
|
752
743
|
testPass?: string;
|
|
753
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
754
744
|
}
|
|
755
745
|
interface MobileNumberInrCreateAccountInput {
|
|
756
746
|
type: 'MOBILE_NUMBER_INR';
|
|
@@ -765,7 +755,6 @@ interface MobileNumberInrCreateAccountInput {
|
|
|
765
755
|
verificationCode?: string;
|
|
766
756
|
reCAPTCHAResponse?: string;
|
|
767
757
|
testPass?: boolean;
|
|
768
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
769
758
|
}
|
|
770
759
|
interface NameCreateAccountInput {
|
|
771
760
|
type: 'NAME';
|
|
@@ -773,7 +762,6 @@ interface NameCreateAccountInput {
|
|
|
773
762
|
name: string;
|
|
774
763
|
password: string;
|
|
775
764
|
reCAPTCHAResponse?: string;
|
|
776
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
777
765
|
}
|
|
778
766
|
interface MobileNumberCreateAccountInput__next {
|
|
779
767
|
type: 'MOBILE_NUMBER[NEXT]';
|
|
@@ -782,11 +770,8 @@ interface MobileNumberCreateAccountInput__next {
|
|
|
782
770
|
mobileNumberVerificationCode: string;
|
|
783
771
|
emailAddress?: string;
|
|
784
772
|
branchCode?: string;
|
|
785
|
-
agentCode?: string;
|
|
786
773
|
reCAPTCHAResponse?: string;
|
|
787
774
|
testPass?: boolean;
|
|
788
|
-
fingerprint?: string;
|
|
789
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
790
775
|
}
|
|
791
776
|
type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
|
|
792
777
|
type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
|
|
@@ -826,7 +811,6 @@ interface UpdateAccountInput {
|
|
|
826
811
|
secretAnswer?: string;
|
|
827
812
|
dateOfBirth?: Date | string;
|
|
828
813
|
branchCode?: string;
|
|
829
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
830
814
|
}
|
|
831
815
|
type UpdateAccountError = UnionAlias<UpdateMemberAccountError>;
|
|
832
816
|
type UpdateAccountReturn = OperationResult<UpdateAccountError>;
|
|
@@ -1562,6 +1546,16 @@ interface MemberLevelSettings {
|
|
|
1562
1546
|
memberLevelSettings__8: MemberLevelSetting;
|
|
1563
1547
|
memberLevelSettings__9: MemberLevelSetting;
|
|
1564
1548
|
memberLevelSettings__10: MemberLevelSetting;
|
|
1549
|
+
memberLevelSettings__11: MemberLevelSetting;
|
|
1550
|
+
memberLevelSettings__12: MemberLevelSetting;
|
|
1551
|
+
memberLevelSettings__13: MemberLevelSetting;
|
|
1552
|
+
memberLevelSettings__14: MemberLevelSetting;
|
|
1553
|
+
memberLevelSettings__15: MemberLevelSetting;
|
|
1554
|
+
memberLevelSettings__16: MemberLevelSetting;
|
|
1555
|
+
memberLevelSettings__17: MemberLevelSetting;
|
|
1556
|
+
memberLevelSettings__18: MemberLevelSetting;
|
|
1557
|
+
memberLevelSettings__19: MemberLevelSetting;
|
|
1558
|
+
memberLevelSettings__20: MemberLevelSetting;
|
|
1565
1559
|
}
|
|
1566
1560
|
/** @deprecated */
|
|
1567
1561
|
interface Platform {
|
|
@@ -1941,14 +1935,6 @@ interface Jackpot {
|
|
|
1941
1935
|
}
|
|
1942
1936
|
type JackpotsReturn = OperationResult<never, PaginatedQueryResult<'jackpots', Jackpot>>;
|
|
1943
1937
|
type _JackpotsReturn = OperationResult<never, PaginatedQueryResult<'_jackpots', Jackpot>>;
|
|
1944
|
-
interface JackpotsIdsInput extends JackpotsIdsQueryVariables {
|
|
1945
|
-
}
|
|
1946
|
-
type JackpotsIdsReturn = OperationResult<never, {
|
|
1947
|
-
jackpots: string[];
|
|
1948
|
-
totalCount: number;
|
|
1949
|
-
hasNextPage: boolean;
|
|
1950
|
-
endCursor?: string;
|
|
1951
|
-
}>;
|
|
1952
1938
|
interface JackpotPayoutsInput extends JackpotPayoutsQueryVariables {
|
|
1953
1939
|
}
|
|
1954
1940
|
interface JackpotPayout {
|
|
@@ -1984,7 +1970,7 @@ type UnregisterFCMDeviceReturn = OperationResult;
|
|
|
1984
1970
|
type GoogleClientIdReturn = OperationResult<never, string | null>;
|
|
1985
1971
|
type RequireFirstDepositReturn = OperationResult<never, boolean>;
|
|
1986
1972
|
type TournamentStatus = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
1987
|
-
type TournamentType = 'MULTIPLIER'
|
|
1973
|
+
type TournamentType = 'MULTIPLIER';
|
|
1988
1974
|
type TournamentFrequency = 'DAILY' | 'WEEKLY' | 'MONTHLY';
|
|
1989
1975
|
type TournamentMode = 'ONE_TIME' | 'RECURRING';
|
|
1990
1976
|
interface TournamentsInput extends TournamentsQueryVariables {
|
|
@@ -2173,21 +2159,16 @@ declare class Sdk {
|
|
|
2173
2159
|
getFetch(): typeof fetch | null;
|
|
2174
2160
|
set middleware(value: GraphQLClientMiddleware);
|
|
2175
2161
|
get middleware(): GraphQLClientMiddleware;
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
get marketDomain(): string | null;
|
|
2162
|
+
initWebDomain(): void;
|
|
2163
|
+
private get webDomain();
|
|
2179
2164
|
set adClickId(value: string | null);
|
|
2180
2165
|
get adClickId(): string | null;
|
|
2181
|
-
set fbp(value: string | null);
|
|
2182
|
-
get fbp(): string | null;
|
|
2183
2166
|
set cxd(value: string | null);
|
|
2184
2167
|
get cxd(): string | null;
|
|
2185
2168
|
private get locale();
|
|
2186
2169
|
private get authMiddleware();
|
|
2187
|
-
private get
|
|
2188
|
-
fingerprint(): Promise<string | null>;
|
|
2170
|
+
private get domainMiddleware();
|
|
2189
2171
|
private get miscMiddleware();
|
|
2190
|
-
collectMetaDetails(): void;
|
|
2191
2172
|
signIn(input: NameAndPasswordSignInInput): Promise<NameAndPasswordSignInReturn>;
|
|
2192
2173
|
signIn(input: MobileNumberSignInInput): Promise<MobileNumberSignInReturn>;
|
|
2193
2174
|
signIn(input: MayaSignInInput): Promise<MayaSignInReturn>;
|
|
@@ -2309,7 +2290,6 @@ declare class Sdk {
|
|
|
2309
2290
|
topWins(): Promise<TopWinsReturn>;
|
|
2310
2291
|
topWinsNext(): Promise<TopWinsReturn>;
|
|
2311
2292
|
jackpots(input?: JackpotsInput): Promise<JackpotsReturn>;
|
|
2312
|
-
jackpotsIds(input?: JackpotsIdsInput): Promise<JackpotsIdsReturn>;
|
|
2313
2293
|
_jackpots(input?: _JackpotsInput): Promise<_JackpotsReturn>;
|
|
2314
2294
|
jackpotPayouts(input?: JackpotPayoutsInput): Promise<JackpotPayoutsReturn>;
|
|
2315
2295
|
tournaments(input?: TournamentsInput): Promise<TournamentsReturn>;
|
|
@@ -2326,4 +2306,4 @@ declare class Sdk {
|
|
|
2326
2306
|
private formatYmd;
|
|
2327
2307
|
}
|
|
2328
2308
|
|
|
2329
|
-
export { type Account, type AccountReturn, type AccountStatus, type AccountVerificationStatus, type AchievementPointsHistoryRecord, type AchievementPointsHistoryRecordInput, type AchievementPointsHistoryRecordReturn, type AchievementSettings, type AchievementSettingsResponse, type AchievementSettingsReturn, type AchievementType, type ActivityRecord, type ActivityRecordType, type ActivityRecordsInput, type ActivityRecordsReturn, type Agent, type AiOGCashDeposit, type AiOGrabPayDeposit, type AiOPalawanPayDeposit, type AiOPayMayaDeposit, type Announcement, type AnnouncementStatus, type AnnouncementType, type AnnouncementsInput, type AnnouncementsReturn, type AuthenticateError, type AuthenticateInput, type AuthenticateReturn, type Authenticator, type AvailablePromosReturn, type AvailableQuestsReturn, type Bank, type BankDeposit, type BankWithdrawalRecord, type BetRecord, type BetRecordStatus, type BetRecordsInput, type BetRecordsReturn, type Bonus, type BonusReturn, type BonusesReturn, type CabinetSignInInput, type CabinetSignInReturn, type CabinetSiteMachine, type CabinetSiteMachineReturn, type CabinetSiteMachineStatus, type CabinetWithdrawalRecord, type CabinetWithdrawalReturn, type Cashback, type CashbackBonus, type CashbackBonusReturn, type CashbackStatus, type CashbacksReturn, type CellxpertDetails, type CheckInDailyQuestReturn, type ClaimCashbackBonusError, type ClaimCashbackBonusReturn, type ClaimRewardError, type ClaimRewardReturn, type ClaimSpotBonusReturn, type CompleteOnboardingInput, type CompleteOnboardingReturn, type CompoundField, type CreateAIOInstapayWithdrawalInput, type CreateAIOInstapayWithdrawalInput_Next, type CreateAIOOnlineBankDepositInput, type CreateAIOQRPHDepositInput, type CreateAccountError, type CreateAccountInput, type CreateAccountInput__Next, type CreateAccountReturn, type CreateAiOGCashDepositInput, type CreateAiOGrabPayDepositInput, type CreateAiOPalawanPayDepositInput, type CreateAiOPayMayaDepositInput, type CreateBankWithdrawalInput, type CreateCabinetWithdrawalInput, type CreateDepositError, type CreateDepositInput, type CreateDepositReturn, type CreateGCashDepositInput, type CreateGCashStandardCashInWithdrawalInput, type CreateGCashWebpayDepositInput, type CreateGCashWithdrawalInput, type CreateGameSessionByIdInput, type CreateGameSessionByReferenceInput, type CreateGameSessionError, type CreateGameSessionInput, type CreateGameSessionReturn, type CreateManualBankDepositInput, type CreateManualBankWithdrawalInput, type CreateManualUPIDepositInput, type CreateManualUPIWithdrawalInput, type CreateMayaAppDepositInput, type CreateMayaAppWithdrawalInput, type CreateMayaDepositInput, type CreateMayaWebpayDepositInput, type CreateMayaWithdrawalInput, type CreateSingleUseTokenError, type CreateSingleUseTokenInput, type CreateSingleUseTokenReturn, type CreateTestDepositInput, type CreateWithdrawalError, type CreateWithdrawalInput, type CreateWithdrawalReturn, type Currency, type DeleteAccountReturn, type Deposit, type DepositRecord, type DepositRecordsInput, type DepositRecordsReturn, type DepositReturn, type DepositStatus, type DepositType, type DepositsCountReturn, type DownlinesByNameInput, type DownlinesByNameReturn, type EndGameSessionReturn, type Environment, type FCMDeviceType, type FavoriteGamesReturn, type Field, type FieldType, type File, type FileReturn, type FreeBetDropStatus, type FreeBetDrops, type FreeBetDropsInput, type FreeBetDropsReturn, type GCashDeposit, type GCashWithdrawalRecord, type Game, type GameProvider, type GameReturn, type GameSession, type GameSessionLaunchOptions, type GameSessionReturn, type GameSessionStatus, type GameTag, type GameType, type GamesInput, type GamesInput__Next, type GamesReturn, type GatewaySettings, type GcashWebpayDeposit, type GeneralMemberLevelSettings, type GeneralMemberLevelSettingsReturn, type GigRewardsQuestDetails, type GoogleClientIdReturn, type HttpError, type ImageField, type InstapayBank, type InstapayBankListReturn, type InstapayBankType, type InstapayWithdrawalRecord, type Jackpot, type JackpotPayout, type JackpotPayoutsInput, type JackpotPayoutsReturn, type JackpotStatus, type JackpotsIdsInput, type JackpotsIdsReturn, type JackpotsInput, type JackpotsReturn, type JourneyQuestMilestone, type JourneyQuestMilestoneType, type KnownDepositError, type LatestBetRecord, type LatestBetRecordsReturn, type Locale, type LoginChannel, type ManualBankDeposit, type ManualBankWithdrawalRecord, type ManualDeposit, type ManualUPIDeposit, type ManualUPIWithdrawalRecord, type ManualWithdrawalRecord, type MarkAllMessagesAsReadReturn, type MarkGameAsFavoriteInput, type MarkGameAsFavoriteReturn, type MarkMessageAsReadReturn, type MayaAppDeposit, type MayaDeposit, type MayaSignInInput, type MayaSignInReturn, type MayaWithdrawalRecord, type MemberAchievement, type MemberAchievementReturn, type MemberFreeBetDrop, type MemberFreeBetDropBetRecord, type MemberFreeBetDropsInput, type MemberFreeBetDropsReturn, type MemberLevelSetting, type MemberLevelSettings, type MemberLevelSettingsReturn, type MemberStatus, type MemberVerificationRequest, type MemberVerificationRequestAutomaticApprovalEnabledReturn, type MemberVerificationRequestReturn, type MemberVerificationRequestStatus, type MemberWithCellxpertDetails, type MemberWithCellxpertDetailsReturn, type Message, type MessageAction, type MessageIcon, type MessageType, type MessagesInput, type MessagesReturn, type MobileNumberCreateAccountInput, type MobileNumberCreateAccountInput__next, type MobileNumberInrCreateAccountInput, type MobileNumberSignInInput, type MobileNumberSignInReturn, type MultiSelectField, type NameAndPasswordCreateAccountInput, type NameAndPasswordSignInInput, type NameAndPasswordSignInReturn, type NameCreateAccountInput, ObjectType, type OnboardingPlayerExperience, type OnboardingStatus, type OnboardingStatusReturn, type OnlineBankDeposit, type OperationError, type OperationResult, type PaymentSettings, type PaymentSettingsReturn, type Platform, type PlatformReturn, type PlatformReturn__Next, type Platform__Next, type PointsClubSettings, type PointsClubSettingsReturn, type PointsWallet, type PointsWalletReturn, type PointsWalletTransaction, type PointsWalletTransactionType, type PointsWalletTransactionsInput, type PointsWalletTransactionsReturn, type ProfileCompletion, type ProfileCompletionReturn, type Promo, type PromoByCodeReturn, type PromoFilterInput, type PromoStatus, type PromoType, type PromosReturn, type QRPHDeposit, type Quest, type QuestProgram, type QuestProgramStatus, type QuestStatus, type QuestType, type RecommendedGamesInput, type RecommendedGamesReturn, type RedeemPointsError, type RedeemPointsInput, type RedeemPointsReturn, type RedeemVoucherInput, type RedeemVoucherReturn, type Referral, type ReferralCodeReturn, type ReferralCommission, type ReferralCommissionReturn, type ReferralsInput, type ReferralsReturn, type RefreshSessionError, type RegisterAgentAccountError, type RegisterAgentAccountInput, type RegisterAgentAccountReturn, type RegisterFCMDeviceInput, type RegisterFCMDeviceReturn, type RegisterMayaAccountError, type RegisterMayaAccountInput, type RegisterMayaAccountReturn, type RemainingDailyWithdrawalsCountReturn, type RequireFirstDepositReturn, type ResetPasswordError, type ResetPasswordInput, type ResetPasswordReturn, type RichTextField, Sdk, type SdkConfig, type SecretQuestion, type SecurityQuestionAuthenticateInput, type SecurityQuestionAuthenticator, type SelectField, type SendEmailVerificationCodeInput, type SendSmsVerificationCodeInput, type SendVerificationCodeError, type SendVerificationCodeError__Next, type SendVerificationCodeInput__Next, type SendVerificationCodeReturn, type SendVerificationCodeReturn__Next, type Session, type SessionError, type SessionReturn, type SignInError, type SignInInput, type SignInReturn, type SingleUseTokenSignInInput, type SingleUseTokenSignInReturn, type Site, type SiteReturn, type SkipOnboardingReturn, type SocialsSignInInput, type SocialsSignInReturn, type SpotBonusPromo, type SubmitMemberVerificationError, type SubmitMemberVerificationRequestBasicDetailsInput, type SubmitMemberVerificationRequestBasicDetailsReturn, type SubmitMemberVerificationRequestImageDetailsInput, type SubmitMemberVerificationRequestImageDetailsReturn, type SubmitMemberVerificationRequestPersonalDetailsInput, type SubmitMemberVerificationRequestPersonalDetailsReturn, type SubmitMemberVerificationReturn, type SubmitVerificationDetailsInput, type SubmitVerificationDetailsInputNext, type SubmitVerificationDetailsReturn, type SubmitVerificationError, type TextField, type ToggleField, type TokenSignInInput, type TokenSignInReturn, type TopWin, type TopWinsReturn, type TouchDepositInput, type TouchDepositReturn, type Tournament, type TournamentFrequency, type TournamentLeaderboard, type TournamentMode, type TournamentPayout, type TournamentStatus, type TournamentType, type TournamentsIdsInput, type TournamentsIdsReturn, type TournamentsInput, type TournamentsReturn, type TransactionRecord, type TransactionRecordsInput, type TransactionRecordsReturn, type TransactionType, type TurnoverRequirementType, type UnmarkGameAsFavoriteInput, type UnmarkGameAsFavoriteReturn, type UnreadMessagesCountInput, type UnreadMessagesCountReturn, type UnregisterFCMDeviceInput, type UnregisterFCMDeviceReturn, type UpdateAccountError, type UpdateAccountInput, type UpdateAccountReturn, type UpdateReferralCodeError, type UpdateReferralCodeInput, type UpdateReferralCodeReturn, type UpdateVerificationDetailsInput, type UpdateVerificationDetailsReturn, type UpdateVerificationError, type UplinesByNameInput, type UplinesByNameReturn, type UploadImageFileError, type UploadImageFileInput, type UploadImageFileReturn, type ValidateMayaSessionReturn, type VerificationDetails, type VerificationDetailsReturn, type VerificationDetailsStatus, type VerifyMobileNumberError, type VerifyMobileNumberReturn, type VoucherType, type WageringQuestStage, type WageringQuestStageSettings, type Wallet, type WalletGame, type WalletGameInput, type WalletGamesReturn, type WalletReturn, type WatchSessionInput, type WithdrawalError, type WithdrawalRecord, type WithdrawalRecordsInput, type WithdrawalRecordsReturn, type WithdrawalStatus, type WithdrawalType, type _JackpotsInput, type _JackpotsReturn };
|
|
2309
|
+
export { type Account, type AccountReturn, type AccountStatus, type AccountVerificationStatus, type AchievementPointsHistoryRecord, type AchievementPointsHistoryRecordInput, type AchievementPointsHistoryRecordReturn, type AchievementSettings, type AchievementSettingsResponse, type AchievementSettingsReturn, type AchievementType, type ActivityRecord, type ActivityRecordType, type ActivityRecordsInput, type ActivityRecordsReturn, type Agent, type AiOGCashDeposit, type AiOGrabPayDeposit, type AiOPalawanPayDeposit, type AiOPayMayaDeposit, type Announcement, type AnnouncementStatus, type AnnouncementType, type AnnouncementsInput, type AnnouncementsReturn, type AuthenticateError, type AuthenticateInput, type AuthenticateReturn, type Authenticator, type AvailablePromosReturn, type AvailableQuestsReturn, type Bank, type BankDeposit, type BankWithdrawalRecord, type BetRecord, type BetRecordStatus, type BetRecordsInput, type BetRecordsReturn, type Bonus, type BonusReturn, type BonusesReturn, type CabinetSignInInput, type CabinetSignInReturn, type CabinetSiteMachine, type CabinetSiteMachineReturn, type CabinetSiteMachineStatus, type CabinetWithdrawalRecord, type CabinetWithdrawalReturn, type Cashback, type CashbackBonus, type CashbackBonusReturn, type CashbackStatus, type CashbacksReturn, type CellxpertDetails, type CheckInDailyQuestReturn, type ClaimCashbackBonusError, type ClaimCashbackBonusReturn, type ClaimRewardError, type ClaimRewardReturn, type ClaimSpotBonusReturn, type CompleteOnboardingInput, type CompleteOnboardingReturn, type CompoundField, type CreateAIOInstapayWithdrawalInput, type CreateAIOInstapayWithdrawalInput_Next, type CreateAIOOnlineBankDepositInput, type CreateAIOQRPHDepositInput, type CreateAccountError, type CreateAccountInput, type CreateAccountInput__Next, type CreateAccountReturn, type CreateAiOGCashDepositInput, type CreateAiOGrabPayDepositInput, type CreateAiOPalawanPayDepositInput, type CreateAiOPayMayaDepositInput, type CreateBankWithdrawalInput, type CreateCabinetWithdrawalInput, type CreateDepositError, type CreateDepositInput, type CreateDepositReturn, type CreateGCashDepositInput, type CreateGCashStandardCashInWithdrawalInput, type CreateGCashWebpayDepositInput, type CreateGCashWithdrawalInput, type CreateGameSessionByIdInput, type CreateGameSessionByReferenceInput, type CreateGameSessionError, type CreateGameSessionInput, type CreateGameSessionReturn, type CreateManualBankDepositInput, type CreateManualBankWithdrawalInput, type CreateManualUPIDepositInput, type CreateManualUPIWithdrawalInput, type CreateMayaAppDepositInput, type CreateMayaAppWithdrawalInput, type CreateMayaDepositInput, type CreateMayaWebpayDepositInput, type CreateMayaWithdrawalInput, type CreateSingleUseTokenError, type CreateSingleUseTokenInput, type CreateSingleUseTokenReturn, type CreateTestDepositInput, type CreateWithdrawalError, type CreateWithdrawalInput, type CreateWithdrawalReturn, type Currency, type DeleteAccountReturn, type Deposit, type DepositRecord, type DepositRecordsInput, type DepositRecordsReturn, type DepositReturn, type DepositStatus, type DepositType, type DepositsCountReturn, type DownlinesByNameInput, type DownlinesByNameReturn, type EndGameSessionReturn, type Environment, type FCMDeviceType, type FavoriteGamesReturn, type Field, type FieldType, type File, type FileReturn, type FreeBetDropStatus, type FreeBetDrops, type FreeBetDropsInput, type FreeBetDropsReturn, type GCashDeposit, type GCashWithdrawalRecord, type Game, type GameProvider, type GameReturn, type GameSession, type GameSessionLaunchOptions, type GameSessionReturn, type GameSessionStatus, type GameTag, type GameType, type GamesInput, type GamesInput__Next, type GamesReturn, type GatewaySettings, type GcashWebpayDeposit, type GeneralMemberLevelSettings, type GeneralMemberLevelSettingsReturn, type GoogleClientIdReturn, type HttpError, type ImageField, type InstapayBank, type InstapayBankListReturn, type InstapayBankType, type InstapayWithdrawalRecord, type Jackpot, type JackpotPayout, type JackpotPayoutsInput, type JackpotPayoutsReturn, type JackpotStatus, type JackpotsInput, type JackpotsReturn, type JourneyQuestMilestone, type JourneyQuestMilestoneType, type KnownDepositError, type LatestBetRecord, type LatestBetRecordsReturn, type Locale, type LoginChannel, type ManualBankDeposit, type ManualBankWithdrawalRecord, type ManualDeposit, type ManualUPIDeposit, type ManualUPIWithdrawalRecord, type ManualWithdrawalRecord, type MarkAllMessagesAsReadReturn, type MarkGameAsFavoriteInput, type MarkGameAsFavoriteReturn, type MarkMessageAsReadReturn, type MayaAppDeposit, type MayaDeposit, type MayaSignInInput, type MayaSignInReturn, type MayaWithdrawalRecord, type MemberAchievement, type MemberAchievementReturn, type MemberFreeBetDrop, type MemberFreeBetDropBetRecord, type MemberFreeBetDropsInput, type MemberFreeBetDropsReturn, type MemberLevelSetting, type MemberLevelSettings, type MemberLevelSettingsReturn, type MemberStatus, type MemberVerificationRequest, type MemberVerificationRequestAutomaticApprovalEnabledReturn, type MemberVerificationRequestReturn, type MemberVerificationRequestStatus, type MemberWithCellxpertDetails, type MemberWithCellxpertDetailsReturn, type Message, type MessageAction, type MessageIcon, type MessageType, type MessagesInput, type MessagesReturn, type MobileNumberCreateAccountInput, type MobileNumberCreateAccountInput__next, type MobileNumberInrCreateAccountInput, type MobileNumberSignInInput, type MobileNumberSignInReturn, type MultiSelectField, type NameAndPasswordCreateAccountInput, type NameAndPasswordSignInInput, type NameAndPasswordSignInReturn, type NameCreateAccountInput, ObjectType, type OnboardingPlayerExperience, type OnboardingStatus, type OnboardingStatusReturn, type OnlineBankDeposit, type OperationError, type OperationResult, type PaymentSettings, type PaymentSettingsReturn, type Platform, type PlatformReturn, type PlatformReturn__Next, type Platform__Next, type PointsClubSettings, type PointsClubSettingsReturn, type PointsWallet, type PointsWalletReturn, type PointsWalletTransaction, type PointsWalletTransactionType, type PointsWalletTransactionsInput, type PointsWalletTransactionsReturn, type ProfileCompletion, type ProfileCompletionReturn, type Promo, type PromoByCodeReturn, type PromoFilterInput, type PromoStatus, type PromoType, type PromosReturn, type QRPHDeposit, type Quest, type QuestProgram, type QuestProgramStatus, type QuestStatus, type QuestType, type RecommendedGamesInput, type RecommendedGamesReturn, type RedeemPointsError, type RedeemPointsInput, type RedeemPointsReturn, type RedeemVoucherInput, type RedeemVoucherReturn, type Referral, type ReferralCodeReturn, type ReferralCommission, type ReferralCommissionReturn, type ReferralsInput, type ReferralsReturn, type RefreshSessionError, type RegisterAgentAccountError, type RegisterAgentAccountInput, type RegisterAgentAccountReturn, type RegisterFCMDeviceInput, type RegisterFCMDeviceReturn, type RegisterMayaAccountError, type RegisterMayaAccountInput, type RegisterMayaAccountReturn, type RemainingDailyWithdrawalsCountReturn, type RequireFirstDepositReturn, type ResetPasswordError, type ResetPasswordInput, type ResetPasswordReturn, type RichTextField, Sdk, type SdkConfig, type SecretQuestion, type SecurityQuestionAuthenticateInput, type SecurityQuestionAuthenticator, type SelectField, type SendEmailVerificationCodeInput, type SendSmsVerificationCodeInput, type SendVerificationCodeError, type SendVerificationCodeError__Next, type SendVerificationCodeInput__Next, type SendVerificationCodeReturn, type SendVerificationCodeReturn__Next, type Session, type SessionError, type SessionReturn, type SignInError, type SignInInput, type SignInReturn, type SingleUseTokenSignInInput, type SingleUseTokenSignInReturn, type Site, type SiteReturn, type SkipOnboardingReturn, type SocialsSignInInput, type SocialsSignInReturn, type SpotBonusPromo, type SubmitMemberVerificationError, type SubmitMemberVerificationRequestBasicDetailsInput, type SubmitMemberVerificationRequestBasicDetailsReturn, type SubmitMemberVerificationRequestImageDetailsInput, type SubmitMemberVerificationRequestImageDetailsReturn, type SubmitMemberVerificationRequestPersonalDetailsInput, type SubmitMemberVerificationRequestPersonalDetailsReturn, type SubmitMemberVerificationReturn, type SubmitVerificationDetailsInput, type SubmitVerificationDetailsInputNext, type SubmitVerificationDetailsReturn, type SubmitVerificationError, type TextField, type ToggleField, type TokenSignInInput, type TokenSignInReturn, type TopWin, type TopWinsReturn, type TouchDepositInput, type TouchDepositReturn, type Tournament, type TournamentFrequency, type TournamentLeaderboard, type TournamentMode, type TournamentPayout, type TournamentStatus, type TournamentType, type TournamentsIdsInput, type TournamentsIdsReturn, type TournamentsInput, type TournamentsReturn, type TransactionRecord, type TransactionRecordsInput, type TransactionRecordsReturn, type TransactionType, type TurnoverRequirementType, type UnmarkGameAsFavoriteInput, type UnmarkGameAsFavoriteReturn, type UnreadMessagesCountInput, type UnreadMessagesCountReturn, type UnregisterFCMDeviceInput, type UnregisterFCMDeviceReturn, type UpdateAccountError, type UpdateAccountInput, type UpdateAccountReturn, type UpdateReferralCodeError, type UpdateReferralCodeInput, type UpdateReferralCodeReturn, type UpdateVerificationDetailsInput, type UpdateVerificationDetailsReturn, type UpdateVerificationError, type UplinesByNameInput, type UplinesByNameReturn, type UploadImageFileError, type UploadImageFileInput, type UploadImageFileReturn, type ValidateMayaSessionReturn, type VerificationDetails, type VerificationDetailsReturn, type VerificationDetailsStatus, type VerifyMobileNumberError, type VerifyMobileNumberReturn, type VoucherType, type WageringQuestStage, type WageringQuestStageSettings, type Wallet, type WalletGame, type WalletGameInput, type WalletGamesReturn, type WalletReturn, type WatchSessionInput, type WithdrawalError, type WithdrawalRecord, type WithdrawalRecordsInput, type WithdrawalRecordsReturn, type WithdrawalStatus, type WithdrawalType, type _JackpotsInput, type _JackpotsReturn };
|
package/dist/index.d.ts
CHANGED
|
@@ -451,11 +451,9 @@ interface JackpotPayoutsQueryVariables {
|
|
|
451
451
|
cursor: JackpotPayoutCursor;
|
|
452
452
|
};
|
|
453
453
|
}
|
|
454
|
-
interface JackpotsIdsQueryVariables extends JackpotsQueryVariables {
|
|
455
|
-
}
|
|
456
454
|
type FCMDeviceType$1 = 'IOS' | 'ANDROID';
|
|
457
455
|
type TournamentStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
458
|
-
type TournamentType$1 = 'MULTIPLIER'
|
|
456
|
+
type TournamentType$1 = 'MULTIPLIER';
|
|
459
457
|
interface TournamentsQueryVariables {
|
|
460
458
|
after?: string;
|
|
461
459
|
first?: number;
|
|
@@ -639,9 +637,6 @@ type AccountVerificationStatus = MemberAccountVerificationStatus;
|
|
|
639
637
|
interface Agent {
|
|
640
638
|
code: string;
|
|
641
639
|
}
|
|
642
|
-
interface GigRewardsQuestDetails {
|
|
643
|
-
gigUserId: string;
|
|
644
|
-
}
|
|
645
640
|
interface Account {
|
|
646
641
|
id: string;
|
|
647
642
|
name: string;
|
|
@@ -675,9 +670,7 @@ interface Account {
|
|
|
675
670
|
branchCode?: string;
|
|
676
671
|
agent?: Agent | null;
|
|
677
672
|
level: number;
|
|
678
|
-
partition?: number | null;
|
|
679
673
|
dateTimeLastActive?: Date;
|
|
680
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
681
674
|
}
|
|
682
675
|
type AccountReturn = OperationResult<never, Account>;
|
|
683
676
|
interface CellxpertDetails {
|
|
@@ -723,7 +716,6 @@ interface CreateAccountInput {
|
|
|
723
716
|
referralCode?: string;
|
|
724
717
|
verificationCode?: string;
|
|
725
718
|
reCAPTCHAResponse?: string;
|
|
726
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
727
719
|
}
|
|
728
720
|
interface NameAndPasswordCreateAccountInput {
|
|
729
721
|
type: 'NAME_AND_PASSWORD';
|
|
@@ -734,7 +726,6 @@ interface NameAndPasswordCreateAccountInput {
|
|
|
734
726
|
btag?: string;
|
|
735
727
|
domain?: string;
|
|
736
728
|
reCAPTCHAResponse?: string;
|
|
737
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
738
729
|
}
|
|
739
730
|
interface MobileNumberCreateAccountInput {
|
|
740
731
|
type: 'MOBILE_NUMBER';
|
|
@@ -750,7 +741,6 @@ interface MobileNumberCreateAccountInput {
|
|
|
750
741
|
verificationCode?: string;
|
|
751
742
|
reCAPTCHAResponse?: string;
|
|
752
743
|
testPass?: string;
|
|
753
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
754
744
|
}
|
|
755
745
|
interface MobileNumberInrCreateAccountInput {
|
|
756
746
|
type: 'MOBILE_NUMBER_INR';
|
|
@@ -765,7 +755,6 @@ interface MobileNumberInrCreateAccountInput {
|
|
|
765
755
|
verificationCode?: string;
|
|
766
756
|
reCAPTCHAResponse?: string;
|
|
767
757
|
testPass?: boolean;
|
|
768
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
769
758
|
}
|
|
770
759
|
interface NameCreateAccountInput {
|
|
771
760
|
type: 'NAME';
|
|
@@ -773,7 +762,6 @@ interface NameCreateAccountInput {
|
|
|
773
762
|
name: string;
|
|
774
763
|
password: string;
|
|
775
764
|
reCAPTCHAResponse?: string;
|
|
776
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
777
765
|
}
|
|
778
766
|
interface MobileNumberCreateAccountInput__next {
|
|
779
767
|
type: 'MOBILE_NUMBER[NEXT]';
|
|
@@ -782,11 +770,8 @@ interface MobileNumberCreateAccountInput__next {
|
|
|
782
770
|
mobileNumberVerificationCode: string;
|
|
783
771
|
emailAddress?: string;
|
|
784
772
|
branchCode?: string;
|
|
785
|
-
agentCode?: string;
|
|
786
773
|
reCAPTCHAResponse?: string;
|
|
787
774
|
testPass?: boolean;
|
|
788
|
-
fingerprint?: string;
|
|
789
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
790
775
|
}
|
|
791
776
|
type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
|
|
792
777
|
type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
|
|
@@ -826,7 +811,6 @@ interface UpdateAccountInput {
|
|
|
826
811
|
secretAnswer?: string;
|
|
827
812
|
dateOfBirth?: Date | string;
|
|
828
813
|
branchCode?: string;
|
|
829
|
-
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
830
814
|
}
|
|
831
815
|
type UpdateAccountError = UnionAlias<UpdateMemberAccountError>;
|
|
832
816
|
type UpdateAccountReturn = OperationResult<UpdateAccountError>;
|
|
@@ -1562,6 +1546,16 @@ interface MemberLevelSettings {
|
|
|
1562
1546
|
memberLevelSettings__8: MemberLevelSetting;
|
|
1563
1547
|
memberLevelSettings__9: MemberLevelSetting;
|
|
1564
1548
|
memberLevelSettings__10: MemberLevelSetting;
|
|
1549
|
+
memberLevelSettings__11: MemberLevelSetting;
|
|
1550
|
+
memberLevelSettings__12: MemberLevelSetting;
|
|
1551
|
+
memberLevelSettings__13: MemberLevelSetting;
|
|
1552
|
+
memberLevelSettings__14: MemberLevelSetting;
|
|
1553
|
+
memberLevelSettings__15: MemberLevelSetting;
|
|
1554
|
+
memberLevelSettings__16: MemberLevelSetting;
|
|
1555
|
+
memberLevelSettings__17: MemberLevelSetting;
|
|
1556
|
+
memberLevelSettings__18: MemberLevelSetting;
|
|
1557
|
+
memberLevelSettings__19: MemberLevelSetting;
|
|
1558
|
+
memberLevelSettings__20: MemberLevelSetting;
|
|
1565
1559
|
}
|
|
1566
1560
|
/** @deprecated */
|
|
1567
1561
|
interface Platform {
|
|
@@ -1941,14 +1935,6 @@ interface Jackpot {
|
|
|
1941
1935
|
}
|
|
1942
1936
|
type JackpotsReturn = OperationResult<never, PaginatedQueryResult<'jackpots', Jackpot>>;
|
|
1943
1937
|
type _JackpotsReturn = OperationResult<never, PaginatedQueryResult<'_jackpots', Jackpot>>;
|
|
1944
|
-
interface JackpotsIdsInput extends JackpotsIdsQueryVariables {
|
|
1945
|
-
}
|
|
1946
|
-
type JackpotsIdsReturn = OperationResult<never, {
|
|
1947
|
-
jackpots: string[];
|
|
1948
|
-
totalCount: number;
|
|
1949
|
-
hasNextPage: boolean;
|
|
1950
|
-
endCursor?: string;
|
|
1951
|
-
}>;
|
|
1952
1938
|
interface JackpotPayoutsInput extends JackpotPayoutsQueryVariables {
|
|
1953
1939
|
}
|
|
1954
1940
|
interface JackpotPayout {
|
|
@@ -1984,7 +1970,7 @@ type UnregisterFCMDeviceReturn = OperationResult;
|
|
|
1984
1970
|
type GoogleClientIdReturn = OperationResult<never, string | null>;
|
|
1985
1971
|
type RequireFirstDepositReturn = OperationResult<never, boolean>;
|
|
1986
1972
|
type TournamentStatus = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
1987
|
-
type TournamentType = 'MULTIPLIER'
|
|
1973
|
+
type TournamentType = 'MULTIPLIER';
|
|
1988
1974
|
type TournamentFrequency = 'DAILY' | 'WEEKLY' | 'MONTHLY';
|
|
1989
1975
|
type TournamentMode = 'ONE_TIME' | 'RECURRING';
|
|
1990
1976
|
interface TournamentsInput extends TournamentsQueryVariables {
|
|
@@ -2173,21 +2159,16 @@ declare class Sdk {
|
|
|
2173
2159
|
getFetch(): typeof fetch | null;
|
|
2174
2160
|
set middleware(value: GraphQLClientMiddleware);
|
|
2175
2161
|
get middleware(): GraphQLClientMiddleware;
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
get marketDomain(): string | null;
|
|
2162
|
+
initWebDomain(): void;
|
|
2163
|
+
private get webDomain();
|
|
2179
2164
|
set adClickId(value: string | null);
|
|
2180
2165
|
get adClickId(): string | null;
|
|
2181
|
-
set fbp(value: string | null);
|
|
2182
|
-
get fbp(): string | null;
|
|
2183
2166
|
set cxd(value: string | null);
|
|
2184
2167
|
get cxd(): string | null;
|
|
2185
2168
|
private get locale();
|
|
2186
2169
|
private get authMiddleware();
|
|
2187
|
-
private get
|
|
2188
|
-
fingerprint(): Promise<string | null>;
|
|
2170
|
+
private get domainMiddleware();
|
|
2189
2171
|
private get miscMiddleware();
|
|
2190
|
-
collectMetaDetails(): void;
|
|
2191
2172
|
signIn(input: NameAndPasswordSignInInput): Promise<NameAndPasswordSignInReturn>;
|
|
2192
2173
|
signIn(input: MobileNumberSignInInput): Promise<MobileNumberSignInReturn>;
|
|
2193
2174
|
signIn(input: MayaSignInInput): Promise<MayaSignInReturn>;
|
|
@@ -2309,7 +2290,6 @@ declare class Sdk {
|
|
|
2309
2290
|
topWins(): Promise<TopWinsReturn>;
|
|
2310
2291
|
topWinsNext(): Promise<TopWinsReturn>;
|
|
2311
2292
|
jackpots(input?: JackpotsInput): Promise<JackpotsReturn>;
|
|
2312
|
-
jackpotsIds(input?: JackpotsIdsInput): Promise<JackpotsIdsReturn>;
|
|
2313
2293
|
_jackpots(input?: _JackpotsInput): Promise<_JackpotsReturn>;
|
|
2314
2294
|
jackpotPayouts(input?: JackpotPayoutsInput): Promise<JackpotPayoutsReturn>;
|
|
2315
2295
|
tournaments(input?: TournamentsInput): Promise<TournamentsReturn>;
|
|
@@ -2326,4 +2306,4 @@ declare class Sdk {
|
|
|
2326
2306
|
private formatYmd;
|
|
2327
2307
|
}
|
|
2328
2308
|
|
|
2329
|
-
export { type Account, type AccountReturn, type AccountStatus, type AccountVerificationStatus, type AchievementPointsHistoryRecord, type AchievementPointsHistoryRecordInput, type AchievementPointsHistoryRecordReturn, type AchievementSettings, type AchievementSettingsResponse, type AchievementSettingsReturn, type AchievementType, type ActivityRecord, type ActivityRecordType, type ActivityRecordsInput, type ActivityRecordsReturn, type Agent, type AiOGCashDeposit, type AiOGrabPayDeposit, type AiOPalawanPayDeposit, type AiOPayMayaDeposit, type Announcement, type AnnouncementStatus, type AnnouncementType, type AnnouncementsInput, type AnnouncementsReturn, type AuthenticateError, type AuthenticateInput, type AuthenticateReturn, type Authenticator, type AvailablePromosReturn, type AvailableQuestsReturn, type Bank, type BankDeposit, type BankWithdrawalRecord, type BetRecord, type BetRecordStatus, type BetRecordsInput, type BetRecordsReturn, type Bonus, type BonusReturn, type BonusesReturn, type CabinetSignInInput, type CabinetSignInReturn, type CabinetSiteMachine, type CabinetSiteMachineReturn, type CabinetSiteMachineStatus, type CabinetWithdrawalRecord, type CabinetWithdrawalReturn, type Cashback, type CashbackBonus, type CashbackBonusReturn, type CashbackStatus, type CashbacksReturn, type CellxpertDetails, type CheckInDailyQuestReturn, type ClaimCashbackBonusError, type ClaimCashbackBonusReturn, type ClaimRewardError, type ClaimRewardReturn, type ClaimSpotBonusReturn, type CompleteOnboardingInput, type CompleteOnboardingReturn, type CompoundField, type CreateAIOInstapayWithdrawalInput, type CreateAIOInstapayWithdrawalInput_Next, type CreateAIOOnlineBankDepositInput, type CreateAIOQRPHDepositInput, type CreateAccountError, type CreateAccountInput, type CreateAccountInput__Next, type CreateAccountReturn, type CreateAiOGCashDepositInput, type CreateAiOGrabPayDepositInput, type CreateAiOPalawanPayDepositInput, type CreateAiOPayMayaDepositInput, type CreateBankWithdrawalInput, type CreateCabinetWithdrawalInput, type CreateDepositError, type CreateDepositInput, type CreateDepositReturn, type CreateGCashDepositInput, type CreateGCashStandardCashInWithdrawalInput, type CreateGCashWebpayDepositInput, type CreateGCashWithdrawalInput, type CreateGameSessionByIdInput, type CreateGameSessionByReferenceInput, type CreateGameSessionError, type CreateGameSessionInput, type CreateGameSessionReturn, type CreateManualBankDepositInput, type CreateManualBankWithdrawalInput, type CreateManualUPIDepositInput, type CreateManualUPIWithdrawalInput, type CreateMayaAppDepositInput, type CreateMayaAppWithdrawalInput, type CreateMayaDepositInput, type CreateMayaWebpayDepositInput, type CreateMayaWithdrawalInput, type CreateSingleUseTokenError, type CreateSingleUseTokenInput, type CreateSingleUseTokenReturn, type CreateTestDepositInput, type CreateWithdrawalError, type CreateWithdrawalInput, type CreateWithdrawalReturn, type Currency, type DeleteAccountReturn, type Deposit, type DepositRecord, type DepositRecordsInput, type DepositRecordsReturn, type DepositReturn, type DepositStatus, type DepositType, type DepositsCountReturn, type DownlinesByNameInput, type DownlinesByNameReturn, type EndGameSessionReturn, type Environment, type FCMDeviceType, type FavoriteGamesReturn, type Field, type FieldType, type File, type FileReturn, type FreeBetDropStatus, type FreeBetDrops, type FreeBetDropsInput, type FreeBetDropsReturn, type GCashDeposit, type GCashWithdrawalRecord, type Game, type GameProvider, type GameReturn, type GameSession, type GameSessionLaunchOptions, type GameSessionReturn, type GameSessionStatus, type GameTag, type GameType, type GamesInput, type GamesInput__Next, type GamesReturn, type GatewaySettings, type GcashWebpayDeposit, type GeneralMemberLevelSettings, type GeneralMemberLevelSettingsReturn, type GigRewardsQuestDetails, type GoogleClientIdReturn, type HttpError, type ImageField, type InstapayBank, type InstapayBankListReturn, type InstapayBankType, type InstapayWithdrawalRecord, type Jackpot, type JackpotPayout, type JackpotPayoutsInput, type JackpotPayoutsReturn, type JackpotStatus, type JackpotsIdsInput, type JackpotsIdsReturn, type JackpotsInput, type JackpotsReturn, type JourneyQuestMilestone, type JourneyQuestMilestoneType, type KnownDepositError, type LatestBetRecord, type LatestBetRecordsReturn, type Locale, type LoginChannel, type ManualBankDeposit, type ManualBankWithdrawalRecord, type ManualDeposit, type ManualUPIDeposit, type ManualUPIWithdrawalRecord, type ManualWithdrawalRecord, type MarkAllMessagesAsReadReturn, type MarkGameAsFavoriteInput, type MarkGameAsFavoriteReturn, type MarkMessageAsReadReturn, type MayaAppDeposit, type MayaDeposit, type MayaSignInInput, type MayaSignInReturn, type MayaWithdrawalRecord, type MemberAchievement, type MemberAchievementReturn, type MemberFreeBetDrop, type MemberFreeBetDropBetRecord, type MemberFreeBetDropsInput, type MemberFreeBetDropsReturn, type MemberLevelSetting, type MemberLevelSettings, type MemberLevelSettingsReturn, type MemberStatus, type MemberVerificationRequest, type MemberVerificationRequestAutomaticApprovalEnabledReturn, type MemberVerificationRequestReturn, type MemberVerificationRequestStatus, type MemberWithCellxpertDetails, type MemberWithCellxpertDetailsReturn, type Message, type MessageAction, type MessageIcon, type MessageType, type MessagesInput, type MessagesReturn, type MobileNumberCreateAccountInput, type MobileNumberCreateAccountInput__next, type MobileNumberInrCreateAccountInput, type MobileNumberSignInInput, type MobileNumberSignInReturn, type MultiSelectField, type NameAndPasswordCreateAccountInput, type NameAndPasswordSignInInput, type NameAndPasswordSignInReturn, type NameCreateAccountInput, ObjectType, type OnboardingPlayerExperience, type OnboardingStatus, type OnboardingStatusReturn, type OnlineBankDeposit, type OperationError, type OperationResult, type PaymentSettings, type PaymentSettingsReturn, type Platform, type PlatformReturn, type PlatformReturn__Next, type Platform__Next, type PointsClubSettings, type PointsClubSettingsReturn, type PointsWallet, type PointsWalletReturn, type PointsWalletTransaction, type PointsWalletTransactionType, type PointsWalletTransactionsInput, type PointsWalletTransactionsReturn, type ProfileCompletion, type ProfileCompletionReturn, type Promo, type PromoByCodeReturn, type PromoFilterInput, type PromoStatus, type PromoType, type PromosReturn, type QRPHDeposit, type Quest, type QuestProgram, type QuestProgramStatus, type QuestStatus, type QuestType, type RecommendedGamesInput, type RecommendedGamesReturn, type RedeemPointsError, type RedeemPointsInput, type RedeemPointsReturn, type RedeemVoucherInput, type RedeemVoucherReturn, type Referral, type ReferralCodeReturn, type ReferralCommission, type ReferralCommissionReturn, type ReferralsInput, type ReferralsReturn, type RefreshSessionError, type RegisterAgentAccountError, type RegisterAgentAccountInput, type RegisterAgentAccountReturn, type RegisterFCMDeviceInput, type RegisterFCMDeviceReturn, type RegisterMayaAccountError, type RegisterMayaAccountInput, type RegisterMayaAccountReturn, type RemainingDailyWithdrawalsCountReturn, type RequireFirstDepositReturn, type ResetPasswordError, type ResetPasswordInput, type ResetPasswordReturn, type RichTextField, Sdk, type SdkConfig, type SecretQuestion, type SecurityQuestionAuthenticateInput, type SecurityQuestionAuthenticator, type SelectField, type SendEmailVerificationCodeInput, type SendSmsVerificationCodeInput, type SendVerificationCodeError, type SendVerificationCodeError__Next, type SendVerificationCodeInput__Next, type SendVerificationCodeReturn, type SendVerificationCodeReturn__Next, type Session, type SessionError, type SessionReturn, type SignInError, type SignInInput, type SignInReturn, type SingleUseTokenSignInInput, type SingleUseTokenSignInReturn, type Site, type SiteReturn, type SkipOnboardingReturn, type SocialsSignInInput, type SocialsSignInReturn, type SpotBonusPromo, type SubmitMemberVerificationError, type SubmitMemberVerificationRequestBasicDetailsInput, type SubmitMemberVerificationRequestBasicDetailsReturn, type SubmitMemberVerificationRequestImageDetailsInput, type SubmitMemberVerificationRequestImageDetailsReturn, type SubmitMemberVerificationRequestPersonalDetailsInput, type SubmitMemberVerificationRequestPersonalDetailsReturn, type SubmitMemberVerificationReturn, type SubmitVerificationDetailsInput, type SubmitVerificationDetailsInputNext, type SubmitVerificationDetailsReturn, type SubmitVerificationError, type TextField, type ToggleField, type TokenSignInInput, type TokenSignInReturn, type TopWin, type TopWinsReturn, type TouchDepositInput, type TouchDepositReturn, type Tournament, type TournamentFrequency, type TournamentLeaderboard, type TournamentMode, type TournamentPayout, type TournamentStatus, type TournamentType, type TournamentsIdsInput, type TournamentsIdsReturn, type TournamentsInput, type TournamentsReturn, type TransactionRecord, type TransactionRecordsInput, type TransactionRecordsReturn, type TransactionType, type TurnoverRequirementType, type UnmarkGameAsFavoriteInput, type UnmarkGameAsFavoriteReturn, type UnreadMessagesCountInput, type UnreadMessagesCountReturn, type UnregisterFCMDeviceInput, type UnregisterFCMDeviceReturn, type UpdateAccountError, type UpdateAccountInput, type UpdateAccountReturn, type UpdateReferralCodeError, type UpdateReferralCodeInput, type UpdateReferralCodeReturn, type UpdateVerificationDetailsInput, type UpdateVerificationDetailsReturn, type UpdateVerificationError, type UplinesByNameInput, type UplinesByNameReturn, type UploadImageFileError, type UploadImageFileInput, type UploadImageFileReturn, type ValidateMayaSessionReturn, type VerificationDetails, type VerificationDetailsReturn, type VerificationDetailsStatus, type VerifyMobileNumberError, type VerifyMobileNumberReturn, type VoucherType, type WageringQuestStage, type WageringQuestStageSettings, type Wallet, type WalletGame, type WalletGameInput, type WalletGamesReturn, type WalletReturn, type WatchSessionInput, type WithdrawalError, type WithdrawalRecord, type WithdrawalRecordsInput, type WithdrawalRecordsReturn, type WithdrawalStatus, type WithdrawalType, type _JackpotsInput, type _JackpotsReturn };
|
|
2309
|
+
export { type Account, type AccountReturn, type AccountStatus, type AccountVerificationStatus, type AchievementPointsHistoryRecord, type AchievementPointsHistoryRecordInput, type AchievementPointsHistoryRecordReturn, type AchievementSettings, type AchievementSettingsResponse, type AchievementSettingsReturn, type AchievementType, type ActivityRecord, type ActivityRecordType, type ActivityRecordsInput, type ActivityRecordsReturn, type Agent, type AiOGCashDeposit, type AiOGrabPayDeposit, type AiOPalawanPayDeposit, type AiOPayMayaDeposit, type Announcement, type AnnouncementStatus, type AnnouncementType, type AnnouncementsInput, type AnnouncementsReturn, type AuthenticateError, type AuthenticateInput, type AuthenticateReturn, type Authenticator, type AvailablePromosReturn, type AvailableQuestsReturn, type Bank, type BankDeposit, type BankWithdrawalRecord, type BetRecord, type BetRecordStatus, type BetRecordsInput, type BetRecordsReturn, type Bonus, type BonusReturn, type BonusesReturn, type CabinetSignInInput, type CabinetSignInReturn, type CabinetSiteMachine, type CabinetSiteMachineReturn, type CabinetSiteMachineStatus, type CabinetWithdrawalRecord, type CabinetWithdrawalReturn, type Cashback, type CashbackBonus, type CashbackBonusReturn, type CashbackStatus, type CashbacksReturn, type CellxpertDetails, type CheckInDailyQuestReturn, type ClaimCashbackBonusError, type ClaimCashbackBonusReturn, type ClaimRewardError, type ClaimRewardReturn, type ClaimSpotBonusReturn, type CompleteOnboardingInput, type CompleteOnboardingReturn, type CompoundField, type CreateAIOInstapayWithdrawalInput, type CreateAIOInstapayWithdrawalInput_Next, type CreateAIOOnlineBankDepositInput, type CreateAIOQRPHDepositInput, type CreateAccountError, type CreateAccountInput, type CreateAccountInput__Next, type CreateAccountReturn, type CreateAiOGCashDepositInput, type CreateAiOGrabPayDepositInput, type CreateAiOPalawanPayDepositInput, type CreateAiOPayMayaDepositInput, type CreateBankWithdrawalInput, type CreateCabinetWithdrawalInput, type CreateDepositError, type CreateDepositInput, type CreateDepositReturn, type CreateGCashDepositInput, type CreateGCashStandardCashInWithdrawalInput, type CreateGCashWebpayDepositInput, type CreateGCashWithdrawalInput, type CreateGameSessionByIdInput, type CreateGameSessionByReferenceInput, type CreateGameSessionError, type CreateGameSessionInput, type CreateGameSessionReturn, type CreateManualBankDepositInput, type CreateManualBankWithdrawalInput, type CreateManualUPIDepositInput, type CreateManualUPIWithdrawalInput, type CreateMayaAppDepositInput, type CreateMayaAppWithdrawalInput, type CreateMayaDepositInput, type CreateMayaWebpayDepositInput, type CreateMayaWithdrawalInput, type CreateSingleUseTokenError, type CreateSingleUseTokenInput, type CreateSingleUseTokenReturn, type CreateTestDepositInput, type CreateWithdrawalError, type CreateWithdrawalInput, type CreateWithdrawalReturn, type Currency, type DeleteAccountReturn, type Deposit, type DepositRecord, type DepositRecordsInput, type DepositRecordsReturn, type DepositReturn, type DepositStatus, type DepositType, type DepositsCountReturn, type DownlinesByNameInput, type DownlinesByNameReturn, type EndGameSessionReturn, type Environment, type FCMDeviceType, type FavoriteGamesReturn, type Field, type FieldType, type File, type FileReturn, type FreeBetDropStatus, type FreeBetDrops, type FreeBetDropsInput, type FreeBetDropsReturn, type GCashDeposit, type GCashWithdrawalRecord, type Game, type GameProvider, type GameReturn, type GameSession, type GameSessionLaunchOptions, type GameSessionReturn, type GameSessionStatus, type GameTag, type GameType, type GamesInput, type GamesInput__Next, type GamesReturn, type GatewaySettings, type GcashWebpayDeposit, type GeneralMemberLevelSettings, type GeneralMemberLevelSettingsReturn, type GoogleClientIdReturn, type HttpError, type ImageField, type InstapayBank, type InstapayBankListReturn, type InstapayBankType, type InstapayWithdrawalRecord, type Jackpot, type JackpotPayout, type JackpotPayoutsInput, type JackpotPayoutsReturn, type JackpotStatus, type JackpotsInput, type JackpotsReturn, type JourneyQuestMilestone, type JourneyQuestMilestoneType, type KnownDepositError, type LatestBetRecord, type LatestBetRecordsReturn, type Locale, type LoginChannel, type ManualBankDeposit, type ManualBankWithdrawalRecord, type ManualDeposit, type ManualUPIDeposit, type ManualUPIWithdrawalRecord, type ManualWithdrawalRecord, type MarkAllMessagesAsReadReturn, type MarkGameAsFavoriteInput, type MarkGameAsFavoriteReturn, type MarkMessageAsReadReturn, type MayaAppDeposit, type MayaDeposit, type MayaSignInInput, type MayaSignInReturn, type MayaWithdrawalRecord, type MemberAchievement, type MemberAchievementReturn, type MemberFreeBetDrop, type MemberFreeBetDropBetRecord, type MemberFreeBetDropsInput, type MemberFreeBetDropsReturn, type MemberLevelSetting, type MemberLevelSettings, type MemberLevelSettingsReturn, type MemberStatus, type MemberVerificationRequest, type MemberVerificationRequestAutomaticApprovalEnabledReturn, type MemberVerificationRequestReturn, type MemberVerificationRequestStatus, type MemberWithCellxpertDetails, type MemberWithCellxpertDetailsReturn, type Message, type MessageAction, type MessageIcon, type MessageType, type MessagesInput, type MessagesReturn, type MobileNumberCreateAccountInput, type MobileNumberCreateAccountInput__next, type MobileNumberInrCreateAccountInput, type MobileNumberSignInInput, type MobileNumberSignInReturn, type MultiSelectField, type NameAndPasswordCreateAccountInput, type NameAndPasswordSignInInput, type NameAndPasswordSignInReturn, type NameCreateAccountInput, ObjectType, type OnboardingPlayerExperience, type OnboardingStatus, type OnboardingStatusReturn, type OnlineBankDeposit, type OperationError, type OperationResult, type PaymentSettings, type PaymentSettingsReturn, type Platform, type PlatformReturn, type PlatformReturn__Next, type Platform__Next, type PointsClubSettings, type PointsClubSettingsReturn, type PointsWallet, type PointsWalletReturn, type PointsWalletTransaction, type PointsWalletTransactionType, type PointsWalletTransactionsInput, type PointsWalletTransactionsReturn, type ProfileCompletion, type ProfileCompletionReturn, type Promo, type PromoByCodeReturn, type PromoFilterInput, type PromoStatus, type PromoType, type PromosReturn, type QRPHDeposit, type Quest, type QuestProgram, type QuestProgramStatus, type QuestStatus, type QuestType, type RecommendedGamesInput, type RecommendedGamesReturn, type RedeemPointsError, type RedeemPointsInput, type RedeemPointsReturn, type RedeemVoucherInput, type RedeemVoucherReturn, type Referral, type ReferralCodeReturn, type ReferralCommission, type ReferralCommissionReturn, type ReferralsInput, type ReferralsReturn, type RefreshSessionError, type RegisterAgentAccountError, type RegisterAgentAccountInput, type RegisterAgentAccountReturn, type RegisterFCMDeviceInput, type RegisterFCMDeviceReturn, type RegisterMayaAccountError, type RegisterMayaAccountInput, type RegisterMayaAccountReturn, type RemainingDailyWithdrawalsCountReturn, type RequireFirstDepositReturn, type ResetPasswordError, type ResetPasswordInput, type ResetPasswordReturn, type RichTextField, Sdk, type SdkConfig, type SecretQuestion, type SecurityQuestionAuthenticateInput, type SecurityQuestionAuthenticator, type SelectField, type SendEmailVerificationCodeInput, type SendSmsVerificationCodeInput, type SendVerificationCodeError, type SendVerificationCodeError__Next, type SendVerificationCodeInput__Next, type SendVerificationCodeReturn, type SendVerificationCodeReturn__Next, type Session, type SessionError, type SessionReturn, type SignInError, type SignInInput, type SignInReturn, type SingleUseTokenSignInInput, type SingleUseTokenSignInReturn, type Site, type SiteReturn, type SkipOnboardingReturn, type SocialsSignInInput, type SocialsSignInReturn, type SpotBonusPromo, type SubmitMemberVerificationError, type SubmitMemberVerificationRequestBasicDetailsInput, type SubmitMemberVerificationRequestBasicDetailsReturn, type SubmitMemberVerificationRequestImageDetailsInput, type SubmitMemberVerificationRequestImageDetailsReturn, type SubmitMemberVerificationRequestPersonalDetailsInput, type SubmitMemberVerificationRequestPersonalDetailsReturn, type SubmitMemberVerificationReturn, type SubmitVerificationDetailsInput, type SubmitVerificationDetailsInputNext, type SubmitVerificationDetailsReturn, type SubmitVerificationError, type TextField, type ToggleField, type TokenSignInInput, type TokenSignInReturn, type TopWin, type TopWinsReturn, type TouchDepositInput, type TouchDepositReturn, type Tournament, type TournamentFrequency, type TournamentLeaderboard, type TournamentMode, type TournamentPayout, type TournamentStatus, type TournamentType, type TournamentsIdsInput, type TournamentsIdsReturn, type TournamentsInput, type TournamentsReturn, type TransactionRecord, type TransactionRecordsInput, type TransactionRecordsReturn, type TransactionType, type TurnoverRequirementType, type UnmarkGameAsFavoriteInput, type UnmarkGameAsFavoriteReturn, type UnreadMessagesCountInput, type UnreadMessagesCountReturn, type UnregisterFCMDeviceInput, type UnregisterFCMDeviceReturn, type UpdateAccountError, type UpdateAccountInput, type UpdateAccountReturn, type UpdateReferralCodeError, type UpdateReferralCodeInput, type UpdateReferralCodeReturn, type UpdateVerificationDetailsInput, type UpdateVerificationDetailsReturn, type UpdateVerificationError, type UplinesByNameInput, type UplinesByNameReturn, type UploadImageFileError, type UploadImageFileInput, type UploadImageFileReturn, type ValidateMayaSessionReturn, type VerificationDetails, type VerificationDetailsReturn, type VerificationDetailsStatus, type VerifyMobileNumberError, type VerifyMobileNumberReturn, type VoucherType, type WageringQuestStage, type WageringQuestStageSettings, type Wallet, type WalletGame, type WalletGameInput, type WalletGamesReturn, type WalletReturn, type WatchSessionInput, type WithdrawalError, type WithdrawalRecord, type WithdrawalRecordsInput, type WithdrawalRecordsReturn, type WithdrawalStatus, type WithdrawalType, type _JackpotsInput, type _JackpotsReturn };
|