sdk-sapi-promarketing 0.0.9 → 0.0.11

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 CHANGED
@@ -1151,6 +1151,8 @@ 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;
1154
1156
  }
1155
1157
 
1156
1158
  type PlayerBonusAvailablesType = PlayerBonusAvailablesDataType[];
@@ -1682,6 +1684,27 @@ interface BankAccountType {
1682
1684
  alias: string;
1683
1685
  /** Represents the bank's information. */
1684
1686
  bank: BankType;
1687
+ /** Represents the blocked bank account information. */
1688
+ player_blocked_bank_account?: {
1689
+ /** Represents the blocked bank account id. */
1690
+ id: number;
1691
+ /** Represents the player bank account id. */
1692
+ player_bank_account_id: number;
1693
+ /** Represents the date. */
1694
+ date: string;
1695
+ /** Represents the expired at date. */
1696
+ expired_at: string;
1697
+ /** Represents the created at date. */
1698
+ created_at: string | null;
1699
+ /** Represents the updated at date. */
1700
+ updated_at: string | null;
1701
+ /** Represents the deleted at date. */
1702
+ deleted_at: string | null;
1703
+ };
1704
+ /** Represents if the bank account is blocked. */
1705
+ blocked: boolean;
1706
+ /** Represents the blocked text. */
1707
+ blocked_text?: string;
1685
1708
  }
1686
1709
 
