sdk-sapi-promarketing 0.0.14 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +68 -1
- package/dist/index.d.ts +68 -1
- package/dist/index.js +39 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +38 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1987,6 +1987,23 @@ interface PlayerRequestWithdrawalStatusType extends CommonMessageType {
|
|
|
1987
1987
|
/** Represents if withdrawal is disabled. */
|
|
1988
1988
|
disabled_withdrawal: boolean;
|
|
1989
1989
|
}
|
|
1990
|
+
declare enum PlayerRequestWithdrawalStatusEnum {
|
|
1991
|
+
PLAYER_WITHDRAWAL_LIMIT_WARNING = "PLAYER_WITHDRAWAL_LIMIT_WARNING",
|
|
1992
|
+
PLAYER_WITHDRAWAL_LIMIT_EXCEEDED = "PLAYER_WITHDRAWAL_LIMIT_EXCEEDED"
|
|
1993
|
+
}
|
|
1994
|
+
interface PlayerRequestWithdrawalLimitType {
|
|
1995
|
+
/** Represents title of withdrawal limit status. */
|
|
1996
|
+
title: string | null;
|
|
1997
|
+
/** Represents description of withdrawal limit status. */
|
|
1998
|
+
description: string;
|
|
1999
|
+
/** Represents type of withdrawal limit status. */
|
|
2000
|
+
type: PlayerRequestWithdrawalStatusEnum;
|
|
2001
|
+
/** Represents meta of withdrawal limit status. */
|
|
2002
|
+
meta?: {
|
|
2003
|
+
/** Represents remaining amount of withdrawal limit. */
|
|
2004
|
+
remaining_amount: number;
|
|
2005
|
+
};
|
|
2006
|
+
}
|
|
1990
2007
|
|
|
1991
2008
|
interface BetType {
|
|
1992
2009
|
/** The date and time when the bet was created. */
|
|
@@ -3122,6 +3139,42 @@ interface PlayerDocumentVerifyStatusType extends CommonMessageType {
|
|
|
3122
3139
|
require_verification: boolean;
|
|
3123
3140
|
}
|
|
3124
3141
|
|
|
3142
|
+
declare enum GameDetailBadgeColorEnum {
|
|
3143
|
+
GREEN = "GREEN",
|
|
3144
|
+
YELLOW = "YELLOW",
|
|
3145
|
+
FUCHSIA = "FUCHSIA",
|
|
3146
|
+
SKY = "SKY"
|
|
3147
|
+
}
|
|
3148
|
+
interface GameDetailBadgeType {
|
|
3149
|
+
/** Label of the badge. */
|
|
3150
|
+
label: string;
|
|
3151
|
+
/** Color of the badge. */
|
|
3152
|
+
color: GameDetailBadgeColorEnum;
|
|
3153
|
+
}
|
|
3154
|
+
interface GameDetailType extends CommonMessageType {
|
|
3155
|
+
/** ID of the game. */
|
|
3156
|
+
id: number;
|
|
3157
|
+
/** RTP of the game. */
|
|
3158
|
+
rtp: string;
|
|
3159
|
+
/** Name of the game. */
|
|
3160
|
+
name: string;
|
|
3161
|
+
/** Image of the game. */
|
|
3162
|
+
image: string;
|
|
3163
|
+
/** Version of the game. */
|
|
3164
|
+
version: string;
|
|
3165
|
+
/** Provider of the game. */
|
|
3166
|
+
provider: GameProviderType;
|
|
3167
|
+
/** Badges of the game. */
|
|
3168
|
+
badges: GameDetailBadgeType[];
|
|
3169
|
+
/** Volatility of the game. */
|
|
3170
|
+
volatility: {
|
|
3171
|
+
/** Value of the volatility. */
|
|
3172
|
+
value: number;
|
|
3173
|
+
/** Label of the volatility. */
|
|
3174
|
+
label: string;
|
|
3175
|
+
};
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3125
3178
|
/**
|
|
3126
3179
|
*
|
|
3127
3180
|
*/
|
|
@@ -3153,6 +3206,14 @@ declare class GameService extends RequestBase {
|
|
|
3153
3206
|
* @returns These returns values unknown.
|
|
3154
3207
|
*/
|
|
3155
3208
|
getGameById: (gameId: string, options?: {}) => Promise<Game>;
|
|
3209
|
+
/**
|
|
3210
|
+
* Get game information by id.
|
|
3211
|
+
*
|
|
3212
|
+
* @param gameId Represents game ID.
|
|
3213
|
+
* @param options Represent value options.
|
|
3214
|
+
* @returns These returns values unknown.
|
|
3215
|
+
*/
|
|
3216
|
+
getGameDetailById: (gameId: string, options?: {}) => Promise<GameDetailType>;
|
|
3156
3217
|
/**
|
|
3157
3218
|
* Get game opening URL.
|
|
3158
3219
|
*
|
|
@@ -3384,6 +3445,12 @@ declare class PlayerService extends RequestBase {
|
|
|
3384
3445
|
* @returns These returns values unknown.
|
|
3385
3446
|
*/
|
|
3386
3447
|
getPlayerRequestWithdrawalStatus: () => Promise<PlayerRequestWithdrawalStatusType>;
|
|
3448
|
+
/**
|
|
3449
|
+
* Get player request withdrawal limit.
|
|
3450
|
+
*
|
|
3451
|
+
* @returns These returns values unknown.
|
|
3452
|
+
*/
|
|
3453
|
+
getPlayerRequestWithdrawalLimit: () => Promise<PlayerRequestWithdrawalLimitType>;
|
|
3387
3454
|
/**
|
|
3388
3455
|
* Get player request withdrawal pending tracking.
|
|
3389
3456
|
*
|
|
@@ -4546,4 +4613,4 @@ declare class SdkSAPI extends SdkSAPI_base {
|
|
|
4546
4613
|
constructor(context: SdkSapiContext);
|
|
4547
4614
|
}
|
|
4548
4615
|
|
|
4549
|
-
export { AccessFlowControllerFromOriginEnum, AccessFlowControllerTypeEnum, type BankAccountType, type BankAccountTypeType, type BankCreateBankAccountDataType, type BankCreateBankAccountType, type BankDeleteBankAccountDataType, type BankDeleteBankAccountType, type BankEditBankAccountDataType, type BankEditBankAccountType, type BankType, type BetRoundLinkType, type BetType, type BetTypeType, type BonusDetailsPanelRequirementType, BonusFinalizedStatusEnum, BonusFinalizedTypeFlagEnum, BonusParticipationButtonNum, BonusParticipationStatusEnum, BonusPromotionCodeEnum, type BonusPromotionReasonDataType, type BonusStatusAvailableData, BonusStatusAvailableEnum, BonusStatusAvailableFlagEnum, type BonusStatusDetailsDataType, type BonusStatusFinalizedData, type BonusStatusPromotionData, ChooseSeverityEnum, type CommonMessageType, type CreatePlayerDataType, type CreatePlayerPhoneDataType, type CreatePlayerPhoneResponseType, type CreatePlayerType, type CurrencyType, type DepositApprovedDetailsData, type DepositHybridDetailsData, DepositManualButtonKey, type DepositManualDetailsData, DepositStatusKey, type DocumentIpBlockType, type FaqItemType, type FaqType, type Game, type GameAttributeType, type GameCategoryType, type GameOpeningURL, type GameProviderType, type GameSearchType, type GameType, type GameTypes, type GamesJackpotsPragmaticType, type LobbyType, type MenuItemType, MenuStatusType, type MenuType, type NotificationType, type PaginatorContentType, type PaginatorType, type PaymentConfirmDataType, type PaymentConfirmType, type PaymentCreateDataType, type PaymentCreateType, type PaymentDetailsType, type PaymentMethodsDataType, type PaymentMethodsType, type PlayerAccessFlowControllerBlockedData, type PlayerAccessFlowControllerDataType, type PlayerBalanceType, type PlayerBankAccountIsBlockedType, type PlayerBankAccountsType, type PlayerBetsReport, type PlayerBetsReportDataType, type PlayerBiometryVerifyStatusType, type PlayerBonusActivateDataType, type PlayerBonusActivateType, type PlayerBonusAvailableCountDataType, type PlayerBonusAvailableCountDataType as PlayerBonusAvailableCountType, type PlayerBonusAvailablesDataType, type PlayerBonusAvailablesType, type PlayerBonusCheckStatusType, type PlayerBonusPromotionActivateDataType, type PlayerBonusProvidersDataType, type PlayerBonusProvidersType, type PlayerBonusReportsDataType, type PlayerBonusReportsType, type PlayerBonusStatusDataType, type PlayerBonusStatusType, type PlayerBonusTermsConditionsType, type PlayerBonusTransactionsReport, type PlayerBonusTransactionsReportDataType, type PlayerBonusVerifySportsbook, type PlayerConfirmIdentifyBiometryDataType, type PlayerConfirmIdentifyBiometryType, type PlayerCountryType, type PlayerCreateIdentifyBiometryDataType, type PlayerCreateIdentifyBiometryType, type PlayerCreateOnboardingDataType, type PlayerCreateOnboardingType, type PlayerCreateOrUpdateSelfLimitationByBetDataType, type PlayerCreateOrUpdateSelfLimitationByBetType, type PlayerCreateOrUpdateSelfLimitationByDepositDataType, type PlayerCreateOrUpdateSelfLimitationByDepositType, type PlayerCreateOrUpdateSelfLimitationBySessionDataType, type PlayerCreateOrUpdateSelfLimitationBySessionType, type PlayerCreateSelfExclusionAccountClosureDataType, type PlayerCreateSelfExclusionAccountClosureType, type PlayerCreateSelfExclusionByCategoryDataType, type PlayerCreateSelfExclusionByCategoryType, type PlayerCreateSelfExclusionByProviderDataType, type PlayerCreateSelfExclusionByProviderType, type PlayerCreateSelfExclusionRevocationRequestDataType, type PlayerCreateSelfExclusionRevocationRequestType, type PlayerCreateSelfExclusionTotalDataType, type PlayerDetailsEditDataType, type PlayerDetailsEditType, type PlayerDetailsModeBonusActive, type PlayerDocumentVerifyStatusType, type PlayerEditDataType, type PlayerEditType, type PlayerNotifications, type PlayerNotifyDeleteDataType, type PlayerNotifyDeleteType, type PlayerNotifyMarkAsReadDataType, type PlayerNotifyMarkAsReadType, type PlayerNotifyRestoreDataType, type PlayerOnboardingDataType, type PlayerOnboardingType, type PlayerPepConfirmQuestions, type PlayerPepConfirmQuestionsType, type PlayerPepVerificationQuestions, type PlayerPepVerificationStatus, type PlayerPreRegistrationRequestDataType, type PlayerPreRegistrationResponseType, type PlayerRequestWithdrawalDataType, type PlayerRequestWithdrawalPendingTrackingDataType, type PlayerRequestWithdrawalPendingTrackingType, type PlayerRequestWithdrawalStatusType, type PlayerRequestWithdrawalType, type PlayerSelfExclusionReport, type PlayerSelfExclusionStatusType, type PlayerSelfLimitationBetReport, type PlayerSelfLimitationCancelReqType, type PlayerSelfLimitationCancelType, type PlayerSelfLimitationCreateOrUpdateDataType, type PlayerSelfLimitationDepositReport, type PlayerSelfLimitationInfoDataType, type PlayerSelfLimitationInfoType, type PlayerSelfLimitationSessionReport, type PlayerSendPasswordRecoverDataType, type PlayerSendPasswordRecoverType, type PlayerSendVerifySmsDataType, type PlayerSendVerifySmsType, type PlayerSessionCreateDataType, PlayerSessionDeviceEnum, type PlayerSessionLatestReport, type PlayerSessionRefreshType, PlayerSessionStatusEnum, type PlayerSessionType, type PlayerSessionsReport, type PlayerSetPasswordDataType, type PlayerSetPasswordType, type PlayerSportsbookMatch, type PlayerSportsbookTransactionsDetails, type PlayerSportsbookTransactionsDetailsReport, PlayerSportsbookTransactionsDetailsStatus, PlayerSportsbookTransactionsDetailsType, type PlayerSportsbookTransactionsReport, PlayerTransactionFlagEnum, PlayerTransactionStatusEnum, PlayerTransactionTypeEnum, PlayerTransactionTypeFilterEnum, type PlayerTransactionsResponseType, type PlayerTransactionsType, type PlayerTwoFactorAuthenticationMethodsType, type PlayerTwoFactorAuthenticationSendCodeDataType, type PlayerTwoFactorAuthenticationVerifiesCodeDataType, type PlayerSessionType as PlayerTwoFactorAuthenticationVerifiesCodeType, type PlayerTwoFactorCodeDataType, type PlayerType, type PlayerUnreadNotificationsType, type PlayerUpdateOrCreatePhoneType, type PlayerUpdatePasswordDataType, type PlayerUpdatePasswordType, type PlayerVerifyValidateDocumentStatusType, PromotionTypeEnum, type ProviderType, type QueryType, SdkSAPI, type SdkSapiContext, type SearchGamesEventOptixType, SelfExclusionCardCurrentStatusEnum, type SelfExclusionType, SelfLimitationAlertKey, SelfLimitationCancelEnum, SelfLimitationEnum, SelfLimitationInfoResumeTypeEnum, SelfLimitationProgressBarStateEnum, SelfLimitationRuleEnum, type SelfLimitationRuleStatusInfoType, type SelfLimitationRuleType, SelfLimitationStateEnum, type SelfLimitationTypeRuleType, type SelfLimitationTypesType, type SendCasinoClaimFormDataType, type SendCasinoClaimFormType, type SendContactFormDataType, type SendContactFormType, type SendEmailConfirmationType, type SendSportClaimFormDataType, type SendSportClaimFormType, type SessionReportType, type SessionStatusType, type SessionType, type SkinContentItemType, type SkinCountryType, type SkinInformationType, type SkinLobbyByCodeType, type SkinLobbyOptixType, type SkinProvidersListType, type SkinType, type SliderTournamentType, type SportFirstProviderType, type SupportDepositFormDataType, TWO_FACTOR_AUTHENTICATION_BLOCKED_ENUM, TWO_FACTOR_AUTHENTICATION_METHODS_ENUM, TournamentCurrentStatus, type TournamentDetailsType, TransactionDetailsKey, type TransactionStatusType, type TransactionTypeType, TransactionWithdrawalStatus, type TransactionsDepositDetailsType, type TransactionsDetailsType, type TransactionsReportType, type TransactionsSportsbookReportType, type TransactionsTypesDownloadType, type TransactionsTypesListType, type TransactionsTypesType, type TransactionsWithdrawalDetailsType, TypeSelfLimitationEnum, type ValidateAffiliateCodeType, type ValidateDocumentBySkinResponseType, type ValidateDocumentBySkinType, type ValidateMailType, type ValidatePasswordRecoveryCodeType, type ValidatePhoneType, type ValidateSerialDataType, type ValidateSerialResponseType, type ValidateSerialType, type ValidateUsernameType, type VerifyIdentityDocumentType, type VerifyIdentityPersonalDataType, type VerifyPlayerEmailType, type VerifyPlayerPhoneType, type WithdrawalCommonData, WithdrawalStatusEnum };
|
|
4616
|
+
export { AccessFlowControllerFromOriginEnum, AccessFlowControllerTypeEnum, type BankAccountType, type BankAccountTypeType, type BankCreateBankAccountDataType, type BankCreateBankAccountType, type BankDeleteBankAccountDataType, type BankDeleteBankAccountType, type BankEditBankAccountDataType, type BankEditBankAccountType, type BankType, type BetRoundLinkType, type BetType, type BetTypeType, type BonusDetailsPanelRequirementType, BonusFinalizedStatusEnum, BonusFinalizedTypeFlagEnum, BonusParticipationButtonNum, BonusParticipationStatusEnum, BonusPromotionCodeEnum, type BonusPromotionReasonDataType, type BonusStatusAvailableData, BonusStatusAvailableEnum, BonusStatusAvailableFlagEnum, type BonusStatusDetailsDataType, type BonusStatusFinalizedData, type BonusStatusPromotionData, ChooseSeverityEnum, type CommonMessageType, type CreatePlayerDataType, type CreatePlayerPhoneDataType, type CreatePlayerPhoneResponseType, type CreatePlayerType, type CurrencyType, type DepositApprovedDetailsData, type DepositHybridDetailsData, DepositManualButtonKey, type DepositManualDetailsData, DepositStatusKey, type DocumentIpBlockType, type FaqItemType, type FaqType, type Game, type GameAttributeType, type GameCategoryType, GameDetailBadgeColorEnum, type GameDetailBadgeType, type GameDetailType, type GameOpeningURL, type GameProviderType, type GameSearchType, type GameType, type GameTypes, type GamesJackpotsPragmaticType, type LobbyType, type MenuItemType, MenuStatusType, type MenuType, type NotificationType, type PaginatorContentType, type PaginatorType, type PaymentConfirmDataType, type PaymentConfirmType, type PaymentCreateDataType, type PaymentCreateType, type PaymentDetailsType, type PaymentMethodsDataType, type PaymentMethodsType, type PlayerAccessFlowControllerBlockedData, type PlayerAccessFlowControllerDataType, type PlayerBalanceType, type PlayerBankAccountIsBlockedType, type PlayerBankAccountsType, type PlayerBetsReport, type PlayerBetsReportDataType, type PlayerBiometryVerifyStatusType, type PlayerBonusActivateDataType, type PlayerBonusActivateType, type PlayerBonusAvailableCountDataType, type PlayerBonusAvailableCountDataType as PlayerBonusAvailableCountType, type PlayerBonusAvailablesDataType, type PlayerBonusAvailablesType, type PlayerBonusCheckStatusType, type PlayerBonusPromotionActivateDataType, type PlayerBonusProvidersDataType, type PlayerBonusProvidersType, type PlayerBonusReportsDataType, type PlayerBonusReportsType, type PlayerBonusStatusDataType, type PlayerBonusStatusType, type PlayerBonusTermsConditionsType, type PlayerBonusTransactionsReport, type PlayerBonusTransactionsReportDataType, type PlayerBonusVerifySportsbook, type PlayerConfirmIdentifyBiometryDataType, type PlayerConfirmIdentifyBiometryType, type PlayerCountryType, type PlayerCreateIdentifyBiometryDataType, type PlayerCreateIdentifyBiometryType, type PlayerCreateOnboardingDataType, type PlayerCreateOnboardingType, type PlayerCreateOrUpdateSelfLimitationByBetDataType, type PlayerCreateOrUpdateSelfLimitationByBetType, type PlayerCreateOrUpdateSelfLimitationByDepositDataType, type PlayerCreateOrUpdateSelfLimitationByDepositType, type PlayerCreateOrUpdateSelfLimitationBySessionDataType, type PlayerCreateOrUpdateSelfLimitationBySessionType, type PlayerCreateSelfExclusionAccountClosureDataType, type PlayerCreateSelfExclusionAccountClosureType, type PlayerCreateSelfExclusionByCategoryDataType, type PlayerCreateSelfExclusionByCategoryType, type PlayerCreateSelfExclusionByProviderDataType, type PlayerCreateSelfExclusionByProviderType, type PlayerCreateSelfExclusionRevocationRequestDataType, type PlayerCreateSelfExclusionRevocationRequestType, type PlayerCreateSelfExclusionTotalDataType, type PlayerDetailsEditDataType, type PlayerDetailsEditType, type PlayerDetailsModeBonusActive, type PlayerDocumentVerifyStatusType, type PlayerEditDataType, type PlayerEditType, type PlayerNotifications, type PlayerNotifyDeleteDataType, type PlayerNotifyDeleteType, type PlayerNotifyMarkAsReadDataType, type PlayerNotifyMarkAsReadType, type PlayerNotifyRestoreDataType, type PlayerOnboardingDataType, type PlayerOnboardingType, type PlayerPepConfirmQuestions, type PlayerPepConfirmQuestionsType, type PlayerPepVerificationQuestions, type PlayerPepVerificationStatus, type PlayerPreRegistrationRequestDataType, type PlayerPreRegistrationResponseType, type PlayerRequestWithdrawalDataType, type PlayerRequestWithdrawalLimitType, type PlayerRequestWithdrawalPendingTrackingDataType, type PlayerRequestWithdrawalPendingTrackingType, PlayerRequestWithdrawalStatusEnum, type PlayerRequestWithdrawalStatusType, type PlayerRequestWithdrawalType, type PlayerSelfExclusionReport, type PlayerSelfExclusionStatusType, type PlayerSelfLimitationBetReport, type PlayerSelfLimitationCancelReqType, type PlayerSelfLimitationCancelType, type PlayerSelfLimitationCreateOrUpdateDataType, type PlayerSelfLimitationDepositReport, type PlayerSelfLimitationInfoDataType, type PlayerSelfLimitationInfoType, type PlayerSelfLimitationSessionReport, type PlayerSendPasswordRecoverDataType, type PlayerSendPasswordRecoverType, type PlayerSendVerifySmsDataType, type PlayerSendVerifySmsType, type PlayerSessionCreateDataType, PlayerSessionDeviceEnum, type PlayerSessionLatestReport, type PlayerSessionRefreshType, PlayerSessionStatusEnum, type PlayerSessionType, type PlayerSessionsReport, type PlayerSetPasswordDataType, type PlayerSetPasswordType, type PlayerSportsbookMatch, type PlayerSportsbookTransactionsDetails, type PlayerSportsbookTransactionsDetailsReport, PlayerSportsbookTransactionsDetailsStatus, PlayerSportsbookTransactionsDetailsType, type PlayerSportsbookTransactionsReport, PlayerTransactionFlagEnum, PlayerTransactionStatusEnum, PlayerTransactionTypeEnum, PlayerTransactionTypeFilterEnum, type PlayerTransactionsResponseType, type PlayerTransactionsType, type PlayerTwoFactorAuthenticationMethodsType, type PlayerTwoFactorAuthenticationSendCodeDataType, type PlayerTwoFactorAuthenticationVerifiesCodeDataType, type PlayerSessionType as PlayerTwoFactorAuthenticationVerifiesCodeType, type PlayerTwoFactorCodeDataType, type PlayerType, type PlayerUnreadNotificationsType, type PlayerUpdateOrCreatePhoneType, type PlayerUpdatePasswordDataType, type PlayerUpdatePasswordType, type PlayerVerifyValidateDocumentStatusType, PromotionTypeEnum, type ProviderType, type QueryType, SdkSAPI, type SdkSapiContext, type SearchGamesEventOptixType, SelfExclusionCardCurrentStatusEnum, type SelfExclusionType, SelfLimitationAlertKey, SelfLimitationCancelEnum, SelfLimitationEnum, SelfLimitationInfoResumeTypeEnum, SelfLimitationProgressBarStateEnum, SelfLimitationRuleEnum, type SelfLimitationRuleStatusInfoType, type SelfLimitationRuleType, SelfLimitationStateEnum, type SelfLimitationTypeRuleType, type SelfLimitationTypesType, type SendCasinoClaimFormDataType, type SendCasinoClaimFormType, type SendContactFormDataType, type SendContactFormType, type SendEmailConfirmationType, type SendSportClaimFormDataType, type SendSportClaimFormType, type SessionReportType, type SessionStatusType, type SessionType, type SkinContentItemType, type SkinCountryType, type SkinInformationType, type SkinLobbyByCodeType, type SkinLobbyOptixType, type SkinProvidersListType, type SkinType, type SliderTournamentType, type SportFirstProviderType, type SupportDepositFormDataType, TWO_FACTOR_AUTHENTICATION_BLOCKED_ENUM, TWO_FACTOR_AUTHENTICATION_METHODS_ENUM, TournamentCurrentStatus, type TournamentDetailsType, TransactionDetailsKey, type TransactionStatusType, type TransactionTypeType, TransactionWithdrawalStatus, type TransactionsDepositDetailsType, type TransactionsDetailsType, type TransactionsReportType, type TransactionsSportsbookReportType, type TransactionsTypesDownloadType, type TransactionsTypesListType, type TransactionsTypesType, type TransactionsWithdrawalDetailsType, TypeSelfLimitationEnum, type ValidateAffiliateCodeType, type ValidateDocumentBySkinResponseType, type ValidateDocumentBySkinType, type ValidateMailType, type ValidatePasswordRecoveryCodeType, type ValidatePhoneType, type ValidateSerialDataType, type ValidateSerialResponseType, type ValidateSerialType, type ValidateUsernameType, type VerifyIdentityDocumentType, type VerifyIdentityPersonalDataType, type VerifyPlayerEmailType, type VerifyPlayerPhoneType, type WithdrawalCommonData, WithdrawalStatusEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -1987,6 +1987,23 @@ interface PlayerRequestWithdrawalStatusType extends CommonMessageType {
|
|
|
1987
1987
|
/** Represents if withdrawal is disabled. */
|
|
1988
1988
|
disabled_withdrawal: boolean;
|
|
1989
1989
|
}
|
|
1990
|
+
declare enum PlayerRequestWithdrawalStatusEnum {
|
|
1991
|
+
PLAYER_WITHDRAWAL_LIMIT_WARNING = "PLAYER_WITHDRAWAL_LIMIT_WARNING",
|
|
1992
|
+
PLAYER_WITHDRAWAL_LIMIT_EXCEEDED = "PLAYER_WITHDRAWAL_LIMIT_EXCEEDED"
|
|
1993
|
+
}
|
|
1994
|
+
interface PlayerRequestWithdrawalLimitType {
|
|
1995
|
+
/** Represents title of withdrawal limit status. */
|
|
1996
|
+
title: string | null;
|
|
1997
|
+
/** Represents description of withdrawal limit status. */
|
|
1998
|
+
description: string;
|
|
1999
|
+
/** Represents type of withdrawal limit status. */
|
|
2000
|
+
type: PlayerRequestWithdrawalStatusEnum;
|
|
2001
|
+
/** Represents meta of withdrawal limit status. */
|
|
2002
|
+
meta?: {
|
|
2003
|
+
/** Represents remaining amount of withdrawal limit. */
|
|
2004
|
+
remaining_amount: number;
|
|
2005
|
+
};
|
|
2006
|
+
}
|
|
1990
2007
|
|
|
1991
2008
|
interface BetType {
|
|
1992
2009
|
/** The date and time when the bet was created. */
|
|
@@ -3122,6 +3139,42 @@ interface PlayerDocumentVerifyStatusType extends CommonMessageType {
|
|
|
3122
3139
|
require_verification: boolean;
|
|
3123
3140
|
}
|
|
3124
3141
|
|
|
3142
|
+
declare enum GameDetailBadgeColorEnum {
|
|
3143
|
+
GREEN = "GREEN",
|
|
3144
|
+
YELLOW = "YELLOW",
|
|
3145
|
+
FUCHSIA = "FUCHSIA",
|
|
3146
|
+
SKY = "SKY"
|
|
3147
|
+
}
|
|
3148
|
+
interface GameDetailBadgeType {
|
|
3149
|
+
/** Label of the badge. */
|
|
3150
|
+
label: string;
|
|
3151
|
+
/** Color of the badge. */
|
|
3152
|
+
color: GameDetailBadgeColorEnum;
|
|
3153
|
+
}
|
|
3154
|
+
interface GameDetailType extends CommonMessageType {
|
|
3155
|
+
/** ID of the game. */
|
|
3156
|
+
id: number;
|
|
3157
|
+
/** RTP of the game. */
|
|
3158
|
+
rtp: string;
|
|
3159
|
+
/** Name of the game. */
|
|
3160
|
+
name: string;
|
|
3161
|
+
/** Image of the game. */
|
|
3162
|
+
image: string;
|
|
3163
|
+
/** Version of the game. */
|
|
3164
|
+
version: string;
|
|
3165
|
+
/** Provider of the game. */
|
|
3166
|
+
provider: GameProviderType;
|
|
3167
|
+
/** Badges of the game. */
|
|
3168
|
+
badges: GameDetailBadgeType[];
|
|
3169
|
+
/** Volatility of the game. */
|
|
3170
|
+
volatility: {
|
|
3171
|
+
/** Value of the volatility. */
|
|
3172
|
+
value: number;
|
|
3173
|
+
/** Label of the volatility. */
|
|
3174
|
+
label: string;
|
|
3175
|
+
};
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3125
3178
|
/**
|
|
3126
3179
|
*
|
|
3127
3180
|
*/
|
|
@@ -3153,6 +3206,14 @@ declare class GameService extends RequestBase {
|
|
|
3153
3206
|
* @returns These returns values unknown.
|
|
3154
3207
|
*/
|
|
3155
3208
|
getGameById: (gameId: string, options?: {}) => Promise<Game>;
|
|
3209
|
+
/**
|
|
3210
|
+
* Get game information by id.
|
|
3211
|
+
*
|
|
3212
|
+
* @param gameId Represents game ID.
|
|
3213
|
+
* @param options Represent value options.
|
|
3214
|
+
* @returns These returns values unknown.
|
|
3215
|
+
*/
|
|
3216
|
+
getGameDetailById: (gameId: string, options?: {}) => Promise<GameDetailType>;
|
|
3156
3217
|
/**
|
|
3157
3218
|
* Get game opening URL.
|
|
3158
3219
|
*
|
|
@@ -3384,6 +3445,12 @@ declare class PlayerService extends RequestBase {
|
|
|
3384
3445
|
* @returns These returns values unknown.
|
|
3385
3446
|
*/
|
|
3386
3447
|
getPlayerRequestWithdrawalStatus: () => Promise<PlayerRequestWithdrawalStatusType>;
|
|
3448
|
+
/**
|
|
3449
|
+
* Get player request withdrawal limit.
|
|
3450
|
+
*
|
|
3451
|
+
* @returns These returns values unknown.
|
|
3452
|
+
*/
|
|
3453
|
+
getPlayerRequestWithdrawalLimit: () => Promise<PlayerRequestWithdrawalLimitType>;
|
|
3387
3454
|
/**
|
|
3388
3455
|
* Get player request withdrawal pending tracking.
|
|
3389
3456
|
*
|
|
@@ -4546,4 +4613,4 @@ declare class SdkSAPI extends SdkSAPI_base {
|
|
|
4546
4613
|
constructor(context: SdkSapiContext);
|
|
4547
4614
|
}
|
|
4548
4615
|
|
|
4549
|
-
export { AccessFlowControllerFromOriginEnum, AccessFlowControllerTypeEnum, type BankAccountType, type BankAccountTypeType, type BankCreateBankAccountDataType, type BankCreateBankAccountType, type BankDeleteBankAccountDataType, type BankDeleteBankAccountType, type BankEditBankAccountDataType, type BankEditBankAccountType, type BankType, type BetRoundLinkType, type BetType, type BetTypeType, type BonusDetailsPanelRequirementType, BonusFinalizedStatusEnum, BonusFinalizedTypeFlagEnum, BonusParticipationButtonNum, BonusParticipationStatusEnum, BonusPromotionCodeEnum, type BonusPromotionReasonDataType, type BonusStatusAvailableData, BonusStatusAvailableEnum, BonusStatusAvailableFlagEnum, type BonusStatusDetailsDataType, type BonusStatusFinalizedData, type BonusStatusPromotionData, ChooseSeverityEnum, type CommonMessageType, type CreatePlayerDataType, type CreatePlayerPhoneDataType, type CreatePlayerPhoneResponseType, type CreatePlayerType, type CurrencyType, type DepositApprovedDetailsData, type DepositHybridDetailsData, DepositManualButtonKey, type DepositManualDetailsData, DepositStatusKey, type DocumentIpBlockType, type FaqItemType, type FaqType, type Game, type GameAttributeType, type GameCategoryType, type GameOpeningURL, type GameProviderType, type GameSearchType, type GameType, type GameTypes, type GamesJackpotsPragmaticType, type LobbyType, type MenuItemType, MenuStatusType, type MenuType, type NotificationType, type PaginatorContentType, type PaginatorType, type PaymentConfirmDataType, type PaymentConfirmType, type PaymentCreateDataType, type PaymentCreateType, type PaymentDetailsType, type PaymentMethodsDataType, type PaymentMethodsType, type PlayerAccessFlowControllerBlockedData, type PlayerAccessFlowControllerDataType, type PlayerBalanceType, type PlayerBankAccountIsBlockedType, type PlayerBankAccountsType, type PlayerBetsReport, type PlayerBetsReportDataType, type PlayerBiometryVerifyStatusType, type PlayerBonusActivateDataType, type PlayerBonusActivateType, type PlayerBonusAvailableCountDataType, type PlayerBonusAvailableCountDataType as PlayerBonusAvailableCountType, type PlayerBonusAvailablesDataType, type PlayerBonusAvailablesType, type PlayerBonusCheckStatusType, type PlayerBonusPromotionActivateDataType, type PlayerBonusProvidersDataType, type PlayerBonusProvidersType, type PlayerBonusReportsDataType, type PlayerBonusReportsType, type PlayerBonusStatusDataType, type PlayerBonusStatusType, type PlayerBonusTermsConditionsType, type PlayerBonusTransactionsReport, type PlayerBonusTransactionsReportDataType, type PlayerBonusVerifySportsbook, type PlayerConfirmIdentifyBiometryDataType, type PlayerConfirmIdentifyBiometryType, type PlayerCountryType, type PlayerCreateIdentifyBiometryDataType, type PlayerCreateIdentifyBiometryType, type PlayerCreateOnboardingDataType, type PlayerCreateOnboardingType, type PlayerCreateOrUpdateSelfLimitationByBetDataType, type PlayerCreateOrUpdateSelfLimitationByBetType, type PlayerCreateOrUpdateSelfLimitationByDepositDataType, type PlayerCreateOrUpdateSelfLimitationByDepositType, type PlayerCreateOrUpdateSelfLimitationBySessionDataType, type PlayerCreateOrUpdateSelfLimitationBySessionType, type PlayerCreateSelfExclusionAccountClosureDataType, type PlayerCreateSelfExclusionAccountClosureType, type PlayerCreateSelfExclusionByCategoryDataType, type PlayerCreateSelfExclusionByCategoryType, type PlayerCreateSelfExclusionByProviderDataType, type PlayerCreateSelfExclusionByProviderType, type PlayerCreateSelfExclusionRevocationRequestDataType, type PlayerCreateSelfExclusionRevocationRequestType, type PlayerCreateSelfExclusionTotalDataType, type PlayerDetailsEditDataType, type PlayerDetailsEditType, type PlayerDetailsModeBonusActive, type PlayerDocumentVerifyStatusType, type PlayerEditDataType, type PlayerEditType, type PlayerNotifications, type PlayerNotifyDeleteDataType, type PlayerNotifyDeleteType, type PlayerNotifyMarkAsReadDataType, type PlayerNotifyMarkAsReadType, type PlayerNotifyRestoreDataType, type PlayerOnboardingDataType, type PlayerOnboardingType, type PlayerPepConfirmQuestions, type PlayerPepConfirmQuestionsType, type PlayerPepVerificationQuestions, type PlayerPepVerificationStatus, type PlayerPreRegistrationRequestDataType, type PlayerPreRegistrationResponseType, type PlayerRequestWithdrawalDataType, type PlayerRequestWithdrawalPendingTrackingDataType, type PlayerRequestWithdrawalPendingTrackingType, type PlayerRequestWithdrawalStatusType, type PlayerRequestWithdrawalType, type PlayerSelfExclusionReport, type PlayerSelfExclusionStatusType, type PlayerSelfLimitationBetReport, type PlayerSelfLimitationCancelReqType, type PlayerSelfLimitationCancelType, type PlayerSelfLimitationCreateOrUpdateDataType, type PlayerSelfLimitationDepositReport, type PlayerSelfLimitationInfoDataType, type PlayerSelfLimitationInfoType, type PlayerSelfLimitationSessionReport, type PlayerSendPasswordRecoverDataType, type PlayerSendPasswordRecoverType, type PlayerSendVerifySmsDataType, type PlayerSendVerifySmsType, type PlayerSessionCreateDataType, PlayerSessionDeviceEnum, type PlayerSessionLatestReport, type PlayerSessionRefreshType, PlayerSessionStatusEnum, type PlayerSessionType, type PlayerSessionsReport, type PlayerSetPasswordDataType, type PlayerSetPasswordType, type PlayerSportsbookMatch, type PlayerSportsbookTransactionsDetails, type PlayerSportsbookTransactionsDetailsReport, PlayerSportsbookTransactionsDetailsStatus, PlayerSportsbookTransactionsDetailsType, type PlayerSportsbookTransactionsReport, PlayerTransactionFlagEnum, PlayerTransactionStatusEnum, PlayerTransactionTypeEnum, PlayerTransactionTypeFilterEnum, type PlayerTransactionsResponseType, type PlayerTransactionsType, type PlayerTwoFactorAuthenticationMethodsType, type PlayerTwoFactorAuthenticationSendCodeDataType, type PlayerTwoFactorAuthenticationVerifiesCodeDataType, type PlayerSessionType as PlayerTwoFactorAuthenticationVerifiesCodeType, type PlayerTwoFactorCodeDataType, type PlayerType, type PlayerUnreadNotificationsType, type PlayerUpdateOrCreatePhoneType, type PlayerUpdatePasswordDataType, type PlayerUpdatePasswordType, type PlayerVerifyValidateDocumentStatusType, PromotionTypeEnum, type ProviderType, type QueryType, SdkSAPI, type SdkSapiContext, type SearchGamesEventOptixType, SelfExclusionCardCurrentStatusEnum, type SelfExclusionType, SelfLimitationAlertKey, SelfLimitationCancelEnum, SelfLimitationEnum, SelfLimitationInfoResumeTypeEnum, SelfLimitationProgressBarStateEnum, SelfLimitationRuleEnum, type SelfLimitationRuleStatusInfoType, type SelfLimitationRuleType, SelfLimitationStateEnum, type SelfLimitationTypeRuleType, type SelfLimitationTypesType, type SendCasinoClaimFormDataType, type SendCasinoClaimFormType, type SendContactFormDataType, type SendContactFormType, type SendEmailConfirmationType, type SendSportClaimFormDataType, type SendSportClaimFormType, type SessionReportType, type SessionStatusType, type SessionType, type SkinContentItemType, type SkinCountryType, type SkinInformationType, type SkinLobbyByCodeType, type SkinLobbyOptixType, type SkinProvidersListType, type SkinType, type SliderTournamentType, type SportFirstProviderType, type SupportDepositFormDataType, TWO_FACTOR_AUTHENTICATION_BLOCKED_ENUM, TWO_FACTOR_AUTHENTICATION_METHODS_ENUM, TournamentCurrentStatus, type TournamentDetailsType, TransactionDetailsKey, type TransactionStatusType, type TransactionTypeType, TransactionWithdrawalStatus, type TransactionsDepositDetailsType, type TransactionsDetailsType, type TransactionsReportType, type TransactionsSportsbookReportType, type TransactionsTypesDownloadType, type TransactionsTypesListType, type TransactionsTypesType, type TransactionsWithdrawalDetailsType, TypeSelfLimitationEnum, type ValidateAffiliateCodeType, type ValidateDocumentBySkinResponseType, type ValidateDocumentBySkinType, type ValidateMailType, type ValidatePasswordRecoveryCodeType, type ValidatePhoneType, type ValidateSerialDataType, type ValidateSerialResponseType, type ValidateSerialType, type ValidateUsernameType, type VerifyIdentityDocumentType, type VerifyIdentityPersonalDataType, type VerifyPlayerEmailType, type VerifyPlayerPhoneType, type WithdrawalCommonData, WithdrawalStatusEnum };
|
|
4616
|
+
export { AccessFlowControllerFromOriginEnum, AccessFlowControllerTypeEnum, type BankAccountType, type BankAccountTypeType, type BankCreateBankAccountDataType, type BankCreateBankAccountType, type BankDeleteBankAccountDataType, type BankDeleteBankAccountType, type BankEditBankAccountDataType, type BankEditBankAccountType, type BankType, type BetRoundLinkType, type BetType, type BetTypeType, type BonusDetailsPanelRequirementType, BonusFinalizedStatusEnum, BonusFinalizedTypeFlagEnum, BonusParticipationButtonNum, BonusParticipationStatusEnum, BonusPromotionCodeEnum, type BonusPromotionReasonDataType, type BonusStatusAvailableData, BonusStatusAvailableEnum, BonusStatusAvailableFlagEnum, type BonusStatusDetailsDataType, type BonusStatusFinalizedData, type BonusStatusPromotionData, ChooseSeverityEnum, type CommonMessageType, type CreatePlayerDataType, type CreatePlayerPhoneDataType, type CreatePlayerPhoneResponseType, type CreatePlayerType, type CurrencyType, type DepositApprovedDetailsData, type DepositHybridDetailsData, DepositManualButtonKey, type DepositManualDetailsData, DepositStatusKey, type DocumentIpBlockType, type FaqItemType, type FaqType, type Game, type GameAttributeType, type GameCategoryType, GameDetailBadgeColorEnum, type GameDetailBadgeType, type GameDetailType, type GameOpeningURL, type GameProviderType, type GameSearchType, type GameType, type GameTypes, type GamesJackpotsPragmaticType, type LobbyType, type MenuItemType, MenuStatusType, type MenuType, type NotificationType, type PaginatorContentType, type PaginatorType, type PaymentConfirmDataType, type PaymentConfirmType, type PaymentCreateDataType, type PaymentCreateType, type PaymentDetailsType, type PaymentMethodsDataType, type PaymentMethodsType, type PlayerAccessFlowControllerBlockedData, type PlayerAccessFlowControllerDataType, type PlayerBalanceType, type PlayerBankAccountIsBlockedType, type PlayerBankAccountsType, type PlayerBetsReport, type PlayerBetsReportDataType, type PlayerBiometryVerifyStatusType, type PlayerBonusActivateDataType, type PlayerBonusActivateType, type PlayerBonusAvailableCountDataType, type PlayerBonusAvailableCountDataType as PlayerBonusAvailableCountType, type PlayerBonusAvailablesDataType, type PlayerBonusAvailablesType, type PlayerBonusCheckStatusType, type PlayerBonusPromotionActivateDataType, type PlayerBonusProvidersDataType, type PlayerBonusProvidersType, type PlayerBonusReportsDataType, type PlayerBonusReportsType, type PlayerBonusStatusDataType, type PlayerBonusStatusType, type PlayerBonusTermsConditionsType, type PlayerBonusTransactionsReport, type PlayerBonusTransactionsReportDataType, type PlayerBonusVerifySportsbook, type PlayerConfirmIdentifyBiometryDataType, type PlayerConfirmIdentifyBiometryType, type PlayerCountryType, type PlayerCreateIdentifyBiometryDataType, type PlayerCreateIdentifyBiometryType, type PlayerCreateOnboardingDataType, type PlayerCreateOnboardingType, type PlayerCreateOrUpdateSelfLimitationByBetDataType, type PlayerCreateOrUpdateSelfLimitationByBetType, type PlayerCreateOrUpdateSelfLimitationByDepositDataType, type PlayerCreateOrUpdateSelfLimitationByDepositType, type PlayerCreateOrUpdateSelfLimitationBySessionDataType, type PlayerCreateOrUpdateSelfLimitationBySessionType, type PlayerCreateSelfExclusionAccountClosureDataType, type PlayerCreateSelfExclusionAccountClosureType, type PlayerCreateSelfExclusionByCategoryDataType, type PlayerCreateSelfExclusionByCategoryType, type PlayerCreateSelfExclusionByProviderDataType, type PlayerCreateSelfExclusionByProviderType, type PlayerCreateSelfExclusionRevocationRequestDataType, type PlayerCreateSelfExclusionRevocationRequestType, type PlayerCreateSelfExclusionTotalDataType, type PlayerDetailsEditDataType, type PlayerDetailsEditType, type PlayerDetailsModeBonusActive, type PlayerDocumentVerifyStatusType, type PlayerEditDataType, type PlayerEditType, type PlayerNotifications, type PlayerNotifyDeleteDataType, type PlayerNotifyDeleteType, type PlayerNotifyMarkAsReadDataType, type PlayerNotifyMarkAsReadType, type PlayerNotifyRestoreDataType, type PlayerOnboardingDataType, type PlayerOnboardingType, type PlayerPepConfirmQuestions, type PlayerPepConfirmQuestionsType, type PlayerPepVerificationQuestions, type PlayerPepVerificationStatus, type PlayerPreRegistrationRequestDataType, type PlayerPreRegistrationResponseType, type PlayerRequestWithdrawalDataType, type PlayerRequestWithdrawalLimitType, type PlayerRequestWithdrawalPendingTrackingDataType, type PlayerRequestWithdrawalPendingTrackingType, PlayerRequestWithdrawalStatusEnum, type PlayerRequestWithdrawalStatusType, type PlayerRequestWithdrawalType, type PlayerSelfExclusionReport, type PlayerSelfExclusionStatusType, type PlayerSelfLimitationBetReport, type PlayerSelfLimitationCancelReqType, type PlayerSelfLimitationCancelType, type PlayerSelfLimitationCreateOrUpdateDataType, type PlayerSelfLimitationDepositReport, type PlayerSelfLimitationInfoDataType, type PlayerSelfLimitationInfoType, type PlayerSelfLimitationSessionReport, type PlayerSendPasswordRecoverDataType, type PlayerSendPasswordRecoverType, type PlayerSendVerifySmsDataType, type PlayerSendVerifySmsType, type PlayerSessionCreateDataType, PlayerSessionDeviceEnum, type PlayerSessionLatestReport, type PlayerSessionRefreshType, PlayerSessionStatusEnum, type PlayerSessionType, type PlayerSessionsReport, type PlayerSetPasswordDataType, type PlayerSetPasswordType, type PlayerSportsbookMatch, type PlayerSportsbookTransactionsDetails, type PlayerSportsbookTransactionsDetailsReport, PlayerSportsbookTransactionsDetailsStatus, PlayerSportsbookTransactionsDetailsType, type PlayerSportsbookTransactionsReport, PlayerTransactionFlagEnum, PlayerTransactionStatusEnum, PlayerTransactionTypeEnum, PlayerTransactionTypeFilterEnum, type PlayerTransactionsResponseType, type PlayerTransactionsType, type PlayerTwoFactorAuthenticationMethodsType, type PlayerTwoFactorAuthenticationSendCodeDataType, type PlayerTwoFactorAuthenticationVerifiesCodeDataType, type PlayerSessionType as PlayerTwoFactorAuthenticationVerifiesCodeType, type PlayerTwoFactorCodeDataType, type PlayerType, type PlayerUnreadNotificationsType, type PlayerUpdateOrCreatePhoneType, type PlayerUpdatePasswordDataType, type PlayerUpdatePasswordType, type PlayerVerifyValidateDocumentStatusType, PromotionTypeEnum, type ProviderType, type QueryType, SdkSAPI, type SdkSapiContext, type SearchGamesEventOptixType, SelfExclusionCardCurrentStatusEnum, type SelfExclusionType, SelfLimitationAlertKey, SelfLimitationCancelEnum, SelfLimitationEnum, SelfLimitationInfoResumeTypeEnum, SelfLimitationProgressBarStateEnum, SelfLimitationRuleEnum, type SelfLimitationRuleStatusInfoType, type SelfLimitationRuleType, SelfLimitationStateEnum, type SelfLimitationTypeRuleType, type SelfLimitationTypesType, type SendCasinoClaimFormDataType, type SendCasinoClaimFormType, type SendContactFormDataType, type SendContactFormType, type SendEmailConfirmationType, type SendSportClaimFormDataType, type SendSportClaimFormType, type SessionReportType, type SessionStatusType, type SessionType, type SkinContentItemType, type SkinCountryType, type SkinInformationType, type SkinLobbyByCodeType, type SkinLobbyOptixType, type SkinProvidersListType, type SkinType, type SliderTournamentType, type SportFirstProviderType, type SupportDepositFormDataType, TWO_FACTOR_AUTHENTICATION_BLOCKED_ENUM, TWO_FACTOR_AUTHENTICATION_METHODS_ENUM, TournamentCurrentStatus, type TournamentDetailsType, TransactionDetailsKey, type TransactionStatusType, type TransactionTypeType, TransactionWithdrawalStatus, type TransactionsDepositDetailsType, type TransactionsDetailsType, type TransactionsReportType, type TransactionsSportsbookReportType, type TransactionsTypesDownloadType, type TransactionsTypesListType, type TransactionsTypesType, type TransactionsWithdrawalDetailsType, TypeSelfLimitationEnum, type ValidateAffiliateCodeType, type ValidateDocumentBySkinResponseType, type ValidateDocumentBySkinType, type ValidateMailType, type ValidatePasswordRecoveryCodeType, type ValidatePhoneType, type ValidateSerialDataType, type ValidateSerialResponseType, type ValidateSerialType, type ValidateUsernameType, type VerifyIdentityDocumentType, type VerifyIdentityPersonalDataType, type VerifyPlayerEmailType, type VerifyPlayerPhoneType, type WithdrawalCommonData, WithdrawalStatusEnum };
|
package/dist/index.js
CHANGED
|
@@ -266,6 +266,17 @@ var GameService = class extends RequestBase {
|
|
|
266
266
|
* @returns These returns values unknown.
|
|
267
267
|
*/
|
|
268
268
|
getGameById = async (gameId, options = {}) => this.getBase(`/${gameId}/skin/${this.context.skin}`, options);
|
|
269
|
+
/**
|
|
270
|
+
* Get game information by id.
|
|
271
|
+
*
|
|
272
|
+
* @param gameId Represents game ID.
|
|
273
|
+
* @param options Represent value options.
|
|
274
|
+
* @returns These returns values unknown.
|
|
275
|
+
*/
|
|
276
|
+
getGameDetailById = async (gameId, options = {}) => this.getBase(
|
|
277
|
+
`/${gameId}/skin/${this.context.skin}/detail`,
|
|
278
|
+
options
|
|
279
|
+
);
|
|
269
280
|
/**
|
|
270
281
|
* Get game opening URL.
|
|
271
282
|
*
|
|
@@ -633,6 +644,16 @@ var PlayerService = class extends RequestBase {
|
|
|
633
644
|
{},
|
|
634
645
|
true
|
|
635
646
|
);
|
|
647
|
+
/**
|
|
648
|
+
* Get player request withdrawal limit.
|
|
649
|
+
*
|
|
650
|
+
* @returns These returns values unknown.
|
|
651
|
+
*/
|
|
652
|
+
getPlayerRequestWithdrawalLimit = async () => this.getBase(
|
|
653
|
+
"/request-withdrawal/limit",
|
|
654
|
+
{},
|
|
655
|
+
true
|
|
656
|
+
);
|
|
636
657
|
/**
|
|
637
658
|
* Get player request withdrawal pending tracking.
|
|
638
659
|
*
|
|
@@ -1268,6 +1289,13 @@ var DepositStatusKey = /* @__PURE__ */ ((DepositStatusKey2) => {
|
|
|
1268
1289
|
return DepositStatusKey2;
|
|
1269
1290
|
})(DepositStatusKey || {});
|
|
1270
1291
|
|
|
1292
|
+
// types/player-request-withdrawal-status.interface.ts
|
|
1293
|
+
var PlayerRequestWithdrawalStatusEnum = /* @__PURE__ */ ((PlayerRequestWithdrawalStatusEnum2) => {
|
|
1294
|
+
PlayerRequestWithdrawalStatusEnum2["PLAYER_WITHDRAWAL_LIMIT_WARNING"] = "PLAYER_WITHDRAWAL_LIMIT_WARNING";
|
|
1295
|
+
PlayerRequestWithdrawalStatusEnum2["PLAYER_WITHDRAWAL_LIMIT_EXCEEDED"] = "PLAYER_WITHDRAWAL_LIMIT_EXCEEDED";
|
|
1296
|
+
return PlayerRequestWithdrawalStatusEnum2;
|
|
1297
|
+
})(PlayerRequestWithdrawalStatusEnum || {});
|
|
1298
|
+
|
|
1271
1299
|
// types/transactions-details.interface.ts
|
|
1272
1300
|
var TransactionDetailsKey = /* @__PURE__ */ ((TransactionDetailsKey2) => {
|
|
1273
1301
|
TransactionDetailsKey2["MANUAL_CHARGE"] = "MANUAL_CHARGE";
|
|
@@ -1495,6 +1523,15 @@ var WithdrawalStatusEnum = /* @__PURE__ */ ((WithdrawalStatusEnum2) => {
|
|
|
1495
1523
|
return WithdrawalStatusEnum2;
|
|
1496
1524
|
})(WithdrawalStatusEnum || {});
|
|
1497
1525
|
|
|
1526
|
+
// types/game-detail.interface.ts
|
|
1527
|
+
var GameDetailBadgeColorEnum = /* @__PURE__ */ ((GameDetailBadgeColorEnum2) => {
|
|
1528
|
+
GameDetailBadgeColorEnum2["GREEN"] = "GREEN";
|
|
1529
|
+
GameDetailBadgeColorEnum2["YELLOW"] = "YELLOW";
|
|
1530
|
+
GameDetailBadgeColorEnum2["FUCHSIA"] = "FUCHSIA";
|
|
1531
|
+
GameDetailBadgeColorEnum2["SKY"] = "SKY";
|
|
1532
|
+
return GameDetailBadgeColorEnum2;
|
|
1533
|
+
})(GameDetailBadgeColorEnum || {});
|
|
1534
|
+
|
|
1498
1535
|
// services/self-limitation.services.ts
|
|
1499
1536
|
var SelfLimitationService = class extends RequestBase {
|
|
1500
1537
|
constructor(context) {
|
|
@@ -2827,7 +2864,9 @@ exports.BonusStatusAvailableFlagEnum = BonusStatusAvailableFlagEnum;
|
|
|
2827
2864
|
exports.ChooseSeverityEnum = ChooseSeverityEnum;
|
|
2828
2865
|
exports.DepositManualButtonKey = DepositManualButtonKey;
|
|
2829
2866
|
exports.DepositStatusKey = DepositStatusKey;
|
|
2867
|
+
exports.GameDetailBadgeColorEnum = GameDetailBadgeColorEnum;
|
|
2830
2868
|
exports.MenuStatusType = MenuStatusType;
|
|
2869
|
+
exports.PlayerRequestWithdrawalStatusEnum = PlayerRequestWithdrawalStatusEnum;
|
|
2831
2870
|
exports.PlayerSessionDeviceEnum = PlayerSessionDeviceEnum;
|
|
2832
2871
|
exports.PlayerSessionStatusEnum = PlayerSessionStatusEnum;
|
|
2833
2872
|
exports.PlayerSportsbookTransactionsDetailsStatus = PlayerSportsbookTransactionsDetailsStatus;
|