@marqeta/ux-toolkit-sdk-javascript 0.27.0 → 0.28.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 +67 -52
- package/dist/index.d.ts +67 -52
- package/dist/index.js +228 -44
- package/dist/index.mjs +217 -45
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2581,6 +2581,27 @@ declare const INTR_PUT_UPDATE_USER: unique symbol;
|
|
|
2581
2581
|
|
|
2582
2582
|
declare const mockUsersIOCModule: ContainerModule;
|
|
2583
2583
|
|
|
2584
|
+
type AccountResponse = {
|
|
2585
|
+
account_holder_name?: string;
|
|
2586
|
+
account_number?: string;
|
|
2587
|
+
balance: number;
|
|
2588
|
+
branch_code?: string;
|
|
2589
|
+
currency_code: string;
|
|
2590
|
+
last_four?: string;
|
|
2591
|
+
routing_number?: string;
|
|
2592
|
+
token: string;
|
|
2593
|
+
type: AccountType;
|
|
2594
|
+
};
|
|
2595
|
+
declare enum AccountType {
|
|
2596
|
+
CHECKING = "CHECKING",
|
|
2597
|
+
SAVINGS = "SAVINGS"
|
|
2598
|
+
}
|
|
2599
|
+
type AccountInterestResponse = {
|
|
2600
|
+
currency_code: string;
|
|
2601
|
+
interest_amount: number;
|
|
2602
|
+
year: number;
|
|
2603
|
+
};
|
|
2604
|
+
|
|
2584
2605
|
declare enum TransactionStatus {
|
|
2585
2606
|
PENDING = "PENDING",
|
|
2586
2607
|
BLOCKED = "BLOCKED",
|
|
@@ -3107,25 +3128,32 @@ declare enum PushRegistrationRequestDevicePlatformEnum {
|
|
|
3107
3128
|
ANDROID = "ANDROID"
|
|
3108
3129
|
}
|
|
3109
3130
|
|
|
3110
|
-
type
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
currency_code
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
token: string;
|
|
3119
|
-
type: AccountType;
|
|
3131
|
+
type RewardSummary = {
|
|
3132
|
+
count: number;
|
|
3133
|
+
end_index: number;
|
|
3134
|
+
is_more: boolean;
|
|
3135
|
+
start_index: number;
|
|
3136
|
+
currency_code?: string;
|
|
3137
|
+
data?: Array<RewardPeriod>;
|
|
3138
|
+
next_reward_tier?: string;
|
|
3120
3139
|
};
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3140
|
+
type RewardPeriod = {
|
|
3141
|
+
end_date?: string;
|
|
3142
|
+
reward_categories?: Array<RewardCategory>;
|
|
3143
|
+
reward_tier?: string;
|
|
3144
|
+
start_date?: string;
|
|
3145
|
+
total_rewards_earned?: number;
|
|
3146
|
+
};
|
|
3147
|
+
type RewardCategory = {
|
|
3148
|
+
description?: string;
|
|
3149
|
+
percentage?: number;
|
|
3150
|
+
purchase_count?: number;
|
|
3151
|
+
reward_earned?: number;
|
|
3152
|
+
};
|
|
3153
|
+
|
|
3154
|
+
type UpdateExternalAccountRequest = {
|
|
3155
|
+
alias?: string;
|
|
3156
|
+
status?: ExternalAccountStatus;
|
|
3129
3157
|
};
|
|
3130
3158
|
|
|
3131
3159
|
type UserProfileResponse = {
|
|
@@ -3160,40 +3188,22 @@ type Address = {
|
|
|
3160
3188
|
zip?: string;
|
|
3161
3189
|
};
|
|
3162
3190
|
|
|
3163
|
-
type RewardSummary = {
|
|
3164
|
-
count: number;
|
|
3165
|
-
end_index: number;
|
|
3166
|
-
is_more: boolean;
|
|
3167
|
-
start_index: number;
|
|
3168
|
-
currency_code?: string;
|
|
3169
|
-
data?: Array<RewardPeriod>;
|
|
3170
|
-
next_reward_tier?: string;
|
|
3171
|
-
};
|
|
3172
|
-
type RewardPeriod = {
|
|
3173
|
-
end_date?: string;
|
|
3174
|
-
reward_categories?: Array<RewardCategory>;
|
|
3175
|
-
reward_tier?: string;
|
|
3176
|
-
start_date?: string;
|
|
3177
|
-
total_rewards_earned?: number;
|
|
3178
|
-
};
|
|
3179
|
-
type RewardCategory = {
|
|
3180
|
-
description?: string;
|
|
3181
|
-
percentage?: number;
|
|
3182
|
-
purchase_count?: number;
|
|
3183
|
-
reward_earned?: number;
|
|
3184
|
-
};
|
|
3185
|
-
|
|
3186
3191
|
declare abstract class iWlaService {
|
|
3187
3192
|
abstract bookTransfer(requestBody: BookTransferRequest): Promise<BookTransferResponse>;
|
|
3188
3193
|
abstract createCard(requestBody: CardRequest): Promise<CreateCardResponse>;
|
|
3189
3194
|
abstract createOriginationTransfer(requestBody: OriginationTransferRequest): Promise<OriginationTransferResponse>;
|
|
3190
3195
|
abstract createWlaExternalAccount(requestBody: ExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3191
3196
|
abstract deleteRegistrationForPushNotifications(): Promise<void>;
|
|
3197
|
+
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean): Promise<AccountResponse & {
|
|
3198
|
+
ytd?: AccountInterestResponse;
|
|
3199
|
+
}>;
|
|
3192
3200
|
abstract getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3193
3201
|
abstract getCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3202
|
+
abstract getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3194
3203
|
abstract getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3195
3204
|
abstract getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
3196
3205
|
abstract getOffers(): Promise<OfferListResponse>;
|
|
3206
|
+
abstract getRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3197
3207
|
abstract getTransactionByToken(transactionToken: string): Promise<WlaTransactionDetailsResponse>;
|
|
3198
3208
|
abstract getUserProfileDetails(): Promise<UserProfileResponse>;
|
|
3199
3209
|
abstract markAccountVerified(): Promise<{
|
|
@@ -3204,11 +3214,8 @@ declare abstract class iWlaService {
|
|
|
3204
3214
|
abstract setPin(cardToken: string, pin: string): Promise<{
|
|
3205
3215
|
data: UserResponse;
|
|
3206
3216
|
}>;
|
|
3217
|
+
abstract updateExternalAccount(token: string, requestBody: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3207
3218
|
abstract verifyExternalAccount(requestBody: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3208
|
-
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean): Promise<AccountResponse & {
|
|
3209
|
-
ytd?: AccountInterestResponse;
|
|
3210
|
-
}>;
|
|
3211
|
-
abstract getRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3212
3219
|
}
|
|
3213
3220
|
|
|
3214
3221
|
declare class RestWlaService implements iWlaService {
|
|
@@ -3232,9 +3239,11 @@ declare class RestWlaService implements iWlaService {
|
|
|
3232
3239
|
getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
3233
3240
|
getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3234
3241
|
getCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3242
|
+
getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3235
3243
|
getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3236
3244
|
createWlaExternalAccount(requestBody: ExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3237
3245
|
verifyExternalAccount(requestBody: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3246
|
+
updateExternalAccount(token: string, requestBody: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3238
3247
|
getTransactionByToken(transactionToken: string): Promise<WlaTransactionDetailsResponse>;
|
|
3239
3248
|
bookTransfer(requestBody: BookTransferRequest): Promise<BookTransferResponse>;
|
|
3240
3249
|
createOriginationTransfer(requestBody: OriginationTransferRequest): Promise<OriginationTransferResponse>;
|
|
@@ -3246,6 +3255,8 @@ declare class RestWlaService implements iWlaService {
|
|
|
3246
3255
|
|
|
3247
3256
|
declare function bookTransfer(payload: BookTransferRequest): Promise<BookTransferResponse>;
|
|
3248
3257
|
|
|
3258
|
+
declare function createOriginationTransfer(payload: OriginationTransferRequest): Promise<OriginationTransferResponse>;
|
|
3259
|
+
|
|
3249
3260
|
declare function createWlaCard(payload: CardRequest): Promise<CreateCardResponse>;
|
|
3250
3261
|
|
|
3251
3262
|
declare function createWlaExternalAccount(payload: ExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
@@ -3254,14 +3265,22 @@ declare function deleteRegistrationForPushNotifications(): Promise<void>;
|
|
|
3254
3265
|
|
|
3255
3266
|
declare function getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3256
3267
|
|
|
3268
|
+
declare function getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3269
|
+
|
|
3257
3270
|
declare function getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3258
3271
|
|
|
3259
3272
|
declare function getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
3260
3273
|
|
|
3261
3274
|
declare function getOffers(): Promise<OfferListResponse>;
|
|
3262
3275
|
|
|
3276
|
+
declare function getWlaAccountDetails(accountToken: string, includeYtdInterest?: boolean): Promise<AccountResponse & {
|
|
3277
|
+
ytd?: AccountInterestResponse;
|
|
3278
|
+
}>;
|
|
3279
|
+
|
|
3263
3280
|
declare function getWlaCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3264
3281
|
|
|
3282
|
+
declare function getWlaRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3283
|
+
|
|
3265
3284
|
declare function getWlaTransactionByToken(transactionToken: string): Promise<WlaTransactionDetailsResponse>;
|
|
3266
3285
|
|
|
3267
3286
|
declare function getWlaUserProfile(): Promise<UserProfileResponse>;
|
|
@@ -3278,13 +3297,9 @@ declare function setWlaCardPin(cardToken: string, pin: string): Promise<{
|
|
|
3278
3297
|
|
|
3279
3298
|
declare function setWlaConfig(appVersion: string, deviceId: string, clientIp: string): Promise<void>;
|
|
3280
3299
|
|
|
3281
|
-
declare function
|
|
3300
|
+
declare function updateExternalAccount(token: string, payload: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3282
3301
|
|
|
3283
|
-
declare function
|
|
3284
|
-
ytd?: AccountInterestResponse;
|
|
3285
|
-
}>;
|
|
3286
|
-
|
|
3287
|
-
declare function getWlaRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3302
|
+
declare function verifyExternalAccount(payload: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3288
3303
|
|
|
3289
3304
|
declare const WlaIocModule: ContainerModule;
|
|
3290
3305
|
|
|
@@ -3294,4 +3309,4 @@ declare const container: Container;
|
|
|
3294
3309
|
|
|
3295
3310
|
declare const reactNativeContainer: Container;
|
|
3296
3311
|
|
|
3297
|
-
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 AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, BAD_GENERAL_SSN, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, 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, 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, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, 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, GetCachedAuthToken, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, 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_CACHED_AUTH_TOKEN, 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_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_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, 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, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, OBAC_ISSUE_SSN, type OfferListResponse, type OfferResponse, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, 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 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, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, 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_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, commonIOCModule, componentsIOCModule, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getCardholderContext, getClientId, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getSessionId, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthService, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, 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, container as sdkJsContainer, setActiveIocContainer, setCachedAuthToken, setWlaCardPin, setWlaConfig, startAuthTokenRefreshPolling, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, usersIOCModule, verifyExternalAccount };
|
|
3312
|
+
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 AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, BAD_GENERAL_SSN, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, 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, 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, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, 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, GetCachedAuthToken, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, 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_CACHED_AUTH_TOKEN, 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_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_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, 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, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, OBAC_ISSUE_SSN, type OfferListResponse, type OfferResponse, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, 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 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, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, 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_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, commonIOCModule, componentsIOCModule, createOriginationTransfer, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getCardholderContext, getClientId, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getSessionId, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthService, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, 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, container as sdkJsContainer, setActiveIocContainer, setCachedAuthToken, setWlaCardPin, setWlaConfig, startAuthTokenRefreshPolling, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateExternalAccount, usersIOCModule, verifyExternalAccount };
|
package/dist/index.d.ts
CHANGED
|
@@ -2581,6 +2581,27 @@ declare const INTR_PUT_UPDATE_USER: unique symbol;
|
|
|
2581
2581
|
|
|
2582
2582
|
declare const mockUsersIOCModule: ContainerModule;
|
|
2583
2583
|
|
|
2584
|
+
type AccountResponse = {
|
|
2585
|
+
account_holder_name?: string;
|
|
2586
|
+
account_number?: string;
|
|
2587
|
+
balance: number;
|
|
2588
|
+
branch_code?: string;
|
|
2589
|
+
currency_code: string;
|
|
2590
|
+
last_four?: string;
|
|
2591
|
+
routing_number?: string;
|
|
2592
|
+
token: string;
|
|
2593
|
+
type: AccountType;
|
|
2594
|
+
};
|
|
2595
|
+
declare enum AccountType {
|
|
2596
|
+
CHECKING = "CHECKING",
|
|
2597
|
+
SAVINGS = "SAVINGS"
|
|
2598
|
+
}
|
|
2599
|
+
type AccountInterestResponse = {
|
|
2600
|
+
currency_code: string;
|
|
2601
|
+
interest_amount: number;
|
|
2602
|
+
year: number;
|
|
2603
|
+
};
|
|
2604
|
+
|
|
2584
2605
|
declare enum TransactionStatus {
|
|
2585
2606
|
PENDING = "PENDING",
|
|
2586
2607
|
BLOCKED = "BLOCKED",
|
|
@@ -3107,25 +3128,32 @@ declare enum PushRegistrationRequestDevicePlatformEnum {
|
|
|
3107
3128
|
ANDROID = "ANDROID"
|
|
3108
3129
|
}
|
|
3109
3130
|
|
|
3110
|
-
type
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
currency_code
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
token: string;
|
|
3119
|
-
type: AccountType;
|
|
3131
|
+
type RewardSummary = {
|
|
3132
|
+
count: number;
|
|
3133
|
+
end_index: number;
|
|
3134
|
+
is_more: boolean;
|
|
3135
|
+
start_index: number;
|
|
3136
|
+
currency_code?: string;
|
|
3137
|
+
data?: Array<RewardPeriod>;
|
|
3138
|
+
next_reward_tier?: string;
|
|
3120
3139
|
};
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3140
|
+
type RewardPeriod = {
|
|
3141
|
+
end_date?: string;
|
|
3142
|
+
reward_categories?: Array<RewardCategory>;
|
|
3143
|
+
reward_tier?: string;
|
|
3144
|
+
start_date?: string;
|
|
3145
|
+
total_rewards_earned?: number;
|
|
3146
|
+
};
|
|
3147
|
+
type RewardCategory = {
|
|
3148
|
+
description?: string;
|
|
3149
|
+
percentage?: number;
|
|
3150
|
+
purchase_count?: number;
|
|
3151
|
+
reward_earned?: number;
|
|
3152
|
+
};
|
|
3153
|
+
|
|
3154
|
+
type UpdateExternalAccountRequest = {
|
|
3155
|
+
alias?: string;
|
|
3156
|
+
status?: ExternalAccountStatus;
|
|
3129
3157
|
};
|
|
3130
3158
|
|
|
3131
3159
|
type UserProfileResponse = {
|
|
@@ -3160,40 +3188,22 @@ type Address = {
|
|
|
3160
3188
|
zip?: string;
|
|
3161
3189
|
};
|
|
3162
3190
|
|
|
3163
|
-
type RewardSummary = {
|
|
3164
|
-
count: number;
|
|
3165
|
-
end_index: number;
|
|
3166
|
-
is_more: boolean;
|
|
3167
|
-
start_index: number;
|
|
3168
|
-
currency_code?: string;
|
|
3169
|
-
data?: Array<RewardPeriod>;
|
|
3170
|
-
next_reward_tier?: string;
|
|
3171
|
-
};
|
|
3172
|
-
type RewardPeriod = {
|
|
3173
|
-
end_date?: string;
|
|
3174
|
-
reward_categories?: Array<RewardCategory>;
|
|
3175
|
-
reward_tier?: string;
|
|
3176
|
-
start_date?: string;
|
|
3177
|
-
total_rewards_earned?: number;
|
|
3178
|
-
};
|
|
3179
|
-
type RewardCategory = {
|
|
3180
|
-
description?: string;
|
|
3181
|
-
percentage?: number;
|
|
3182
|
-
purchase_count?: number;
|
|
3183
|
-
reward_earned?: number;
|
|
3184
|
-
};
|
|
3185
|
-
|
|
3186
3191
|
declare abstract class iWlaService {
|
|
3187
3192
|
abstract bookTransfer(requestBody: BookTransferRequest): Promise<BookTransferResponse>;
|
|
3188
3193
|
abstract createCard(requestBody: CardRequest): Promise<CreateCardResponse>;
|
|
3189
3194
|
abstract createOriginationTransfer(requestBody: OriginationTransferRequest): Promise<OriginationTransferResponse>;
|
|
3190
3195
|
abstract createWlaExternalAccount(requestBody: ExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3191
3196
|
abstract deleteRegistrationForPushNotifications(): Promise<void>;
|
|
3197
|
+
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean): Promise<AccountResponse & {
|
|
3198
|
+
ytd?: AccountInterestResponse;
|
|
3199
|
+
}>;
|
|
3192
3200
|
abstract getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3193
3201
|
abstract getCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3202
|
+
abstract getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3194
3203
|
abstract getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3195
3204
|
abstract getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
3196
3205
|
abstract getOffers(): Promise<OfferListResponse>;
|
|
3206
|
+
abstract getRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3197
3207
|
abstract getTransactionByToken(transactionToken: string): Promise<WlaTransactionDetailsResponse>;
|
|
3198
3208
|
abstract getUserProfileDetails(): Promise<UserProfileResponse>;
|
|
3199
3209
|
abstract markAccountVerified(): Promise<{
|
|
@@ -3204,11 +3214,8 @@ declare abstract class iWlaService {
|
|
|
3204
3214
|
abstract setPin(cardToken: string, pin: string): Promise<{
|
|
3205
3215
|
data: UserResponse;
|
|
3206
3216
|
}>;
|
|
3217
|
+
abstract updateExternalAccount(token: string, requestBody: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3207
3218
|
abstract verifyExternalAccount(requestBody: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3208
|
-
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean): Promise<AccountResponse & {
|
|
3209
|
-
ytd?: AccountInterestResponse;
|
|
3210
|
-
}>;
|
|
3211
|
-
abstract getRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3212
3219
|
}
|
|
3213
3220
|
|
|
3214
3221
|
declare class RestWlaService implements iWlaService {
|
|
@@ -3232,9 +3239,11 @@ declare class RestWlaService implements iWlaService {
|
|
|
3232
3239
|
getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
3233
3240
|
getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3234
3241
|
getCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3242
|
+
getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3235
3243
|
getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3236
3244
|
createWlaExternalAccount(requestBody: ExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3237
3245
|
verifyExternalAccount(requestBody: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3246
|
+
updateExternalAccount(token: string, requestBody: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3238
3247
|
getTransactionByToken(transactionToken: string): Promise<WlaTransactionDetailsResponse>;
|
|
3239
3248
|
bookTransfer(requestBody: BookTransferRequest): Promise<BookTransferResponse>;
|
|
3240
3249
|
createOriginationTransfer(requestBody: OriginationTransferRequest): Promise<OriginationTransferResponse>;
|
|
@@ -3246,6 +3255,8 @@ declare class RestWlaService implements iWlaService {
|
|
|
3246
3255
|
|
|
3247
3256
|
declare function bookTransfer(payload: BookTransferRequest): Promise<BookTransferResponse>;
|
|
3248
3257
|
|
|
3258
|
+
declare function createOriginationTransfer(payload: OriginationTransferRequest): Promise<OriginationTransferResponse>;
|
|
3259
|
+
|
|
3249
3260
|
declare function createWlaCard(payload: CardRequest): Promise<CreateCardResponse>;
|
|
3250
3261
|
|
|
3251
3262
|
declare function createWlaExternalAccount(payload: ExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
@@ -3254,14 +3265,22 @@ declare function deleteRegistrationForPushNotifications(): Promise<void>;
|
|
|
3254
3265
|
|
|
3255
3266
|
declare function getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3256
3267
|
|
|
3268
|
+
declare function getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3269
|
+
|
|
3257
3270
|
declare function getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3258
3271
|
|
|
3259
3272
|
declare function getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
3260
3273
|
|
|
3261
3274
|
declare function getOffers(): Promise<OfferListResponse>;
|
|
3262
3275
|
|
|
3276
|
+
declare function getWlaAccountDetails(accountToken: string, includeYtdInterest?: boolean): Promise<AccountResponse & {
|
|
3277
|
+
ytd?: AccountInterestResponse;
|
|
3278
|
+
}>;
|
|
3279
|
+
|
|
3263
3280
|
declare function getWlaCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3264
3281
|
|
|
3282
|
+
declare function getWlaRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3283
|
+
|
|
3265
3284
|
declare function getWlaTransactionByToken(transactionToken: string): Promise<WlaTransactionDetailsResponse>;
|
|
3266
3285
|
|
|
3267
3286
|
declare function getWlaUserProfile(): Promise<UserProfileResponse>;
|
|
@@ -3278,13 +3297,9 @@ declare function setWlaCardPin(cardToken: string, pin: string): Promise<{
|
|
|
3278
3297
|
|
|
3279
3298
|
declare function setWlaConfig(appVersion: string, deviceId: string, clientIp: string): Promise<void>;
|
|
3280
3299
|
|
|
3281
|
-
declare function
|
|
3300
|
+
declare function updateExternalAccount(token: string, payload: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3282
3301
|
|
|
3283
|
-
declare function
|
|
3284
|
-
ytd?: AccountInterestResponse;
|
|
3285
|
-
}>;
|
|
3286
|
-
|
|
3287
|
-
declare function getWlaRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3302
|
+
declare function verifyExternalAccount(payload: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3288
3303
|
|
|
3289
3304
|
declare const WlaIocModule: ContainerModule;
|
|
3290
3305
|
|
|
@@ -3294,4 +3309,4 @@ declare const container: Container;
|
|
|
3294
3309
|
|
|
3295
3310
|
declare const reactNativeContainer: Container;
|
|
3296
3311
|
|
|
3297
|
-
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 AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, BAD_GENERAL_SSN, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, 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, 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, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, 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, GetCachedAuthToken, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, 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_CACHED_AUTH_TOKEN, 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_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_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, 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, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, OBAC_ISSUE_SSN, type OfferListResponse, type OfferResponse, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, 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 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, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, 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_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, commonIOCModule, componentsIOCModule, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getCardholderContext, getClientId, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getSessionId, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthService, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, 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, container as sdkJsContainer, setActiveIocContainer, setCachedAuthToken, setWlaCardPin, setWlaConfig, startAuthTokenRefreshPolling, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, usersIOCModule, verifyExternalAccount };
|
|
3312
|
+
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 AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, BAD_GENERAL_SSN, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, 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, 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, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, 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, GetCachedAuthToken, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, 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_CACHED_AUTH_TOKEN, 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_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_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, 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, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, OBAC_ISSUE_SSN, type OfferListResponse, type OfferResponse, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, 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 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, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, 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_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, commonIOCModule, componentsIOCModule, createOriginationTransfer, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getCardholderContext, getClientId, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getSessionId, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthService, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, 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, container as sdkJsContainer, setActiveIocContainer, setCachedAuthToken, setWlaCardPin, setWlaConfig, startAuthTokenRefreshPolling, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateExternalAccount, usersIOCModule, verifyExternalAccount };
|
package/dist/index.js
CHANGED
|
@@ -1263,6 +1263,9 @@ __export(src_exports, {
|
|
|
1263
1263
|
componentsIOCModule: function() {
|
|
1264
1264
|
return componentsIOCModule;
|
|
1265
1265
|
},
|
|
1266
|
+
createOriginationTransfer: function() {
|
|
1267
|
+
return createOriginationTransfer;
|
|
1268
|
+
},
|
|
1266
1269
|
createWlaCard: function() {
|
|
1267
1270
|
return createWlaCard;
|
|
1268
1271
|
},
|
|
@@ -1308,6 +1311,9 @@ __export(src_exports, {
|
|
|
1308
1311
|
getClientId: function() {
|
|
1309
1312
|
return getClientId;
|
|
1310
1313
|
},
|
|
1314
|
+
getExternalAccount: function() {
|
|
1315
|
+
return getExternalAccount;
|
|
1316
|
+
},
|
|
1311
1317
|
getExternalAccountList: function() {
|
|
1312
1318
|
return getExternalAccountList;
|
|
1313
1319
|
},
|
|
@@ -1593,6 +1599,9 @@ __export(src_exports, {
|
|
|
1593
1599
|
transactionsIOCModule: function() {
|
|
1594
1600
|
return transactionsIOCModule;
|
|
1595
1601
|
},
|
|
1602
|
+
updateExternalAccount: function() {
|
|
1603
|
+
return updateExternalAccount;
|
|
1604
|
+
},
|
|
1596
1605
|
usersIOCModule: function() {
|
|
1597
1606
|
return usersIOCModule;
|
|
1598
1607
|
},
|
|
@@ -17883,6 +17892,12 @@ var mswTransactionsHandlers = [
|
|
|
17883
17892
|
];
|
|
17884
17893
|
// src/wla/adapters/RestWlaService.ts
|
|
17885
17894
|
var import_inversify127 = require("inversify");
|
|
17895
|
+
// src/wla/base/types/AccountResponse.ts
|
|
17896
|
+
var AccountType;
|
|
17897
|
+
(function(AccountType2) {
|
|
17898
|
+
AccountType2["CHECKING"] = "CHECKING";
|
|
17899
|
+
AccountType2["SAVINGS"] = "SAVINGS";
|
|
17900
|
+
})(AccountType || (AccountType = {}));
|
|
17886
17901
|
// src/wla/base/types/BookTransferResponse.ts
|
|
17887
17902
|
var BookTransferResponseStatusEnum;
|
|
17888
17903
|
(function(BookTransferResponseStatusEnum2) {
|
|
@@ -18026,12 +18041,6 @@ var WlaUserStatus;
|
|
|
18026
18041
|
WlaUserStatus2["SUSPENDED"] = "SUSPENDED";
|
|
18027
18042
|
WlaUserStatus2["TERMINATED"] = "TERMINATED";
|
|
18028
18043
|
})(WlaUserStatus || (WlaUserStatus = {}));
|
|
18029
|
-
// src/wla/base/types/AccountResponse.ts
|
|
18030
|
-
var AccountType;
|
|
18031
|
-
(function(AccountType2) {
|
|
18032
|
-
AccountType2["CHECKING"] = "CHECKING";
|
|
18033
|
-
AccountType2["SAVINGS"] = "SAVINGS";
|
|
18034
|
-
})(AccountType || (AccountType = {}));
|
|
18035
18044
|
// src/wla/adapters/RestWlaService.ts
|
|
18036
18045
|
function _ts_decorate98(decorators, target, key, desc) {
|
|
18037
18046
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -18542,6 +18551,48 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
18542
18551
|
})();
|
|
18543
18552
|
}
|
|
18544
18553
|
},
|
|
18554
|
+
{
|
|
18555
|
+
key: "getExternalAccount",
|
|
18556
|
+
value: function getExternalAccount(token) {
|
|
18557
|
+
var _this = this;
|
|
18558
|
+
return _async_to_generator(function() {
|
|
18559
|
+
var cuiApiBaseUrl, path, params, data, error2;
|
|
18560
|
+
return _ts_generator(this, function(_state) {
|
|
18561
|
+
switch(_state.label){
|
|
18562
|
+
case 0:
|
|
18563
|
+
_state.trys.push([
|
|
18564
|
+
0,
|
|
18565
|
+
2,
|
|
18566
|
+
,
|
|
18567
|
+
3
|
|
18568
|
+
]);
|
|
18569
|
+
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
18570
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/externalaccounts/").concat(token);
|
|
18571
|
+
params = {
|
|
18572
|
+
headers: _this.getCommonWlaApiHeaders()
|
|
18573
|
+
};
|
|
18574
|
+
return [
|
|
18575
|
+
4,
|
|
18576
|
+
_this.httpClient.get(path, params)
|
|
18577
|
+
];
|
|
18578
|
+
case 1:
|
|
18579
|
+
data = _state.sent();
|
|
18580
|
+
return [
|
|
18581
|
+
2,
|
|
18582
|
+
data
|
|
18583
|
+
];
|
|
18584
|
+
case 2:
|
|
18585
|
+
error2 = _state.sent();
|
|
18586
|
+
throw new MqSDKError("Unable to get external account", error2);
|
|
18587
|
+
case 3:
|
|
18588
|
+
return [
|
|
18589
|
+
2
|
|
18590
|
+
];
|
|
18591
|
+
}
|
|
18592
|
+
});
|
|
18593
|
+
})();
|
|
18594
|
+
}
|
|
18595
|
+
},
|
|
18545
18596
|
{
|
|
18546
18597
|
key: "getExternalAccountList",
|
|
18547
18598
|
value: function getExternalAccountList(requestBody) {
|
|
@@ -18684,6 +18735,50 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
18684
18735
|
})();
|
|
18685
18736
|
}
|
|
18686
18737
|
},
|
|
18738
|
+
{
|
|
18739
|
+
key: "updateExternalAccount",
|
|
18740
|
+
value: function updateExternalAccount(token, requestBody) {
|
|
18741
|
+
var _this = this;
|
|
18742
|
+
return _async_to_generator(function() {
|
|
18743
|
+
var cuiApiBaseUrl, path, params, data, error2;
|
|
18744
|
+
return _ts_generator(this, function(_state) {
|
|
18745
|
+
switch(_state.label){
|
|
18746
|
+
case 0:
|
|
18747
|
+
_state.trys.push([
|
|
18748
|
+
0,
|
|
18749
|
+
2,
|
|
18750
|
+
,
|
|
18751
|
+
3
|
|
18752
|
+
]);
|
|
18753
|
+
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
18754
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/externalaccounts/").concat(token);
|
|
18755
|
+
params = {
|
|
18756
|
+
method: "PATCH",
|
|
18757
|
+
headers: _this.getCommonWlaApiHeaders(),
|
|
18758
|
+
body: JSON.stringify(requestBody)
|
|
18759
|
+
};
|
|
18760
|
+
return [
|
|
18761
|
+
4,
|
|
18762
|
+
_this.httpClient.post(path, params)
|
|
18763
|
+
];
|
|
18764
|
+
case 1:
|
|
18765
|
+
data = _state.sent();
|
|
18766
|
+
return [
|
|
18767
|
+
2,
|
|
18768
|
+
data
|
|
18769
|
+
];
|
|
18770
|
+
case 2:
|
|
18771
|
+
error2 = _state.sent();
|
|
18772
|
+
throw new MqSDKError("Unable to update external account", error2);
|
|
18773
|
+
case 3:
|
|
18774
|
+
return [
|
|
18775
|
+
2
|
|
18776
|
+
];
|
|
18777
|
+
}
|
|
18778
|
+
});
|
|
18779
|
+
})();
|
|
18780
|
+
}
|
|
18781
|
+
},
|
|
18687
18782
|
{
|
|
18688
18783
|
key: "getTransactionByToken",
|
|
18689
18784
|
value: function getTransactionByToken(transactionToken) {
|
|
@@ -18973,6 +19068,33 @@ function _bookTransfer() {
|
|
|
18973
19068
|
return _bookTransfer.apply(this, arguments);
|
|
18974
19069
|
}
|
|
18975
19070
|
__name(bookTransfer, "bookTransfer");
|
|
19071
|
+
function createOriginationTransfer(payload) {
|
|
19072
|
+
return _createOriginationTransfer.apply(this, arguments);
|
|
19073
|
+
}
|
|
19074
|
+
function _createOriginationTransfer() {
|
|
19075
|
+
_createOriginationTransfer = // src/wla/base/interactors/createOriginationTransfer.ts
|
|
19076
|
+
_async_to_generator(function(payload) {
|
|
19077
|
+
var container2, wlaService;
|
|
19078
|
+
return _ts_generator(this, function(_state) {
|
|
19079
|
+
switch(_state.label){
|
|
19080
|
+
case 0:
|
|
19081
|
+
container2 = getActiveIocContainer();
|
|
19082
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19083
|
+
return [
|
|
19084
|
+
4,
|
|
19085
|
+
wlaService.createOriginationTransfer(payload)
|
|
19086
|
+
];
|
|
19087
|
+
case 1:
|
|
19088
|
+
return [
|
|
19089
|
+
2,
|
|
19090
|
+
_state.sent()
|
|
19091
|
+
];
|
|
19092
|
+
}
|
|
19093
|
+
});
|
|
19094
|
+
});
|
|
19095
|
+
return _createOriginationTransfer.apply(this, arguments);
|
|
19096
|
+
}
|
|
19097
|
+
__name(createOriginationTransfer, "createOriginationTransfer");
|
|
18976
19098
|
function createWlaCard(payload) {
|
|
18977
19099
|
return _createWlaCard.apply(this, arguments);
|
|
18978
19100
|
}
|
|
@@ -19086,6 +19208,25 @@ function _getAccountTransactions() {
|
|
|
19086
19208
|
return _getAccountTransactions.apply(this, arguments);
|
|
19087
19209
|
}
|
|
19088
19210
|
__name(getAccountTransactions, "getAccountTransactions");
|
|
19211
|
+
function getExternalAccount(token) {
|
|
19212
|
+
return _getExternalAccount.apply(this, arguments);
|
|
19213
|
+
}
|
|
19214
|
+
function _getExternalAccount() {
|
|
19215
|
+
_getExternalAccount = // src/wla/base/interactors/getExternalAccount.ts
|
|
19216
|
+
_async_to_generator(function(token) {
|
|
19217
|
+
var container2, wlaService;
|
|
19218
|
+
return _ts_generator(this, function(_state) {
|
|
19219
|
+
container2 = getActiveIocContainer();
|
|
19220
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19221
|
+
return [
|
|
19222
|
+
2,
|
|
19223
|
+
wlaService.getExternalAccount(token)
|
|
19224
|
+
];
|
|
19225
|
+
});
|
|
19226
|
+
});
|
|
19227
|
+
return _getExternalAccount.apply(this, arguments);
|
|
19228
|
+
}
|
|
19229
|
+
__name(getExternalAccount, "getExternalAccount");
|
|
19089
19230
|
function getExternalAccountList(requestBody) {
|
|
19090
19231
|
return _getExternalAccountList.apply(this, arguments);
|
|
19091
19232
|
}
|
|
@@ -19143,6 +19284,25 @@ function _getOffers() {
|
|
|
19143
19284
|
return _getOffers.apply(this, arguments);
|
|
19144
19285
|
}
|
|
19145
19286
|
__name(getOffers, "getOffers");
|
|
19287
|
+
function getWlaAccountDetails(accountToken, includeYtdInterest) {
|
|
19288
|
+
return _getWlaAccountDetails.apply(this, arguments);
|
|
19289
|
+
}
|
|
19290
|
+
function _getWlaAccountDetails() {
|
|
19291
|
+
_getWlaAccountDetails = // src/wla/base/interactors/getWlaAccountDetails.ts
|
|
19292
|
+
_async_to_generator(function(accountToken, includeYtdInterest) {
|
|
19293
|
+
var container2, wlaService;
|
|
19294
|
+
return _ts_generator(this, function(_state) {
|
|
19295
|
+
container2 = getActiveIocContainer();
|
|
19296
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19297
|
+
return [
|
|
19298
|
+
2,
|
|
19299
|
+
wlaService.getAccountDetails(accountToken, includeYtdInterest)
|
|
19300
|
+
];
|
|
19301
|
+
});
|
|
19302
|
+
});
|
|
19303
|
+
return _getWlaAccountDetails.apply(this, arguments);
|
|
19304
|
+
}
|
|
19305
|
+
__name(getWlaAccountDetails, "getWlaAccountDetails");
|
|
19146
19306
|
function getWlaCardByToken(cardToken) {
|
|
19147
19307
|
return _getWlaCardByToken.apply(this, arguments);
|
|
19148
19308
|
}
|
|
@@ -19170,6 +19330,25 @@ function _getWlaCardByToken() {
|
|
|
19170
19330
|
return _getWlaCardByToken.apply(this, arguments);
|
|
19171
19331
|
}
|
|
19172
19332
|
__name(getWlaCardByToken, "getWlaCardByToken");
|
|
19333
|
+
function getWlaRewardSummaries(startIndex, count) {
|
|
19334
|
+
return _getWlaRewardSummaries.apply(this, arguments);
|
|
19335
|
+
}
|
|
19336
|
+
function _getWlaRewardSummaries() {
|
|
19337
|
+
_getWlaRewardSummaries = // src/wla/base/interactors/getWlaRewardSummaries.ts
|
|
19338
|
+
_async_to_generator(function(startIndex, count) {
|
|
19339
|
+
var container2, wlaService;
|
|
19340
|
+
return _ts_generator(this, function(_state) {
|
|
19341
|
+
container2 = getActiveIocContainer();
|
|
19342
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19343
|
+
return [
|
|
19344
|
+
2,
|
|
19345
|
+
wlaService.getRewardSummaries(startIndex, count)
|
|
19346
|
+
];
|
|
19347
|
+
});
|
|
19348
|
+
});
|
|
19349
|
+
return _getWlaRewardSummaries.apply(this, arguments);
|
|
19350
|
+
}
|
|
19351
|
+
__name(getWlaRewardSummaries, "getWlaRewardSummaries");
|
|
19173
19352
|
function getWlaTransactionByToken(transactionToken) {
|
|
19174
19353
|
return _getWlaTransactionByToken.apply(this, arguments);
|
|
19175
19354
|
}
|
|
@@ -19324,6 +19503,46 @@ function _setWlaConfig() {
|
|
|
19324
19503
|
return _setWlaConfig.apply(this, arguments);
|
|
19325
19504
|
}
|
|
19326
19505
|
__name(setWlaConfig, "setWlaConfig");
|
|
19506
|
+
function updateExternalAccount(token, payload) {
|
|
19507
|
+
return _updateExternalAccount.apply(this, arguments);
|
|
19508
|
+
}
|
|
19509
|
+
function _updateExternalAccount() {
|
|
19510
|
+
_updateExternalAccount = // src/wla/base/interactors/updateExternalAccount.ts
|
|
19511
|
+
_async_to_generator(function(token, payload) {
|
|
19512
|
+
var container2, wlaService, error2;
|
|
19513
|
+
return _ts_generator(this, function(_state) {
|
|
19514
|
+
switch(_state.label){
|
|
19515
|
+
case 0:
|
|
19516
|
+
_state.trys.push([
|
|
19517
|
+
0,
|
|
19518
|
+
2,
|
|
19519
|
+
,
|
|
19520
|
+
3
|
|
19521
|
+
]);
|
|
19522
|
+
container2 = getActiveIocContainer();
|
|
19523
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19524
|
+
return [
|
|
19525
|
+
4,
|
|
19526
|
+
wlaService.updateExternalAccount(token, payload)
|
|
19527
|
+
];
|
|
19528
|
+
case 1:
|
|
19529
|
+
return [
|
|
19530
|
+
2,
|
|
19531
|
+
_state.sent()
|
|
19532
|
+
];
|
|
19533
|
+
case 2:
|
|
19534
|
+
error2 = _state.sent();
|
|
19535
|
+
throw new MqSDKError("Unable to update external account");
|
|
19536
|
+
case 3:
|
|
19537
|
+
return [
|
|
19538
|
+
2
|
|
19539
|
+
];
|
|
19540
|
+
}
|
|
19541
|
+
});
|
|
19542
|
+
});
|
|
19543
|
+
return _updateExternalAccount.apply(this, arguments);
|
|
19544
|
+
}
|
|
19545
|
+
__name(updateExternalAccount, "updateExternalAccount");
|
|
19327
19546
|
function verifyExternalAccount(payload) {
|
|
19328
19547
|
return _verifyExternalAccount.apply(this, arguments);
|
|
19329
19548
|
}
|
|
@@ -19351,44 +19570,6 @@ function _verifyExternalAccount() {
|
|
|
19351
19570
|
return _verifyExternalAccount.apply(this, arguments);
|
|
19352
19571
|
}
|
|
19353
19572
|
__name(verifyExternalAccount, "verifyExternalAccount");
|
|
19354
|
-
function getWlaAccountDetails(accountToken, includeYtdInterest) {
|
|
19355
|
-
return _getWlaAccountDetails.apply(this, arguments);
|
|
19356
|
-
}
|
|
19357
|
-
function _getWlaAccountDetails() {
|
|
19358
|
-
_getWlaAccountDetails = // src/wla/base/interactors/getWlaAccountDetails.ts
|
|
19359
|
-
_async_to_generator(function(accountToken, includeYtdInterest) {
|
|
19360
|
-
var container2, wlaService;
|
|
19361
|
-
return _ts_generator(this, function(_state) {
|
|
19362
|
-
container2 = getActiveIocContainer();
|
|
19363
|
-
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19364
|
-
return [
|
|
19365
|
-
2,
|
|
19366
|
-
wlaService.getAccountDetails(accountToken, includeYtdInterest)
|
|
19367
|
-
];
|
|
19368
|
-
});
|
|
19369
|
-
});
|
|
19370
|
-
return _getWlaAccountDetails.apply(this, arguments);
|
|
19371
|
-
}
|
|
19372
|
-
__name(getWlaAccountDetails, "getWlaAccountDetails");
|
|
19373
|
-
function getWlaRewardSummaries(startIndex, count) {
|
|
19374
|
-
return _getWlaRewardSummaries.apply(this, arguments);
|
|
19375
|
-
}
|
|
19376
|
-
function _getWlaRewardSummaries() {
|
|
19377
|
-
_getWlaRewardSummaries = // src/wla/base/interactors/getWlaRewardSummaries.ts
|
|
19378
|
-
_async_to_generator(function(startIndex, count) {
|
|
19379
|
-
var container2, wlaService;
|
|
19380
|
-
return _ts_generator(this, function(_state) {
|
|
19381
|
-
container2 = getActiveIocContainer();
|
|
19382
|
-
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
19383
|
-
return [
|
|
19384
|
-
2,
|
|
19385
|
-
wlaService.getRewardSummaries(startIndex, count)
|
|
19386
|
-
];
|
|
19387
|
-
});
|
|
19388
|
-
});
|
|
19389
|
-
return _getWlaRewardSummaries.apply(this, arguments);
|
|
19390
|
-
}
|
|
19391
|
-
__name(getWlaRewardSummaries, "getWlaRewardSummaries");
|
|
19392
19573
|
// src/wla/ioc/WlaIocModule.ts
|
|
19393
19574
|
var import_inversify128 = require("inversify");
|
|
19394
19575
|
var WlaIocModule = new import_inversify128.ContainerModule(function(bind) {
|
|
@@ -19703,6 +19884,7 @@ setActiveIocContainer(container);
|
|
|
19703
19884
|
cardsIOCModule: cardsIOCModule,
|
|
19704
19885
|
commonIOCModule: commonIOCModule,
|
|
19705
19886
|
componentsIOCModule: componentsIOCModule,
|
|
19887
|
+
createOriginationTransfer: createOriginationTransfer,
|
|
19706
19888
|
createWlaCard: createWlaCard,
|
|
19707
19889
|
createWlaExternalAccount: createWlaExternalAccount,
|
|
19708
19890
|
deepMergeThemeObject: deepMergeThemeObject,
|
|
@@ -19718,6 +19900,7 @@ setActiveIocContainer(container);
|
|
|
19718
19900
|
getActiveIocContainer: getActiveIocContainer,
|
|
19719
19901
|
getCardholderContext: getCardholderContext,
|
|
19720
19902
|
getClientId: getClientId,
|
|
19903
|
+
getExternalAccount: getExternalAccount,
|
|
19721
19904
|
getExternalAccountList: getExternalAccountList,
|
|
19722
19905
|
getMockUpdatedUserRequestToCreateResponse: getMockUpdatedUserRequestToCreateResponse,
|
|
19723
19906
|
getMockUserRequestToCreateResponse: getMockUserRequestToCreateResponse,
|
|
@@ -19813,6 +19996,7 @@ setActiveIocContainer(container);
|
|
|
19813
19996
|
toDateType: toDateType,
|
|
19814
19997
|
trackEvent: trackEvent,
|
|
19815
19998
|
transactionsIOCModule: transactionsIOCModule,
|
|
19999
|
+
updateExternalAccount: updateExternalAccount,
|
|
19816
20000
|
usersIOCModule: usersIOCModule,
|
|
19817
20001
|
verifyExternalAccount: verifyExternalAccount
|
|
19818
20002
|
}); /*! Bundled license information:
|
package/dist/index.mjs
CHANGED
|
@@ -16822,6 +16822,12 @@ var mswTransactionsHandlers = [
|
|
|
16822
16822
|
];
|
|
16823
16823
|
// src/wla/adapters/RestWlaService.ts
|
|
16824
16824
|
import { inject as inject59, injectable as injectable98 } from "inversify";
|
|
16825
|
+
// src/wla/base/types/AccountResponse.ts
|
|
16826
|
+
var AccountType;
|
|
16827
|
+
(function(AccountType2) {
|
|
16828
|
+
AccountType2["CHECKING"] = "CHECKING";
|
|
16829
|
+
AccountType2["SAVINGS"] = "SAVINGS";
|
|
16830
|
+
})(AccountType || (AccountType = {}));
|
|
16825
16831
|
// src/wla/base/types/BookTransferResponse.ts
|
|
16826
16832
|
var BookTransferResponseStatusEnum;
|
|
16827
16833
|
(function(BookTransferResponseStatusEnum2) {
|
|
@@ -16965,12 +16971,6 @@ var WlaUserStatus;
|
|
|
16965
16971
|
WlaUserStatus2["SUSPENDED"] = "SUSPENDED";
|
|
16966
16972
|
WlaUserStatus2["TERMINATED"] = "TERMINATED";
|
|
16967
16973
|
})(WlaUserStatus || (WlaUserStatus = {}));
|
|
16968
|
-
// src/wla/base/types/AccountResponse.ts
|
|
16969
|
-
var AccountType;
|
|
16970
|
-
(function(AccountType2) {
|
|
16971
|
-
AccountType2["CHECKING"] = "CHECKING";
|
|
16972
|
-
AccountType2["SAVINGS"] = "SAVINGS";
|
|
16973
|
-
})(AccountType || (AccountType = {}));
|
|
16974
16974
|
// src/wla/adapters/RestWlaService.ts
|
|
16975
16975
|
function _ts_decorate98(decorators, target, key, desc) {
|
|
16976
16976
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -17482,6 +17482,48 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
17482
17482
|
})();
|
|
17483
17483
|
}
|
|
17484
17484
|
},
|
|
17485
|
+
{
|
|
17486
|
+
key: "getExternalAccount",
|
|
17487
|
+
value: function getExternalAccount(token) {
|
|
17488
|
+
var _this = this;
|
|
17489
|
+
return _async_to_generator(function() {
|
|
17490
|
+
var cuiApiBaseUrl, path, params, data, error2;
|
|
17491
|
+
return _ts_generator(this, function(_state) {
|
|
17492
|
+
switch(_state.label){
|
|
17493
|
+
case 0:
|
|
17494
|
+
_state.trys.push([
|
|
17495
|
+
0,
|
|
17496
|
+
2,
|
|
17497
|
+
,
|
|
17498
|
+
3
|
|
17499
|
+
]);
|
|
17500
|
+
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
17501
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/externalaccounts/").concat(token);
|
|
17502
|
+
params = {
|
|
17503
|
+
headers: _this.getCommonWlaApiHeaders()
|
|
17504
|
+
};
|
|
17505
|
+
return [
|
|
17506
|
+
4,
|
|
17507
|
+
_this.httpClient.get(path, params)
|
|
17508
|
+
];
|
|
17509
|
+
case 1:
|
|
17510
|
+
data = _state.sent();
|
|
17511
|
+
return [
|
|
17512
|
+
2,
|
|
17513
|
+
data
|
|
17514
|
+
];
|
|
17515
|
+
case 2:
|
|
17516
|
+
error2 = _state.sent();
|
|
17517
|
+
throw new MqSDKError("Unable to get external account", error2);
|
|
17518
|
+
case 3:
|
|
17519
|
+
return [
|
|
17520
|
+
2
|
|
17521
|
+
];
|
|
17522
|
+
}
|
|
17523
|
+
});
|
|
17524
|
+
})();
|
|
17525
|
+
}
|
|
17526
|
+
},
|
|
17485
17527
|
{
|
|
17486
17528
|
key: "getExternalAccountList",
|
|
17487
17529
|
value: function getExternalAccountList(requestBody) {
|
|
@@ -17624,6 +17666,50 @@ var _RestWlaService = /*#__PURE__*/ function() {
|
|
|
17624
17666
|
})();
|
|
17625
17667
|
}
|
|
17626
17668
|
},
|
|
17669
|
+
{
|
|
17670
|
+
key: "updateExternalAccount",
|
|
17671
|
+
value: function updateExternalAccount(token, requestBody) {
|
|
17672
|
+
var _this = this;
|
|
17673
|
+
return _async_to_generator(function() {
|
|
17674
|
+
var cuiApiBaseUrl, path, params, data, error2;
|
|
17675
|
+
return _ts_generator(this, function(_state) {
|
|
17676
|
+
switch(_state.label){
|
|
17677
|
+
case 0:
|
|
17678
|
+
_state.trys.push([
|
|
17679
|
+
0,
|
|
17680
|
+
2,
|
|
17681
|
+
,
|
|
17682
|
+
3
|
|
17683
|
+
]);
|
|
17684
|
+
cuiApiBaseUrl = _this.getEnvConfigValueByName.execute("CUI_API_BASE_URL");
|
|
17685
|
+
path = "".concat(cuiApiBaseUrl, "/api/v1/wla/externalaccounts/").concat(token);
|
|
17686
|
+
params = {
|
|
17687
|
+
method: "PATCH",
|
|
17688
|
+
headers: _this.getCommonWlaApiHeaders(),
|
|
17689
|
+
body: JSON.stringify(requestBody)
|
|
17690
|
+
};
|
|
17691
|
+
return [
|
|
17692
|
+
4,
|
|
17693
|
+
_this.httpClient.post(path, params)
|
|
17694
|
+
];
|
|
17695
|
+
case 1:
|
|
17696
|
+
data = _state.sent();
|
|
17697
|
+
return [
|
|
17698
|
+
2,
|
|
17699
|
+
data
|
|
17700
|
+
];
|
|
17701
|
+
case 2:
|
|
17702
|
+
error2 = _state.sent();
|
|
17703
|
+
throw new MqSDKError("Unable to update external account", error2);
|
|
17704
|
+
case 3:
|
|
17705
|
+
return [
|
|
17706
|
+
2
|
|
17707
|
+
];
|
|
17708
|
+
}
|
|
17709
|
+
});
|
|
17710
|
+
})();
|
|
17711
|
+
}
|
|
17712
|
+
},
|
|
17627
17713
|
{
|
|
17628
17714
|
key: "getTransactionByToken",
|
|
17629
17715
|
value: function getTransactionByToken(transactionToken) {
|
|
@@ -17913,6 +17999,33 @@ function _bookTransfer() {
|
|
|
17913
17999
|
return _bookTransfer.apply(this, arguments);
|
|
17914
18000
|
}
|
|
17915
18001
|
__name(bookTransfer, "bookTransfer");
|
|
18002
|
+
function createOriginationTransfer(payload) {
|
|
18003
|
+
return _createOriginationTransfer.apply(this, arguments);
|
|
18004
|
+
}
|
|
18005
|
+
function _createOriginationTransfer() {
|
|
18006
|
+
_createOriginationTransfer = // src/wla/base/interactors/createOriginationTransfer.ts
|
|
18007
|
+
_async_to_generator(function(payload) {
|
|
18008
|
+
var container2, wlaService;
|
|
18009
|
+
return _ts_generator(this, function(_state) {
|
|
18010
|
+
switch(_state.label){
|
|
18011
|
+
case 0:
|
|
18012
|
+
container2 = getActiveIocContainer();
|
|
18013
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
18014
|
+
return [
|
|
18015
|
+
4,
|
|
18016
|
+
wlaService.createOriginationTransfer(payload)
|
|
18017
|
+
];
|
|
18018
|
+
case 1:
|
|
18019
|
+
return [
|
|
18020
|
+
2,
|
|
18021
|
+
_state.sent()
|
|
18022
|
+
];
|
|
18023
|
+
}
|
|
18024
|
+
});
|
|
18025
|
+
});
|
|
18026
|
+
return _createOriginationTransfer.apply(this, arguments);
|
|
18027
|
+
}
|
|
18028
|
+
__name(createOriginationTransfer, "createOriginationTransfer");
|
|
17916
18029
|
function createWlaCard(payload) {
|
|
17917
18030
|
return _createWlaCard.apply(this, arguments);
|
|
17918
18031
|
}
|
|
@@ -18026,6 +18139,25 @@ function _getAccountTransactions() {
|
|
|
18026
18139
|
return _getAccountTransactions.apply(this, arguments);
|
|
18027
18140
|
}
|
|
18028
18141
|
__name(getAccountTransactions, "getAccountTransactions");
|
|
18142
|
+
function getExternalAccount(token) {
|
|
18143
|
+
return _getExternalAccount.apply(this, arguments);
|
|
18144
|
+
}
|
|
18145
|
+
function _getExternalAccount() {
|
|
18146
|
+
_getExternalAccount = // src/wla/base/interactors/getExternalAccount.ts
|
|
18147
|
+
_async_to_generator(function(token) {
|
|
18148
|
+
var container2, wlaService;
|
|
18149
|
+
return _ts_generator(this, function(_state) {
|
|
18150
|
+
container2 = getActiveIocContainer();
|
|
18151
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
18152
|
+
return [
|
|
18153
|
+
2,
|
|
18154
|
+
wlaService.getExternalAccount(token)
|
|
18155
|
+
];
|
|
18156
|
+
});
|
|
18157
|
+
});
|
|
18158
|
+
return _getExternalAccount.apply(this, arguments);
|
|
18159
|
+
}
|
|
18160
|
+
__name(getExternalAccount, "getExternalAccount");
|
|
18029
18161
|
function getExternalAccountList(requestBody) {
|
|
18030
18162
|
return _getExternalAccountList.apply(this, arguments);
|
|
18031
18163
|
}
|
|
@@ -18083,6 +18215,25 @@ function _getOffers() {
|
|
|
18083
18215
|
return _getOffers.apply(this, arguments);
|
|
18084
18216
|
}
|
|
18085
18217
|
__name(getOffers, "getOffers");
|
|
18218
|
+
function getWlaAccountDetails(accountToken, includeYtdInterest) {
|
|
18219
|
+
return _getWlaAccountDetails.apply(this, arguments);
|
|
18220
|
+
}
|
|
18221
|
+
function _getWlaAccountDetails() {
|
|
18222
|
+
_getWlaAccountDetails = // src/wla/base/interactors/getWlaAccountDetails.ts
|
|
18223
|
+
_async_to_generator(function(accountToken, includeYtdInterest) {
|
|
18224
|
+
var container2, wlaService;
|
|
18225
|
+
return _ts_generator(this, function(_state) {
|
|
18226
|
+
container2 = getActiveIocContainer();
|
|
18227
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
18228
|
+
return [
|
|
18229
|
+
2,
|
|
18230
|
+
wlaService.getAccountDetails(accountToken, includeYtdInterest)
|
|
18231
|
+
];
|
|
18232
|
+
});
|
|
18233
|
+
});
|
|
18234
|
+
return _getWlaAccountDetails.apply(this, arguments);
|
|
18235
|
+
}
|
|
18236
|
+
__name(getWlaAccountDetails, "getWlaAccountDetails");
|
|
18086
18237
|
function getWlaCardByToken(cardToken) {
|
|
18087
18238
|
return _getWlaCardByToken.apply(this, arguments);
|
|
18088
18239
|
}
|
|
@@ -18110,6 +18261,25 @@ function _getWlaCardByToken() {
|
|
|
18110
18261
|
return _getWlaCardByToken.apply(this, arguments);
|
|
18111
18262
|
}
|
|
18112
18263
|
__name(getWlaCardByToken, "getWlaCardByToken");
|
|
18264
|
+
function getWlaRewardSummaries(startIndex, count) {
|
|
18265
|
+
return _getWlaRewardSummaries.apply(this, arguments);
|
|
18266
|
+
}
|
|
18267
|
+
function _getWlaRewardSummaries() {
|
|
18268
|
+
_getWlaRewardSummaries = // src/wla/base/interactors/getWlaRewardSummaries.ts
|
|
18269
|
+
_async_to_generator(function(startIndex, count) {
|
|
18270
|
+
var container2, wlaService;
|
|
18271
|
+
return _ts_generator(this, function(_state) {
|
|
18272
|
+
container2 = getActiveIocContainer();
|
|
18273
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
18274
|
+
return [
|
|
18275
|
+
2,
|
|
18276
|
+
wlaService.getRewardSummaries(startIndex, count)
|
|
18277
|
+
];
|
|
18278
|
+
});
|
|
18279
|
+
});
|
|
18280
|
+
return _getWlaRewardSummaries.apply(this, arguments);
|
|
18281
|
+
}
|
|
18282
|
+
__name(getWlaRewardSummaries, "getWlaRewardSummaries");
|
|
18113
18283
|
function getWlaTransactionByToken(transactionToken) {
|
|
18114
18284
|
return _getWlaTransactionByToken.apply(this, arguments);
|
|
18115
18285
|
}
|
|
@@ -18264,6 +18434,46 @@ function _setWlaConfig() {
|
|
|
18264
18434
|
return _setWlaConfig.apply(this, arguments);
|
|
18265
18435
|
}
|
|
18266
18436
|
__name(setWlaConfig, "setWlaConfig");
|
|
18437
|
+
function updateExternalAccount(token, payload) {
|
|
18438
|
+
return _updateExternalAccount.apply(this, arguments);
|
|
18439
|
+
}
|
|
18440
|
+
function _updateExternalAccount() {
|
|
18441
|
+
_updateExternalAccount = // src/wla/base/interactors/updateExternalAccount.ts
|
|
18442
|
+
_async_to_generator(function(token, payload) {
|
|
18443
|
+
var container2, wlaService, error2;
|
|
18444
|
+
return _ts_generator(this, function(_state) {
|
|
18445
|
+
switch(_state.label){
|
|
18446
|
+
case 0:
|
|
18447
|
+
_state.trys.push([
|
|
18448
|
+
0,
|
|
18449
|
+
2,
|
|
18450
|
+
,
|
|
18451
|
+
3
|
|
18452
|
+
]);
|
|
18453
|
+
container2 = getActiveIocContainer();
|
|
18454
|
+
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
18455
|
+
return [
|
|
18456
|
+
4,
|
|
18457
|
+
wlaService.updateExternalAccount(token, payload)
|
|
18458
|
+
];
|
|
18459
|
+
case 1:
|
|
18460
|
+
return [
|
|
18461
|
+
2,
|
|
18462
|
+
_state.sent()
|
|
18463
|
+
];
|
|
18464
|
+
case 2:
|
|
18465
|
+
error2 = _state.sent();
|
|
18466
|
+
throw new MqSDKError("Unable to update external account");
|
|
18467
|
+
case 3:
|
|
18468
|
+
return [
|
|
18469
|
+
2
|
|
18470
|
+
];
|
|
18471
|
+
}
|
|
18472
|
+
});
|
|
18473
|
+
});
|
|
18474
|
+
return _updateExternalAccount.apply(this, arguments);
|
|
18475
|
+
}
|
|
18476
|
+
__name(updateExternalAccount, "updateExternalAccount");
|
|
18267
18477
|
function verifyExternalAccount(payload) {
|
|
18268
18478
|
return _verifyExternalAccount.apply(this, arguments);
|
|
18269
18479
|
}
|
|
@@ -18291,44 +18501,6 @@ function _verifyExternalAccount() {
|
|
|
18291
18501
|
return _verifyExternalAccount.apply(this, arguments);
|
|
18292
18502
|
}
|
|
18293
18503
|
__name(verifyExternalAccount, "verifyExternalAccount");
|
|
18294
|
-
function getWlaAccountDetails(accountToken, includeYtdInterest) {
|
|
18295
|
-
return _getWlaAccountDetails.apply(this, arguments);
|
|
18296
|
-
}
|
|
18297
|
-
function _getWlaAccountDetails() {
|
|
18298
|
-
_getWlaAccountDetails = // src/wla/base/interactors/getWlaAccountDetails.ts
|
|
18299
|
-
_async_to_generator(function(accountToken, includeYtdInterest) {
|
|
18300
|
-
var container2, wlaService;
|
|
18301
|
-
return _ts_generator(this, function(_state) {
|
|
18302
|
-
container2 = getActiveIocContainer();
|
|
18303
|
-
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
18304
|
-
return [
|
|
18305
|
-
2,
|
|
18306
|
-
wlaService.getAccountDetails(accountToken, includeYtdInterest)
|
|
18307
|
-
];
|
|
18308
|
-
});
|
|
18309
|
-
});
|
|
18310
|
-
return _getWlaAccountDetails.apply(this, arguments);
|
|
18311
|
-
}
|
|
18312
|
-
__name(getWlaAccountDetails, "getWlaAccountDetails");
|
|
18313
|
-
function getWlaRewardSummaries(startIndex, count) {
|
|
18314
|
-
return _getWlaRewardSummaries.apply(this, arguments);
|
|
18315
|
-
}
|
|
18316
|
-
function _getWlaRewardSummaries() {
|
|
18317
|
-
_getWlaRewardSummaries = // src/wla/base/interactors/getWlaRewardSummaries.ts
|
|
18318
|
-
_async_to_generator(function(startIndex, count) {
|
|
18319
|
-
var container2, wlaService;
|
|
18320
|
-
return _ts_generator(this, function(_state) {
|
|
18321
|
-
container2 = getActiveIocContainer();
|
|
18322
|
-
wlaService = container2.get(ITF_WLA_SERVICE);
|
|
18323
|
-
return [
|
|
18324
|
-
2,
|
|
18325
|
-
wlaService.getRewardSummaries(startIndex, count)
|
|
18326
|
-
];
|
|
18327
|
-
});
|
|
18328
|
-
});
|
|
18329
|
-
return _getWlaRewardSummaries.apply(this, arguments);
|
|
18330
|
-
}
|
|
18331
|
-
__name(getWlaRewardSummaries, "getWlaRewardSummaries");
|
|
18332
18504
|
// src/wla/ioc/WlaIocModule.ts
|
|
18333
18505
|
import { ContainerModule as ContainerModule30 } from "inversify";
|
|
18334
18506
|
var WlaIocModule = new ContainerModule30(function(bind) {
|
|
@@ -18379,7 +18551,7 @@ reactNativeContainer.load(reactNativeFeatureFlagsIOCModule);
|
|
|
18379
18551
|
reactNativeContainer.load(reactNativeCommonIOCModule);
|
|
18380
18552
|
// src/index.ts
|
|
18381
18553
|
setActiveIocContainer(container);
|
|
18382
|
-
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, BAD_GENERAL_SSN, BookTransferResponseStatusEnum, CUI_ENABLED_SHORT_CODE, CardEntity, CardFulfillmentRequestCardFulfillmentReasonEnum, CardStates, CardholderContextEntity, CardholderVerificationMethods, CleanupOnUnload, CreateUserRequestIdentificationsInnerTypeEnum, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, DeleteDocumentForDispute, DepositAccountEntity, DownloadDocumentForDispute, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, ExternalAccountStatus2 as ExternalAccountStatus, FFLAGS_SESSION_STORAGE_KEY, FormField, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCachedAuthToken, 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_CACHED_AUTH_TOKEN, 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_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_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, InitiateFunding, IsMockModeEnabled, KycVerificationRequestIdentifierTypeEnum, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, 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, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, OBAC_ISSUE_SSN, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, OriginationTransferScheme, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, 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, TransactionDetailsBannerType, TransactionRecordStatus, TransactionStatus, TransactionType, TransferStatus, UnlockCardByToken, UpdatePinByCardToken, UploadDocumentForDispute, UserEntity, UserRole, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, commonIOCModule, componentsIOCModule, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development_exports as development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getCardholderContext, getClientId, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getSessionId, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthService, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost_exports as localhost, 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, container as sdkJsContainer, setActiveIocContainer, setCachedAuthToken, setWlaCardPin, setWlaConfig, startAuthTokenRefreshPolling, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, usersIOCModule, verifyExternalAccount }; /*! Bundled license information:
|
|
18554
|
+
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, BAD_GENERAL_SSN, BookTransferResponseStatusEnum, CUI_ENABLED_SHORT_CODE, CardEntity, CardFulfillmentRequestCardFulfillmentReasonEnum, CardStates, CardholderContextEntity, CardholderVerificationMethods, CleanupOnUnload, CreateUserRequestIdentificationsInnerTypeEnum, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, DeleteDocumentForDispute, DepositAccountEntity, DownloadDocumentForDispute, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, ExternalAccountStatus2 as ExternalAccountStatus, FFLAGS_SESSION_STORAGE_KEY, FormField, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCachedAuthToken, 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_CACHED_AUTH_TOKEN, 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_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_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, InitiateFunding, IsMockModeEnabled, KycVerificationRequestIdentifierTypeEnum, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, 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, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, OBAC_ISSUE_SSN, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, OriginationTransferScheme, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, 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, TransactionDetailsBannerType, TransactionRecordStatus, TransactionStatus, TransactionType, TransferStatus, UnlockCardByToken, UpdatePinByCardToken, UploadDocumentForDispute, UserEntity, UserRole, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, commonIOCModule, componentsIOCModule, createOriginationTransfer, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development_exports as development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getCardholderContext, getClientId, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getSessionId, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthService, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost_exports as localhost, 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, container as sdkJsContainer, setActiveIocContainer, setCachedAuthToken, setWlaCardPin, setWlaConfig, startAuthTokenRefreshPolling, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateExternalAccount, usersIOCModule, verifyExternalAccount }; /*! Bundled license information:
|
|
18383
18555
|
|
|
18384
18556
|
@bundled-es-modules/statuses/index-esm.js:
|
|
18385
18557
|
(*! Bundled license information:
|