@marqeta/ux-toolkit-sdk-javascript 2.27.0 → 2.29.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 CHANGED
@@ -794,6 +794,14 @@ declare class WlaSdkError extends Error {
794
794
  };
795
795
  }
796
796
 
797
+ declare function setAppConfig(appVersion: string, deviceId: string): void;
798
+
799
+ type AppConfig = {
800
+ appVersion: string;
801
+ deviceId: string;
802
+ };
803
+ declare function getAppConfig(): AppConfig;
804
+
797
805
  declare const commonIOCModule: ContainerModule;
798
806
 
799
807
  declare const mockCommonIOCModule: ContainerModule;
@@ -805,6 +813,8 @@ declare const ITF_REGISTRY_SERVICE: unique symbol;
805
813
  declare function convertObjKeysToCamelCase(inputObj: Dictionary, recursive?: boolean): Dictionary;
806
814
  declare function convertObjKeysToLowerCamelCase(inputObj: Dictionary): Dictionary;
807
815
 
816
+ declare function getCommonApiHeaders(): Record<string, string>;
817
+
808
818
  declare const AUTH_REFRESH_INTERVAL_ID = "authRefreshIntervalId";
809
819
 
810
820
  declare function checkAndRefreshAuthToken(): Promise<void>;
@@ -1401,39 +1411,53 @@ declare function featureFlagIsEnabled(flagName: string): boolean;
1401
1411
 
1402
1412
  declare function loadFeatureFlags(): Promise<void>;
1403
1413
 
1414
+ declare function setAutoEnableDevFlags(enabled: boolean): void;
1415
+
1404
1416
  declare abstract class iFeatureFlagService {
1405
1417
  abstract loadFlagsData(): Promise<void>;
1406
- abstract featureFlagIsEnabled(flagName: string): boolean;
1418
+ abstract initializeFlagValue(flagName: string, defaultValue: boolean): void;
1419
+ abstract getFlagValue(flagName: string): boolean | undefined;
1407
1420
  }
1408
1421
 
1409
1422
  declare class MockFeatureFlagService extends iFeatureFlagService {
1410
1423
  private flagData;
1424
+ constructor();
1425
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1426
+ getFlagValue(flagName: string): boolean | undefined;
1411
1427
  loadMockFlagData(flagData: {
1412
1428
  [key: string]: boolean;
1413
1429
  }): void;
1430
+ setMockFlagValue(flagName: string, value: boolean): void;
1414
1431
  loadFlagsData(): Promise<void>;
1415
- featureFlagIsEnabled(flagName: string): boolean;
1416
1432
  }
1417
1433
 
1418
1434
  declare const featureFlagsIOCModule: ContainerModule;
1419
1435
 
1420
1436
  declare const mockFeatureFlagIOCModule: ContainerModule;
1421
1437
 
1438
+ declare const FFLAGS_ASYNC_STORAGE_KEY = "mqcui-feature-flags";
1439
+ declare class AsyncStorageFeatureFlagService implements iFeatureFlagService {
1440
+ private flagsData;
1441
+ loadFlagsData(): Promise<void>;
1442
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1443
+ getFlagValue(flagName: string): boolean | undefined;
1444
+ }
1445
+
1422
1446
  declare const FFLAGS_SESSION_STORAGE_KEY = "mqcui-feature-flags";
1423
1447
  declare class SessionStorageFeatureFlagService implements iFeatureFlagService {
1424
1448
  private flagsData;
1425
1449
  constructor();
1426
1450
  private internalLoadFlagsData;
1427
1451
  loadFlagsData(): Promise<void>;
1428
- featureFlagIsEnabled(flagName: string): boolean;
1429
- private tryGettingFlagValue;
1430
- private initFalseFlagValue;
1452
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1453
+ getFlagValue(flagName: string): boolean | undefined;
1431
1454
  }
1432
1455
 
1433
1456
  declare class StubFeatureFlagService implements iFeatureFlagService {
1434
1457
  private flagsData;
1435
1458
  loadFlagsData(): Promise<void>;
1436
- featureFlagIsEnabled(flagName: string): boolean;
1459
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1460
+ getFlagValue(flagName: string): boolean | undefined;
1437
1461
  setFlag(flagName: string, value: boolean): void;
1438
1462
  }
1439
1463
 
@@ -3896,6 +3920,9 @@ declare enum PushRegistrationRequestDevicePlatformEnum {
3896
3920
  IOS = "IOS",
3897
3921
  ANDROID = "ANDROID"
3898
3922
  }
3923
+ type UpdatePushNotificationRegistrationRequest = {
3924
+ is_active: boolean;
3925
+ };
3899
3926
 
