@marqeta/ux-toolkit-sdk-javascript 2.2.0 → 2.3.0
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 +37 -4
- package/dist/index.d.ts +37 -4
- package/dist/index.js +98 -10
- package/dist/index.mjs +91 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3729,6 +3729,35 @@ type Address = {
|
|
|
3729
3729
|
zip?: string;
|
|
3730
3730
|
};
|
|
3731
3731
|
|
|
3732
|
+
declare enum FaqParagraphTypeEnum {
|
|
3733
|
+
OrderedList = "ORDERED_LIST",
|
|
3734
|
+
UnorderedList = "UNORDERED_LIST",
|
|
3735
|
+
SimpleText = "SIMPLE_TEXT"
|
|
3736
|
+
}
|
|
3737
|
+
interface FaqParagraphSublist {
|
|
3738
|
+
'subList'?: Array<string>;
|
|
3739
|
+
'text'?: string;
|
|
3740
|
+
}
|
|
3741
|
+
interface FaqParagraph {
|
|
3742
|
+
'content': Array<FaqParagraphSublist | string> | string;
|
|
3743
|
+
'type': FaqParagraphTypeEnum;
|
|
3744
|
+
}
|
|
3745
|
+
interface FaqSection {
|
|
3746
|
+
'paragraphs'?: Array<FaqParagraph>;
|
|
3747
|
+
'title'?: string;
|
|
3748
|
+
}
|
|
3749
|
+
interface FaqItem {
|
|
3750
|
+
'sections': Array<FaqSection>;
|
|
3751
|
+
'title': string;
|
|
3752
|
+
}
|
|
3753
|
+
interface FaqsGroup {
|
|
3754
|
+
'questions': Array<FaqItem>;
|
|
3755
|
+
'title': string;
|
|
3756
|
+
}
|
|
3757
|
+
interface FaqsResponse {
|
|
3758
|
+
'data': Array<FaqsGroup>;
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3732
3761
|
declare abstract class iWlaService {
|
|
3733
3762
|
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean, includeInterestTiers?: boolean): Promise<AccountResponse & {
|
|
3734
3763
|
ytd?: AccountInterestResponse;
|
|
@@ -3742,7 +3771,7 @@ declare abstract class iWlaService {
|
|
|
3742
3771
|
abstract getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3743
3772
|
abstract getCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3744
3773
|
abstract getConsentById(id: string, country_code: string): Promise<ConsentResponse>;
|
|
3745
|
-
abstract getConsents(country_code: string): Promise<ConsentListResponse>;
|
|
3774
|
+
abstract getConsents(userId: string, country_code: string): Promise<ConsentListResponse>;
|
|
3746
3775
|
abstract getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3747
3776
|
abstract getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3748
3777
|
abstract getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
@@ -3771,6 +3800,7 @@ declare abstract class iWlaService {
|
|
|
3771
3800
|
abstract updateConsentStatus(id: string, country_code: string, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
|
|
3772
3801
|
abstract updateExternalAccount(token: string, requestBody: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3773
3802
|
abstract verifyExternalAccount(requestBody: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3803
|
+
abstract getFaqs(): Promise<FaqsResponse>;
|
|
3774
3804
|
}
|
|
3775
3805
|
|
|
3776
3806
|
declare class RestWlaService implements iWlaService {
|
|
@@ -3816,10 +3846,11 @@ declare class RestWlaService implements iWlaService {
|
|
|
3816
3846
|
getOutagesList(devicePlatform?: string): Promise<OutagesListResponse>;
|
|
3817
3847
|
getConsentById(id: string, country_code?: string): Promise<ConsentResponse>;
|
|
3818
3848
|
getTransferByToken(token: string, country_code?: string): Promise<TransferResponse>;
|
|
3819
|
-
getConsents(country_code?: string): Promise<ConsentListResponse>;
|
|
3849
|
+
getConsents(userId: string, country_code?: string): Promise<ConsentListResponse>;
|
|
3820
3850
|
getTransfers(country_code?: string): Promise<TransferListResponse>;
|
|
3821
3851
|
updateConsentStatus(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
|
|
3822
3852
|
revokeConsent(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<RevokeConsentResponse>;
|
|
3853
|
+
getFaqs(): Promise<FaqsResponse>;
|
|
3823
3854
|
}
|
|
3824
3855
|
|
|
3825
3856
|
declare function bookTransfer(payload: BookTransferRequest): Promise<BookTransferResponse>;
|
|
@@ -3836,7 +3867,7 @@ declare function getAccountTransactions(requestBody: GetAccountTransactionsReque
|
|
|
3836
3867
|
|
|
3837
3868
|
declare function getConsentById(id: string, country_code?: string): Promise<ConsentResponse>;
|
|
3838
3869
|
|
|
3839
|
-
declare function getConsents(country_code?: string): Promise<ConsentListResponse>;
|
|
3870
|
+
declare function getConsents(userId: string, country_code?: string): Promise<ConsentListResponse>;
|
|
3840
3871
|
|
|
3841
3872
|
declare function getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3842
3873
|
|
|
@@ -3895,6 +3926,8 @@ declare function updateExternalAccount(token: string, payload: UpdateExternalAcc
|
|
|
3895
3926
|
|
|
3896
3927
|
declare function verifyExternalAccount(payload: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3897
3928
|
|
|
3929
|
+
declare function getWlaFaqs(): Promise<FaqsResponse>;
|
|
3930
|
+
|
|
3898
3931
|
declare const WlaIocModule: ContainerModule;
|
|
3899
3932
|
|
|
3900
3933
|
declare const ITF_WLA_SERVICE: unique symbol;
|
|
@@ -3905,4 +3938,4 @@ declare const reactNativeContainer: Container;
|
|
|
3905
3938
|
|
|
3906
3939
|
declare const wlaReactNativeContainer: Container;
|
|
3907
3940
|
|
|
3908
|
-
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, CleanupOnUnload, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, type CreateCardRequest, type CreateCardResponse, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DeleteDocumentForDispute, DepositAccountEntity, type DepositAccountEntityJsonType, type Dictionary, type DisputeSuccessResponse, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, FFLAGS_SESSION_STORAGE_KEY, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, type InterestTierRateResponse, InterestTierResponseTypeEnum, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SourceCardsListEntity, type SourceCardsRecordEntity, type SourceCardsResponseEntity, type SsoAccessTokenHandler, type StandardOkResponse, StandardizedError, StartDispute, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, type SubmitAnswerPayload, SubmitDispute, type SubmitDisputeSuccessResponse, type SuccessBaseResponse, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, type ThemeObject, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, type Transfer, type TransferListResponse, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, UpdatePinByCardToken, type UpdatePinResponse, UploadDocumentForDispute, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production, qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer };
|
|
3941
|
+
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, CleanupOnUnload, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, type CreateCardRequest, type CreateCardResponse, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DeleteDocumentForDispute, DepositAccountEntity, type DepositAccountEntityJsonType, type Dictionary, type DisputeSuccessResponse, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, type InterestTierRateResponse, InterestTierResponseTypeEnum, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SourceCardsListEntity, type SourceCardsRecordEntity, type SourceCardsResponseEntity, type SsoAccessTokenHandler, type StandardOkResponse, StandardizedError, StartDispute, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, type SubmitAnswerPayload, SubmitDispute, type SubmitDisputeSuccessResponse, type SuccessBaseResponse, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, type ThemeObject, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, type Transfer, type TransferListResponse, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, UpdatePinByCardToken, type UpdatePinResponse, UploadDocumentForDispute, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production, qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer };
|
package/dist/index.d.ts
CHANGED
|
@@ -3729,6 +3729,35 @@ type Address = {
|
|
|
3729
3729
|
zip?: string;
|
|
3730
3730
|
};
|
|
3731
3731
|
|
|
3732
|
+
declare enum FaqParagraphTypeEnum {
|
|
3733
|
+
OrderedList = "ORDERED_LIST",
|
|
3734
|
+
UnorderedList = "UNORDERED_LIST",
|
|
3735
|
+
SimpleText = "SIMPLE_TEXT"
|
|
3736
|
+
}
|
|
3737
|
+
interface FaqParagraphSublist {
|
|
3738
|
+
'subList'?: Array<string>;
|
|
3739
|
+
'text'?: string;
|
|
3740
|
+
}
|
|
3741
|
+
interface FaqParagraph {
|
|
3742
|
+
'content': Array<FaqParagraphSublist | string> | string;
|
|
3743
|
+
'type': FaqParagraphTypeEnum;
|
|
3744
|
+
}
|
|
3745
|
+
interface FaqSection {
|
|
3746
|
+
'paragraphs'?: Array<FaqParagraph>;
|
|
3747
|
+
'title'?: string;
|
|
3748
|
+
}
|
|
3749
|
+
interface FaqItem {
|
|
3750
|
+
'sections': Array<FaqSection>;
|
|
3751
|
+
'title': string;
|
|
3752
|
+
}
|
|
3753
|
+
interface FaqsGroup {
|
|
3754
|
+
'questions': Array<FaqItem>;
|
|
3755
|
+
'title': string;
|
|
3756
|
+
}
|
|
3757
|
+
interface FaqsResponse {
|
|
3758
|
+
'data': Array<FaqsGroup>;
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3732
3761
|
declare abstract class iWlaService {
|
|
3733
3762
|
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean, includeInterestTiers?: boolean): Promise<AccountResponse & {
|
|
3734
3763
|
ytd?: AccountInterestResponse;
|
|
@@ -3742,7 +3771,7 @@ declare abstract class iWlaService {
|
|
|
3742
3771
|
abstract getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3743
3772
|
abstract getCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3744
3773
|
abstract getConsentById(id: string, country_code: string): Promise<ConsentResponse>;
|
|
3745
|
-
abstract getConsents(country_code: string): Promise<ConsentListResponse>;
|
|
3774
|
+
abstract getConsents(userId: string, country_code: string): Promise<ConsentListResponse>;
|
|
3746
3775
|
abstract getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3747
3776
|
abstract getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3748
3777
|
abstract getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
@@ -3771,6 +3800,7 @@ declare abstract class iWlaService {
|
|
|
3771
3800
|
abstract updateConsentStatus(id: string, country_code: string, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
|
|
3772
3801
|
abstract updateExternalAccount(token: string, requestBody: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3773
3802
|
abstract verifyExternalAccount(requestBody: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3803
|
+
abstract getFaqs(): Promise<FaqsResponse>;
|
|
3774
3804
|
}
|
|
3775
3805
|
|
|
3776
3806
|
declare class RestWlaService implements iWlaService {
|
|
@@ -3816,10 +3846,11 @@ declare class RestWlaService implements iWlaService {
|
|
|
3816
3846
|
getOutagesList(devicePlatform?: string): Promise<OutagesListResponse>;
|
|
3817
3847
|
getConsentById(id: string, country_code?: string): Promise<ConsentResponse>;
|
|
3818
3848
|
getTransferByToken(token: string, country_code?: string): Promise<TransferResponse>;
|
|
3819
|
-
getConsents(country_code?: string): Promise<ConsentListResponse>;
|
|
3849
|
+
getConsents(userId: string, country_code?: string): Promise<ConsentListResponse>;
|
|
3820
3850
|
getTransfers(country_code?: string): Promise<TransferListResponse>;
|
|
3821
3851
|
updateConsentStatus(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
|
|
3822
3852
|
revokeConsent(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<RevokeConsentResponse>;
|
|
3853
|
+
getFaqs(): Promise<FaqsResponse>;
|
|
3823
3854
|
}
|
|
3824
3855
|
|
|
3825
3856
|
declare function bookTransfer(payload: BookTransferRequest): Promise<BookTransferResponse>;
|
|
@@ -3836,7 +3867,7 @@ declare function getAccountTransactions(requestBody: GetAccountTransactionsReque
|
|
|
3836
3867
|
|
|
3837
3868
|
declare function getConsentById(id: string, country_code?: string): Promise<ConsentResponse>;
|
|
3838
3869
|
|
|
3839
|
-
declare function getConsents(country_code?: string): Promise<ConsentListResponse>;
|
|
3870
|
+
declare function getConsents(userId: string, country_code?: string): Promise<ConsentListResponse>;
|
|
3840
3871
|
|
|
3841
3872
|
declare function getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3842
3873
|
|
|
@@ -3895,6 +3926,8 @@ declare function updateExternalAccount(token: string, payload: UpdateExternalAcc
|
|
|
3895
3926
|
|
|
3896
3927
|
declare function verifyExternalAccount(payload: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3897
3928
|
|
|
3929
|
+
declare function getWlaFaqs(): Promise<FaqsResponse>;
|
|
3930
|
+
|
|
3898
3931
|
declare const WlaIocModule: ContainerModule;
|
|
3899
3932
|
|
|
3900
3933
|
declare const ITF_WLA_SERVICE: unique symbol;
|
|
@@ -3905,4 +3938,4 @@ declare const reactNativeContainer: Container;
|
|
|
3905
3938
|
|
|
3906
3939
|
declare const wlaReactNativeContainer: Container;
|
|
3907
3940
|
|
|
3908
|
-
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, CleanupOnUnload, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, type CreateCardRequest, type CreateCardResponse, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DeleteDocumentForDispute, DepositAccountEntity, type DepositAccountEntityJsonType, type Dictionary, type DisputeSuccessResponse, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, FFLAGS_SESSION_STORAGE_KEY, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, type InterestTierRateResponse, InterestTierResponseTypeEnum, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SourceCardsListEntity, type SourceCardsRecordEntity, type SourceCardsResponseEntity, type SsoAccessTokenHandler, type StandardOkResponse, StandardizedError, StartDispute, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, type SubmitAnswerPayload, SubmitDispute, type SubmitDisputeSuccessResponse, type SuccessBaseResponse, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, type ThemeObject, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, type Transfer, type TransferListResponse, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, UpdatePinByCardToken, type UpdatePinResponse, UploadDocumentForDispute, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production, qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer };
|
|
3941
|
+
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, CleanupOnUnload, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, type CreateCardRequest, type CreateCardResponse, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DeleteDocumentForDispute, DepositAccountEntity, type DepositAccountEntityJsonType, type Dictionary, type DisputeSuccessResponse, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, type InterestTierRateResponse, InterestTierResponseTypeEnum, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SourceCardsListEntity, type SourceCardsRecordEntity, type SourceCardsResponseEntity, type SsoAccessTokenHandler, type StandardOkResponse, StandardizedError, StartDispute, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, type SubmitAnswerPayload, SubmitDispute, type SubmitDisputeSuccessResponse, type SuccessBaseResponse, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, type ThemeObject, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, type Transfer, type TransferListResponse, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, UpdatePinByCardToken, type UpdatePinResponse, UploadDocumentForDispute, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production, qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer };
|
package/dist/index.js
CHANGED
|
@@ -636,6 +636,9 @@ __export(src_exports, {
|
|
|
636
636
|
FFLAGS_SESSION_STORAGE_KEY: function() {
|
|
637
637
|
return FFLAGS_SESSION_STORAGE_KEY;
|
|
638
638
|
},
|
|
639
|
+
FaqParagraphTypeEnum: function() {
|
|
640
|
+
return FaqParagraphTypeEnum;
|
|
641
|
+
},
|
|
639
642
|
FormField: function() {
|
|
640
643
|
return FormField;
|
|
641
644
|
},
|
|
@@ -1488,6 +1491,9 @@ __export(src_exports, {
|
|
|
1488
1491
|
getWlaCardByToken: function() {
|
|
1489
1492
|
return getWlaCardByToken;
|
|
1490
1493
|
},
|
|
1494
|
+
getWlaFaqs: function() {
|
|
1495
|
+
return getWlaFaqs;
|
|
1496
|
+
},
|
|
1491
1497
|
getWlaRewardSummaries: function() {
|
|
1492
1498
|
return getWlaRewardSummaries;
|
|
1493
1499
|
},
|
|
@@ -19520,6 +19526,13 @@ var WlaUserStatus;
|
|
|
19520
19526
|
WlaUserStatus2["SUSPENDED"] = "SUSPENDED";
|
|
19521
19527
|
WlaUserStatus2["TERMINATED"] = "TERMINATED";
|
|
19522
19528
|
})(WlaUserStatus || (WlaUserStatus = {}));
|
|
19529
|
+
// src/wla/base/types/FaqsResponse.ts
|
|
19530
|
+
var FaqParagraphTypeEnum;
|
|
19531
|
+
(function(FaqParagraphTypeEnum2) {
|
|
19532
|
+
FaqParagraphTypeEnum2["OrderedList"] = "ORDERED_LIST";
|
|
19533
|
+
FaqParagraphTypeEnum2["UnorderedList"] = "UNORDERED_LIST";
|
|
19534
|
+
FaqParagraphTypeEnum2["SimpleText"] = "SIMPLE_TEXT";
|
|
19535
|
+
})(FaqParagraphTypeEnum || (FaqParagraphTypeEnum = {}));
|
|
19523
19536
|
// src/wla/adapters/RestWlaService.ts
|
|
19524
19537
|
function _ts_decorate104(decorators, target, key, desc) {
|
|
19525
19538
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -20815,11 +20828,11 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
20815
20828
|
},
|
|
20816
20829
|
{
|
|
20817
20830
|
key: "getConsents",
|
|
20818
|
-
value: function getConsents() {
|
|
20819
|
-
var country_code = arguments.length >
|
|
20831
|
+
value: function getConsents(userId) {
|
|
20832
|
+
var country_code = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "GB";
|
|
20820
20833
|
var _this = this;
|
|
20821
20834
|
return _async_to_generator(function() {
|
|
20822
|
-
var cuiApiBaseUrl, path, params, error2;
|
|
20835
|
+
var queryParams, cuiApiBaseUrl, path, params, error2;
|
|
20823
20836
|
return _ts_generator(this, function(_state) {
|
|
20824
20837
|
switch(_state.label){
|
|
20825
20838
|
case 0:
|
|
@@ -20829,8 +20842,11 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
20829
20842
|
,
|
|
20830
20843
|
3
|
|
20831
20844
|
]);
|
|
20845
|
+
queryParams = new URLSearchParams({
|
|
20846
|
+
userId: userId
|
|
20847
|
+
});
|
|
20832
20848
|
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
20833
|
-
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents");
|
|
20849
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents?").concat(queryParams.toString());
|
|
20834
20850
|
params = {
|
|
20835
20851
|
headers: _this.getCommonWlaApiHeaders()
|
|
20836
20852
|
};
|
|
@@ -20922,7 +20938,7 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
20922
20938
|
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents/").concat(id);
|
|
20923
20939
|
return [
|
|
20924
20940
|
4,
|
|
20925
|
-
_this.httpClient.
|
|
20941
|
+
_this.httpClient.patch(path, params)
|
|
20926
20942
|
];
|
|
20927
20943
|
case 1:
|
|
20928
20944
|
data = _state.sent();
|
|
@@ -20967,7 +20983,7 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
20967
20983
|
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents/revoke/").concat(id);
|
|
20968
20984
|
return [
|
|
20969
20985
|
4,
|
|
20970
|
-
_this.httpClient.
|
|
20986
|
+
_this.httpClient.patch(path, params)
|
|
20971
20987
|
];
|
|
20972
20988
|
case 1:
|
|
20973
20989
|
data = _state.sent();
|
|
@@ -20986,6 +21002,49 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
20986
21002
|
});
|
|
20987
21003
|
})();
|
|
20988
21004
|
}
|
|
21005
|
+
},
|
|
21006
|
+
{
|
|
21007
|
+
key: "getFaqs",
|
|
21008
|
+
value: function getFaqs() {
|
|
21009
|
+
var _this = this;
|
|
21010
|
+
return _async_to_generator(function() {
|
|
21011
|
+
var cuiApiBaseUrl, params, path, data, error2;
|
|
21012
|
+
return _ts_generator(this, function(_state) {
|
|
21013
|
+
switch(_state.label){
|
|
21014
|
+
case 0:
|
|
21015
|
+
_state.trys.push([
|
|
21016
|
+
0,
|
|
21017
|
+
2,
|
|
21018
|
+
,
|
|
21019
|
+
3
|
|
21020
|
+
]);
|
|
21021
|
+
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
21022
|
+
params = {
|
|
21023
|
+
method: "GET",
|
|
21024
|
+
headers: _this.getCommonWlaApiHeaders()
|
|
21025
|
+
};
|
|
21026
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/faqs");
|
|
21027
|
+
return [
|
|
21028
|
+
4,
|
|
21029
|
+
_this.httpClient.get(path, params)
|
|
21030
|
+
];
|
|
21031
|
+
case 1:
|
|
21032
|
+
data = _state.sent();
|
|
21033
|
+
return [
|
|
21034
|
+
2,
|
|
21035
|
+
data
|
|
21036
|
+
];
|
|
21037
|
+
case 2:
|
|
21038
|
+
error2 = _state.sent();
|
|
21039
|
+
throw new MqSDKError("Unable to get FAQs", error2);
|
|
21040
|
+
case 3:
|
|
21041
|
+
return [
|
|
21042
|
+
2
|
|
21043
|
+
];
|
|
21044
|
+
}
|
|
21045
|
+
});
|
|
21046
|
+
})();
|
|
21047
|
+
}
|
|
20989
21048
|
}
|
|
20990
21049
|
]);
|
|
20991
21050
|
return _RestWlaService;
|
|
@@ -21218,23 +21277,23 @@ function _getConsentById() {
|
|
|
21218
21277
|
return _getConsentById.apply(this, arguments);
|
|
21219
21278
|
}
|
|
21220
21279
|
__name(getConsentById, "getConsentById");
|
|
21221
|
-
function getConsents() {
|
|
21280
|
+
function getConsents(userId) {
|
|
21222
21281
|
return _getConsents.apply(this, arguments);
|
|
21223
21282
|
}
|
|
21224
21283
|
function _getConsents() {
|
|
21225
21284
|
_getConsents = // src/wla/base/interactors/getConsents.ts
|
|
21226
|
-
_async_to_generator(function() {
|
|
21285
|
+
_async_to_generator(function(userId) {
|
|
21227
21286
|
var country_code, container2, wlaService;
|
|
21228
21287
|
var _arguments = arguments;
|
|
21229
21288
|
return _ts_generator(this, function(_state) {
|
|
21230
21289
|
switch(_state.label){
|
|
21231
21290
|
case 0:
|
|
21232
|
-
country_code = _arguments.length >
|
|
21291
|
+
country_code = _arguments.length > 1 && _arguments[1] !== void 0 ? _arguments[1] : "GB";
|
|
21233
21292
|
container2 = getActiveIocContainer();
|
|
21234
21293
|
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
21235
21294
|
return [
|
|
21236
21295
|
4,
|
|
21237
|
-
wlaService.getConsents(country_code)
|
|
21296
|
+
wlaService.getConsents(userId, country_code)
|
|
21238
21297
|
];
|
|
21239
21298
|
case 1:
|
|
21240
21299
|
return [
|
|
@@ -21864,6 +21923,33 @@ function _verifyExternalAccount() {
|
|
|
21864
21923
|
return _verifyExternalAccount.apply(this, arguments);
|
|
21865
21924
|
}
|
|
21866
21925
|
__name(verifyExternalAccount, "verifyExternalAccount");
|
|
21926
|
+
function getWlaFaqs() {
|
|
21927
|
+
return _getWlaFaqs.apply(this, arguments);
|
|
21928
|
+
}
|
|
21929
|
+
function _getWlaFaqs() {
|
|
21930
|
+
_getWlaFaqs = // src/wla/base/interactors/getWlaFaqs.ts
|
|
21931
|
+
_async_to_generator(function() {
|
|
21932
|
+
var container2, wlaService;
|
|
21933
|
+
return _ts_generator(this, function(_state) {
|
|
21934
|
+
switch(_state.label){
|
|
21935
|
+
case 0:
|
|
21936
|
+
container2 = getActiveIocContainer();
|
|
21937
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
21938
|
+
return [
|
|
21939
|
+
4,
|
|
21940
|
+
wlaService.getFaqs()
|
|
21941
|
+
];
|
|
21942
|
+
case 1:
|
|
21943
|
+
return [
|
|
21944
|
+
2,
|
|
21945
|
+
_state.sent()
|
|
21946
|
+
];
|
|
21947
|
+
}
|
|
21948
|
+
});
|
|
21949
|
+
});
|
|
21950
|
+
return _getWlaFaqs.apply(this, arguments);
|
|
21951
|
+
}
|
|
21952
|
+
__name(getWlaFaqs, "getWlaFaqs");
|
|
21867
21953
|
// src/wla/ioc/WlaIocModule.ts
|
|
21868
21954
|
var import_inversify134 = require("inversify");
|
|
21869
21955
|
var WlaIocModule = new import_inversify134.ContainerModule(function(bind) {
|
|
@@ -22281,6 +22367,7 @@ setActiveIocContainer(container);
|
|
|
22281
22367
|
EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN: EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN,
|
|
22282
22368
|
ExternalAccountStatus: ExternalAccountStatus,
|
|
22283
22369
|
FFLAGS_SESSION_STORAGE_KEY: FFLAGS_SESSION_STORAGE_KEY,
|
|
22370
|
+
FaqParagraphTypeEnum: FaqParagraphTypeEnum,
|
|
22284
22371
|
FormField: FormField,
|
|
22285
22372
|
GaMeasurementAnalyticsService: GaMeasurementAnalyticsService,
|
|
22286
22373
|
GetAccountBalances: GetAccountBalances,
|
|
@@ -22565,6 +22652,7 @@ setActiveIocContainer(container);
|
|
|
22565
22652
|
getUserTokenHash: getUserTokenHash,
|
|
22566
22653
|
getWlaAccountDetails: getWlaAccountDetails,
|
|
22567
22654
|
getWlaCardByToken: getWlaCardByToken,
|
|
22655
|
+
getWlaFaqs: getWlaFaqs,
|
|
22568
22656
|
getWlaRewardSummaries: getWlaRewardSummaries,
|
|
22569
22657
|
getWlaTransactionByToken: getWlaTransactionByToken,
|
|
22570
22658
|
getWlaUserProfile: getWlaUserProfile,
|
package/dist/index.mjs
CHANGED
|
@@ -18272,6 +18272,13 @@ var WlaUserStatus;
|
|
|
18272
18272
|
WlaUserStatus2["SUSPENDED"] = "SUSPENDED";
|
|
18273
18273
|
WlaUserStatus2["TERMINATED"] = "TERMINATED";
|
|
18274
18274
|
})(WlaUserStatus || (WlaUserStatus = {}));
|
|
18275
|
+
// src/wla/base/types/FaqsResponse.ts
|
|
18276
|
+
var FaqParagraphTypeEnum;
|
|
18277
|
+
(function(FaqParagraphTypeEnum2) {
|
|
18278
|
+
FaqParagraphTypeEnum2["OrderedList"] = "ORDERED_LIST";
|
|
18279
|
+
FaqParagraphTypeEnum2["UnorderedList"] = "UNORDERED_LIST";
|
|
18280
|
+
FaqParagraphTypeEnum2["SimpleText"] = "SIMPLE_TEXT";
|
|
18281
|
+
})(FaqParagraphTypeEnum || (FaqParagraphTypeEnum = {}));
|
|
18275
18282
|
// src/wla/adapters/RestWlaService.ts
|
|
18276
18283
|
function _ts_decorate104(decorators, target, key, desc) {
|
|
18277
18284
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -19568,11 +19575,11 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
19568
19575
|
},
|
|
19569
19576
|
{
|
|
19570
19577
|
key: "getConsents",
|
|
19571
|
-
value: function getConsents() {
|
|
19572
|
-
var country_code = arguments.length >
|
|
19578
|
+
value: function getConsents(userId) {
|
|
19579
|
+
var country_code = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "GB";
|
|
19573
19580
|
var _this = this;
|
|
19574
19581
|
return _async_to_generator(function() {
|
|
19575
|
-
var cuiApiBaseUrl, path, params, error2;
|
|
19582
|
+
var queryParams, cuiApiBaseUrl, path, params, error2;
|
|
19576
19583
|
return _ts_generator(this, function(_state) {
|
|
19577
19584
|
switch(_state.label){
|
|
19578
19585
|
case 0:
|
|
@@ -19582,8 +19589,11 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
19582
19589
|
,
|
|
19583
19590
|
3
|
|
19584
19591
|
]);
|
|
19592
|
+
queryParams = new URLSearchParams({
|
|
19593
|
+
userId: userId
|
|
19594
|
+
});
|
|
19585
19595
|
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
19586
|
-
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents");
|
|
19596
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents?").concat(queryParams.toString());
|
|
19587
19597
|
params = {
|
|
19588
19598
|
headers: _this.getCommonWlaApiHeaders()
|
|
19589
19599
|
};
|
|
@@ -19675,7 +19685,7 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
19675
19685
|
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents/").concat(id);
|
|
19676
19686
|
return [
|
|
19677
19687
|
4,
|
|
19678
|
-
_this.httpClient.
|
|
19688
|
+
_this.httpClient.patch(path, params)
|
|
19679
19689
|
];
|
|
19680
19690
|
case 1:
|
|
19681
19691
|
data = _state.sent();
|
|
@@ -19720,7 +19730,7 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
19720
19730
|
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/open-banking/").concat(country_code, "/consents/revoke/").concat(id);
|
|
19721
19731
|
return [
|
|
19722
19732
|
4,
|
|
19723
|
-
_this.httpClient.
|
|
19733
|
+
_this.httpClient.patch(path, params)
|
|
19724
19734
|
];
|
|
19725
19735
|
case 1:
|
|
19726
19736
|
data = _state.sent();
|
|
@@ -19739,6 +19749,49 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
19739
19749
|
});
|
|
19740
19750
|
})();
|
|
19741
19751
|
}
|
|
19752
|
+
},
|
|
19753
|
+
{
|
|
19754
|
+
key: "getFaqs",
|
|
19755
|
+
value: function getFaqs() {
|
|
19756
|
+
var _this = this;
|
|
19757
|
+
return _async_to_generator(function() {
|
|
19758
|
+
var cuiApiBaseUrl, params, path, data, error2;
|
|
19759
|
+
return _ts_generator(this, function(_state) {
|
|
19760
|
+
switch(_state.label){
|
|
19761
|
+
case 0:
|
|
19762
|
+
_state.trys.push([
|
|
19763
|
+
0,
|
|
19764
|
+
2,
|
|
19765
|
+
,
|
|
19766
|
+
3
|
|
19767
|
+
]);
|
|
19768
|
+
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
19769
|
+
params = {
|
|
19770
|
+
method: "GET",
|
|
19771
|
+
headers: _this.getCommonWlaApiHeaders()
|
|
19772
|
+
};
|
|
19773
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/faqs");
|
|
19774
|
+
return [
|
|
19775
|
+
4,
|
|
19776
|
+
_this.httpClient.get(path, params)
|
|
19777
|
+
];
|
|
19778
|
+
case 1:
|
|
19779
|
+
data = _state.sent();
|
|
19780
|
+
return [
|
|
19781
|
+
2,
|
|
19782
|
+
data
|
|
19783
|
+
];
|
|
19784
|
+
case 2:
|
|
19785
|
+
error2 = _state.sent();
|
|
19786
|
+
throw new MqSDKError("Unable to get FAQs", error2);
|
|
19787
|
+
case 3:
|
|
19788
|
+
return [
|
|
19789
|
+
2
|
|
19790
|
+
];
|
|
19791
|
+
}
|
|
19792
|
+
});
|
|
19793
|
+
})();
|
|
19794
|
+
}
|
|
19742
19795
|
}
|
|
19743
19796
|
]);
|
|
19744
19797
|
return _RestWlaService;
|
|
@@ -19971,23 +20024,23 @@ function _getConsentById() {
|
|
|
19971
20024
|
return _getConsentById.apply(this, arguments);
|
|
19972
20025
|
}
|
|
19973
20026
|
__name(getConsentById, "getConsentById");
|
|
19974
|
-
function getConsents() {
|
|
20027
|
+
function getConsents(userId) {
|
|
19975
20028
|
return _getConsents.apply(this, arguments);
|
|
19976
20029
|
}
|
|
19977
20030
|
function _getConsents() {
|
|
19978
20031
|
_getConsents = // src/wla/base/interactors/getConsents.ts
|
|
19979
|
-
_async_to_generator(function() {
|
|
20032
|
+
_async_to_generator(function(userId) {
|
|
19980
20033
|
var country_code, container2, wlaService;
|
|
19981
20034
|
var _arguments = arguments;
|
|
19982
20035
|
return _ts_generator(this, function(_state) {
|
|
19983
20036
|
switch(_state.label){
|
|
19984
20037
|
case 0:
|
|
19985
|
-
country_code = _arguments.length >
|
|
20038
|
+
country_code = _arguments.length > 1 && _arguments[1] !== void 0 ? _arguments[1] : "GB";
|
|
19986
20039
|
container2 = getActiveIocContainer();
|
|
19987
20040
|
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19988
20041
|
return [
|
|
19989
20042
|
4,
|
|
19990
|
-
wlaService.getConsents(country_code)
|
|
20043
|
+
wlaService.getConsents(userId, country_code)
|
|
19991
20044
|
];
|
|
19992
20045
|
case 1:
|
|
19993
20046
|
return [
|
|
@@ -20617,6 +20670,33 @@ function _verifyExternalAccount() {
|
|
|
20617
20670
|
return _verifyExternalAccount.apply(this, arguments);
|
|
20618
20671
|
}
|
|
20619
20672
|
__name(verifyExternalAccount, "verifyExternalAccount");
|
|
20673
|
+
function getWlaFaqs() {
|
|
20674
|
+
return _getWlaFaqs.apply(this, arguments);
|
|
20675
|
+
}
|
|
20676
|
+
function _getWlaFaqs() {
|
|
20677
|
+
_getWlaFaqs = // src/wla/base/interactors/getWlaFaqs.ts
|
|
20678
|
+
_async_to_generator(function() {
|
|
20679
|
+
var container2, wlaService;
|
|
20680
|
+
return _ts_generator(this, function(_state) {
|
|
20681
|
+
switch(_state.label){
|
|
20682
|
+
case 0:
|
|
20683
|
+
container2 = getActiveIocContainer();
|
|
20684
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
20685
|
+
return [
|
|
20686
|
+
4,
|
|
20687
|
+
wlaService.getFaqs()
|
|
20688
|
+
];
|
|
20689
|
+
case 1:
|
|
20690
|
+
return [
|
|
20691
|
+
2,
|
|
20692
|
+
_state.sent()
|
|
20693
|
+
];
|
|
20694
|
+
}
|
|
20695
|
+
});
|
|
20696
|
+
});
|
|
20697
|
+
return _getWlaFaqs.apply(this, arguments);
|
|
20698
|
+
}
|
|
20699
|
+
__name(getWlaFaqs, "getWlaFaqs");
|
|
20620
20700
|
// src/wla/ioc/WlaIocModule.ts
|
|
20621
20701
|
import { ContainerModule as ContainerModule30 } from "inversify";
|
|
20622
20702
|
var WlaIocModule = new ContainerModule30(function(bind) {
|
|
@@ -20981,7 +21061,7 @@ wlaReactNativeContainer.unload(featureFlagsIOCModule);
|
|
|
20981
21061
|
wlaReactNativeContainer.load(reactNativeFeatureFlagsIOCModule);
|
|
20982
21062
|
// src/index.ts
|
|
20983
21063
|
setActiveIocContainer(container);
|
|
20984
|
-
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, AccountHolderGroupEntity, AccountType, ActivateCardByTokenOrPan, AddSourceCard, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, BAD_GENERAL_SSN, BannerTypeEnum, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, CardEntity, CardFulfillmentRequestCardFulfillmentReasonEnum, CardStates, CardholderContextEntity, CardholderVerificationMethods, CleanupOnUnload, ConsentAction, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, ConsentScope, ConsentStatus, CreateUserRequestIdentificationsInnerTypeEnum, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, DeleteDocumentForDispute, DepositAccountEntity, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, ExternalAccountStatus2 as ExternalAccountStatus, FFLAGS_SESSION_STORAGE_KEY, FormField, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, GetTransactions, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, InitiateFunding, InterestTierResponseTypeEnum, IsMockModeEnabled, KycVerificationRequestIdentifierTypeEnum, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, OriginationTransferScheme, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, ReplaceCardRequestReasonEnum, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, RevokeConsentStatus, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, ShippingMethodEnum, StandardizedError, StartDispute, StatementAssetStateEnum, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, SubmitDispute, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, TransactionDetailResponseIconTypeEnum, TransactionDetailsBannerType, TransactionDirection, TransactionDisputeStatus, TransactionRecordStatus, TransactionStatus, TransactionType, TransferStatus, UnlockCardByToken, UpdatePinByCardToken, UploadDocumentForDispute, UserEntity, UserRole, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development_exports as development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost_exports as localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode_exports as mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production_exports as production, qa_exports as qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, revokeConsent, sandbox_exports as sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer }; /*! Bundled license information:
|
|
21064
|
+
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, AccountHolderGroupEntity, AccountType, ActivateCardByTokenOrPan, AddSourceCard, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, BAD_GENERAL_SSN, BannerTypeEnum, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, CardEntity, CardFulfillmentRequestCardFulfillmentReasonEnum, CardStates, CardholderContextEntity, CardholderVerificationMethods, CleanupOnUnload, ConsentAction, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, ConsentScope, ConsentStatus, CreateUserRequestIdentificationsInnerTypeEnum, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, DeleteDocumentForDispute, DepositAccountEntity, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, ExternalAccountStatus2 as ExternalAccountStatus, FFLAGS_SESSION_STORAGE_KEY, FaqParagraphTypeEnum, FormField, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, GetTransactions, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, InitiateFunding, InterestTierResponseTypeEnum, IsMockModeEnabled, KycVerificationRequestIdentifierTypeEnum, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, OriginationTransferScheme, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, ReplaceCardRequestReasonEnum, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, RevokeConsentStatus, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, ShippingMethodEnum, StandardizedError, StartDispute, StatementAssetStateEnum, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, SubmitDispute, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, TransactionDetailResponseIconTypeEnum, TransactionDetailsBannerType, TransactionDirection, TransactionDisputeStatus, TransactionRecordStatus, TransactionStatus, TransactionType, TransferStatus, UnlockCardByToken, UpdatePinByCardToken, UploadDocumentForDispute, UserEntity, UserRole, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development_exports as development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost_exports as localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode_exports as mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production_exports as production, qa_exports as qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, revokeConsent, sandbox_exports as sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer }; /*! Bundled license information:
|
|
20985
21065
|
|
|
20986
21066
|
@bundled-es-modules/statuses/index-esm.js:
|
|
20987
21067
|
(*! Bundled license information:
|