sdk-sapi-promarketing 0.0.10 → 0.0.12
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 +55 -4
- package/dist/index.d.ts +55 -4
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1151,6 +1151,10 @@ interface PlayerBonusAvailablesDataType {
|
|
|
1151
1151
|
winAmount?: number;
|
|
1152
1152
|
/** Represents tooltip of bonus. */
|
|
1153
1153
|
tooltip?: string;
|
|
1154
|
+
/** Represents pending serial verification of bonus. */
|
|
1155
|
+
pending_serial_verification: boolean;
|
|
1156
|
+
/** Represents bonus charge. */
|
|
1157
|
+
isBonusCharge: boolean;
|
|
1154
1158
|
}
|
|
1155
1159
|
|
|
1156
1160
|
type PlayerBonusAvailablesType = PlayerBonusAvailablesDataType[];
|
|
@@ -1682,6 +1686,27 @@ interface BankAccountType {
|
|
|
1682
1686
|
alias: string;
|
|
1683
1687
|
/** Represents the bank's information. */
|
|
1684
1688
|
bank: BankType;
|
|
1689
|
+
/** Represents the blocked bank account information. */
|
|
1690
|
+
player_blocked_bank_account?: {
|
|
1691
|
+
/** Represents the blocked bank account id. */
|
|
1692
|
+
id: number;
|
|
1693
|
+
/** Represents the player bank account id. */
|
|
1694
|
+
player_bank_account_id: number;
|
|
1695
|
+
/** Represents the date. */
|
|
1696
|
+
date: string;
|
|
1697
|
+
/** Represents the expired at date. */
|
|
1698
|
+
expired_at: string;
|
|
1699
|
+
/** Represents the created at date. */
|
|
1700
|
+
created_at: string | null;
|
|
1701
|
+
/** Represents the updated at date. */
|
|
1702
|
+
updated_at: string | null;
|
|
1703
|
+
/** Represents the deleted at date. */
|
|
1704
|
+
deleted_at: string | null;
|
|
1705
|
+
};
|
|
1706
|
+
/** Represents if the bank account is blocked. */
|
|
1707
|
+
blocked: boolean;
|
|
1708
|
+
/** Represents the blocked text. */
|
|
1709
|
+
blocked_text?: string;
|
|
1685
1710
|
}
|
|
1686
1711
|
|
|
1687
1712
|
interface PlayerBankAccountIsBlockedType {
|
|
@@ -2841,13 +2866,16 @@ interface PlayerSportsbookTransactionsDetailsReport {
|
|
|
2841
2866
|
}
|
|
2842
2867
|
|
|
2843
2868
|
declare enum BonusStatusAvailableEnum {
|
|
2869
|
+
UNLOCK = "UNLOCK",
|
|
2844
2870
|
SHOW_BONUS = "SHOW_BONUS",
|
|
2845
2871
|
SHOW_PLAYS = "SHOW_PLAYS"
|
|
2846
2872
|
}
|
|
2847
2873
|
declare enum BonusStatusAvailableFlagEnum {
|
|
2848
2874
|
ACTIVE = "ACTIVE",
|
|
2849
2875
|
AVAILABLE = "AVAILABLE",
|
|
2850
|
-
TO_RELEASE = "TO_RELEASE"
|
|
2876
|
+
TO_RELEASE = "TO_RELEASE",
|
|
2877
|
+
PENDING_SELECTION = "PENDING_SELECTION",
|
|
2878
|
+
PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION"
|
|
2851
2879
|
}
|
|
2852
2880
|
interface BonusStatusAvailableData {
|
|
2853
2881
|
/** Bonus id. */
|
|
@@ -2946,12 +2974,16 @@ interface BonusStatusFinalizedData {
|
|
|
2946
2974
|
declare enum BonusParticipationButtonNum {
|
|
2947
2975
|
DEPOSIT = "DEPOSIT",
|
|
2948
2976
|
PROGRESS = "PROGRESS",
|
|
2949
|
-
REQUIREMENTS = "REQUIREMENTS"
|
|
2977
|
+
REQUIREMENTS = "REQUIREMENTS",
|
|
2978
|
+
PENDING_SELECTION = "PENDING_SELECTION"
|
|
2950
2979
|
}
|
|
2951
2980
|
declare enum BonusParticipationStatusEnum {
|
|
2952
2981
|
NOT_COMPLY = "NOT_COMPLY",
|
|
2953
2982
|
PARTICIPATING = "PARTICIPATING",
|
|
2954
|
-
PENDING_DEPOSIT = "PENDING_DEPOSIT"
|
|
2983
|
+
PENDING_DEPOSIT = "PENDING_DEPOSIT",
|
|
2984
|
+
PENDING_SELECTION = "PENDING_SELECTION",
|
|
2985
|
+
PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION",
|
|
2986
|
+
PENDING_SELECTION_AND_VALIDATION = "PENDING_SELECTION_AND_VALIDATION"
|
|
2955
2987
|
}
|
|
2956
2988
|
declare enum BonusPromotionCodeEnum {
|
|
2957
2989
|
NWB = "NWB",
|
|
@@ -3070,6 +3102,11 @@ interface PlayerVerifyValidateDocumentStatusType extends CommonMessageType {
|
|
|
3070
3102
|
is_document_serial_verified: boolean;
|
|
3071
3103
|
}
|
|
3072
3104
|
|
|
3105
|
+
interface PlayerDocumentVerifyStatusType extends CommonMessageType {
|
|
3106
|
+
/** Represent required verification status.*/
|
|
3107
|
+
require_verification: boolean;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3073
3110
|
/**
|
|
3074
3111
|
*
|
|
3075
3112
|
*/
|
|
@@ -3912,6 +3949,20 @@ declare class IdentityBiometryService extends RequestBase {
|
|
|
3912
3949
|
* @returns The provider url to verify biometric identity.
|
|
3913
3950
|
*/
|
|
3914
3951
|
postConfirmIdentityBiometry: (data: PlayerConfirmIdentifyBiometryDataType) => Promise<PlayerConfirmIdentifyBiometryType>;
|
|
3952
|
+
/**
|
|
3953
|
+
* Get Verify Document For Deposit.
|
|
3954
|
+
*
|
|
3955
|
+
* @param amount Amount.
|
|
3956
|
+
* @returns The provider url to verify biometric identity.
|
|
3957
|
+
*/
|
|
3958
|
+
getVerifyDocumentForDeposit: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
|
|
3959
|
+
/**
|
|
3960
|
+
* Get Verify Document For Withdrawal.
|
|
3961
|
+
*
|
|
3962
|
+
* @param amount Amount.
|
|
3963
|
+
* @returns The provider url to verify biometric identity.
|
|
3964
|
+
*/
|
|
3965
|
+
getVerifyDocumentForWithdrawal: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
|
|
3915
3966
|
}
|
|
3916
3967
|
|
|
3917
3968
|
/**
|
|
@@ -4480,4 +4531,4 @@ declare class SdkSAPI extends SdkSAPI_base {
|
|
|
4480
4531
|
constructor(context: SdkSapiContext);
|
|
4481
4532
|
}
|
|
4482
4533
|
|
|
4483
|
-
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 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 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 };
|
|
4534
|
+
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 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1151,6 +1151,10 @@ interface PlayerBonusAvailablesDataType {
|
|
|
1151
1151
|
winAmount?: number;
|
|
1152
1152
|
/** Represents tooltip of bonus. */
|
|
1153
1153
|
tooltip?: string;
|
|
1154
|
+
/** Represents pending serial verification of bonus. */
|
|
1155
|
+
pending_serial_verification: boolean;
|
|
1156
|
+
/** Represents bonus charge. */
|
|
1157
|
+
isBonusCharge: boolean;
|
|
1154
1158
|
}
|
|
1155
1159
|
|
|
1156
1160
|
type PlayerBonusAvailablesType = PlayerBonusAvailablesDataType[];
|
|
@@ -1682,6 +1686,27 @@ interface BankAccountType {
|
|
|
1682
1686
|
alias: string;
|
|
1683
1687
|
/** Represents the bank's information. */
|
|
1684
1688
|
bank: BankType;
|
|
1689
|
+
/** Represents the blocked bank account information. */
|
|
1690
|
+
player_blocked_bank_account?: {
|
|
1691
|
+
/** Represents the blocked bank account id. */
|
|
1692
|
+
id: number;
|
|
1693
|
+
/** Represents the player bank account id. */
|
|
1694
|
+
player_bank_account_id: number;
|
|
1695
|
+
/** Represents the date. */
|
|
1696
|
+
date: string;
|
|
1697
|
+
/** Represents the expired at date. */
|
|
1698
|
+
expired_at: string;
|
|
1699
|
+
/** Represents the created at date. */
|
|
1700
|
+
created_at: string | null;
|
|
1701
|
+
/** Represents the updated at date. */
|
|
1702
|
+
updated_at: string | null;
|
|
1703
|
+
/** Represents the deleted at date. */
|
|
1704
|
+
deleted_at: string | null;
|
|
1705
|
+
};
|
|
1706
|
+
/** Represents if the bank account is blocked. */
|
|
1707
|
+
blocked: boolean;
|
|
1708
|
+
/** Represents the blocked text. */
|
|
1709
|
+
blocked_text?: string;
|
|
1685
1710
|
}
|
|
1686
1711
|
|
|
1687
1712
|
interface PlayerBankAccountIsBlockedType {
|
|
@@ -2841,13 +2866,16 @@ interface PlayerSportsbookTransactionsDetailsReport {
|
|
|
2841
2866
|
}
|
|
2842
2867
|
|
|
2843
2868
|
declare enum BonusStatusAvailableEnum {
|
|
2869
|
+
UNLOCK = "UNLOCK",
|
|
2844
2870
|
SHOW_BONUS = "SHOW_BONUS",
|
|
2845
2871
|
SHOW_PLAYS = "SHOW_PLAYS"
|
|
2846
2872
|
}
|
|
2847
2873
|
declare enum BonusStatusAvailableFlagEnum {
|
|
2848
2874
|
ACTIVE = "ACTIVE",
|
|
2849
2875
|
AVAILABLE = "AVAILABLE",
|
|
2850
|
-
TO_RELEASE = "TO_RELEASE"
|
|
2876
|
+
TO_RELEASE = "TO_RELEASE",
|
|
2877
|
+
PENDING_SELECTION = "PENDING_SELECTION",
|
|
2878
|
+
PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION"
|
|
2851
2879
|
}
|
|
2852
2880
|
interface BonusStatusAvailableData {
|
|
2853
2881
|
/** Bonus id. */
|
|
@@ -2946,12 +2974,16 @@ interface BonusStatusFinalizedData {
|
|
|
2946
2974
|
declare enum BonusParticipationButtonNum {
|
|
2947
2975
|
DEPOSIT = "DEPOSIT",
|
|
2948
2976
|
PROGRESS = "PROGRESS",
|
|
2949
|
-
REQUIREMENTS = "REQUIREMENTS"
|
|
2977
|
+
REQUIREMENTS = "REQUIREMENTS",
|
|
2978
|
+
PENDING_SELECTION = "PENDING_SELECTION"
|
|
2950
2979
|
}
|
|
2951
2980
|
declare enum BonusParticipationStatusEnum {
|
|
2952
2981
|
NOT_COMPLY = "NOT_COMPLY",
|
|
2953
2982
|
PARTICIPATING = "PARTICIPATING",
|
|
2954
|
-
PENDING_DEPOSIT = "PENDING_DEPOSIT"
|
|
2983
|
+
PENDING_DEPOSIT = "PENDING_DEPOSIT",
|
|
2984
|
+
PENDING_SELECTION = "PENDING_SELECTION",
|
|
2985
|
+
PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION",
|
|
2986
|
+
PENDING_SELECTION_AND_VALIDATION = "PENDING_SELECTION_AND_VALIDATION"
|
|
2955
2987
|
}
|
|
2956
2988
|
declare enum BonusPromotionCodeEnum {
|
|
2957
2989
|
NWB = "NWB",
|
|
@@ -3070,6 +3102,11 @@ interface PlayerVerifyValidateDocumentStatusType extends CommonMessageType {
|
|
|
3070
3102
|
is_document_serial_verified: boolean;
|
|
3071
3103
|
}
|
|
3072
3104
|
|
|
3105
|
+
interface PlayerDocumentVerifyStatusType extends CommonMessageType {
|
|
3106
|
+
/** Represent required verification status.*/
|
|
3107
|
+
require_verification: boolean;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3073
3110
|
/**
|
|
3074
3111
|
*
|
|
3075
3112
|
*/
|
|
@@ -3912,6 +3949,20 @@ declare class IdentityBiometryService extends RequestBase {
|
|
|
3912
3949
|
* @returns The provider url to verify biometric identity.
|
|
3913
3950
|
*/
|
|
3914
3951
|
postConfirmIdentityBiometry: (data: PlayerConfirmIdentifyBiometryDataType) => Promise<PlayerConfirmIdentifyBiometryType>;
|
|
3952
|
+
/**
|
|
3953
|
+
* Get Verify Document For Deposit.
|
|
3954
|
+
*
|
|
3955
|
+
* @param amount Amount.
|
|
3956
|
+
* @returns The provider url to verify biometric identity.
|
|
3957
|
+
*/
|
|
3958
|
+
getVerifyDocumentForDeposit: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
|
|
3959
|
+
/**
|
|
3960
|
+
* Get Verify Document For Withdrawal.
|
|
3961
|
+
*
|
|
3962
|
+
* @param amount Amount.
|
|
3963
|
+
* @returns The provider url to verify biometric identity.
|
|
3964
|
+
*/
|
|
3965
|
+
getVerifyDocumentForWithdrawal: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
|
|
3915
3966
|
}
|
|
3916
3967
|
|
|
3917
3968
|
/**
|
|
@@ -4480,4 +4531,4 @@ declare class SdkSAPI extends SdkSAPI_base {
|
|
|
4480
4531
|
constructor(context: SdkSapiContext);
|
|
4481
4532
|
}
|
|
4482
4533
|
|
|
4483
|
-
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 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 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 };
|
|
4534
|
+
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 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 };
|
package/dist/index.js
CHANGED
|
@@ -1420,6 +1420,7 @@ var PlayerSportsbookTransactionsDetailsType = /* @__PURE__ */ ((PlayerSportsbook
|
|
|
1420
1420
|
|
|
1421
1421
|
// types/bonus-status-available-data.interface.ts
|
|
1422
1422
|
var BonusStatusAvailableEnum = /* @__PURE__ */ ((BonusStatusAvailableEnum2) => {
|
|
1423
|
+
BonusStatusAvailableEnum2["UNLOCK"] = "UNLOCK";
|
|
1423
1424
|
BonusStatusAvailableEnum2["SHOW_BONUS"] = "SHOW_BONUS";
|
|
1424
1425
|
BonusStatusAvailableEnum2["SHOW_PLAYS"] = "SHOW_PLAYS";
|
|
1425
1426
|
return BonusStatusAvailableEnum2;
|
|
@@ -1428,6 +1429,8 @@ var BonusStatusAvailableFlagEnum = /* @__PURE__ */ ((BonusStatusAvailableFlagEnu
|
|
|
1428
1429
|
BonusStatusAvailableFlagEnum2["ACTIVE"] = "ACTIVE";
|
|
1429
1430
|
BonusStatusAvailableFlagEnum2["AVAILABLE"] = "AVAILABLE";
|
|
1430
1431
|
BonusStatusAvailableFlagEnum2["TO_RELEASE"] = "TO_RELEASE";
|
|
1432
|
+
BonusStatusAvailableFlagEnum2["PENDING_SELECTION"] = "PENDING_SELECTION";
|
|
1433
|
+
BonusStatusAvailableFlagEnum2["PENDING_SERIAL_VALIDATION"] = "PENDING_SERIAL_VALIDATION";
|
|
1431
1434
|
return BonusStatusAvailableFlagEnum2;
|
|
1432
1435
|
})(BonusStatusAvailableFlagEnum || {});
|
|
1433
1436
|
|
|
@@ -1456,12 +1459,16 @@ var BonusParticipationButtonNum = /* @__PURE__ */ ((BonusParticipationButtonNum2
|
|
|
1456
1459
|
BonusParticipationButtonNum2["DEPOSIT"] = "DEPOSIT";
|
|
1457
1460
|
BonusParticipationButtonNum2["PROGRESS"] = "PROGRESS";
|
|
1458
1461
|
BonusParticipationButtonNum2["REQUIREMENTS"] = "REQUIREMENTS";
|
|
1462
|
+
BonusParticipationButtonNum2["PENDING_SELECTION"] = "PENDING_SELECTION";
|
|
1459
1463
|
return BonusParticipationButtonNum2;
|
|
1460
1464
|
})(BonusParticipationButtonNum || {});
|
|
1461
1465
|
var BonusParticipationStatusEnum = /* @__PURE__ */ ((BonusParticipationStatusEnum2) => {
|
|
1462
1466
|
BonusParticipationStatusEnum2["NOT_COMPLY"] = "NOT_COMPLY";
|
|
1463
1467
|
BonusParticipationStatusEnum2["PARTICIPATING"] = "PARTICIPATING";
|
|
1464
1468
|
BonusParticipationStatusEnum2["PENDING_DEPOSIT"] = "PENDING_DEPOSIT";
|
|
1469
|
+
BonusParticipationStatusEnum2["PENDING_SELECTION"] = "PENDING_SELECTION";
|
|
1470
|
+
BonusParticipationStatusEnum2["PENDING_SERIAL_VALIDATION"] = "PENDING_SERIAL_VALIDATION";
|
|
1471
|
+
BonusParticipationStatusEnum2["PENDING_SELECTION_AND_VALIDATION"] = "PENDING_SELECTION_AND_VALIDATION";
|
|
1465
1472
|
return BonusParticipationStatusEnum2;
|
|
1466
1473
|
})(BonusParticipationStatusEnum || {});
|
|
1467
1474
|
var BonusPromotionCodeEnum = /* @__PURE__ */ ((BonusPromotionCodeEnum2) => {
|
|
@@ -1899,6 +1906,28 @@ var IdentityBiometryService = class extends RequestBase {
|
|
|
1899
1906
|
},
|
|
1900
1907
|
true
|
|
1901
1908
|
);
|
|
1909
|
+
/**
|
|
1910
|
+
* Get Verify Document For Deposit.
|
|
1911
|
+
*
|
|
1912
|
+
* @param amount Amount.
|
|
1913
|
+
* @returns The provider url to verify biometric identity.
|
|
1914
|
+
*/
|
|
1915
|
+
getVerifyDocumentForDeposit = async (amount) => this.getBase(
|
|
1916
|
+
`/verify/serial/recharge/amount/${amount}`,
|
|
1917
|
+
{},
|
|
1918
|
+
true
|
|
1919
|
+
);
|
|
1920
|
+
/**
|
|
1921
|
+
* Get Verify Document For Withdrawal.
|
|
1922
|
+
*
|
|
1923
|
+
* @param amount Amount.
|
|
1924
|
+
* @returns The provider url to verify biometric identity.
|
|
1925
|
+
*/
|
|
1926
|
+
getVerifyDocumentForWithdrawal = async (amount) => this.getBase(
|
|
1927
|
+
`/verify/serial/withdrawal/amount/${amount}`,
|
|
1928
|
+
{},
|
|
1929
|
+
true
|
|
1930
|
+
);
|
|
1902
1931
|
};
|
|
1903
1932
|
|
|
1904
1933
|
// services/pep-verification.service.ts
|