3900
3927
  type ReplaceCardRequest = {
3901
3928
  card_token: string;
@@ -4054,6 +4081,13 @@ type UpdateExternalAccountRequest = {
4054
4081
  status?: ExternalAccountStatus;
4055
4082
  };
4056
4083
 
4084
+ interface UserDeviceResponse {
4085
+ device_id?: string;
4086
+ device_platform?: string;
4087
+ is_primary?: boolean;
4088
+ is_active?: boolean;
4089
+ is_registered_for_push_notifications: boolean;
4090
+ }
4057
4091
  type UserProfileResponse = {
4058
4092
  data: {
4059
4093
  accounts?: Array<AccountResponse>;
@@ -4061,9 +4095,7 @@ type UserProfileResponse = {
4061
4095
  address: Address;
4062
4096
  };
4063
4097
  user_config?: UserConfigResponse;
4064
- user_device?: {
4065
- is_registered_for_push_notifications?: boolean;
4066
- };
4098
+ user_device?: UserDeviceResponse;
4067
4099
  has_pending_transaction_challenges: boolean;
4068
4100
  };
4069
4101
  };
@@ -4224,10 +4256,10 @@ declare abstract class iWlaService {
4224
4256
  data: UserResponse;
4225
4257
  }>;
4226
4258
  abstract registerDeviceForPushNotifications(requestBody: PushRegistrationRequest): Promise<void>;
4259
+ abstract updateDevicePushNotificationRegistration(requestBody: UpdatePushNotificationRegistrationRequest): Promise<void>;
4227
4260
  abstract replaceCard(requestBody: ReplaceCardRequest): Promise<ReplaceCardResponse>;
4228
4261
  abstract revokeConsent(id: string, country_code: string, requestBody: UpdateConsentStatusRequest): Promise<RevokeConsentResponse>;
4229
4262
  abstract searchAtms(requestBody: AtmSearch, requestFilters: AtmSearchFilters): Promise<AtmsResponse>;
4230
- abstract setAppConfig(appVersion: string, deviceId: string, clientIp: string): void;
4231
4263
  abstract setPin(cardToken: string, pin: string, usecase?: SetPinRequestUsecaseEnum): Promise<{
4232
4264
  data?: UserResponse;
4233
4265
  }>;
@@ -4249,9 +4281,6 @@ declare class RestWlaService implements iWlaService {
4249
4281
  private cacheService;
4250
4282
  private httpClient;
4251
4283
  private unauthenticatedHttpClient;
4252
- setAppConfig(appVersion: string, deviceId: string, clientIp: string): void;
4253
- private getAppConfig;
4254
- private getCommonWlaApiHeaders;
4255
4284
  private transitionOnboardingStatus;
4256
4285
  getUserProfileDetails(): Promise<any>;
4257
4286
  createCard(requestBody: CreateCardRequest): Promise<CreateCardResponse>;
@@ -4268,6 +4297,7 @@ declare class RestWlaService implements iWlaService {
4268
4297
  data: UserResponse;
4269
4298
  }>;
4270
4299
  registerDeviceForPushNotifications(requestBody: PushRegistrationRequest): Promise<void>;
4300
+ updateDevicePushNotificationRegistration(requestBody: UpdatePushNotificationRegistrationRequest): Promise<void>;
4271
4301
  deleteRegistrationForPushNotifications(): Promise<void>;
4272
4302
  getOffers(): Promise<OfferListResponse>;
4273
4303
  getOfferDetails(offerId: string): Promise<OfferResponse>;
@@ -4376,8 +4406,6 @@ declare function setWlaCardPin(cardToken: string, pin: string, usecase?: SetPinR
4376
4406
  data?: UserResponse | undefined;
4377
4407
  }>;
4378
4408
 
4379
- declare function setWlaConfig(appVersion: string, deviceId: string, clientIp: string): Promise<void>;
4380
-
4381
4409
  declare function updateConsentStatus(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
4382
4410
 
4383
4411
  declare function updateExternalAccount(token: string, payload: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
@@ -4400,10 +4428,12 @@ declare function getNextTransactionChallenge(): Promise<TransactionChallengeResp
4400
4428
 
4401
4429
  declare function postTransactionChallengeDecision(challenge_token: string, body: TransactionChallengeDecisionRequest): Promise<TransactionChallengeDecisionResponse>;
4402
4430
 
4431
+ declare function updateDevicePushNotificationsRegistration(requestBody: UpdatePushNotificationRegistrationRequest): Promise<void>;
4432
+
4403
4433
  declare const WlaIocModule: ContainerModule;
4404
4434
 
4405
4435
  declare const ITF_WLA_SERVICE: unique symbol;
4406
4436
 
4407
4437
  declare const container: Container;
4408
4438
 
4409
- 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, type ActivationActions, type ActivationActionsModel, type Address, type Alert, 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, BaseDpopAuthCredentialService, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CREATE_USERS_BAD_REQUEST, CREATE_USERS_INTERNAL_SERVER_ERROR, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, type CardArtUrlJsontype, 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, type ChangePasswordRequest, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, ConsoleLoggerService, type CreateCardRequest, type CreateCardResponse, CreateCardUseCase, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DepositAccountEntity, type DepositAccountEntityJsonType, type DeviceDetails, type Dictionary, Direction, type DisputeSuccessResponse, DpopAuthCredentialService, type DynamicFormQuestion, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, type ExternalCardRequest, type ExternalCardWithUserRequest, type ExternalCardsList, type ExternalCardsRecord, type ExternalCardsResponse, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, type GetAccountTransactionsRequest, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, type GetTransactionsResponse, type HandleMFARequiredRequest, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_CLIENT_ID, INTR_GET_LANGUAGE_CODE, INTR_GET_SESSION_ID, INTR_IS_MOCK_MODE_ENABLED, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_MOCK_MODE, 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_IDP_SERVICE, ITF_KYB, ITF_KYC, ITF_LOGGER_SERVICE, 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, InMemSsoAccessTokenService, type InterestTierRateResponse, InterestTierResponseTypeEnum, KYB_ADDRESS_ISSUE_SSN, KYB_BAD_GENERAL_SSN, KYB_DOB_ISSUE_SSN, KYB_LOADING_SSN, KYB_NAME_ISSUE_SSN, KYB_OBAC_ISSUE_SSN, type KybEvaluationRequest, type KybEvaluationResponse, KybEvaluationStatus, type KybValidationRule, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, type LogContext, LogLevel, LogLevelString, type LoginWithPasswordRequest, type LoginWithPasswordResponse, LoyaltyTier, M2mAuthenticatedHttpClient, 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, MockIdpService, MockLoggerService, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OTPVerificationRequest, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, OfferStatus, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, OutageType, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, type RefreshAccessTokenRequest, type RefreshAccessTokenResponse, type RefreshTokenResponse, type RegExpPattern, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, type RequestOtpCodeRequest, type RequestOtpCodeResponse, type ResendVerificationEmailResponse, type ResetPasswordBodyRequest, RestAuthService, RestComponentsRepository, RestIdpService, RestKybRepository, RestKycRepository, RestUsersRepository, RestWlaService, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetPinRequestUsecaseEnum, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SsoAccessTokenHandler, SsoAuthenticatedHttpClient, type StandardOkResponse, StandardizedError, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, type SubmitAnswerPayload, 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, TransactionChallengeAuthenticationMethod, TransactionChallengeCancelReason, type TransactionChallengeDecisionRequest, TransactionChallengeDecisionRequestResultEnum, type TransactionChallengeDecisionResponse, TransactionChallengeDecisionResponseStatusEnum, type TransactionChallengeMerchantResponse, type TransactionChallengeResponse, TransactionChallengeResponseCardNetworkEnum, TransactionChallengeResponseStateEnum, type TransactionChallengeTransactionResponse, TransactionChallengeTransactionResponseSubTypeEnum, TransactionChallengeTransactionResponseTransactionTypeEnum, TransactionDetailIconTypeEnum, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionV2Record, type TransactionsPaginationParams, type TransactionsResponse, type TransactionsV2Response, type Transfer, type TransferListResponse, type TransferRequest, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, type UpdatePinResponse, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, type UserTransactionsParam, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, activateCardByTokenOrPan, addExternalCard, addExternalCardWithUserToken, authIOCModule, bookTransfer, cardsIOCModule, changeWlaPassword, checkAndRefreshAuthToken, cleanupOnUnload, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteDocumentForDispute, deleteRegistrationForPushNotifications, development, disputesIOCModule, downloadDocumentForDispute, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountBalances, getAccountHolderGroup, getAccountTransactions, getActiveEnvName, getActiveIocContainer, getActiveTheme, getAllStepsOfDispute, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthApiHeadersResolver, getCachedAuthToken, getCachedAuthTokenExpiration, getCardByToken, getCardholderContext, getCardsByUserToken, getClientId, getConsentById, getConsents, getDepositAccounts, getEnvConfigValueByName, getExternalAccount, getExternalAccountList, getExternalCards, getIconsByName, getLanguageCode, getLogLevel, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getNextTransactionChallenge, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getPinByCardToken, getSessionId, getShowpanByCardToken, getSsoAccessTokenHandler, getStatementAsset, getStatements, getStepOfDisputeByStepId, getTransactionChallengeByToken, getTransactionDetails, getTransactions, getTransferByToken, getTransfers, getUser, getUserProgram, getUserTokenHash, getUserTransactionsV2, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iLoggerService, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, initiateTransfer, isComponentEnabled, isMockModeEnabled, kybIOCModule, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, lockCardByToken, logDebug, logError, logInfo, logWarn, loggingIOCModule, loginWithIdAndPassword, markAccountActivated, markAccountVerified, markPasswordSetupDone, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockFeatureFlagIOCModule, mockIdpIOCModule, mockInvalidCreateUserRequest, mockInvalidKybEvaluationRequest, mockInvalidKybVerificationRequest, mockInvalidKycVerificationRequest, mockKybEvaluationRequest, mockKybEvaluationResponse, mockKybIOCModule, mockKybVerificationRequest, mockKybVerificationResponse, mockKycVerificationRequest, mockKycVerificationResponse, mockLoggingIOCModule, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKybHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postTransactionChallengeDecision, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, putUpdateUser, qa, refreshAccessToken, registerCleanupHandler, registerDeviceForPushNotifications, removeExternalCard, replaceCardByToken, replaceWlaCard, requestOtpCode, resendVerificationEmail, retrieveDocumentForDispute, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveEnvName, setActiveIocContainer, setActiveThemeByName, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthApiHeadersResolver, setCachedAuthToken, setLogLevel, setMockMode, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, startDispute, statementsIOCModule, submitAnswerForDisputeQuestion, submitDispute, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, unlockCardByToken, updateConsentStatus, updateExternalAccount, updatePinByCardToken, uploadDocumentForDispute, usersIOCModule, verifyExternalAccount, verifyOTP, verifyUserDevice };
4439
+ 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, type ActivationActions, type ActivationActionsModel, type Address, type Alert, type AllStepsResponse, type ApiResponse, type AppConfig, AsyncStorageFeatureFlagService, 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, BaseDpopAuthCredentialService, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CREATE_USERS_BAD_REQUEST, CREATE_USERS_INTERNAL_SERVER_ERROR, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, type CardArtUrlJsontype, 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, type ChangePasswordRequest, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, ConsoleLoggerService, type CreateCardRequest, type CreateCardResponse, CreateCardUseCase, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DepositAccountEntity, type DepositAccountEntityJsonType, type DeviceDetails, type Dictionary, Direction, type DisputeSuccessResponse, DpopAuthCredentialService, type DynamicFormQuestion, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, type ExternalCardRequest, type ExternalCardWithUserRequest, type ExternalCardsList, type ExternalCardsRecord, type ExternalCardsResponse, FFLAGS_ASYNC_STORAGE_KEY, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, type GetAccountTransactionsRequest, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, type GetTransactionsResponse, type HandleMFARequiredRequest, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_CLIENT_ID, INTR_GET_LANGUAGE_CODE, INTR_GET_SESSION_ID, INTR_IS_MOCK_MODE_ENABLED, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_MOCK_MODE, 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_IDP_SERVICE, ITF_KYB, ITF_KYC, ITF_LOGGER_SERVICE, 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, InMemSsoAccessTokenService, type InterestTierRateResponse, InterestTierResponseTypeEnum, KYB_ADDRESS_ISSUE_SSN, KYB_BAD_GENERAL_SSN, KYB_DOB_ISSUE_SSN, KYB_LOADING_SSN, KYB_NAME_ISSUE_SSN, KYB_OBAC_ISSUE_SSN, type KybEvaluationRequest, type KybEvaluationResponse, KybEvaluationStatus, type KybValidationRule, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, type LogContext, LogLevel, LogLevelString, type LoginWithPasswordRequest, type LoginWithPasswordResponse, LoyaltyTier, M2mAuthenticatedHttpClient, 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, MockIdpService, MockLoggerService, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OTPVerificationRequest, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, OfferStatus, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, OutageType, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, type RefreshAccessTokenRequest, type RefreshAccessTokenResponse, type RefreshTokenResponse, type RegExpPattern, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, type RequestOtpCodeRequest, type RequestOtpCodeResponse, type ResendVerificationEmailResponse, type ResetPasswordBodyRequest, RestAuthService, RestComponentsRepository, RestIdpService, RestKybRepository, RestKycRepository, RestUsersRepository, RestWlaService, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetPinRequestUsecaseEnum, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SsoAccessTokenHandler, SsoAuthenticatedHttpClient, type StandardOkResponse, StandardizedError, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, type SubmitAnswerPayload, 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, TransactionChallengeAuthenticationMethod, TransactionChallengeCancelReason, type TransactionChallengeDecisionRequest, TransactionChallengeDecisionRequestResultEnum, type TransactionChallengeDecisionResponse, TransactionChallengeDecisionResponseStatusEnum, type TransactionChallengeMerchantResponse, type TransactionChallengeResponse, TransactionChallengeResponseCardNetworkEnum, TransactionChallengeResponseStateEnum, type TransactionChallengeTransactionResponse, TransactionChallengeTransactionResponseSubTypeEnum, TransactionChallengeTransactionResponseTransactionTypeEnum, TransactionDetailIconTypeEnum, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionV2Record, type TransactionsPaginationParams, type TransactionsResponse, type TransactionsV2Response, type Transfer, type TransferListResponse, type TransferRequest, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, type UpdatePinResponse, type UpdatePushNotificationRegistrationRequest, type UserAddressEntity, type UserConfigResponse, type UserDeviceResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, type UserTransactionsParam, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, activateCardByTokenOrPan, addExternalCard, addExternalCardWithUserToken, authIOCModule, bookTransfer, cardsIOCModule, changeWlaPassword, checkAndRefreshAuthToken, cleanupOnUnload, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteDocumentForDispute, deleteRegistrationForPushNotifications, development, disputesIOCModule, downloadDocumentForDispute, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountBalances, getAccountHolderGroup, getAccountTransactions, getActiveEnvName, getActiveIocContainer, getActiveTheme, getAllStepsOfDispute, getAppConfig, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthApiHeadersResolver, getCachedAuthToken, getCachedAuthTokenExpiration, getCardByToken, getCardholderContext, getCardsByUserToken, getClientId, getCommonApiHeaders, getConsentById, getConsents, getDepositAccounts, getEnvConfigValueByName, getExternalAccount, getExternalAccountList, getExternalCards, getIconsByName, getLanguageCode, getLogLevel, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getNextTransactionChallenge, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getPinByCardToken, getSessionId, getShowpanByCardToken, getSsoAccessTokenHandler, getStatementAsset, getStatements, getStepOfDisputeByStepId, getTransactionChallengeByToken, getTransactionDetails, getTransactions, getTransferByToken, getTransfers, getUser, getUserProgram, getUserTokenHash, getUserTransactionsV2, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iLoggerService, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, initiateTransfer, isComponentEnabled, isMockModeEnabled, kybIOCModule, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, lockCardByToken, logDebug, logError, logInfo, logWarn, loggingIOCModule, loginWithIdAndPassword, markAccountActivated, markAccountVerified, markPasswordSetupDone, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockFeatureFlagIOCModule, mockIdpIOCModule, mockInvalidCreateUserRequest, mockInvalidKybEvaluationRequest, mockInvalidKybVerificationRequest, mockInvalidKycVerificationRequest, mockKybEvaluationRequest, mockKybEvaluationResponse, mockKybIOCModule, mockKybVerificationRequest, mockKybVerificationResponse, mockKycVerificationRequest, mockKycVerificationResponse, mockLoggingIOCModule, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKybHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postTransactionChallengeDecision, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, putUpdateUser, qa, refreshAccessToken, registerCleanupHandler, registerDeviceForPushNotifications, removeExternalCard, replaceCardByToken, replaceWlaCard, requestOtpCode, resendVerificationEmail, retrieveDocumentForDispute, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveEnvName, setActiveIocContainer, setActiveThemeByName, setAppConfig, setAuthKeyPair, setAuthParams, setAutoEnableDevFlags, setCachedAuthApiEndpoint, setCachedAuthApiHeadersResolver, setCachedAuthToken, setLogLevel, setMockMode, setSsoAccessTokenHandler, setWlaCardPin, startDispute, statementsIOCModule, submitAnswerForDisputeQuestion, submitDispute, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, unlockCardByToken, updateConsentStatus, updateDevicePushNotificationsRegistration, updateExternalAccount, updatePinByCardToken, uploadDocumentForDispute, usersIOCModule, verifyExternalAccount, verifyOTP, verifyUserDevice };
package/dist/index.d.ts CHANGED
@@ -794,6 +794,14 @@ declare class WlaSdkError extends Error {
794
794
  };
795
795
  }
796
796
 
797
+ declare function setAppConfig(appVersion: string, deviceId: string): void;
798
+
799
+ type AppConfig = {
800
+ appVersion: string;
801
+ deviceId: string;
802
+ };
803
+ declare function getAppConfig(): AppConfig;
804
+
797
805
  declare const commonIOCModule: ContainerModule;
798
806
 
799
807
  declare const mockCommonIOCModule: ContainerModule;
@@ -805,6 +813,8 @@ declare const ITF_REGISTRY_SERVICE: unique symbol;
805
813
  declare function convertObjKeysToCamelCase(inputObj: Dictionary, recursive?: boolean): Dictionary;
806
814
  declare function convertObjKeysToLowerCamelCase(inputObj: Dictionary): Dictionary;
807
815
 
816
+ declare function getCommonApiHeaders(): Record<string, string>;
817
+
808
818
  declare const AUTH_REFRESH_INTERVAL_ID = "authRefreshIntervalId";
809
819
 
810
820
  declare function checkAndRefreshAuthToken(): Promise<void>;
@@ -1401,39 +1411,53 @@ declare function featureFlagIsEnabled(flagName: string): boolean;
1401
1411
 
1402
1412
  declare function loadFeatureFlags(): Promise<void>;
1403
1413
 
1414
+ declare function setAutoEnableDevFlags(enabled: boolean): void;
1415
+
1404
1416
  declare abstract class iFeatureFlagService {
1405
1417
  abstract loadFlagsData(): Promise<void>;
1406
- abstract featureFlagIsEnabled(flagName: string): boolean;
1418
+ abstract initializeFlagValue(flagName: string, defaultValue: boolean): void;
1419
+ abstract getFlagValue(flagName: string): boolean | undefined;
1407
1420
  }
1408
1421
 
1409
1422
  declare class MockFeatureFlagService extends iFeatureFlagService {
1410
1423
  private flagData;
1424
+ constructor();
1425
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1426
+ getFlagValue(flagName: string): boolean | undefined;
1411
1427
  loadMockFlagData(flagData: {
1412
1428
  [key: string]: boolean;
1413
1429
  }): void;
1430
+ setMockFlagValue(flagName: string, value: boolean): void;
1414
1431
  loadFlagsData(): Promise<void>;
1415
- featureFlagIsEnabled(flagName: string): boolean;
1416
1432
  }
1417
1433
 
1418
1434
  declare const featureFlagsIOCModule: ContainerModule;
1419
1435
 
1420
1436
  declare const mockFeatureFlagIOCModule: ContainerModule;
1421
1437
 
1438
+ declare const FFLAGS_ASYNC_STORAGE_KEY = "mqcui-feature-flags";
1439
+ declare class AsyncStorageFeatureFlagService implements iFeatureFlagService {
1440
+ private flagsData;
1441
+ loadFlagsData(): Promise<void>;
1442
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1443
+ getFlagValue(flagName: string): boolean | undefined;
1444
+ }
1445
+
1422
1446
  declare const FFLAGS_SESSION_STORAGE_KEY = "mqcui-feature-flags";
1423
1447
  declare class SessionStorageFeatureFlagService implements iFeatureFlagService {
1424
1448
  private flagsData;
1425
1449
  constructor();
1426
1450
  private internalLoadFlagsData;
1427
1451
  loadFlagsData(): Promise<void>;
1428
- featureFlagIsEnabled(flagName: string): boolean;
1429
- private tryGettingFlagValue;
1430
- private initFalseFlagValue;
1452
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1453
+ getFlagValue(flagName: string): boolean | undefined;
1431
1454
  }
1432
1455
 
1433
1456
  declare class StubFeatureFlagService implements iFeatureFlagService {
1434
1457
  private flagsData;
1435
1458
  loadFlagsData(): Promise<void>;
1436
- featureFlagIsEnabled(flagName: string): boolean;
1459
+ initializeFlagValue(flagName: string, defaultValue: boolean): void;
1460
+ getFlagValue(flagName: string): boolean | undefined;
1437
1461
  setFlag(flagName: string, value: boolean): void;
1438
1462
  }
1439
1463
 
@@ -3896,6 +3920,9 @@ declare enum PushRegistrationRequestDevicePlatformEnum {
3896
3920
  IOS = "IOS",
3897
3921
  ANDROID = "ANDROID"
3898
3922
  }
3923
+ type UpdatePushNotificationRegistrationRequest = {
3924
+ is_active: boolean;
3925
+ };
3899
3926
 
3900
3927
  type ReplaceCardRequest = {
3901
3928
  card_token: string;
@@ -4054,6 +4081,13 @@ type UpdateExternalAccountRequest = {
4054
4081
  status?: ExternalAccountStatus;
4055
4082
  };
4056
4083
 
4084
+ interface UserDeviceResponse {
4085
+ device_id?: string;
4086
+ device_platform?: string;
4087
+ is_primary?: boolean;
4088
+ is_active?: boolean;
4089
+ is_registered_for_push_notifications: boolean;
4090
+ }
4057
4091
  type UserProfileResponse = {
4058
4092
  data: {
4059
4093
  accounts?: Array<AccountResponse>;
@@ -4061,9 +4095,7 @@ type UserProfileResponse = {
4061
4095
  address: Address;
4062
4096
  };
4063
4097
  user_config?: UserConfigResponse;
4064
- user_device?: {
4065
- is_registered_for_push_notifications?: boolean;
4066
- };
4098
+ user_device?: UserDeviceResponse;
4067
4099
  has_pending_transaction_challenges: boolean;
4068
4100
  };
4069
4101
  };
@@ -4224,10 +4256,10 @@ declare abstract class iWlaService {
4224
4256
  data: UserResponse;
4225
4257
  }>;
4226
4258
  abstract registerDeviceForPushNotifications(requestBody: PushRegistrationRequest): Promise<void>;
4259
+ abstract updateDevicePushNotificationRegistration(requestBody: UpdatePushNotificationRegistrationRequest): Promise<void>;
4227
4260
  abstract replaceCard(requestBody: ReplaceCardRequest): Promise<ReplaceCardResponse>;
4228
4261
  abstract revokeConsent(id: string, country_code: string, requestBody: UpdateConsentStatusRequest): Promise<RevokeConsentResponse>;
4229
4262
  abstract searchAtms(requestBody: AtmSearch, requestFilters: AtmSearchFilters): Promise<AtmsResponse>;
4230
- abstract setAppConfig(appVersion: string, deviceId: string, clientIp: string): void;
4231
4263
  abstract setPin(cardToken: string, pin: string, usecase?: SetPinRequestUsecaseEnum): Promise<{
4232
4264
  data?: UserResponse;
4233
4265
  }>;
@@ -4249,9 +4281,6 @@ declare class RestWlaService implements iWlaService {
4249
4281
  private cacheService;
4250
4282
  private httpClient;
4251
4283
  private unauthenticatedHttpClient;
4252
- setAppConfig(appVersion: string, deviceId: string, clientIp: string): void;
4253
- private getAppConfig;
4254
- private getCommonWlaApiHeaders;
4255
4284
  private transitionOnboardingStatus;
4256
4285
  getUserProfileDetails(): Promise<any>;
4257
4286
  createCard(requestBody: CreateCardRequest): Promise<CreateCardResponse>;
@@ -4268,6 +4297,7 @@ declare class RestWlaService implements iWlaService {
4268
4297
  data: UserResponse;
4269
4298
  }>;
4270
4299
  registerDeviceForPushNotifications(requestBody: PushRegistrationRequest): Promise<void>;
4300
+ updateDevicePushNotificationRegistration(requestBody: UpdatePushNotificationRegistrationRequest): Promise<void>;
4271
4301
  deleteRegistrationForPushNotifications(): Promise<void>;
4272
4302
  getOffers(): Promise<OfferListResponse>;
4273
4303
  getOfferDetails(offerId: string): Promise<OfferResponse>;
@@ -4376,8 +4406,6 @@ declare function setWlaCardPin(cardToken: string, pin: string, usecase?: SetPinR
4376
4406
  data?: UserResponse | undefined;
4377
4407
  }>;
4378
4408
 
4379
- declare function setWlaConfig(appVersion: string, deviceId: string, clientIp: string): Promise<void>;
4380
-
4381
4409
  declare function updateConsentStatus(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
4382
4410
 
4383
4411
  declare function updateExternalAccount(token: string, payload: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
@@ -4400,10 +4428,12 @@ declare function getNextTransactionChallenge(): Promise<TransactionChallengeResp
4400
4428
 
4401
4429
  declare function postTransactionChallengeDecision(challenge_token: string, body: TransactionChallengeDecisionRequest): Promise<TransactionChallengeDecisionResponse>;
4402
4430
 
4431
+ declare function updateDevicePushNotificationsRegistration(requestBody: UpdatePushNotificationRegistrationRequest): Promise<void>;
4432
+
4403
4433
  declare const WlaIocModule: ContainerModule;
4404
4434
 
4405
4435
  declare const ITF_WLA_SERVICE: unique symbol;
4406
4436
 
4407
4437
  declare const container: Container;
4408
4438
 
4409
- 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, type ActivationActions, type ActivationActionsModel, type Address, type Alert, 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, BaseDpopAuthCredentialService, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CREATE_USERS_BAD_REQUEST, CREATE_USERS_INTERNAL_SERVER_ERROR, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, type CardArtUrlJsontype, 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, type ChangePasswordRequest, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, ConsoleLoggerService, type CreateCardRequest, type CreateCardResponse, CreateCardUseCase, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DepositAccountEntity, type DepositAccountEntityJsonType, type DeviceDetails, type Dictionary, Direction, type DisputeSuccessResponse, DpopAuthCredentialService, type DynamicFormQuestion, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, type ExternalCardRequest, type ExternalCardWithUserRequest, type ExternalCardsList, type ExternalCardsRecord, type ExternalCardsResponse, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, type GetAccountTransactionsRequest, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, type GetTransactionsResponse, type HandleMFARequiredRequest, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_CLIENT_ID, INTR_GET_LANGUAGE_CODE, INTR_GET_SESSION_ID, INTR_IS_MOCK_MODE_ENABLED, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_MOCK_MODE, 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_IDP_SERVICE, ITF_KYB, ITF_KYC, ITF_LOGGER_SERVICE, 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, InMemSsoAccessTokenService, type InterestTierRateResponse, InterestTierResponseTypeEnum, KYB_ADDRESS_ISSUE_SSN, KYB_BAD_GENERAL_SSN, KYB_DOB_ISSUE_SSN, KYB_LOADING_SSN, KYB_NAME_ISSUE_SSN, KYB_OBAC_ISSUE_SSN, type KybEvaluationRequest, type KybEvaluationResponse, KybEvaluationStatus, type KybValidationRule, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, type LogContext, LogLevel, LogLevelString, type LoginWithPasswordRequest, type LoginWithPasswordResponse, LoyaltyTier, M2mAuthenticatedHttpClient, 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, MockIdpService, MockLoggerService, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OTPVerificationRequest, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, OfferStatus, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, OutageType, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, type RefreshAccessTokenRequest, type RefreshAccessTokenResponse, type RefreshTokenResponse, type RegExpPattern, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, type RequestOtpCodeRequest, type RequestOtpCodeResponse, type ResendVerificationEmailResponse, type ResetPasswordBodyRequest, RestAuthService, RestComponentsRepository, RestIdpService, RestKybRepository, RestKycRepository, RestUsersRepository, RestWlaService, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetPinRequestUsecaseEnum, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SsoAccessTokenHandler, SsoAuthenticatedHttpClient, type StandardOkResponse, StandardizedError, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, type SubmitAnswerPayload, 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, TransactionChallengeAuthenticationMethod, TransactionChallengeCancelReason, type TransactionChallengeDecisionRequest, TransactionChallengeDecisionRequestResultEnum, type TransactionChallengeDecisionResponse, TransactionChallengeDecisionResponseStatusEnum, type TransactionChallengeMerchantResponse, type TransactionChallengeResponse, TransactionChallengeResponseCardNetworkEnum, TransactionChallengeResponseStateEnum, type TransactionChallengeTransactionResponse, TransactionChallengeTransactionResponseSubTypeEnum, TransactionChallengeTransactionResponseTransactionTypeEnum, TransactionDetailIconTypeEnum, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionV2Record, type TransactionsPaginationParams, type TransactionsResponse, type TransactionsV2Response, type Transfer, type TransferListResponse, type TransferRequest, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, type UpdatePinResponse, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, type UserTransactionsParam, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, activateCardByTokenOrPan, addExternalCard, addExternalCardWithUserToken, authIOCModule, bookTransfer, cardsIOCModule, changeWlaPassword, checkAndRefreshAuthToken, cleanupOnUnload, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteDocumentForDispute, deleteRegistrationForPushNotifications, development, disputesIOCModule, downloadDocumentForDispute, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountBalances, getAccountHolderGroup, getAccountTransactions, getActiveEnvName, getActiveIocContainer, getActiveTheme, getAllStepsOfDispute, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthApiHeadersResolver, getCachedAuthToken, getCachedAuthTokenExpiration, getCardByToken, getCardholderContext, getCardsByUserToken, getClientId, getConsentById, getConsents, getDepositAccounts, getEnvConfigValueByName, getExternalAccount, getExternalAccountList, getExternalCards, getIconsByName, getLanguageCode, getLogLevel, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getNextTransactionChallenge, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getPinByCardToken, getSessionId, getShowpanByCardToken, getSsoAccessTokenHandler, getStatementAsset, getStatements, getStepOfDisputeByStepId, getTransactionChallengeByToken, getTransactionDetails, getTransactions, getTransferByToken, getTransfers, getUser, getUserProgram, getUserTokenHash, getUserTransactionsV2, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iLoggerService, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, initiateTransfer, isComponentEnabled, isMockModeEnabled, kybIOCModule, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, lockCardByToken, logDebug, logError, logInfo, logWarn, loggingIOCModule, loginWithIdAndPassword, markAccountActivated, markAccountVerified, markPasswordSetupDone, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockFeatureFlagIOCModule, mockIdpIOCModule, mockInvalidCreateUserRequest, mockInvalidKybEvaluationRequest, mockInvalidKybVerificationRequest, mockInvalidKycVerificationRequest, mockKybEvaluationRequest, mockKybEvaluationResponse, mockKybIOCModule, mockKybVerificationRequest, mockKybVerificationResponse, mockKycVerificationRequest, mockKycVerificationResponse, mockLoggingIOCModule, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKybHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postTransactionChallengeDecision, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, putUpdateUser, qa, refreshAccessToken, registerCleanupHandler, registerDeviceForPushNotifications, removeExternalCard, replaceCardByToken, replaceWlaCard, requestOtpCode, resendVerificationEmail, retrieveDocumentForDispute, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveEnvName, setActiveIocContainer, setActiveThemeByName, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthApiHeadersResolver, setCachedAuthToken, setLogLevel, setMockMode, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, startDispute, statementsIOCModule, submitAnswerForDisputeQuestion, submitDispute, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, unlockCardByToken, updateConsentStatus, updateExternalAccount, updatePinByCardToken, uploadDocumentForDispute, usersIOCModule, verifyExternalAccount, verifyOTP, verifyUserDevice };
4439
+ 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, type ActivationActions, type ActivationActionsModel, type Address, type Alert, type AllStepsResponse, type ApiResponse, type AppConfig, AsyncStorageFeatureFlagService, 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, BaseDpopAuthCredentialService, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CREATE_USERS_BAD_REQUEST, CREATE_USERS_INTERNAL_SERVER_ERROR, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, type CardArtUrlJsontype, 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, type ChangePasswordRequest, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, ConsoleLoggerService, type CreateCardRequest, type CreateCardResponse, CreateCardUseCase, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DepositAccountEntity, type DepositAccountEntityJsonType, type DeviceDetails, type Dictionary, Direction, type DisputeSuccessResponse, DpopAuthCredentialService, type DynamicFormQuestion, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, type ExternalCardRequest, type ExternalCardWithUserRequest, type ExternalCardsList, type ExternalCardsRecord, type ExternalCardsResponse, FFLAGS_ASYNC_STORAGE_KEY, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, type GetAccountTransactionsRequest, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, type GetTransactionsResponse, type HandleMFARequiredRequest, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_CLIENT_ID, INTR_GET_LANGUAGE_CODE, INTR_GET_SESSION_ID, INTR_IS_MOCK_MODE_ENABLED, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_MOCK_MODE, 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_IDP_SERVICE, ITF_KYB, ITF_KYC, ITF_LOGGER_SERVICE, 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, InMemSsoAccessTokenService, type InterestTierRateResponse, InterestTierResponseTypeEnum, KYB_ADDRESS_ISSUE_SSN, KYB_BAD_GENERAL_SSN, KYB_DOB_ISSUE_SSN, KYB_LOADING_SSN, KYB_NAME_ISSUE_SSN, KYB_OBAC_ISSUE_SSN, type KybEvaluationRequest, type KybEvaluationResponse, KybEvaluationStatus, type KybValidationRule, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, type LogContext, LogLevel, LogLevelString, type LoginWithPasswordRequest, type LoginWithPasswordResponse, LoyaltyTier, M2mAuthenticatedHttpClient, 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, MockIdpService, MockLoggerService, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OTPVerificationRequest, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, OfferStatus, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, OutageType, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, type RefreshAccessTokenRequest, type RefreshAccessTokenResponse, type RefreshTokenResponse, type RegExpPattern, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, type RequestOtpCodeRequest, type RequestOtpCodeResponse, type ResendVerificationEmailResponse, type ResetPasswordBodyRequest, RestAuthService, RestComponentsRepository, RestIdpService, RestKybRepository, RestKycRepository, RestUsersRepository, RestWlaService, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetPinRequestUsecaseEnum, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SsoAccessTokenHandler, SsoAuthenticatedHttpClient, type StandardOkResponse, StandardizedError, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, type SubmitAnswerPayload, 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, TransactionChallengeAuthenticationMethod, TransactionChallengeCancelReason, type TransactionChallengeDecisionRequest, TransactionChallengeDecisionRequestResultEnum, type TransactionChallengeDecisionResponse, TransactionChallengeDecisionResponseStatusEnum, type TransactionChallengeMerchantResponse, type TransactionChallengeResponse, TransactionChallengeResponseCardNetworkEnum, TransactionChallengeResponseStateEnum, type TransactionChallengeTransactionResponse, TransactionChallengeTransactionResponseSubTypeEnum, TransactionChallengeTransactionResponseTransactionTypeEnum, TransactionDetailIconTypeEnum, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionV2Record, type TransactionsPaginationParams, type TransactionsResponse, type TransactionsV2Response, type Transfer, type TransferListResponse, type TransferRequest, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, type UpdatePinResponse, type UpdatePushNotificationRegistrationRequest, type UserAddressEntity, type UserConfigResponse, type UserDeviceResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, type UserTransactionsParam, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, activateCardByTokenOrPan, addExternalCard, addExternalCardWithUserToken, authIOCModule, bookTransfer, cardsIOCModule, changeWlaPassword, checkAndRefreshAuthToken, cleanupOnUnload, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteDocumentForDispute, deleteRegistrationForPushNotifications, development, disputesIOCModule, downloadDocumentForDispute, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountBalances, getAccountHolderGroup, getAccountTransactions, getActiveEnvName, getActiveIocContainer, getActiveTheme, getAllStepsOfDispute, getAppConfig, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthApiHeadersResolver, getCachedAuthToken, getCachedAuthTokenExpiration, getCardByToken, getCardholderContext, getCardsByUserToken, getClientId, getCommonApiHeaders, getConsentById, getConsents, getDepositAccounts, getEnvConfigValueByName, getExternalAccount, getExternalAccountList, getExternalCards, getIconsByName, getLanguageCode, getLogLevel, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getNextTransactionChallenge, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getPinByCardToken, getSessionId, getShowpanByCardToken, getSsoAccessTokenHandler, getStatementAsset, getStatements, getStepOfDisputeByStepId, getTransactionChallengeByToken, getTransactionDetails, getTransactions, getTransferByToken, getTransfers, getUser, getUserProgram, getUserTokenHash, getUserTransactionsV2, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iLoggerService, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, initiateTransfer, isComponentEnabled, isMockModeEnabled, kybIOCModule, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, lockCardByToken, logDebug, logError, logInfo, logWarn, loggingIOCModule, loginWithIdAndPassword, markAccountActivated, markAccountVerified, markPasswordSetupDone, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockFeatureFlagIOCModule, mockIdpIOCModule, mockInvalidCreateUserRequest, mockInvalidKybEvaluationRequest, mockInvalidKybVerificationRequest, mockInvalidKycVerificationRequest, mockKybEvaluationRequest, mockKybEvaluationResponse, mockKybIOCModule, mockKybVerificationRequest, mockKybVerificationResponse, mockKycVerificationRequest, mockKycVerificationResponse, mockLoggingIOCModule, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKybHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postTransactionChallengeDecision, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, putUpdateUser, qa, refreshAccessToken, registerCleanupHandler, registerDeviceForPushNotifications, removeExternalCard, replaceCardByToken, replaceWlaCard, requestOtpCode, resendVerificationEmail, retrieveDocumentForDispute, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveEnvName, setActiveIocContainer, setActiveThemeByName, setAppConfig, setAuthKeyPair, setAuthParams, setAutoEnableDevFlags, setCachedAuthApiEndpoint, setCachedAuthApiHeadersResolver, setCachedAuthToken, setLogLevel, setMockMode, setSsoAccessTokenHandler, setWlaCardPin, startDispute, statementsIOCModule, submitAnswerForDisputeQuestion, submitDispute, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, unlockCardByToken, updateConsentStatus, updateDevicePushNotificationsRegistration, updateExternalAccount, updatePinByCardToken, uploadDocumentForDispute, usersIOCModule, verifyExternalAccount, verifyOTP, verifyUserDevice };