1687
1710
  interface PlayerBankAccountIsBlockedType {
@@ -2841,13 +2864,16 @@ interface PlayerSportsbookTransactionsDetailsReport {
2841
2864
  }
2842
2865
 
2843
2866
  declare enum BonusStatusAvailableEnum {
2867
+ UNLOCK = "UNLOCK",
2844
2868
  SHOW_BONUS = "SHOW_BONUS",
2845
2869
  SHOW_PLAYS = "SHOW_PLAYS"
2846
2870
  }
2847
2871
  declare enum BonusStatusAvailableFlagEnum {
2848
2872
  ACTIVE = "ACTIVE",
2849
2873
  AVAILABLE = "AVAILABLE",
2850
- TO_RELEASE = "TO_RELEASE"
2874
+ TO_RELEASE = "TO_RELEASE",
2875
+ PENDING_SELECTION = "PENDING_SELECTION",
2876
+ PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION"
2851
2877
  }
2852
2878
  interface BonusStatusAvailableData {
2853
2879
  /** Bonus id. */
@@ -2946,12 +2972,16 @@ interface BonusStatusFinalizedData {
2946
2972
  declare enum BonusParticipationButtonNum {
2947
2973
  DEPOSIT = "DEPOSIT",
2948
2974
  PROGRESS = "PROGRESS",
2949
- REQUIREMENTS = "REQUIREMENTS"
2975
+ REQUIREMENTS = "REQUIREMENTS",
2976
+ PENDING_SELECTION = "PENDING_SELECTION"
2950
2977
  }
2951
2978
  declare enum BonusParticipationStatusEnum {
2952
2979
  NOT_COMPLY = "NOT_COMPLY",
2953
2980
  PARTICIPATING = "PARTICIPATING",
2954
- PENDING_DEPOSIT = "PENDING_DEPOSIT"
2981
+ PENDING_DEPOSIT = "PENDING_DEPOSIT",
2982
+ PENDING_SELECTION = "PENDING_SELECTION",
2983
+ PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION",
2984
+ PENDING_SELECTION_AND_VALIDATION = "PENDING_SELECTION_AND_VALIDATION"
2955
2985
  }
2956
2986
  declare enum BonusPromotionCodeEnum {
2957
2987
  NWB = "NWB",
@@ -3070,6 +3100,11 @@ interface PlayerVerifyValidateDocumentStatusType extends CommonMessageType {
3070
3100
  is_document_serial_verified: boolean;
3071
3101
  }
3072
3102
 
3103
+ interface PlayerDocumentVerifyStatusType extends CommonMessageType {
3104
+ /** Represent required verification status.*/
3105
+ require_verification: boolean;
3106
+ }
3107
+
3073
3108
  /**
3074
3109
  *
3075
3110
  */
@@ -3462,7 +3497,7 @@ declare class ValidateService extends RequestBase {
3462
3497
  * @param options Represent value options.
3463
3498
  * @returns These returns values unknown.
3464
3499
  */
3465
- getDocumentValidationBySkin: (document: string, playerPreregisterId: string) => "" | Promise<ValidateDocumentBySkinType>;
3500
+ getDocumentValidationBySkin: (document: string, playerPreregisterId: string) => Promise<ValidateDocumentBySkinType>;
3466
3501
  /**
3467
3502
  * Get document validation by skin.
3468
3503
  *
@@ -3829,7 +3864,7 @@ declare class PaymentService extends RequestBase {
3829
3864
  * @param options - Represent value options.
3830
3865
  * @returns These returns a list with payment methods.
3831
3866
  */
3832
- getPaymentDetails: (payment_id: string, options?: {}) => Promise<"" | PaymentDetailsType>;
3867
+ getPaymentDetails: (payment_id: string, options?: {}) => Promise<PaymentDetailsType>;
3833
3868
  }
3834
3869
 
3835
3870
  /**
@@ -3912,6 +3947,20 @@ declare class IdentityBiometryService extends RequestBase {
3912
3947
  * @returns The provider url to verify biometric identity.
3913
3948
  */
3914
3949
  postConfirmIdentityBiometry: (data: PlayerConfirmIdentifyBiometryDataType) => Promise<PlayerConfirmIdentifyBiometryType>;
3950
+ /**
3951
+ * Get Verify Document For Deposit.
3952
+ *
3953
+ * @param amount Amount.
3954
+ * @returns The provider url to verify biometric identity.
3955
+ */
3956
+ getVerifyDocumentForDeposit: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
3957
+ /**
3958
+ * Get Verify Document For Withdrawal.
3959
+ *
3960
+ * @param amount Amount.
3961
+ * @returns The provider url to verify biometric identity.
3962
+ */
3963
+ getVerifyDocumentForWithdrawal: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
3915
3964
  }
3916
3965
 
3917
3966
  /**
@@ -4480,4 +4529,4 @@ declare class SdkSAPI extends SdkSAPI_base {
4480
4529
  constructor(context: SdkSapiContext);
4481
4530
  }
4482
4531
 
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 };
4532
+ 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,8 @@ 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;
1154
1156
  }
1155
1157
 
1156
1158
  type PlayerBonusAvailablesType = PlayerBonusAvailablesDataType[];
@@ -1682,6 +1684,27 @@ interface BankAccountType {
1682
1684
  alias: string;
1683
1685
  /** Represents the bank's information. */
1684
1686
  bank: BankType;
1687
+ /** Represents the blocked bank account information. */
1688
+ player_blocked_bank_account?: {
1689
+ /** Represents the blocked bank account id. */
1690
+ id: number;
1691
+ /** Represents the player bank account id. */
1692
+ player_bank_account_id: number;
1693
+ /** Represents the date. */
1694
+ date: string;
1695
+ /** Represents the expired at date. */
1696
+ expired_at: string;
1697
+ /** Represents the created at date. */
1698
+ created_at: string | null;
1699
+ /** Represents the updated at date. */
1700
+ updated_at: string | null;
1701
+ /** Represents the deleted at date. */
1702
+ deleted_at: string | null;
1703
+ };
1704
+ /** Represents if the bank account is blocked. */
1705
+ blocked: boolean;
1706
+ /** Represents the blocked text. */
1707
+ blocked_text?: string;
1685
1708
  }
1686
1709
 
1687
1710
  interface PlayerBankAccountIsBlockedType {
@@ -2841,13 +2864,16 @@ interface PlayerSportsbookTransactionsDetailsReport {
2841
2864
  }
2842
2865
 
2843
2866
  declare enum BonusStatusAvailableEnum {
2867
+ UNLOCK = "UNLOCK",
2844
2868
  SHOW_BONUS = "SHOW_BONUS",
2845
2869
  SHOW_PLAYS = "SHOW_PLAYS"
2846
2870
  }
2847
2871
  declare enum BonusStatusAvailableFlagEnum {
2848
2872
  ACTIVE = "ACTIVE",
2849
2873
  AVAILABLE = "AVAILABLE",
2850
- TO_RELEASE = "TO_RELEASE"
2874
+ TO_RELEASE = "TO_RELEASE",
2875
+ PENDING_SELECTION = "PENDING_SELECTION",
2876
+ PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION"
2851
2877
  }
2852
2878
  interface BonusStatusAvailableData {
2853
2879
  /** Bonus id. */
@@ -2946,12 +2972,16 @@ interface BonusStatusFinalizedData {
2946
2972
  declare enum BonusParticipationButtonNum {
2947
2973
  DEPOSIT = "DEPOSIT",
2948
2974
  PROGRESS = "PROGRESS",
2949
- REQUIREMENTS = "REQUIREMENTS"
2975
+ REQUIREMENTS = "REQUIREMENTS",
2976
+ PENDING_SELECTION = "PENDING_SELECTION"
2950
2977
  }
2951
2978
  declare enum BonusParticipationStatusEnum {
2952
2979
  NOT_COMPLY = "NOT_COMPLY",
2953
2980
  PARTICIPATING = "PARTICIPATING",
2954
- PENDING_DEPOSIT = "PENDING_DEPOSIT"
2981
+ PENDING_DEPOSIT = "PENDING_DEPOSIT",
2982
+ PENDING_SELECTION = "PENDING_SELECTION",
2983
+ PENDING_SERIAL_VALIDATION = "PENDING_SERIAL_VALIDATION",
2984
+ PENDING_SELECTION_AND_VALIDATION = "PENDING_SELECTION_AND_VALIDATION"
2955
2985
  }
2956
2986
  declare enum BonusPromotionCodeEnum {
2957
2987
  NWB = "NWB",
@@ -3070,6 +3100,11 @@ interface PlayerVerifyValidateDocumentStatusType extends CommonMessageType {
3070
3100
  is_document_serial_verified: boolean;
3071
3101
  }
3072
3102
 
3103
+ interface PlayerDocumentVerifyStatusType extends CommonMessageType {
3104
+ /** Represent required verification status.*/
3105
+ require_verification: boolean;
3106
+ }
3107
+
3073
3108
  /**
3074
3109
  *
3075
3110
  */
@@ -3462,7 +3497,7 @@ declare class ValidateService extends RequestBase {
3462
3497
  * @param options Represent value options.
3463
3498
  * @returns These returns values unknown.
3464
3499
  */
3465
- getDocumentValidationBySkin: (document: string, playerPreregisterId: string) => "" | Promise<ValidateDocumentBySkinType>;
3500
+ getDocumentValidationBySkin: (document: string, playerPreregisterId: string) => Promise<ValidateDocumentBySkinType>;
3466
3501
  /**
3467
3502
  * Get document validation by skin.
3468
3503
  *
@@ -3829,7 +3864,7 @@ declare class PaymentService extends RequestBase {
3829
3864
  * @param options - Represent value options.
3830
3865
  * @returns These returns a list with payment methods.
3831
3866
  */
3832
- getPaymentDetails: (payment_id: string, options?: {}) => Promise<"" | PaymentDetailsType>;
3867
+ getPaymentDetails: (payment_id: string, options?: {}) => Promise<PaymentDetailsType>;
3833
3868
  }
3834
3869
 
3835
3870
  /**
@@ -3912,6 +3947,20 @@ declare class IdentityBiometryService extends RequestBase {
3912
3947
  * @returns The provider url to verify biometric identity.
3913
3948
  */
3914
3949
  postConfirmIdentityBiometry: (data: PlayerConfirmIdentifyBiometryDataType) => Promise<PlayerConfirmIdentifyBiometryType>;
3950
+ /**
3951
+ * Get Verify Document For Deposit.
3952
+ *
3953
+ * @param amount Amount.
3954
+ * @returns The provider url to verify biometric identity.
3955
+ */
3956
+ getVerifyDocumentForDeposit: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
3957
+ /**
3958
+ * Get Verify Document For Withdrawal.
3959
+ *
3960
+ * @param amount Amount.
3961
+ * @returns The provider url to verify biometric identity.
3962
+ */
3963
+ getVerifyDocumentForWithdrawal: (amount: number) => Promise<PlayerBiometryVerifyStatusType>;
3915
3964
  }
3916
3965
 
3917
3966
  /**
@@ -4480,4 +4529,4 @@ declare class SdkSAPI extends SdkSAPI_base {
4480
4529
  constructor(context: SdkSapiContext);
4481
4530
  }
4482
4531
 
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 };
4532
+ 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
@@ -839,7 +839,7 @@ var ValidateService = class extends RequestBase {
839
839
  * @param options Represent value options.
840
840
  * @returns These returns values unknown.
841
841
  */
842
- getDocumentValidationBySkin = (document, playerPreregisterId) => document && this.postBase(`/document`, {
842
+ getDocumentValidationBySkin = (document, playerPreregisterId) => this.postBase(`/document`, {
843
843
  headers: headersApplicationJson,
844
844
  body: JSON.stringify({
845
845
  document_rut: document,
@@ -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) => {
@@ -1764,7 +1771,7 @@ var PaymentService = class extends RequestBase {
1764
1771
  * @param options - Represent value options.
1765
1772
  * @returns These returns a list with payment methods.
1766
1773
  */
1767
- getPaymentDetails = async (payment_id, options = {}) => payment_id && this.getBase(
1774
+ getPaymentDetails = async (payment_id, options = {}) => this.getBase(
1768
1775
  `/details/payment-id/${payment_id}`,
1769
1776
  options,
1770
1777
  false
@@ -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