@opexa/portal-sdk 0.58.2 → 0.58.3
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 +369 -201
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +36 -6
- package/dist/index.d.ts +36 -6
- package/dist/index.js +369 -201
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -451,9 +451,11 @@ interface JackpotPayoutsQueryVariables {
|
|
|
451
451
|
cursor: JackpotPayoutCursor;
|
|
452
452
|
};
|
|
453
453
|
}
|
|
454
|
+
interface JackpotsIdsQueryVariables extends JackpotsQueryVariables {
|
|
455
|
+
}
|
|
454
456
|
type FCMDeviceType$1 = 'IOS' | 'ANDROID';
|
|
455
457
|
type TournamentStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
456
|
-
type TournamentType$1 = 'MULTIPLIER';
|
|
458
|
+
type TournamentType$1 = 'MULTIPLIER' | 'WAGERING';
|
|
457
459
|
interface TournamentsQueryVariables {
|
|
458
460
|
after?: string;
|
|
459
461
|
first?: number;
|
|
@@ -637,6 +639,9 @@ type AccountVerificationStatus = MemberAccountVerificationStatus;
|
|
|
637
639
|
interface Agent {
|
|
638
640
|
code: string;
|
|
639
641
|
}
|
|
642
|
+
interface GigRewardsQuestDetails {
|
|
643
|
+
gigUserId: string;
|
|
644
|
+
}
|
|
640
645
|
interface Account {
|
|
641
646
|
id: string;
|
|
642
647
|
name: string;
|
|
@@ -670,7 +675,9 @@ interface Account {
|
|
|
670
675
|
branchCode?: string;
|
|
671
676
|
agent?: Agent | null;
|
|
672
677
|
level: number;
|
|
678
|
+
partition?: number | null;
|
|
673
679
|
dateTimeLastActive?: Date;
|
|
680
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
674
681
|
}
|
|
675
682
|
type AccountReturn = OperationResult<never, Account>;
|
|
676
683
|
interface CellxpertDetails {
|
|
@@ -716,6 +723,7 @@ interface CreateAccountInput {
|
|
|
716
723
|
referralCode?: string;
|
|
717
724
|
verificationCode?: string;
|
|
718
725
|
reCAPTCHAResponse?: string;
|
|
726
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
719
727
|
}
|
|
720
728
|
interface NameAndPasswordCreateAccountInput {
|
|
721
729
|
type: 'NAME_AND_PASSWORD';
|
|
@@ -726,6 +734,7 @@ interface NameAndPasswordCreateAccountInput {
|
|
|
726
734
|
btag?: string;
|
|
727
735
|
domain?: string;
|
|
728
736
|
reCAPTCHAResponse?: string;
|
|
737
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
729
738
|
}
|
|
730
739
|
interface MobileNumberCreateAccountInput {
|
|
731
740
|
type: 'MOBILE_NUMBER';
|
|
@@ -741,6 +750,7 @@ interface MobileNumberCreateAccountInput {
|
|
|
741
750
|
verificationCode?: string;
|
|
742
751
|
reCAPTCHAResponse?: string;
|
|
743
752
|
testPass?: string;
|
|
753
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
744
754
|
}
|
|
745
755
|
interface MobileNumberInrCreateAccountInput {
|
|
746
756
|
type: 'MOBILE_NUMBER_INR';
|
|
@@ -755,6 +765,7 @@ interface MobileNumberInrCreateAccountInput {
|
|
|
755
765
|
verificationCode?: string;
|
|
756
766
|
reCAPTCHAResponse?: string;
|
|
757
767
|
testPass?: boolean;
|
|
768
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
758
769
|
}
|
|
759
770
|
interface NameCreateAccountInput {
|
|
760
771
|
type: 'NAME';
|
|
@@ -762,6 +773,7 @@ interface NameCreateAccountInput {
|
|
|
762
773
|
name: string;
|
|
763
774
|
password: string;
|
|
764
775
|
reCAPTCHAResponse?: string;
|
|
776
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
765
777
|
}
|
|
766
778
|
interface MobileNumberCreateAccountInput__next {
|
|
767
779
|
type: 'MOBILE_NUMBER[NEXT]';
|
|
@@ -770,8 +782,11 @@ interface MobileNumberCreateAccountInput__next {
|
|
|
770
782
|
mobileNumberVerificationCode: string;
|
|
771
783
|
emailAddress?: string;
|
|
772
784
|
branchCode?: string;
|
|
785
|
+
agentCode?: string;
|
|
773
786
|
reCAPTCHAResponse?: string;
|
|
774
787
|
testPass?: boolean;
|
|
788
|
+
fingerprint?: string;
|
|
789
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
775
790
|
}
|
|
776
791
|
type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
|
|
777
792
|
type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
|
|
@@ -811,6 +826,7 @@ interface UpdateAccountInput {
|
|
|
811
826
|
secretAnswer?: string;
|
|
812
827
|
dateOfBirth?: Date | string;
|
|
813
828
|
branchCode?: string;
|
|
829
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
814
830
|
}
|
|
815
831
|
type UpdateAccountError = UnionAlias<UpdateMemberAccountError>;
|
|
816
832
|
type UpdateAccountReturn = OperationResult<UpdateAccountError>;
|
|
@@ -1935,6 +1951,14 @@ interface Jackpot {
|
|
|
1935
1951
|
}
|
|
1936
1952
|
type JackpotsReturn = OperationResult<never, PaginatedQueryResult<'jackpots', Jackpot>>;
|
|
1937
1953
|
type _JackpotsReturn = OperationResult<never, PaginatedQueryResult<'_jackpots', Jackpot>>;
|
|
1954
|
+
interface JackpotsIdsInput extends JackpotsIdsQueryVariables {
|
|
1955
|
+
}
|
|
1956
|
+
type JackpotsIdsReturn = OperationResult<never, {
|
|
1957
|
+
jackpots: string[];
|
|
1958
|
+
totalCount: number;
|
|
1959
|
+
hasNextPage: boolean;
|
|
1960
|
+
endCursor?: string;
|
|
1961
|
+
}>;
|
|
1938
1962
|
interface JackpotPayoutsInput extends JackpotPayoutsQueryVariables {
|
|
1939
1963
|
}
|
|
1940
1964
|
interface JackpotPayout {
|
|
@@ -1970,7 +1994,7 @@ type UnregisterFCMDeviceReturn = OperationResult;
|
|
|
1970
1994
|
type GoogleClientIdReturn = OperationResult<never, string | null>;
|
|
1971
1995
|
type RequireFirstDepositReturn = OperationResult<never, boolean>;
|
|
1972
1996
|
type TournamentStatus = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
1973
|
-
type TournamentType = 'MULTIPLIER';
|
|
1997
|
+
type TournamentType = 'MULTIPLIER' | 'WAGERING';
|
|
1974
1998
|
type TournamentFrequency = 'DAILY' | 'WEEKLY' | 'MONTHLY';
|
|
1975
1999
|
type TournamentMode = 'ONE_TIME' | 'RECURRING';
|
|
1976
2000
|
interface TournamentsInput extends TournamentsQueryVariables {
|
|
@@ -2159,16 +2183,21 @@ declare class Sdk {
|
|
|
2159
2183
|
getFetch(): typeof fetch | null;
|
|
2160
2184
|
set middleware(value: GraphQLClientMiddleware);
|
|
2161
2185
|
get middleware(): GraphQLClientMiddleware;
|
|
2162
|
-
|
|
2163
|
-
|
|
2186
|
+
initMarketDomain(): void;
|
|
2187
|
+
set marketDomain(value: string | null);
|
|
2188
|
+
get marketDomain(): string | null;
|
|
2164
2189
|
set adClickId(value: string | null);
|
|
2165
2190
|
get adClickId(): string | null;
|
|
2191
|
+
set fbp(value: string | null);
|
|
2192
|
+
get fbp(): string | null;
|
|
2166
2193
|
set cxd(value: string | null);
|
|
2167
2194
|
get cxd(): string | null;
|
|
2168
2195
|
private get locale();
|
|
2169
2196
|
private get authMiddleware();
|
|
2170
|
-
private get
|
|
2197
|
+
private get fingerprintMiddleware();
|
|
2198
|
+
fingerprint(): Promise<string | null>;
|
|
2171
2199
|
private get miscMiddleware();
|
|
2200
|
+
collectMetaDetails(): void;
|
|
2172
2201
|
signIn(input: NameAndPasswordSignInInput): Promise<NameAndPasswordSignInReturn>;
|
|
2173
2202
|
signIn(input: MobileNumberSignInInput): Promise<MobileNumberSignInReturn>;
|
|
2174
2203
|
signIn(input: MayaSignInInput): Promise<MayaSignInReturn>;
|
|
@@ -2290,6 +2319,7 @@ declare class Sdk {
|
|
|
2290
2319
|
topWins(): Promise<TopWinsReturn>;
|
|
2291
2320
|
topWinsNext(): Promise<TopWinsReturn>;
|
|
2292
2321
|
jackpots(input?: JackpotsInput): Promise<JackpotsReturn>;
|
|
2322
|
+
jackpotsIds(input?: JackpotsIdsInput): Promise<JackpotsIdsReturn>;
|
|
2293
2323
|
_jackpots(input?: _JackpotsInput): Promise<_JackpotsReturn>;
|
|
2294
2324
|
jackpotPayouts(input?: JackpotPayoutsInput): Promise<JackpotPayoutsReturn>;
|
|
2295
2325
|
tournaments(input?: TournamentsInput): Promise<TournamentsReturn>;
|
|
@@ -2306,4 +2336,4 @@ declare class Sdk {
|
|
|
2306
2336
|
private formatYmd;
|
|
2307
2337
|
}
|
|
2308
2338
|
|
|
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 };
|
|
2339
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -451,9 +451,11 @@ interface JackpotPayoutsQueryVariables {
|
|
|
451
451
|
cursor: JackpotPayoutCursor;
|
|
452
452
|
};
|
|
453
453
|
}
|
|
454
|
+
interface JackpotsIdsQueryVariables extends JackpotsQueryVariables {
|
|
455
|
+
}
|
|
454
456
|
type FCMDeviceType$1 = 'IOS' | 'ANDROID';
|
|
455
457
|
type TournamentStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
456
|
-
type TournamentType$1 = 'MULTIPLIER';
|
|
458
|
+
type TournamentType$1 = 'MULTIPLIER' | 'WAGERING';
|
|
457
459
|
interface TournamentsQueryVariables {
|
|
458
460
|
after?: string;
|
|
459
461
|
first?: number;
|
|
@@ -637,6 +639,9 @@ type AccountVerificationStatus = MemberAccountVerificationStatus;
|
|
|
637
639
|
interface Agent {
|
|
638
640
|
code: string;
|
|
639
641
|
}
|
|
642
|
+
interface GigRewardsQuestDetails {
|
|
643
|
+
gigUserId: string;
|
|
644
|
+
}
|
|
640
645
|
interface Account {
|
|
641
646
|
id: string;
|
|
642
647
|
name: string;
|
|
@@ -670,7 +675,9 @@ interface Account {
|
|
|
670
675
|
branchCode?: string;
|
|
671
676
|
agent?: Agent | null;
|
|
672
677
|
level: number;
|
|
678
|
+
partition?: number | null;
|
|
673
679
|
dateTimeLastActive?: Date;
|
|
680
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
674
681
|
}
|
|
675
682
|
type AccountReturn = OperationResult<never, Account>;
|
|
676
683
|
interface CellxpertDetails {
|
|
@@ -716,6 +723,7 @@ interface CreateAccountInput {
|
|
|
716
723
|
referralCode?: string;
|
|
717
724
|
verificationCode?: string;
|
|
718
725
|
reCAPTCHAResponse?: string;
|
|
726
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
719
727
|
}
|
|
720
728
|
interface NameAndPasswordCreateAccountInput {
|
|
721
729
|
type: 'NAME_AND_PASSWORD';
|
|
@@ -726,6 +734,7 @@ interface NameAndPasswordCreateAccountInput {
|
|
|
726
734
|
btag?: string;
|
|
727
735
|
domain?: string;
|
|
728
736
|
reCAPTCHAResponse?: string;
|
|
737
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
729
738
|
}
|
|
730
739
|
interface MobileNumberCreateAccountInput {
|
|
731
740
|
type: 'MOBILE_NUMBER';
|
|
@@ -741,6 +750,7 @@ interface MobileNumberCreateAccountInput {
|
|
|
741
750
|
verificationCode?: string;
|
|
742
751
|
reCAPTCHAResponse?: string;
|
|
743
752
|
testPass?: string;
|
|
753
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
744
754
|
}
|
|
745
755
|
interface MobileNumberInrCreateAccountInput {
|
|
746
756
|
type: 'MOBILE_NUMBER_INR';
|
|
@@ -755,6 +765,7 @@ interface MobileNumberInrCreateAccountInput {
|
|
|
755
765
|
verificationCode?: string;
|
|
756
766
|
reCAPTCHAResponse?: string;
|
|
757
767
|
testPass?: boolean;
|
|
768
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
758
769
|
}
|
|
759
770
|
interface NameCreateAccountInput {
|
|
760
771
|
type: 'NAME';
|
|
@@ -762,6 +773,7 @@ interface NameCreateAccountInput {
|
|
|
762
773
|
name: string;
|
|
763
774
|
password: string;
|
|
764
775
|
reCAPTCHAResponse?: string;
|
|
776
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
765
777
|
}
|
|
766
778
|
interface MobileNumberCreateAccountInput__next {
|
|
767
779
|
type: 'MOBILE_NUMBER[NEXT]';
|
|
@@ -770,8 +782,11 @@ interface MobileNumberCreateAccountInput__next {
|
|
|
770
782
|
mobileNumberVerificationCode: string;
|
|
771
783
|
emailAddress?: string;
|
|
772
784
|
branchCode?: string;
|
|
785
|
+
agentCode?: string;
|
|
773
786
|
reCAPTCHAResponse?: string;
|
|
774
787
|
testPass?: boolean;
|
|
788
|
+
fingerprint?: string;
|
|
789
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
775
790
|
}
|
|
776
791
|
type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
|
|
777
792
|
type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
|
|
@@ -811,6 +826,7 @@ interface UpdateAccountInput {
|
|
|
811
826
|
secretAnswer?: string;
|
|
812
827
|
dateOfBirth?: Date | string;
|
|
813
828
|
branchCode?: string;
|
|
829
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
814
830
|
}
|
|
815
831
|
type UpdateAccountError = UnionAlias<UpdateMemberAccountError>;
|
|
816
832
|
type UpdateAccountReturn = OperationResult<UpdateAccountError>;
|
|
@@ -1935,6 +1951,14 @@ interface Jackpot {
|
|
|
1935
1951
|
}
|
|
1936
1952
|
type JackpotsReturn = OperationResult<never, PaginatedQueryResult<'jackpots', Jackpot>>;
|
|
1937
1953
|
type _JackpotsReturn = OperationResult<never, PaginatedQueryResult<'_jackpots', Jackpot>>;
|
|
1954
|
+
interface JackpotsIdsInput extends JackpotsIdsQueryVariables {
|
|
1955
|
+
}
|
|
1956
|
+
type JackpotsIdsReturn = OperationResult<never, {
|
|
1957
|
+
jackpots: string[];
|
|
1958
|
+
totalCount: number;
|
|
1959
|
+
hasNextPage: boolean;
|
|
1960
|
+
endCursor?: string;
|
|
1961
|
+
}>;
|
|
1938
1962
|
interface JackpotPayoutsInput extends JackpotPayoutsQueryVariables {
|
|
1939
1963
|
}
|
|
1940
1964
|
interface JackpotPayout {
|
|
@@ -1970,7 +1994,7 @@ type UnregisterFCMDeviceReturn = OperationResult;
|
|
|
1970
1994
|
type GoogleClientIdReturn = OperationResult<never, string | null>;
|
|
1971
1995
|
type RequireFirstDepositReturn = OperationResult<never, boolean>;
|
|
1972
1996
|
type TournamentStatus = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
1973
|
-
type TournamentType = 'MULTIPLIER';
|
|
1997
|
+
type TournamentType = 'MULTIPLIER' | 'WAGERING';
|
|
1974
1998
|
type TournamentFrequency = 'DAILY' | 'WEEKLY' | 'MONTHLY';
|
|
1975
1999
|
type TournamentMode = 'ONE_TIME' | 'RECURRING';
|
|
1976
2000
|
interface TournamentsInput extends TournamentsQueryVariables {
|
|
@@ -2159,16 +2183,21 @@ declare class Sdk {
|
|
|
2159
2183
|
getFetch(): typeof fetch | null;
|
|
2160
2184
|
set middleware(value: GraphQLClientMiddleware);
|
|
2161
2185
|
get middleware(): GraphQLClientMiddleware;
|
|
2162
|
-
|
|
2163
|
-
|
|
2186
|
+
initMarketDomain(): void;
|
|
2187
|
+
set marketDomain(value: string | null);
|
|
2188
|
+
get marketDomain(): string | null;
|
|
2164
2189
|
set adClickId(value: string | null);
|
|
2165
2190
|
get adClickId(): string | null;
|
|
2191
|
+
set fbp(value: string | null);
|
|
2192
|
+
get fbp(): string | null;
|
|
2166
2193
|
set cxd(value: string | null);
|
|
2167
2194
|
get cxd(): string | null;
|
|
2168
2195
|
private get locale();
|
|
2169
2196
|
private get authMiddleware();
|
|
2170
|
-
private get
|
|
2197
|
+
private get fingerprintMiddleware();
|
|
2198
|
+
fingerprint(): Promise<string | null>;
|
|
2171
2199
|
private get miscMiddleware();
|
|
2200
|
+
collectMetaDetails(): void;
|
|
2172
2201
|
signIn(input: NameAndPasswordSignInInput): Promise<NameAndPasswordSignInReturn>;
|
|
2173
2202
|
signIn(input: MobileNumberSignInInput): Promise<MobileNumberSignInReturn>;
|
|
2174
2203
|
signIn(input: MayaSignInInput): Promise<MayaSignInReturn>;
|
|
@@ -2290,6 +2319,7 @@ declare class Sdk {
|
|
|
2290
2319
|
topWins(): Promise<TopWinsReturn>;
|
|
2291
2320
|
topWinsNext(): Promise<TopWinsReturn>;
|
|
2292
2321
|
jackpots(input?: JackpotsInput): Promise<JackpotsReturn>;
|
|
2322
|
+
jackpotsIds(input?: JackpotsIdsInput): Promise<JackpotsIdsReturn>;
|
|
2293
2323
|
_jackpots(input?: _JackpotsInput): Promise<_JackpotsReturn>;
|
|
2294
2324
|
jackpotPayouts(input?: JackpotPayoutsInput): Promise<JackpotPayoutsReturn>;
|
|
2295
2325
|
tournaments(input?: TournamentsInput): Promise<TournamentsReturn>;
|
|
@@ -2306,4 +2336,4 @@ declare class Sdk {
|
|
|
2306
2336
|
private formatYmd;
|
|
2307
2337
|
}
|
|
2308
2338
|
|
|
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 };
|
|
2339
|
+
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 };
|