sdk-sapi-promarketing 0.0.17 → 0.0.19
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 +12 -20
- package/dist/index.d.ts +12 -20
- package/dist/index.js +23 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -30
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -360,7 +360,7 @@ interface SkinType {
|
|
|
360
360
|
bonus: string;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
|
-
interface PlayerUpdateOrCreatePhoneType extends
|
|
363
|
+
interface PlayerUpdateOrCreatePhoneType extends GenericResponseRequiredValidationType {
|
|
364
364
|
/** Phone number of the player. */
|
|
365
365
|
phone: string;
|
|
366
366
|
/** Player ID of the player. */
|
|
@@ -497,7 +497,7 @@ interface PlayerTwoFactorCodeDataType extends CommonMessageType {
|
|
|
497
497
|
activationDate: string;
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
-
declare enum
|
|
500
|
+
declare enum RulesRequiredValidationTypeEnum {
|
|
501
501
|
BLOCK_ACCOUNT = "BLOCK_ACCOUNT",
|
|
502
502
|
TEMPORAL_BLOCK = "TEMPORAL_BLOCK",
|
|
503
503
|
AGE_RESTRICTION = "AGE_RESTRICTION",
|
|
@@ -512,6 +512,7 @@ declare enum AccessFlowControllerTypeEnum {
|
|
|
512
512
|
DOCUMENT_HARD_BLOCK = "DOCUMENT_HARD_BLOCK",
|
|
513
513
|
DOCUMENT_SERIAL_BLOCK = "DOCUMENT_SERIAL_BLOCK",
|
|
514
514
|
DOCUMENT_SERIAL_WARNING = "DOCUMENT_SERIAL_WARNING",
|
|
515
|
+
REQUIRED_SERIAL_VALIDATION = "REQUIRED_SERIAL_VALIDATION",
|
|
515
516
|
/** The player SMS code. */
|
|
516
517
|
PLAYER_SMS_CODE_BLOCK = "PLAYER_SMS_CODE_BLOCK",
|
|
517
518
|
PLAYER_SMS_CODE_INVALID = "PLAYER_SMS_CODE_INVALID",
|
|
@@ -519,14 +520,7 @@ declare enum AccessFlowControllerTypeEnum {
|
|
|
519
520
|
PLAYER_SMS_CODE_HARD_BLOCK = "PLAYER_SMS_CODE_HARD_BLOCK",
|
|
520
521
|
PLAYER_SMS_CODE_HARD_WARNING = "PLAYER_SMS_CODE_HARD_WARNING"
|
|
521
522
|
}
|
|
522
|
-
|
|
523
|
-
LOGIN = "LOGIN",
|
|
524
|
-
REGISTER = "REGISTER",
|
|
525
|
-
VALIDATE_DOCUMENT = "VALIDATE_DOCUMENT",
|
|
526
|
-
VALIDATE_DOCUMENT_BONUS = "VALIDATE_DOCUMENT_BONUS",
|
|
527
|
-
VALIDATE_DOCUMENT_DEPOSIT = "VALIDATE_DOCUMENT_DEPOSIT"
|
|
528
|
-
}
|
|
529
|
-
interface PlayerAccessFlowControllerBlockedData {
|
|
523
|
+
interface GenericResponseRequiredValidationData {
|
|
530
524
|
/** Indicates whether the resend limit has been reached. */
|
|
531
525
|
is_resend_limit_reached: boolean;
|
|
532
526
|
/** The number of attempts to send the SMS. */
|
|
@@ -554,19 +548,17 @@ interface PlayerAccessFlowControllerBlockedData {
|
|
|
554
548
|
/** The rut of the player. */
|
|
555
549
|
rut: string;
|
|
556
550
|
}
|
|
557
|
-
interface
|
|
551
|
+
interface GenericResponseRequiredValidationType {
|
|
558
552
|
/** Title of the blocked message. */
|
|
559
553
|
title: string;
|
|
560
554
|
/** Description of the blocked message. */
|
|
561
555
|
description: string;
|
|
562
556
|
/** Type of the blocked message. */
|
|
563
|
-
type:
|
|
557
|
+
type: RulesRequiredValidationTypeEnum;
|
|
564
558
|
/** The meta data of the blocked message. */
|
|
565
|
-
meta: Partial<
|
|
566
|
-
/** View type of the blocked message. */
|
|
567
|
-
readonly fromOrigin: AccessFlowControllerFromOriginEnum;
|
|
559
|
+
meta: Partial<GenericResponseRequiredValidationData>;
|
|
568
560
|
}
|
|
569
|
-
interface PlayerSessionType extends CommonMessageType, PlayerTwoFactorCodeDataType,
|
|
561
|
+
interface PlayerSessionType extends CommonMessageType, PlayerTwoFactorCodeDataType, GenericResponseRequiredValidationType {
|
|
570
562
|
/** The unique identifier of the player. */
|
|
571
563
|
player_id: number;
|
|
572
564
|
/** Indicates whether phone validation via SMS code is required. */
|
|
@@ -1074,7 +1066,7 @@ declare enum PromotionTypeEnum {
|
|
|
1074
1066
|
CASINO = "CASINO",
|
|
1075
1067
|
SPORTS = "SPORTS"
|
|
1076
1068
|
}
|
|
1077
|
-
interface PlayerBonusActivateType extends CommonMessageType,
|
|
1069
|
+
interface PlayerBonusActivateType extends CommonMessageType, GenericResponseRequiredValidationType {
|
|
1078
1070
|
/** Represents isSuccessful of bonus. */
|
|
1079
1071
|
data: PlayerBonusActivateDataType;
|
|
1080
1072
|
/** Represents isSuccessful of bonus. */
|
|
@@ -1102,7 +1094,7 @@ interface PlayerSendVerifySmsType {
|
|
|
1102
1094
|
/** Indicates whether the resend limit has been reached. */
|
|
1103
1095
|
is_resend_limit_reached: boolean;
|
|
1104
1096
|
/** The response type. */
|
|
1105
|
-
type?:
|
|
1097
|
+
type?: RulesRequiredValidationTypeEnum;
|
|
1106
1098
|
/** The response message. */
|
|
1107
1099
|
message: string;
|
|
1108
1100
|
/** The response error. */
|
|
@@ -3118,7 +3110,7 @@ interface PlayerRequestWithdrawalPendingTrackingDataType {
|
|
|
3118
3110
|
}
|
|
3119
3111
|
type PlayerRequestWithdrawalPendingTrackingType = CommonMessageType & PlayerRequestWithdrawalPendingTrackingDataType;
|
|
3120
3112
|
|
|
3121
|
-
type ValidateSerialType = CommonMessageType &
|
|
3113
|
+
type ValidateSerialType = CommonMessageType & GenericResponseRequiredValidationType & {
|
|
3122
3114
|
data: ValidateDocumentBySkinResponseType;
|
|
3123
3115
|
};
|
|
3124
3116
|
|
|
@@ -4615,4 +4607,4 @@ declare class SdkSAPI extends SdkSAPI_base {
|
|
|
4615
4607
|
constructor(context: SdkSapiContext);
|
|
4616
4608
|
}
|
|
4617
4609
|
|
|
4618
|
-
export {
|
|
4610
|
+
export { type BankAccountType, type BankAccountTypeType, type BankCreateBankAccountDataType, type BankCreateBankAccountType, type BankDeleteBankAccountDataType, type BankDeleteBankAccountType, type BankEditBankAccountDataType, type BankEditBankAccountType, type BankType, type BetRoundLinkType, type BetType, type BetTypeType, type BonusDetailsPanelRequirementType, BonusFinalizedStatusEnum, BonusFinalizedTypeFlagEnum, BonusParticipationButtonNum, BonusParticipationStatusEnum, BonusPromotionCodeEnum, type BonusPromotionReasonDataType, type BonusStatusAvailableData, BonusStatusAvailableEnum, BonusStatusAvailableFlagEnum, type BonusStatusDetailsDataType, type BonusStatusFinalizedData, type BonusStatusPromotionData, ChooseSeverityEnum, type CommonMessageType, type CreatePlayerDataType, type CreatePlayerPhoneDataType, type CreatePlayerPhoneResponseType, type CreatePlayerType, type CurrencyType, type DepositApprovedDetailsData, type DepositHybridDetailsData, DepositManualButtonKey, type DepositManualDetailsData, DepositStatusKey, type DocumentIpBlockType, type FaqItemType, type FaqType, type Game, type GameAttributeType, type GameCategoryType, GameDetailBadgeColorEnum, type GameDetailBadgeType, type GameDetailType, type GameOpeningURL, type GameProviderType, type GameSearchType, type GameType, type GameTypes, type GamesJackpotsPragmaticType, type GenericResponseRequiredValidationData, type GenericResponseRequiredValidationType, 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 PlayerBalanceType, type PlayerBankAccountIsBlockedType, type PlayerBankAccountsType, type PlayerBetsReport, type PlayerBetsReportDataType, type PlayerBiometryVerifyStatusType, type PlayerBonusActivateDataType, type PlayerBonusActivateType, type PlayerBonusAvailableCountDataType, type PlayerBonusAvailableCountDataType as PlayerBonusAvailableCountType, type PlayerBonusAvailablesDataType, type PlayerBonusAvailablesType, type PlayerBonusCheckStatusType, type PlayerBonusPromotionActivateDataType, type PlayerBonusProvidersDataType, type PlayerBonusProvidersType, type PlayerBonusReportsDataType, type PlayerBonusReportsType, type PlayerBonusStatusDataType, type PlayerBonusStatusType, type PlayerBonusTermsConditionsType, type PlayerBonusTransactionsReport, type PlayerBonusTransactionsReportDataType, type PlayerBonusVerifySportsbook, type PlayerConfirmIdentifyBiometryDataType, type PlayerConfirmIdentifyBiometryType, type PlayerCountryType, type PlayerCreateIdentifyBiometryDataType, type PlayerCreateIdentifyBiometryType, type PlayerCreateOnboardingDataType, type PlayerCreateOnboardingType, type PlayerCreateOrUpdateSelfLimitationByBetDataType, type PlayerCreateOrUpdateSelfLimitationByBetType, type PlayerCreateOrUpdateSelfLimitationByDepositDataType, type PlayerCreateOrUpdateSelfLimitationByDepositType, type PlayerCreateOrUpdateSelfLimitationBySessionDataType, type PlayerCreateOrUpdateSelfLimitationBySessionType, type PlayerCreateSelfExclusionAccountClosureDataType, type PlayerCreateSelfExclusionAccountClosureType, type PlayerCreateSelfExclusionByCategoryDataType, type PlayerCreateSelfExclusionByCategoryType, type PlayerCreateSelfExclusionByProviderDataType, type PlayerCreateSelfExclusionByProviderType, type PlayerCreateSelfExclusionRevocationRequestDataType, type PlayerCreateSelfExclusionRevocationRequestType, type PlayerCreateSelfExclusionTotalDataType, type PlayerDetailsEditDataType, type PlayerDetailsEditType, type PlayerDetailsModeBonusActive, type PlayerDocumentVerifyStatusType, type PlayerEditDataType, type PlayerEditType, type PlayerNotifications, type PlayerNotifyDeleteDataType, type PlayerNotifyDeleteType, type PlayerNotifyMarkAsReadDataType, type PlayerNotifyMarkAsReadType, type PlayerNotifyRestoreDataType, type PlayerOnboardingDataType, type PlayerOnboardingType, type PlayerPepConfirmQuestions, type PlayerPepConfirmQuestionsType, type PlayerPepVerificationQuestions, type PlayerPepVerificationStatus, type PlayerPreRegistrationRequestDataType, type PlayerPreRegistrationResponseType, type PlayerRequestWithdrawalDataType, type PlayerRequestWithdrawalLimitType, type PlayerRequestWithdrawalPendingTrackingDataType, type PlayerRequestWithdrawalPendingTrackingType, PlayerRequestWithdrawalStatusEnum, type PlayerRequestWithdrawalStatusType, type PlayerRequestWithdrawalType, type PlayerSelfExclusionReport, type PlayerSelfExclusionStatusType, type PlayerSelfLimitationBetReport, type PlayerSelfLimitationCancelReqType, type PlayerSelfLimitationCancelType, type PlayerSelfLimitationCreateOrUpdateDataType, type PlayerSelfLimitationDepositReport, type PlayerSelfLimitationInfoDataType, type PlayerSelfLimitationInfoType, type PlayerSelfLimitationSessionReport, type PlayerSendPasswordRecoverDataType, type PlayerSendPasswordRecoverType, type PlayerSendVerifySmsDataType, type PlayerSendVerifySmsType, type PlayerSessionCreateDataType, PlayerSessionDeviceEnum, type PlayerSessionLatestReport, type PlayerSessionRefreshType, PlayerSessionStatusEnum, type PlayerSessionType, type PlayerSessionsReport, type PlayerSetPasswordDataType, type PlayerSetPasswordType, type PlayerSportsbookMatch, type PlayerSportsbookTransactionsDetails, type PlayerSportsbookTransactionsDetailsReport, PlayerSportsbookTransactionsDetailsStatus, PlayerSportsbookTransactionsDetailsType, type PlayerSportsbookTransactionsReport, PlayerTransactionFlagEnum, PlayerTransactionStatusEnum, PlayerTransactionTypeEnum, PlayerTransactionTypeFilterEnum, type PlayerTransactionsResponseType, type PlayerTransactionsType, type PlayerTwoFactorAuthenticationMethodsType, type PlayerTwoFactorAuthenticationSendCodeDataType, type PlayerTwoFactorAuthenticationVerifiesCodeDataType, type PlayerSessionType as PlayerTwoFactorAuthenticationVerifiesCodeType, type PlayerTwoFactorCodeDataType, type PlayerType, type PlayerUnreadNotificationsType, type PlayerUpdateOrCreatePhoneType, type PlayerUpdatePasswordDataType, type PlayerUpdatePasswordType, type PlayerVerifyValidateDocumentStatusType, PromotionTypeEnum, type ProviderType, type QueryType, RulesRequiredValidationTypeEnum, 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
|
@@ -360,7 +360,7 @@ interface SkinType {
|
|
|
360
360
|
bonus: string;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
|
-
interface PlayerUpdateOrCreatePhoneType extends
|
|
363
|
+
interface PlayerUpdateOrCreatePhoneType extends GenericResponseRequiredValidationType {
|
|
364
364
|
/** Phone number of the player. */
|
|
365
365
|
phone: string;
|
|
366
366
|
/** Player ID of the player. */
|
|
@@ -497,7 +497,7 @@ interface PlayerTwoFactorCodeDataType extends CommonMessageType {
|
|
|
497
497
|
activationDate: string;
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
-
declare enum
|
|
500
|
+
declare enum RulesRequiredValidationTypeEnum {
|
|
501
501
|
BLOCK_ACCOUNT = "BLOCK_ACCOUNT",
|
|
502
502
|
TEMPORAL_BLOCK = "TEMPORAL_BLOCK",
|
|
503
503
|
AGE_RESTRICTION = "AGE_RESTRICTION",
|
|
@@ -512,6 +512,7 @@ declare enum AccessFlowControllerTypeEnum {
|
|
|
512
512
|
DOCUMENT_HARD_BLOCK = "DOCUMENT_HARD_BLOCK",
|
|
513
513
|
DOCUMENT_SERIAL_BLOCK = "DOCUMENT_SERIAL_BLOCK",
|
|
514
514
|
DOCUMENT_SERIAL_WARNING = "DOCUMENT_SERIAL_WARNING",
|
|
515
|
+
REQUIRED_SERIAL_VALIDATION = "REQUIRED_SERIAL_VALIDATION",
|
|
515
516
|
/** The player SMS code. */
|
|
516
517
|
PLAYER_SMS_CODE_BLOCK = "PLAYER_SMS_CODE_BLOCK",
|
|
517
518
|
PLAYER_SMS_CODE_INVALID = "PLAYER_SMS_CODE_INVALID",
|
|
@@ -519,14 +520,7 @@ declare enum AccessFlowControllerTypeEnum {
|
|
|
519
520
|
PLAYER_SMS_CODE_HARD_BLOCK = "PLAYER_SMS_CODE_HARD_BLOCK",
|
|
520
521
|
PLAYER_SMS_CODE_HARD_WARNING = "PLAYER_SMS_CODE_HARD_WARNING"
|
|
521
522
|
}
|
|
522
|
-
|
|
523
|
-
LOGIN = "LOGIN",
|
|
524
|
-
REGISTER = "REGISTER",
|
|
525
|
-
VALIDATE_DOCUMENT = "VALIDATE_DOCUMENT",
|
|
526
|
-
VALIDATE_DOCUMENT_BONUS = "VALIDATE_DOCUMENT_BONUS",
|
|
527
|
-
VALIDATE_DOCUMENT_DEPOSIT = "VALIDATE_DOCUMENT_DEPOSIT"
|
|
528
|
-
}
|
|
529
|
-
interface PlayerAccessFlowControllerBlockedData {
|
|
523
|
+
interface GenericResponseRequiredValidationData {
|
|
530
524
|
/** Indicates whether the resend limit has been reached. */
|
|
531
525
|
is_resend_limit_reached: boolean;
|
|
532
526
|
/** The number of attempts to send the SMS. */
|
|
@@ -554,19 +548,17 @@ interface PlayerAccessFlowControllerBlockedData {
|
|
|
554
548
|
/** The rut of the player. */
|
|
555
549
|
rut: string;
|
|
556
550
|
}
|
|
557
|
-
interface
|
|
551
|
+
interface GenericResponseRequiredValidationType {
|
|
558
552
|
/** Title of the blocked message. */
|
|
559
553
|
title: string;
|
|
560
554
|
/** Description of the blocked message. */
|
|
561
555
|
description: string;
|
|
562
556
|
/** Type of the blocked message. */
|
|
563
|
-
type:
|
|
557
|
+
type: RulesRequiredValidationTypeEnum;
|
|
564
558
|
/** The meta data of the blocked message. */
|
|
565
|
-
meta: Partial<
|
|
566
|
-
/** View type of the blocked message. */
|
|
567
|
-
readonly fromOrigin: AccessFlowControllerFromOriginEnum;
|
|
559
|
+
meta: Partial<GenericResponseRequiredValidationData>;
|
|
568
560
|
}
|
|
569
|
-
interface PlayerSessionType extends CommonMessageType, PlayerTwoFactorCodeDataType,
|
|
561
|
+
interface PlayerSessionType extends CommonMessageType, PlayerTwoFactorCodeDataType, GenericResponseRequiredValidationType {
|
|
570
562
|
/** The unique identifier of the player. */
|
|
571
563
|
player_id: number;
|
|
572
564
|
/** Indicates whether phone validation via SMS code is required. */
|
|
@@ -1074,7 +1066,7 @@ declare enum PromotionTypeEnum {
|
|
|
1074
1066
|
CASINO = "CASINO",
|
|
1075
1067
|
SPORTS = "SPORTS"
|
|
1076
1068
|
}
|
|
1077
|
-
interface PlayerBonusActivateType extends CommonMessageType,
|
|
1069
|
+
interface PlayerBonusActivateType extends CommonMessageType, GenericResponseRequiredValidationType {
|
|
1078
1070
|
/** Represents isSuccessful of bonus. */
|
|
1079
1071
|
data: PlayerBonusActivateDataType;
|
|
1080
1072
|
/** Represents isSuccessful of bonus. */
|
|
@@ -1102,7 +1094,7 @@ interface PlayerSendVerifySmsType {
|
|
|
1102
1094
|
/** Indicates whether the resend limit has been reached. */
|
|
1103
1095
|
is_resend_limit_reached: boolean;
|
|
1104
1096
|
/** The response type. */
|
|
1105
|
-
type?:
|
|
1097
|
+
type?: RulesRequiredValidationTypeEnum;
|
|
1106
1098
|
/** The response message. */
|
|
1107
1099
|
message: string;
|
|
1108
1100
|
/** The response error. */
|
|
@@ -3118,7 +3110,7 @@ interface PlayerRequestWithdrawalPendingTrackingDataType {
|
|
|
3118
3110
|
}
|
|
3119
3111
|
type PlayerRequestWithdrawalPendingTrackingType = CommonMessageType & PlayerRequestWithdrawalPendingTrackingDataType;
|
|
3120
3112
|
|
|
3121
|
-
type ValidateSerialType = CommonMessageType &
|
|
3113
|
+
type ValidateSerialType = CommonMessageType & GenericResponseRequiredValidationType & {
|
|
3122
3114
|
data: ValidateDocumentBySkinResponseType;
|
|
3123
3115
|
};
|
|
3124
3116
|
|
|
@@ -4615,4 +4607,4 @@ declare class SdkSAPI extends SdkSAPI_base {
|
|
|
4615
4607
|
constructor(context: SdkSapiContext);
|
|
4616
4608
|
}
|
|
4617
4609
|
|
|
4618
|
-
export {
|
|
4610
|
+
export { type BankAccountType, type BankAccountTypeType, type BankCreateBankAccountDataType, type BankCreateBankAccountType, type BankDeleteBankAccountDataType, type BankDeleteBankAccountType, type BankEditBankAccountDataType, type BankEditBankAccountType, type BankType, type BetRoundLinkType, type BetType, type BetTypeType, type BonusDetailsPanelRequirementType, BonusFinalizedStatusEnum, BonusFinalizedTypeFlagEnum, BonusParticipationButtonNum, BonusParticipationStatusEnum, BonusPromotionCodeEnum, type BonusPromotionReasonDataType, type BonusStatusAvailableData, BonusStatusAvailableEnum, BonusStatusAvailableFlagEnum, type BonusStatusDetailsDataType, type BonusStatusFinalizedData, type BonusStatusPromotionData, ChooseSeverityEnum, type CommonMessageType, type CreatePlayerDataType, type CreatePlayerPhoneDataType, type CreatePlayerPhoneResponseType, type CreatePlayerType, type CurrencyType, type DepositApprovedDetailsData, type DepositHybridDetailsData, DepositManualButtonKey, type DepositManualDetailsData, DepositStatusKey, type DocumentIpBlockType, type FaqItemType, type FaqType, type Game, type GameAttributeType, type GameCategoryType, GameDetailBadgeColorEnum, type GameDetailBadgeType, type GameDetailType, type GameOpeningURL, type GameProviderType, type GameSearchType, type GameType, type GameTypes, type GamesJackpotsPragmaticType, type GenericResponseRequiredValidationData, type GenericResponseRequiredValidationType, 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 PlayerBalanceType, type PlayerBankAccountIsBlockedType, type PlayerBankAccountsType, type PlayerBetsReport, type PlayerBetsReportDataType, type PlayerBiometryVerifyStatusType, type PlayerBonusActivateDataType, type PlayerBonusActivateType, type PlayerBonusAvailableCountDataType, type PlayerBonusAvailableCountDataType as PlayerBonusAvailableCountType, type PlayerBonusAvailablesDataType, type PlayerBonusAvailablesType, type PlayerBonusCheckStatusType, type PlayerBonusPromotionActivateDataType, type PlayerBonusProvidersDataType, type PlayerBonusProvidersType, type PlayerBonusReportsDataType, type PlayerBonusReportsType, type PlayerBonusStatusDataType, type PlayerBonusStatusType, type PlayerBonusTermsConditionsType, type PlayerBonusTransactionsReport, type PlayerBonusTransactionsReportDataType, type PlayerBonusVerifySportsbook, type PlayerConfirmIdentifyBiometryDataType, type PlayerConfirmIdentifyBiometryType, type PlayerCountryType, type PlayerCreateIdentifyBiometryDataType, type PlayerCreateIdentifyBiometryType, type PlayerCreateOnboardingDataType, type PlayerCreateOnboardingType, type PlayerCreateOrUpdateSelfLimitationByBetDataType, type PlayerCreateOrUpdateSelfLimitationByBetType, type PlayerCreateOrUpdateSelfLimitationByDepositDataType, type PlayerCreateOrUpdateSelfLimitationByDepositType, type PlayerCreateOrUpdateSelfLimitationBySessionDataType, type PlayerCreateOrUpdateSelfLimitationBySessionType, type PlayerCreateSelfExclusionAccountClosureDataType, type PlayerCreateSelfExclusionAccountClosureType, type PlayerCreateSelfExclusionByCategoryDataType, type PlayerCreateSelfExclusionByCategoryType, type PlayerCreateSelfExclusionByProviderDataType, type PlayerCreateSelfExclusionByProviderType, type PlayerCreateSelfExclusionRevocationRequestDataType, type PlayerCreateSelfExclusionRevocationRequestType, type PlayerCreateSelfExclusionTotalDataType, type PlayerDetailsEditDataType, type PlayerDetailsEditType, type PlayerDetailsModeBonusActive, type PlayerDocumentVerifyStatusType, type PlayerEditDataType, type PlayerEditType, type PlayerNotifications, type PlayerNotifyDeleteDataType, type PlayerNotifyDeleteType, type PlayerNotifyMarkAsReadDataType, type PlayerNotifyMarkAsReadType, type PlayerNotifyRestoreDataType, type PlayerOnboardingDataType, type PlayerOnboardingType, type PlayerPepConfirmQuestions, type PlayerPepConfirmQuestionsType, type PlayerPepVerificationQuestions, type PlayerPepVerificationStatus, type PlayerPreRegistrationRequestDataType, type PlayerPreRegistrationResponseType, type PlayerRequestWithdrawalDataType, type PlayerRequestWithdrawalLimitType, type PlayerRequestWithdrawalPendingTrackingDataType, type PlayerRequestWithdrawalPendingTrackingType, PlayerRequestWithdrawalStatusEnum, type PlayerRequestWithdrawalStatusType, type PlayerRequestWithdrawalType, type PlayerSelfExclusionReport, type PlayerSelfExclusionStatusType, type PlayerSelfLimitationBetReport, type PlayerSelfLimitationCancelReqType, type PlayerSelfLimitationCancelType, type PlayerSelfLimitationCreateOrUpdateDataType, type PlayerSelfLimitationDepositReport, type PlayerSelfLimitationInfoDataType, type PlayerSelfLimitationInfoType, type PlayerSelfLimitationSessionReport, type PlayerSendPasswordRecoverDataType, type PlayerSendPasswordRecoverType, type PlayerSendVerifySmsDataType, type PlayerSendVerifySmsType, type PlayerSessionCreateDataType, PlayerSessionDeviceEnum, type PlayerSessionLatestReport, type PlayerSessionRefreshType, PlayerSessionStatusEnum, type PlayerSessionType, type PlayerSessionsReport, type PlayerSetPasswordDataType, type PlayerSetPasswordType, type PlayerSportsbookMatch, type PlayerSportsbookTransactionsDetails, type PlayerSportsbookTransactionsDetailsReport, PlayerSportsbookTransactionsDetailsStatus, PlayerSportsbookTransactionsDetailsType, type PlayerSportsbookTransactionsReport, PlayerTransactionFlagEnum, PlayerTransactionStatusEnum, PlayerTransactionTypeEnum, PlayerTransactionTypeFilterEnum, type PlayerTransactionsResponseType, type PlayerTransactionsType, type PlayerTwoFactorAuthenticationMethodsType, type PlayerTwoFactorAuthenticationSendCodeDataType, type PlayerTwoFactorAuthenticationVerifiesCodeDataType, type PlayerSessionType as PlayerTwoFactorAuthenticationVerifiesCodeType, type PlayerTwoFactorCodeDataType, type PlayerType, type PlayerUnreadNotificationsType, type PlayerUpdateOrCreatePhoneType, type PlayerUpdatePasswordDataType, type PlayerUpdatePasswordType, type PlayerVerifyValidateDocumentStatusType, PromotionTypeEnum, type ProviderType, type QueryType, RulesRequiredValidationTypeEnum, 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
|
@@ -1212,35 +1212,28 @@ var TournamentCurrentStatus = /* @__PURE__ */ ((TournamentCurrentStatus2) => {
|
|
|
1212
1212
|
})(TournamentCurrentStatus || {});
|
|
1213
1213
|
|
|
1214
1214
|
// types/player-session.interface.ts
|
|
1215
|
-
var
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
AccessFlowControllerFromOriginEnum2["LOGIN"] = "LOGIN";
|
|
1238
|
-
AccessFlowControllerFromOriginEnum2["REGISTER"] = "REGISTER";
|
|
1239
|
-
AccessFlowControllerFromOriginEnum2["VALIDATE_DOCUMENT"] = "VALIDATE_DOCUMENT";
|
|
1240
|
-
AccessFlowControllerFromOriginEnum2["VALIDATE_DOCUMENT_BONUS"] = "VALIDATE_DOCUMENT_BONUS";
|
|
1241
|
-
AccessFlowControllerFromOriginEnum2["VALIDATE_DOCUMENT_DEPOSIT"] = "VALIDATE_DOCUMENT_DEPOSIT";
|
|
1242
|
-
return AccessFlowControllerFromOriginEnum2;
|
|
1243
|
-
})(AccessFlowControllerFromOriginEnum || {});
|
|
1215
|
+
var RulesRequiredValidationTypeEnum = /* @__PURE__ */ ((RulesRequiredValidationTypeEnum2) => {
|
|
1216
|
+
RulesRequiredValidationTypeEnum2["BLOCK_ACCOUNT"] = "BLOCK_ACCOUNT";
|
|
1217
|
+
RulesRequiredValidationTypeEnum2["TEMPORAL_BLOCK"] = "TEMPORAL_BLOCK";
|
|
1218
|
+
RulesRequiredValidationTypeEnum2["AGE_RESTRICTION"] = "AGE_RESTRICTION";
|
|
1219
|
+
RulesRequiredValidationTypeEnum2["SAME_SKIN_FOUND"] = "SAME_SKIN_FOUND";
|
|
1220
|
+
RulesRequiredValidationTypeEnum2["EXIST_OTHER_SKIN"] = "EXIST_OTHER_SKIN";
|
|
1221
|
+
RulesRequiredValidationTypeEnum2["RESTRICTED_BLACKLIST"] = "RESTRICTED_BLACKLIST";
|
|
1222
|
+
RulesRequiredValidationTypeEnum2["INCOMPLETE_REGISTRATION"] = "INCOMPLETE_REGISTRATION";
|
|
1223
|
+
RulesRequiredValidationTypeEnum2["ACCOUNT_PENDING_SMS_VERIFICATION"] = "ACCOUNT_PENDING_SMS_VERIFICATION";
|
|
1224
|
+
RulesRequiredValidationTypeEnum2["DOCUMENT_IP_BLOCK"] = "DOCUMENT_IP_BLOCK";
|
|
1225
|
+
RulesRequiredValidationTypeEnum2["PROVIDER_ERROR"] = "PROVIDER_ERROR";
|
|
1226
|
+
RulesRequiredValidationTypeEnum2["DOCUMENT_HARD_BLOCK"] = "DOCUMENT_HARD_BLOCK";
|
|
1227
|
+
RulesRequiredValidationTypeEnum2["DOCUMENT_SERIAL_BLOCK"] = "DOCUMENT_SERIAL_BLOCK";
|
|
1228
|
+
RulesRequiredValidationTypeEnum2["DOCUMENT_SERIAL_WARNING"] = "DOCUMENT_SERIAL_WARNING";
|
|
1229
|
+
RulesRequiredValidationTypeEnum2["REQUIRED_SERIAL_VALIDATION"] = "REQUIRED_SERIAL_VALIDATION";
|
|
1230
|
+
RulesRequiredValidationTypeEnum2["PLAYER_SMS_CODE_BLOCK"] = "PLAYER_SMS_CODE_BLOCK";
|
|
1231
|
+
RulesRequiredValidationTypeEnum2["PLAYER_SMS_CODE_INVALID"] = "PLAYER_SMS_CODE_INVALID";
|
|
1232
|
+
RulesRequiredValidationTypeEnum2["PLAYER_SMS_CODE_WARNING"] = "PLAYER_SMS_CODE_WARNING";
|
|
1233
|
+
RulesRequiredValidationTypeEnum2["PLAYER_SMS_CODE_HARD_BLOCK"] = "PLAYER_SMS_CODE_HARD_BLOCK";
|
|
1234
|
+
RulesRequiredValidationTypeEnum2["PLAYER_SMS_CODE_HARD_WARNING"] = "PLAYER_SMS_CODE_HARD_WARNING";
|
|
1235
|
+
return RulesRequiredValidationTypeEnum2;
|
|
1236
|
+
})(RulesRequiredValidationTypeEnum || {});
|
|
1244
1237
|
|
|
1245
1238
|
// types/enums/menu-status.enum.ts
|
|
1246
1239
|
var MenuStatusType = /* @__PURE__ */ ((MenuStatusType2) => {
|
|
@@ -2852,8 +2845,6 @@ var SdkSAPI = class extends tsMixer.Mixin(
|
|
|
2852
2845
|
}
|
|
2853
2846
|
};
|
|
2854
2847
|
|
|
2855
|
-
exports.AccessFlowControllerFromOriginEnum = AccessFlowControllerFromOriginEnum;
|
|
2856
|
-
exports.AccessFlowControllerTypeEnum = AccessFlowControllerTypeEnum;
|
|
2857
2848
|
exports.BonusFinalizedStatusEnum = BonusFinalizedStatusEnum;
|
|
2858
2849
|
exports.BonusFinalizedTypeFlagEnum = BonusFinalizedTypeFlagEnum;
|
|
2859
2850
|
exports.BonusParticipationButtonNum = BonusParticipationButtonNum;
|
|
@@ -2876,6 +2867,7 @@ exports.PlayerTransactionStatusEnum = PlayerTransactionStatusEnum;
|
|
|
2876
2867
|
exports.PlayerTransactionTypeEnum = PlayerTransactionTypeEnum;
|
|
2877
2868
|
exports.PlayerTransactionTypeFilterEnum = PlayerTransactionTypeFilterEnum;
|
|
2878
2869
|
exports.PromotionTypeEnum = PromotionTypeEnum;
|
|
2870
|
+
exports.RulesRequiredValidationTypeEnum = RulesRequiredValidationTypeEnum;
|
|
2879
2871
|
exports.SdkSAPI = SdkSAPI;
|
|
2880
2872
|
exports.SelfExclusionCardCurrentStatusEnum = SelfExclusionCardCurrentStatusEnum;
|
|
2881
2873
|
exports.SelfLimitationAlertKey = SelfLimitationAlertKey;
|