@marqeta/ux-toolkit-sdk-javascript 2.26.0 → 2.27.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/{chunk-HQM634NL.mjs → chunk-6SZ5ZHNX.mjs} +8890 -5236
- package/dist/{chunk-OQLAEQ4N.js → chunk-ACMJRYDJ.js} +9369 -5547
- package/dist/index.d.mts +153 -241
- package/dist/index.d.ts +153 -241
- package/dist/index.js +475 -497
- package/dist/index.mjs +2 -2
- package/dist/react-native.d.mts +1 -1
- package/dist/react-native.d.ts +1 -1
- package/dist/react-native.js +710 -583
- package/dist/react-native.mjs +206 -57
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -188,6 +188,24 @@ declare enum CardholderVerificationMethods {
|
|
|
188
188
|
OTHER = "OTHER"
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
+
declare function getCardByToken(cardToken: string, shortCode?: string): Promise<CardEntity>;
|
|
192
|
+
|
|
193
|
+
declare function getCardsByUserToken(): Promise<CardEntity[]>;
|
|
194
|
+
|
|
195
|
+
declare function getShowpanByCardToken(cardToken: string, shortCode?: string): Promise<CardEntity>;
|
|
196
|
+
|
|
197
|
+
declare function activateCardByTokenOrPan(cardToken: string, cvv: string, expiry: string, pan?: string): Promise<CardEntity | undefined>;
|
|
198
|
+
|
|
199
|
+
declare function lockCardByToken(cardToken: string): Promise<CardEntity | undefined>;
|
|
200
|
+
|
|
201
|
+
declare function replaceCardByToken(cardToken: string, cardProductToken: string, reasonCode: string): Promise<CardEntity | undefined>;
|
|
202
|
+
|
|
203
|
+
declare function unlockCardByToken(cardToken: string): Promise<CardEntity | undefined>;
|
|
204
|
+
|
|
205
|
+
declare function updatePinByCardToken(pin: string, cardToken: string): Promise<UpdatePinResponse>;
|
|
206
|
+
|
|
207
|
+
declare function getPinByCardToken(cardToken: string, cardholderVerificationMethod: string): Promise<PinResponse>;
|
|
208
|
+
|
|
191
209
|
declare abstract class iCardRepository {
|
|
192
210
|
abstract getCardByToken(cardToken: string, shortCode?: string): Promise<CardEntity>;
|
|
193
211
|
abstract getCardsByUserToken(): Promise<CardEntity[]>;
|
|
@@ -343,7 +361,7 @@ declare const TEST_SUSPENDED_CARD_VIRTUAL: {
|
|
|
343
361
|
declare const TEST_WEAK_PINS: string[];
|
|
344
362
|
declare class MockCardRepository implements iCardRepository {
|
|
345
363
|
lockCardByToken(cardToken: string): Promise<CardEntity>;
|
|
346
|
-
replaceCardByToken(cardProductToken: string, reasonCode: string): Promise<CardEntity>;
|
|
364
|
+
replaceCardByToken(cardToken: string, cardProductToken: string, reasonCode: string): Promise<CardEntity>;
|
|
347
365
|
unlockCardByToken(cardToken: string): Promise<CardEntity>;
|
|
348
366
|
getShowpanByCardToken(cardToken: string, shortCode?: string): Promise<CardEntity>;
|
|
349
367
|
getCardByToken(cardToken: string, shortCode?: string): Promise<CardEntity>;
|
|
@@ -353,65 +371,11 @@ declare class MockCardRepository implements iCardRepository {
|
|
|
353
371
|
getPinByCardToken(cardToken: string, cardholderVerificationMethod: string): Promise<PinResponse>;
|
|
354
372
|
}
|
|
355
373
|
|
|
356
|
-
declare class GetCardByToken {
|
|
357
|
-
cardRepository: iCardRepository;
|
|
358
|
-
execute(cardToken: string, shortCode?: string): Promise<CardEntity>;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
declare class GetCardsByUserToken {
|
|
362
|
-
cardRepository: iCardRepository;
|
|
363
|
-
execute(): Promise<CardEntity[]>;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
declare class GetShowpanByCardToken {
|
|
367
|
-
cardRepository: iCardRepository;
|
|
368
|
-
execute(cardToken: string, shortCode?: string): Promise<CardEntity>;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
declare class ActivateCardByTokenOrPan {
|
|
372
|
-
cardRepository: iCardRepository;
|
|
373
|
-
execute(cardToken: string, cvv: string, expiry: string, pan?: string): Promise<CardEntity | undefined>;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
declare class LockCardByToken {
|
|
377
|
-
cardRepository: iCardRepository;
|
|
378
|
-
execute(cardToken: string): Promise<CardEntity | undefined>;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
declare class ReplaceCardByToken {
|
|
382
|
-
cardRepository: iCardRepository;
|
|
383
|
-
execute(cardToken: string, cardProductToken: string, reasonCode: string): Promise<CardEntity | undefined>;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
declare class UnlockCardByToken {
|
|
387
|
-
cardRepository: iCardRepository;
|
|
388
|
-
execute(cardToken: string): Promise<CardEntity | undefined>;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
declare class UpdatePinByCardToken {
|
|
392
|
-
cardRepository: iCardRepository;
|
|
393
|
-
execute(pin: string, cardToken: string): Promise<UpdatePinResponse>;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
declare class GetPinByCardToken {
|
|
397
|
-
cardRepository: iCardRepository;
|
|
398
|
-
execute(cardToken: string, cardholderVerificationMethod: string): Promise<PinResponse>;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
374
|
declare const cardsIOCModule: ContainerModule;
|
|
402
375
|
|
|
403
376
|
declare const mockCardsIOCModule: ContainerModule;
|
|
404
377
|
|
|
405
378
|
declare const ITF_CARD_REPOSITORY: unique symbol;
|
|
406
|
-
declare const INTR_GET_CARD_BY_TOKEN: unique symbol;
|
|
407
|
-
declare const INTR_GET_SHOWPAN_BY_CARD_TOKEN: unique symbol;
|
|
408
|
-
declare const INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN: unique symbol;
|
|
409
|
-
declare const INTR_LOCK_CARD_BY_TOKEN: unique symbol;
|
|
410
|
-
declare const INTR_REPLACE_CARD_BY_TOKEN: unique symbol;
|
|
411
|
-
declare const INTR_UNLOCK_CARD_BY_TOKEN: unique symbol;
|
|
412
|
-
declare const INTR_UPDATE_PIN_BY_CARD_TOKEN: unique symbol;
|
|
413
|
-
declare const INTR_GET_PIN_BY_CARD_TOKEN: unique symbol;
|
|
414
|
-
declare const INTR_GET_CARDS_BY_USER_TOKEN: unique symbol;
|
|
415
379
|
|
|
416
380
|
declare const mswCardsHandlers: msw.HttpHandler[];
|
|
417
381
|
|
|
@@ -516,6 +480,12 @@ declare const mockAccountHolderGroup: {
|
|
|
516
480
|
};
|
|
517
481
|
declare const mockDepositAccountJson: DepositAccountEntityJsonType;
|
|
518
482
|
|
|
483
|
+
declare function getAccountHolderGroup(shortCode?: string): Promise<AccountHolderGroupEntity>;
|
|
484
|
+
|
|
485
|
+
declare function getAccountBalances(shortCode?: string): Promise<AccountBalancesEntity>;
|
|
486
|
+
|
|
487
|
+
declare function getDepositAccounts(shortCode?: string): Promise<DepositAccountEntity[]>;
|
|
488
|
+
|
|
519
489
|
declare abstract class iAccountRepository {
|
|
520
490
|
abstract getAccountHolderGroup(shortCode?: string): Promise<AccountHolderGroupEntity>;
|
|
521
491
|
abstract getAccountBalances(shortCode?: string): Promise<AccountBalancesEntity>;
|
|
@@ -536,27 +506,9 @@ declare class MockAccountRepository implements iAccountRepository {
|
|
|
536
506
|
getDepositAccounts(shortCode?: string): Promise<DepositAccountEntity[]>;
|
|
537
507
|
}
|
|
538
508
|
|
|
539
|
-
declare class GetAccountHolderGroup {
|
|
540
|
-
accountRepository: iAccountRepository;
|
|
541
|
-
execute(shortCode?: string): Promise<AccountHolderGroupEntity>;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
declare class GetAccountBalances {
|
|
545
|
-
accountRepository: iAccountRepository;
|
|
546
|
-
execute(shortCode?: string): Promise<AccountBalancesEntity>;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
declare class GetDepositAccounts {
|
|
550
|
-
accountRepository: iAccountRepository;
|
|
551
|
-
execute(shortCode?: string): Promise<DepositAccountEntity[]>;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
509
|
declare const accountsIOCModule: ContainerModule;
|
|
555
510
|
|
|
556
511
|
declare const ITF_ACCOUNT_REPOSITORY: unique symbol;
|
|
557
|
-
declare const INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN: unique symbol;
|
|
558
|
-
declare const INTR_GET_DEPOSIT_ACCT_BY_TOKEN: unique symbol;
|
|
559
|
-
declare const INTR_GET_ACCT_BALANCE_BY_TOKEN: unique symbol;
|
|
560
512
|
|
|
561
513
|
declare const mockAccountsIOCModule: ContainerModule;
|
|
562
514
|
|
|
@@ -617,8 +569,6 @@ declare class VanillaSessionService implements iSessionService {
|
|
|
617
569
|
}
|
|
618
570
|
|
|
619
571
|
declare class GaMeasurementAnalyticsService extends iAnalyticsService {
|
|
620
|
-
private registerCleanupHandler;
|
|
621
|
-
private getEnvConfigValueByName;
|
|
622
572
|
private eventQueue;
|
|
623
573
|
private intervalId?;
|
|
624
574
|
private hasRegisteredCleanupHandler;
|
|
@@ -808,15 +758,9 @@ declare class WindowCacheService implements iCacheService {
|
|
|
808
758
|
set(key: string, value: any): void;
|
|
809
759
|
}
|
|
810
760
|
|
|
811
|
-
declare
|
|
812
|
-
cleanupRegisterHandler: iRegistryService;
|
|
813
|
-
execute(registerKey: string, handler: Function): Promise<void>;
|
|
814
|
-
}
|
|
761
|
+
declare function registerCleanupHandler(registerKey: string, handler: Function): void;
|
|
815
762
|
|
|
816
|
-
declare
|
|
817
|
-
cleanupRegisterHandler: iRegistryService;
|
|
818
|
-
execute(): Promise<void>;
|
|
819
|
-
}
|
|
763
|
+
declare function cleanupOnUnload(): Promise<void>;
|
|
820
764
|
|
|
821
765
|
declare class MqSDKError extends Error {
|
|
822
766
|
msg: string;
|
|
@@ -856,8 +800,6 @@ declare const mockCommonIOCModule: ContainerModule;
|
|
|
856
800
|
|
|
857
801
|
declare const ITF_CACHE_SERVICE: unique symbol;
|
|
858
802
|
declare const ITF_PERSISTED_CACHE_SERVICE: unique symbol;
|
|
859
|
-
declare const INTR_REGISTER_CLEANUP_HANDLER: unique symbol;
|
|
860
|
-
declare const INTR_CLEANUP_ON_UNLOAD: unique symbol;
|
|
861
803
|
declare const ITF_REGISTRY_SERVICE: unique symbol;
|
|
862
804
|
|
|
863
805
|
declare function convertObjKeysToCamelCase(inputObj: Dictionary, recursive?: boolean): Dictionary;
|
|
@@ -978,7 +920,6 @@ declare class RestAuthService implements iAuthService {
|
|
|
978
920
|
private cacheService;
|
|
979
921
|
private authenticatedHttpClient;
|
|
980
922
|
private httpClient;
|
|
981
|
-
private getEnvConfigValueByName;
|
|
982
923
|
getUserProgram(): Promise<string>;
|
|
983
924
|
requestNewAuthTokenByEndpoint(apiEndpoint: string, apiHeaders?: HeadersInit): Promise<RequestNewAuthTokenResponse>;
|
|
984
925
|
getCardholderContext(): Promise<CardholderContextEntity>;
|
|
@@ -1031,7 +972,6 @@ declare const componentsIOCModule: ContainerModule;
|
|
|
1031
972
|
|
|
1032
973
|
declare class RestComponentsRepository implements iComponentsRepository {
|
|
1033
974
|
private httpClient;
|
|
1034
|
-
private getEnvConfigValueByName;
|
|
1035
975
|
getEnabledComponentsByShortCode(): Promise<Array<string>>;
|
|
1036
976
|
}
|
|
1037
977
|
|
|
@@ -1218,6 +1158,18 @@ type AnswersForReview = {
|
|
|
1218
1158
|
questionId: string;
|
|
1219
1159
|
};
|
|
1220
1160
|
|
|
1161
|
+
declare function startDispute(transactionToken: string): Promise<StepResponse>;
|
|
1162
|
+
|
|
1163
|
+
declare function submitAnswerForDisputeQuestion(disputeId: string, stepId: string, payload: SubmitAnswerPayload): Promise<StepResponse>;
|
|
1164
|
+
|
|
1165
|
+
declare function getAllStepsOfDispute(disputeId: string): Promise<AllStepsResponse>;
|
|
1166
|
+
|
|
1167
|
+
declare function getStepOfDisputeByStepId(disputeId: string, stepId: string): Promise<StepResponse>;
|
|
1168
|
+
|
|
1169
|
+
declare function submitDispute(disputeId: string, payload: {
|
|
1170
|
+
submit: boolean;
|
|
1171
|
+
}): Promise<SubmitDisputeSuccessResponse>;
|
|
1172
|
+
|
|
1221
1173
|
type Document = {
|
|
1222
1174
|
id: string;
|
|
1223
1175
|
name: string;
|
|
@@ -1237,6 +1189,14 @@ type DisputeGetDocseResponse = SuccessBaseResponse & {
|
|
|
1237
1189
|
};
|
|
1238
1190
|
};
|
|
1239
1191
|
|
|
1192
|
+
declare function uploadDocumentForDispute(disputeId: string, file: File, type: string, name: string, stepId?: number, questionId?: string): Promise<DisputeDocUploadResponse>;
|
|
1193
|
+
|
|
1194
|
+
declare function deleteDocumentForDispute(disputeId: string, documentId: string): Promise<SuccessBaseResponse>;
|
|
1195
|
+
|
|
1196
|
+
declare function retrieveDocumentForDispute(disputeId: string): Promise<DisputeGetDocseResponse>;
|
|
1197
|
+
|
|
1198
|
+
declare function downloadDocumentForDispute(disputeId: string, documentId: string): Promise<any>;
|
|
1199
|
+
|
|
1240
1200
|
declare abstract class iDisputesRepository {
|
|
1241
1201
|
abstract startDispute(transactionToken: string): Promise<StepResponse>;
|
|
1242
1202
|
abstract getAllStepsOfDispute(disputeId: string): Promise<AllStepsResponse>;
|
|
@@ -1265,67 +1225,11 @@ declare class MockDisputesRepository implements iDisputesRepository {
|
|
|
1265
1225
|
downloadDocumentForDispute(disputeId: string, _documentId: string): Promise<any>;
|
|
1266
1226
|
}
|
|
1267
1227
|
|
|
1268
|
-
declare class StartDispute {
|
|
1269
|
-
disputesRepository: iDisputesRepository;
|
|
1270
|
-
execute(transactionToken: string): Promise<StepResponse>;
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
declare class SubmitAnswerForDisputeQuestion {
|
|
1274
|
-
disputesRepository: iDisputesRepository;
|
|
1275
|
-
execute(disputeId: string, stepId: string, payload: SubmitAnswerPayload): Promise<StepResponse>;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
declare class GetAllStepsOfDispute {
|
|
1279
|
-
disputesRepository: iDisputesRepository;
|
|
1280
|
-
execute(disputeId: string): Promise<AllStepsResponse>;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
declare class GetStepOfDisputeByStepId {
|
|
1284
|
-
disputesRepository: iDisputesRepository;
|
|
1285
|
-
execute(disputeId: string, stepId: string): Promise<StepResponse>;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
declare class SubmitDispute {
|
|
1289
|
-
disputesRepository: iDisputesRepository;
|
|
1290
|
-
execute(disputeId: string, payload: {
|
|
1291
|
-
submit: boolean;
|
|
1292
|
-
}): Promise<SubmitDisputeSuccessResponse>;
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
declare class UploadDocumentForDispute {
|
|
1296
|
-
disputesRepository: iDisputesRepository;
|
|
1297
|
-
execute(disputeId: string, file: File, type: string, name: string, stepId?: number, questionId?: string): Promise<DisputeDocUploadResponse>;
|
|
1298
|
-
}
|
|
1299
|
-
|
|
1300
|
-
declare class DeleteDocumentForDispute {
|
|
1301
|
-
disputesRepository: iDisputesRepository;
|
|
1302
|
-
execute(disputeId: string, documentId: string): Promise<SuccessBaseResponse>;
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
declare class RetrieveDocumentForDispute {
|
|
1306
|
-
disputesRepository: iDisputesRepository;
|
|
1307
|
-
execute(disputeId: string): Promise<DisputeGetDocseResponse>;
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
declare class DownloadDocumentForDispute {
|
|
1311
|
-
disputesRepository: iDisputesRepository;
|
|
1312
|
-
execute(disputeId: string, documentId: string): Promise<any>;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
1228
|
declare const disputesIOCModule: ContainerModule;
|
|
1316
1229
|
|
|
1317
1230
|
declare const mockDisputesIOCModule: ContainerModule;
|
|
1318
1231
|
|
|
1319
1232
|
declare const ITF_DISPUTES_REPOSITORY: unique symbol;
|
|
1320
|
-
declare const INTR_START_DISPUTE: unique symbol;
|
|
1321
|
-
declare const INTR_SUBMIT_ANS_DISPUTE: unique symbol;
|
|
1322
|
-
declare const INTR_GET_ALL_STEPS_OF_DISPUTE: unique symbol;
|
|
1323
|
-
declare const INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID: unique symbol;
|
|
1324
|
-
declare const INTR_SUBMIT_DISPUTE: unique symbol;
|
|
1325
|
-
declare const INTR_UPLOAD_DOCUMENT_FOR_DISPUTE: unique symbol;
|
|
1326
|
-
declare const INTR_DELETE_DOCUMENT_FOR_DISPUTE: unique symbol;
|
|
1327
|
-
declare const INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE: unique symbol;
|
|
1328
|
-
declare const INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE: unique symbol;
|
|
1329
1233
|
|
|
1330
1234
|
declare const mswDisputesHandlers: msw.HttpHandler[];
|
|
1331
1235
|
|
|
@@ -1379,9 +1283,10 @@ declare const CUI_IFRAME_BASE_URL$4 = "https://web.ux-toolkit.dev.marqeta.com";
|
|
|
1379
1283
|
declare const GA_MAX_QUEUE_TTL$4 = 5000;
|
|
1380
1284
|
declare const GA_MAX_REQUEST_EVENT_LIMIT$4 = 3;
|
|
1381
1285
|
declare const I18N_BASE_URL$4 = "https://web.ux-toolkit.dev.marqeta.com";
|
|
1286
|
+
declare const DEFAULT_LOG_LEVEL$4 = "info";
|
|
1382
1287
|
|
|
1383
1288
|
declare namespace development {
|
|
1384
|
-
export { CDN_CARD_ART_BASE_URL$4 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$5 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$5 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$4 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$4 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$4 as CUI_IFRAME_BASE_URL, GA_MAX_QUEUE_TTL$4 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$4 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$4 as I18N_BASE_URL };
|
|
1289
|
+
export { CDN_CARD_ART_BASE_URL$4 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$5 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$5 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$4 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$4 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$4 as CUI_IFRAME_BASE_URL, DEFAULT_LOG_LEVEL$4 as DEFAULT_LOG_LEVEL, GA_MAX_QUEUE_TTL$4 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$4 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$4 as I18N_BASE_URL };
|
|
1385
1290
|
}
|
|
1386
1291
|
|
|
1387
1292
|
declare const CDN_CARD_ART_BASE_URL$3 = "https://web.ux-toolkit.qa.marqeta.com";
|
|
@@ -1393,9 +1298,10 @@ declare const CUI_IFRAME_BASE_URL$3 = "http://localhost:4001";
|
|
|
1393
1298
|
declare const GA_MAX_QUEUE_TTL$3 = 5000;
|
|
1394
1299
|
declare const GA_MAX_REQUEST_EVENT_LIMIT$3 = 3;
|
|
1395
1300
|
declare const I18N_BASE_URL$3 = "http://localhost:4001/static";
|
|
1301
|
+
declare const DEFAULT_LOG_LEVEL$3 = "info";
|
|
1396
1302
|
|
|
1397
1303
|
declare namespace localhost {
|
|
1398
|
-
export { CDN_CARD_ART_BASE_URL$3 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$4 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$4 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$3 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$3 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$3 as CUI_IFRAME_BASE_URL, GA_MAX_QUEUE_TTL$3 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$3 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$3 as I18N_BASE_URL };
|
|
1304
|
+
export { CDN_CARD_ART_BASE_URL$3 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$4 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$4 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$3 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$3 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$3 as CUI_IFRAME_BASE_URL, DEFAULT_LOG_LEVEL$3 as DEFAULT_LOG_LEVEL, GA_MAX_QUEUE_TTL$3 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$3 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$3 as I18N_BASE_URL };
|
|
1399
1305
|
}
|
|
1400
1306
|
|
|
1401
1307
|
declare const CUI_API_BASE_URL$3 = "https://cui-service-mock";
|
|
@@ -1414,9 +1320,10 @@ declare const CUI_IFRAME_BASE_URL$2 = "https://web.ux-toolkit.marqeta.com";
|
|
|
1414
1320
|
declare const GA_MAX_QUEUE_TTL$2 = 5000;
|
|
1415
1321
|
declare const GA_MAX_REQUEST_EVENT_LIMIT$2 = 25;
|
|
1416
1322
|
declare const I18N_BASE_URL$2 = "https://web.ux-toolkit.marqeta.com";
|
|
1323
|
+
declare const DEFAULT_LOG_LEVEL$2 = "warn";
|
|
1417
1324
|
|
|
1418
1325
|
declare namespace production {
|
|
1419
|
-
export { CDN_CARD_ART_BASE_URL$2 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$2 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$2 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$2 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$2 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$2 as CUI_IFRAME_BASE_URL, GA_MAX_QUEUE_TTL$2 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$2 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$2 as I18N_BASE_URL };
|
|
1326
|
+
export { CDN_CARD_ART_BASE_URL$2 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$2 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$2 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$2 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$2 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$2 as CUI_IFRAME_BASE_URL, DEFAULT_LOG_LEVEL$2 as DEFAULT_LOG_LEVEL, GA_MAX_QUEUE_TTL$2 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$2 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$2 as I18N_BASE_URL };
|
|
1420
1327
|
}
|
|
1421
1328
|
|
|
1422
1329
|
declare const CDN_CARD_ART_BASE_URL$1 = "https://web.ux-toolkit.qa.marqeta.com";
|
|
@@ -1428,9 +1335,10 @@ declare const CUI_IFRAME_BASE_URL$1 = "https://web.ux-toolkit.qa.marqeta.com";
|
|
|
1428
1335
|
declare const GA_MAX_QUEUE_TTL$1 = 5000;
|
|
1429
1336
|
declare const GA_MAX_REQUEST_EVENT_LIMIT$1 = 25;
|
|
1430
1337
|
declare const I18N_BASE_URL$1 = "https://web.ux-toolkit.qa.marqeta.com";
|
|
1338
|
+
declare const DEFAULT_LOG_LEVEL$1 = "info";
|
|
1431
1339
|
|
|
1432
1340
|
declare namespace qa {
|
|
1433
|
-
export { CDN_CARD_ART_BASE_URL$1 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$1 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$1 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$1 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$1 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$1 as CUI_IFRAME_BASE_URL, GA_MAX_QUEUE_TTL$1 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$1 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$1 as I18N_BASE_URL };
|
|
1341
|
+
export { CDN_CARD_ART_BASE_URL$1 as CDN_CARD_ART_BASE_URL, CDN_ICONS_BASE_URL$1 as CDN_ICONS_BASE_URL, CUI_API_BASE_URL$1 as CUI_API_BASE_URL, CUI_API_PINNED_CERTIFICATES$1 as CUI_API_PINNED_CERTIFICATES, CUI_API_PINNED_KEY_HASHES$1 as CUI_API_PINNED_KEY_HASHES, CUI_IFRAME_BASE_URL$1 as CUI_IFRAME_BASE_URL, DEFAULT_LOG_LEVEL$1 as DEFAULT_LOG_LEVEL, GA_MAX_QUEUE_TTL$1 as GA_MAX_QUEUE_TTL, GA_MAX_REQUEST_EVENT_LIMIT$1 as GA_MAX_REQUEST_EVENT_LIMIT, I18N_BASE_URL$1 as I18N_BASE_URL };
|
|
1434
1342
|
}
|
|
1435
1343
|
|
|
1436
1344
|
declare const CDN_CARD_ART_BASE_URL = "https://web.ux-toolkit.marqeta.com/sandbox";
|
|
@@ -1442,6 +1350,7 @@ declare const CUI_IFRAME_BASE_URL = "https://web.ux-toolkit.marqeta.com";
|
|
|
1442
1350
|
declare const GA_MAX_QUEUE_TTL = 5000;
|
|
1443
1351
|
declare const GA_MAX_REQUEST_EVENT_LIMIT = 25;
|
|
1444
1352
|
declare const I18N_BASE_URL = "https://web.ux-toolkit.marqeta.com";
|
|
1353
|
+
declare const DEFAULT_LOG_LEVEL = "info";
|
|
1445
1354
|
|
|
1446
1355
|
declare const sandbox_CDN_CARD_ART_BASE_URL: typeof CDN_CARD_ART_BASE_URL;
|
|
1447
1356
|
declare const sandbox_CDN_ICONS_BASE_URL: typeof CDN_ICONS_BASE_URL;
|
|
@@ -1449,48 +1358,28 @@ declare const sandbox_CUI_API_BASE_URL: typeof CUI_API_BASE_URL;
|
|
|
1449
1358
|
declare const sandbox_CUI_API_PINNED_CERTIFICATES: typeof CUI_API_PINNED_CERTIFICATES;
|
|
1450
1359
|
declare const sandbox_CUI_API_PINNED_KEY_HASHES: typeof CUI_API_PINNED_KEY_HASHES;
|
|
1451
1360
|
declare const sandbox_CUI_IFRAME_BASE_URL: typeof CUI_IFRAME_BASE_URL;
|
|
1361
|
+
declare const sandbox_DEFAULT_LOG_LEVEL: typeof DEFAULT_LOG_LEVEL;
|
|
1452
1362
|
declare const sandbox_GA_MAX_QUEUE_TTL: typeof GA_MAX_QUEUE_TTL;
|
|
1453
1363
|
declare const sandbox_GA_MAX_REQUEST_EVENT_LIMIT: typeof GA_MAX_REQUEST_EVENT_LIMIT;
|
|
1454
1364
|
declare const sandbox_I18N_BASE_URL: typeof I18N_BASE_URL;
|
|
1455
1365
|
declare namespace sandbox {
|
|
1456
|
-
export { sandbox_CDN_CARD_ART_BASE_URL as CDN_CARD_ART_BASE_URL, sandbox_CDN_ICONS_BASE_URL as CDN_ICONS_BASE_URL, sandbox_CUI_API_BASE_URL as CUI_API_BASE_URL, sandbox_CUI_API_PINNED_CERTIFICATES as CUI_API_PINNED_CERTIFICATES, sandbox_CUI_API_PINNED_KEY_HASHES as CUI_API_PINNED_KEY_HASHES, sandbox_CUI_IFRAME_BASE_URL as CUI_IFRAME_BASE_URL, sandbox_GA_MAX_QUEUE_TTL as GA_MAX_QUEUE_TTL, sandbox_GA_MAX_REQUEST_EVENT_LIMIT as GA_MAX_REQUEST_EVENT_LIMIT, sandbox_I18N_BASE_URL as I18N_BASE_URL };
|
|
1366
|
+
export { sandbox_CDN_CARD_ART_BASE_URL as CDN_CARD_ART_BASE_URL, sandbox_CDN_ICONS_BASE_URL as CDN_ICONS_BASE_URL, sandbox_CUI_API_BASE_URL as CUI_API_BASE_URL, sandbox_CUI_API_PINNED_CERTIFICATES as CUI_API_PINNED_CERTIFICATES, sandbox_CUI_API_PINNED_KEY_HASHES as CUI_API_PINNED_KEY_HASHES, sandbox_CUI_IFRAME_BASE_URL as CUI_IFRAME_BASE_URL, sandbox_DEFAULT_LOG_LEVEL as DEFAULT_LOG_LEVEL, sandbox_GA_MAX_QUEUE_TTL as GA_MAX_QUEUE_TTL, sandbox_GA_MAX_REQUEST_EVENT_LIMIT as GA_MAX_REQUEST_EVENT_LIMIT, sandbox_I18N_BASE_URL as I18N_BASE_URL };
|
|
1457
1367
|
}
|
|
1458
1368
|
|
|
1459
|
-
declare
|
|
1460
|
-
private cacheService;
|
|
1461
|
-
execute(): string;
|
|
1462
|
-
}
|
|
1369
|
+
declare function getActiveEnvName(): string;
|
|
1463
1370
|
|
|
1464
1371
|
type EnvType = {
|
|
1465
1372
|
[key: string]: Dictionary;
|
|
1466
1373
|
};
|
|
1467
|
-
declare
|
|
1468
|
-
private cacheService;
|
|
1469
|
-
private isMockModeEnabled;
|
|
1470
|
-
private readonly defaultActiveEnv;
|
|
1471
|
-
execute(configName: string): unknown;
|
|
1472
|
-
private validateConfigs;
|
|
1473
|
-
}
|
|
1374
|
+
declare function getEnvConfigValueByName(configName: string): unknown;
|
|
1474
1375
|
|
|
1475
|
-
declare
|
|
1476
|
-
cacheService: iCacheService;
|
|
1477
|
-
execute(): boolean;
|
|
1478
|
-
}
|
|
1376
|
+
declare function isMockModeEnabled(): boolean;
|
|
1479
1377
|
|
|
1480
|
-
declare
|
|
1481
|
-
private cacheService;
|
|
1482
|
-
execute(envName: string): Promise<void>;
|
|
1483
|
-
}
|
|
1378
|
+
declare function setActiveEnvName(envName: string): Promise<void>;
|
|
1484
1379
|
|
|
1485
|
-
declare
|
|
1486
|
-
cacheService: iCacheService;
|
|
1487
|
-
execute(enabled: boolean): void;
|
|
1488
|
-
}
|
|
1380
|
+
declare function setMockMode(enabled: boolean): void;
|
|
1489
1381
|
|
|
1490
|
-
declare
|
|
1491
|
-
private cacheService;
|
|
1492
|
-
execute(): string;
|
|
1493
|
-
}
|
|
1382
|
+
declare function getLanguageCode(): string;
|
|
1494
1383
|
|
|
1495
1384
|
declare abstract class iGetEnvConfigValueByName {
|
|
1496
1385
|
abstract execute(configName: string): any;
|
|
@@ -1502,9 +1391,6 @@ declare class MockGetEnvConfigValueByName implements iGetEnvConfigValueByName {
|
|
|
1502
1391
|
|
|
1503
1392
|
declare const envConfigIOCModule: ContainerModule;
|
|
1504
1393
|
|
|
1505
|
-
declare const mockEnvConfigIOCModule: ContainerModule;
|
|
1506
|
-
|
|
1507
|
-
declare const INTR_GET_ENV_CONFIG_VALUE_BY_NAME: unique symbol;
|
|
1508
1394
|
declare const INTR_GET_ACTIVE_ENV_NAME: unique symbol;
|
|
1509
1395
|
declare const INTR_SET_ACTIVE_ENV_NAME: unique symbol;
|
|
1510
1396
|
declare const INTR_IS_MOCK_MODE_ENABLED: unique symbol;
|
|
@@ -1725,7 +1611,6 @@ declare abstract class iKycRepository {
|
|
|
1725
1611
|
|
|
1726
1612
|
declare class RestKycRepository implements iKycRepository {
|
|
1727
1613
|
private httpClient;
|
|
1728
|
-
private getEnvConfigValueByName;
|
|
1729
1614
|
postVerifyKyc(kycVerificationAttributes: KycVerificationRequest): Promise<KycVerificationResponse>;
|
|
1730
1615
|
}
|
|
1731
1616
|
|
|
@@ -1812,7 +1697,6 @@ declare const mswKybHandlers: msw.HttpHandler[];
|
|
|
1812
1697
|
|
|
1813
1698
|
declare class RestKybRepository implements iKybRepository {
|
|
1814
1699
|
private readonly httpClient;
|
|
1815
|
-
private readonly getEnvConfigValueByName;
|
|
1816
1700
|
initializeOnboarding(localeCode: string): Promise<KybEvaluationResponse>;
|
|
1817
1701
|
postVerifyKyb(request: KybEvaluationRequest): Promise<KybEvaluationResponse>;
|
|
1818
1702
|
}
|
|
@@ -1823,6 +1707,74 @@ declare const mockKybIOCModule: ContainerModule;
|
|
|
1823
1707
|
|
|
1824
1708
|
declare const ITF_KYB: unique symbol;
|
|
1825
1709
|
|
|
1710
|
+
declare enum LogLevel {
|
|
1711
|
+
ERROR = 0,
|
|
1712
|
+
WARN = 1,
|
|
1713
|
+
INFO = 2,
|
|
1714
|
+
DEBUG = 3
|
|
1715
|
+
}
|
|
1716
|
+
declare enum LogLevelString {
|
|
1717
|
+
ERROR = "error",
|
|
1718
|
+
WARN = "warn",
|
|
1719
|
+
INFO = "info",
|
|
1720
|
+
DEBUG = "debug"
|
|
1721
|
+
}
|
|
1722
|
+
type LogContext = {
|
|
1723
|
+
[key: string]: any;
|
|
1724
|
+
};
|
|
1725
|
+
declare abstract class iLoggerService {
|
|
1726
|
+
abstract setLogLevel(level: LogLevel): void;
|
|
1727
|
+
abstract getLogLevel(): LogLevel;
|
|
1728
|
+
abstract error(message: string, context?: LogContext): void;
|
|
1729
|
+
abstract warn(message: string, context?: LogContext): void;
|
|
1730
|
+
abstract info(message: string, context?: LogContext): void;
|
|
1731
|
+
abstract debug(message: string, context?: LogContext): void;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
declare class ConsoleLoggerService extends iLoggerService {
|
|
1735
|
+
private logLevel;
|
|
1736
|
+
setLogLevel(level: LogLevel): void;
|
|
1737
|
+
getLogLevel(): LogLevel;
|
|
1738
|
+
error(message: string, context?: LogContext): void;
|
|
1739
|
+
warn(message: string, context?: LogContext): void;
|
|
1740
|
+
info(message: string, context?: LogContext): void;
|
|
1741
|
+
debug(message: string, context?: LogContext): void;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
declare function logError(message: string, context?: LogContext): void;
|
|
1745
|
+
|
|
1746
|
+
declare function logWarn(message: string, context?: LogContext): void;
|
|
1747
|
+
|
|
1748
|
+
declare function logInfo(message: string, context?: LogContext): void;
|
|
1749
|
+
|
|
1750
|
+
declare function logDebug(message: string, context?: LogContext): void;
|
|
1751
|
+
|
|
1752
|
+
declare function setLogLevel(level: LogLevelString): void;
|
|
1753
|
+
|
|
1754
|
+
declare function getLogLevel(): LogLevelString;
|
|
1755
|
+
|
|
1756
|
+
declare class MockLoggerService extends iLoggerService {
|
|
1757
|
+
private logLevel;
|
|
1758
|
+
logs: Array<{
|
|
1759
|
+
level: string;
|
|
1760
|
+
message: string;
|
|
1761
|
+
context?: LogContext;
|
|
1762
|
+
}>;
|
|
1763
|
+
setLogLevel(level: LogLevel): void;
|
|
1764
|
+
getLogLevel(): LogLevel;
|
|
1765
|
+
error(message: string, context?: LogContext): void;
|
|
1766
|
+
warn(message: string, context?: LogContext): void;
|
|
1767
|
+
info(message: string, context?: LogContext): void;
|
|
1768
|
+
debug(message: string, context?: LogContext): void;
|
|
1769
|
+
clearLogs(): void;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
declare const ITF_LOGGER_SERVICE: unique symbol;
|
|
1773
|
+
|
|
1774
|
+
declare const loggingIOCModule: ContainerModule;
|
|
1775
|
+
|
|
1776
|
+
declare const mockLoggingIOCModule: ContainerModule;
|
|
1777
|
+
|
|
1826
1778
|
type ExternalCardsRecord = {
|
|
1827
1779
|
token: string;
|
|
1828
1780
|
expiration: string;
|
|
@@ -2054,7 +2006,6 @@ declare function verifyOTP(request: VerifyOTPRequest): Promise<LoginWithPassword
|
|
|
2054
2006
|
|
|
2055
2007
|
declare class RestIdpService extends iIdpService {
|
|
2056
2008
|
private httpClient;
|
|
2057
|
-
private getEnvConfigValueByName;
|
|
2058
2009
|
private validateOAuthBaseUrl;
|
|
2059
2010
|
requestOtpCode(request: RequestOtpCodeRequest): Promise<RequestOtpCodeResponse>;
|
|
2060
2011
|
loginWithPassword(request: LoginWithPasswordRequest): Promise<LoginWithPasswordResponse>;
|
|
@@ -2106,22 +2057,14 @@ declare abstract class iStatementsRepository {
|
|
|
2106
2057
|
abstract getStatementAsset(issued_date: string, account_token?: string): Promise<StatementAssetResponse>;
|
|
2107
2058
|
}
|
|
2108
2059
|
|
|
2109
|
-
declare
|
|
2110
|
-
statementsRepository: iStatementsRepository;
|
|
2111
|
-
execute(paginationParams: StatementsPaginationParams): Promise<StatementsResponse>;
|
|
2112
|
-
}
|
|
2060
|
+
declare function getStatements(paginationParams: StatementsPaginationParams): Promise<StatementsResponse>;
|
|
2113
2061
|
|
|
2114
|
-
declare
|
|
2115
|
-
statementsRepository: iStatementsRepository;
|
|
2116
|
-
execute(issuedDate: string, accountToken?: string): Promise<StatementAssetResponse>;
|
|
2117
|
-
}
|
|
2062
|
+
declare function getStatementAsset(issuedDate: string, accountToken?: string): Promise<StatementAssetResponse>;
|
|
2118
2063
|
|
|
2119
2064
|
declare const statementsIOCModule: ContainerModule;
|
|
2120
2065
|
|
|
2121
2066
|
declare const ITF_STATEMENTS: unique symbol;
|
|
2122
|
-
declare const INTR_GET_STATEMENTS: unique symbol;
|
|
2123
2067
|
declare const ITF_STATEMENT_ASSET: unique symbol;
|
|
2124
|
-
declare const INTR_GET_STATEMENT_ASSET: unique symbol;
|
|
2125
2068
|
|
|
2126
2069
|
declare const mswStatementsHandlers: msw.HttpHandler[];
|
|
2127
2070
|
|
|
@@ -2522,11 +2465,12 @@ type ThemeResponse = {
|
|
|
2522
2465
|
theme?: ThemeObject;
|
|
2523
2466
|
themeName?: string;
|
|
2524
2467
|
};
|
|
2525
|
-
declare
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2468
|
+
declare function getActiveTheme(): ThemeResponse | undefined;
|
|
2469
|
+
declare function deepMergeThemeObject(target: ThemeObject, source: ThemeObject | undefined, visited?: WeakSet<object>): ThemeObject;
|
|
2470
|
+
|
|
2471
|
+
declare function setActiveThemeByName(themeName?: string): Promise<void>;
|
|
2472
|
+
|
|
2473
|
+
declare function getIconsByName(iconsName: string): Promise<IconsObject>;
|
|
2530
2474
|
|
|
2531
2475
|
declare abstract class iThemeRepository {
|
|
2532
2476
|
abstract getThemeByName(themeName: string): Promise<ThemeObject>;
|
|
@@ -2557,25 +2501,11 @@ declare abstract class iIconsRepository {
|
|
|
2557
2501
|
abstract getIconsByName(iconsName: string): Promise<IconsObject>;
|
|
2558
2502
|
}
|
|
2559
2503
|
|
|
2560
|
-
declare class SetActiveThemeByName {
|
|
2561
|
-
cacheService: iCacheService;
|
|
2562
|
-
themeRepository: iThemeRepository;
|
|
2563
|
-
execute(themeName?: string): Promise<void>;
|
|
2564
|
-
}
|
|
2565
|
-
|
|
2566
|
-
declare class GetIconsByName {
|
|
2567
|
-
iconsRepository: iIconsRepository;
|
|
2568
|
-
execute(iconsName: string): Promise<IconsObject>;
|
|
2569
|
-
}
|
|
2570
|
-
|
|
2571
2504
|
declare const mockThemesIOCModule: ContainerModule;
|
|
2572
2505
|
|
|
2573
2506
|
declare const themesIOCModule: ContainerModule;
|
|
2574
2507
|
|
|
2575
|
-
declare const INTR_GET_ACTIVE_THEME: unique symbol;
|
|
2576
|
-
declare const INTR_SET_ACTIVE_THEME_BY_NAME: unique symbol;
|
|
2577
2508
|
declare const ITF_THEME_REPOSITORY: unique symbol;
|
|
2578
|
-
declare const INTR_GET_ICONS: unique symbol;
|
|
2579
2509
|
declare const ITF_ICONS_REPOSITORY: unique symbol;
|
|
2580
2510
|
|
|
2581
2511
|
declare const iconsIOCModule: ContainerModule;
|
|
@@ -2727,26 +2657,15 @@ type GetTransactionsResponse = {
|
|
|
2727
2657
|
hasMore: boolean;
|
|
2728
2658
|
data: TransactionRecord[];
|
|
2729
2659
|
};
|
|
2730
|
-
declare
|
|
2731
|
-
transactionsRepository: iTransactionsRepository;
|
|
2732
|
-
execute(paginationParams: TransactionsPaginationParams): Promise<GetTransactionsResponse>;
|
|
2733
|
-
private addNonPendingTransactions;
|
|
2734
|
-
private addNonPendingPaginationParams;
|
|
2735
|
-
}
|
|
2660
|
+
declare function getTransactions(paginationParams: TransactionsPaginationParams): Promise<GetTransactionsResponse>;
|
|
2736
2661
|
|
|
2737
|
-
declare
|
|
2738
|
-
transactionsRepository: iTransactionsRepository;
|
|
2739
|
-
execute(transaction_token: string): Promise<TransactionDetailsResponse>;
|
|
2740
|
-
}
|
|
2662
|
+
declare function getTransactionDetails(transaction_token: string): Promise<TransactionDetailsResponse>;
|
|
2741
2663
|
|
|
2742
2664
|
declare function getUserTransactionsV2(paginationParams: UserTransactionsParam): Promise<TransactionsV2Response>;
|
|
2743
2665
|
|
|
2744
2666
|
declare const transactionsIOCModule: ContainerModule;
|
|
2745
2667
|
|
|
2746
2668
|
declare const ITF_TRANSACTIONS: unique symbol;
|
|
2747
|
-
declare const INTR_GET_TRANSACTIONS: unique symbol;
|
|
2748
|
-
declare const INTR_GET_TRANSACTIONS_V2: unique symbol;
|
|
2749
|
-
declare const INTR_GET_TRANSACTION_DETAILS: unique symbol;
|
|
2750
2669
|
|
|
2751
2670
|
declare const mswTransactionsHandlers: msw.HttpHandler[];
|
|
2752
2671
|
|
|
@@ -3058,6 +2977,12 @@ declare const getMockUserRequestToCreateResponse: (mockCreateUserAttributes: Cre
|
|
|
3058
2977
|
declare const mockUpdateUserResponse: CreateUserResponse;
|
|
3059
2978
|
declare const getMockUpdatedUserRequestToCreateResponse: (mockCreateUserAttributes: CreateUserRequest) => CreateUserResponse;
|
|
3060
2979
|
|
|
2980
|
+
declare function getUser(): Promise<UserEntity>;
|
|
2981
|
+
|
|
2982
|
+
declare function postCreateUser(createUserAttributes: CreateUserRequest): Promise<CreateUserResponse>;
|
|
2983
|
+
|
|
2984
|
+
declare function putUpdateUser(updateUserAttributes: CreateUserRequest): Promise<CreateUserResponse>;
|
|
2985
|
+
|
|
3061
2986
|
declare abstract class iUsersRepository {
|
|
3062
2987
|
abstract getUser(): Promise<UserEntity>;
|
|
3063
2988
|
abstract postCreateUser(createUserAttributes: CreateUserRequest): Promise<CreateUserResponse>;
|
|
@@ -3080,26 +3005,17 @@ declare const VALID_CUI_USER_RESPONSE: {
|
|
|
3080
3005
|
country: string;
|
|
3081
3006
|
};
|
|
3082
3007
|
declare class MockiUsersRepository implements iUsersRepository {
|
|
3008
|
+
private createUserResponse?;
|
|
3009
|
+
private createUserError?;
|
|
3083
3010
|
getUser(): Promise<UserEntity>;
|
|
3084
3011
|
postCreateUser(mockCreateUserRequest: CreateUserRequest): Promise<CreateUserResponse>;
|
|
3085
3012
|
putUpdateUser(mockUpdateUserRequest: CreateUserRequest): Promise<CreateUserResponse>;
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
declare class GetUser {
|
|
3089
|
-
userRepository: iUsersRepository;
|
|
3090
|
-
execute(): Promise<UserEntity>;
|
|
3091
|
-
}
|
|
3092
|
-
|
|
3093
|
-
declare function postCreateUser(createUserAttributes: CreateUserRequest): Promise<CreateUserResponse>;
|
|
3094
|
-
|
|
3095
|
-
declare class PutUpdateUser {
|
|
3096
|
-
userRepository: iUsersRepository;
|
|
3097
|
-
execute(updateUserAttributes: CreateUserRequest): Promise<CreateUserResponse>;
|
|
3013
|
+
setCreateUserResponse(response: CreateUserResponse): void;
|
|
3014
|
+
setCreateUserError(error: Error): void;
|
|
3098
3015
|
}
|
|
3099
3016
|
|
|
3100
3017
|
declare class RestUsersRepository implements iUsersRepository {
|
|
3101
3018
|
private httpClient;
|
|
3102
|
-
private getEnvConfigValueByName;
|
|
3103
3019
|
getUser(): Promise<UserEntity>;
|
|
3104
3020
|
postCreateUser(createUserAttributes: CreateUserRequest): Promise<CreateUserResponse>;
|
|
3105
3021
|
putUpdateUser(updateUserAttributes: CreateUserRequest): Promise<CreateUserResponse>;
|
|
@@ -3108,9 +3024,6 @@ declare class RestUsersRepository implements iUsersRepository {
|
|
|
3108
3024
|
declare const usersIOCModule: ContainerModule;
|
|
3109
3025
|
|
|
3110
3026
|
declare const ITF_USERS: unique symbol;
|
|
3111
|
-
declare const INTR_GET_USER: unique symbol;
|
|
3112
|
-
declare const INTR_POST_CREATE_USER: unique symbol;
|
|
3113
|
-
declare const INTR_PUT_UPDATE_USER: unique symbol;
|
|
3114
3027
|
|
|
3115
3028
|
declare const mockUsersIOCModule: ContainerModule;
|
|
3116
3029
|
|
|
@@ -4336,7 +4249,6 @@ declare class RestWlaService implements iWlaService {
|
|
|
4336
4249
|
private cacheService;
|
|
4337
4250
|
private httpClient;
|
|
4338
4251
|
private unauthenticatedHttpClient;
|
|
4339
|
-
private getEnvConfigValueByName;
|
|
4340
4252
|
setAppConfig(appVersion: string, deviceId: string, clientIp: string): void;
|
|
4341
4253
|
private getAppConfig;
|
|
4342
4254
|
private getCommonWlaApiHeaders;
|
|
@@ -4494,4 +4406,4 @@ declare const ITF_WLA_SERVICE: unique symbol;
|
|
|
4494
4406
|
|
|
4495
4407
|
declare const container: Container;
|
|
4496
4408
|
|
|
4497
|
-
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, type Address, type Alert, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, BaseDpopAuthCredentialService, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CREATE_USERS_BAD_REQUEST, CREATE_USERS_INTERNAL_SERVER_ERROR, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, type CardArtUrlJsontype, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, type ChangePasswordRequest, CleanupOnUnload, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, type CreateCardRequest, type CreateCardResponse, CreateCardUseCase, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DeleteDocumentForDispute, DepositAccountEntity, type DepositAccountEntityJsonType, type DeviceDetails, type Dictionary, Direction, type DisputeSuccessResponse, DownloadDocumentForDispute, DpopAuthCredentialService, type DynamicFormQuestion, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, type ExternalCardRequest, type ExternalCardWithUserRequest, type ExternalCardsList, type ExternalCardsRecord, type ExternalCardsResponse, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, type HandleMFARequiredRequest, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_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_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_IDP_SERVICE, ITF_KYB, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InMemSsoAccessTokenService, type InterestTierRateResponse, InterestTierResponseTypeEnum, IsMockModeEnabled, KYB_ADDRESS_ISSUE_SSN, KYB_BAD_GENERAL_SSN, KYB_DOB_ISSUE_SSN, KYB_LOADING_SSN, KYB_NAME_ISSUE_SSN, KYB_OBAC_ISSUE_SSN, type KybEvaluationRequest, type KybEvaluationResponse, KybEvaluationStatus, type KybValidationRule, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, type LoginWithPasswordRequest, type LoginWithPasswordResponse, LoyaltyTier, M2mAuthenticatedHttpClient, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockIdpService, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OTPVerificationRequest, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, OfferStatus, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, OutageType, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, type RefreshAccessTokenRequest, type RefreshAccessTokenResponse, type RefreshTokenResponse, type RegExpPattern, RegisterCleanupHandler, ReplaceCardByToken, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, type RequestOtpCodeRequest, type RequestOtpCodeResponse, type ResendVerificationEmailResponse, type ResetPasswordBodyRequest, RestAuthService, RestComponentsRepository, RestIdpService, RestKybRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, SetPinRequestUsecaseEnum, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SsoAccessTokenHandler, SsoAuthenticatedHttpClient, 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, TransactionChallengeAuthenticationMethod, TransactionChallengeCancelReason, type TransactionChallengeDecisionRequest, TransactionChallengeDecisionRequestResultEnum, type TransactionChallengeDecisionResponse, TransactionChallengeDecisionResponseStatusEnum, type TransactionChallengeMerchantResponse, type TransactionChallengeResponse, TransactionChallengeResponseCardNetworkEnum, TransactionChallengeResponseStateEnum, type TransactionChallengeTransactionResponse, TransactionChallengeTransactionResponseSubTypeEnum, TransactionChallengeTransactionResponseTransactionTypeEnum, TransactionDetailIconTypeEnum, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionV2Record, type TransactionsPaginationParams, type TransactionsResponse, type TransactionsV2Response, type Transfer, type TransferListResponse, type TransferRequest, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, UpdatePinByCardToken, type UpdatePinResponse, UploadDocumentForDispute, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, type UserTransactionsParam, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, addExternalCard, addExternalCardWithUserToken, authIOCModule, bookTransfer, cardsIOCModule, changeWlaPassword, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthApiHeadersResolver, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getExternalCards, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getNextTransactionChallenge, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransactionChallengeByToken, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getUserTransactionsV2, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, initiateTransfer, isComponentEnabled, kybIOCModule, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, loginWithIdAndPassword, markAccountActivated, markAccountVerified, markPasswordSetupDone, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockIdpIOCModule, mockInvalidCreateUserRequest, mockInvalidKybEvaluationRequest, mockInvalidKybVerificationRequest, mockInvalidKycVerificationRequest, mockKybEvaluationRequest, mockKybEvaluationResponse, mockKybIOCModule, mockKybVerificationRequest, mockKybVerificationResponse, mockKycVerificationRequest, mockKycVerificationResponse, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKybHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postTransactionChallengeDecision, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, qa, refreshAccessToken, registerDeviceForPushNotifications, removeExternalCard, replaceWlaCard, requestOtpCode, resendVerificationEmail, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthApiHeadersResolver, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, verifyOTP, verifyUserDevice };
|
|
4409
|
+
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, type ActivationActions, type ActivationActionsModel, type Address, type Alert, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, BaseDpopAuthCredentialService, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CREATE_USERS_BAD_REQUEST, CREATE_USERS_INTERNAL_SERVER_ERROR, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, type CardArtUrlJsontype, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, type ChangePasswordRequest, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, ConsoleLoggerService, type CreateCardRequest, type CreateCardResponse, CreateCardUseCase, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DepositAccountEntity, type DepositAccountEntityJsonType, type DeviceDetails, type Dictionary, Direction, type DisputeSuccessResponse, DpopAuthCredentialService, type DynamicFormQuestion, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, type ExternalCardRequest, type ExternalCardWithUserRequest, type ExternalCardsList, type ExternalCardsRecord, type ExternalCardsResponse, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, type GetAccountTransactionsRequest, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, type GetTransactionsResponse, type HandleMFARequiredRequest, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_CLIENT_ID, INTR_GET_LANGUAGE_CODE, INTR_GET_SESSION_ID, INTR_IS_MOCK_MODE_ENABLED, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_MOCK_MODE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_IDP_SERVICE, ITF_KYB, ITF_KYC, ITF_LOGGER_SERVICE, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InMemSsoAccessTokenService, type InterestTierRateResponse, InterestTierResponseTypeEnum, KYB_ADDRESS_ISSUE_SSN, KYB_BAD_GENERAL_SSN, KYB_DOB_ISSUE_SSN, KYB_LOADING_SSN, KYB_NAME_ISSUE_SSN, KYB_OBAC_ISSUE_SSN, type KybEvaluationRequest, type KybEvaluationResponse, KybEvaluationStatus, type KybValidationRule, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, type LogContext, LogLevel, LogLevelString, type LoginWithPasswordRequest, type LoginWithPasswordResponse, LoyaltyTier, M2mAuthenticatedHttpClient, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockIdpService, MockLoggerService, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OTPVerificationRequest, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, OfferStatus, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, OutageType, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, type RefreshAccessTokenRequest, type RefreshAccessTokenResponse, type RefreshTokenResponse, type RegExpPattern, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, type RequestOtpCodeRequest, type RequestOtpCodeResponse, type ResendVerificationEmailResponse, type ResetPasswordBodyRequest, RestAuthService, RestComponentsRepository, RestIdpService, RestKybRepository, RestKycRepository, RestUsersRepository, RestWlaService, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetPinRequestUsecaseEnum, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SsoAccessTokenHandler, SsoAuthenticatedHttpClient, type StandardOkResponse, StandardizedError, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, type SubmitAnswerPayload, type SubmitDisputeSuccessResponse, type SuccessBaseResponse, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, type ThemeObject, TransactionChallengeAuthenticationMethod, TransactionChallengeCancelReason, type TransactionChallengeDecisionRequest, TransactionChallengeDecisionRequestResultEnum, type TransactionChallengeDecisionResponse, TransactionChallengeDecisionResponseStatusEnum, type TransactionChallengeMerchantResponse, type TransactionChallengeResponse, TransactionChallengeResponseCardNetworkEnum, TransactionChallengeResponseStateEnum, type TransactionChallengeTransactionResponse, TransactionChallengeTransactionResponseSubTypeEnum, TransactionChallengeTransactionResponseTransactionTypeEnum, TransactionDetailIconTypeEnum, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionV2Record, type TransactionsPaginationParams, type TransactionsResponse, type TransactionsV2Response, type Transfer, type TransferListResponse, type TransferRequest, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, type UpdatePinResponse, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, type UserTransactionsParam, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, activateCardByTokenOrPan, addExternalCard, addExternalCardWithUserToken, authIOCModule, bookTransfer, cardsIOCModule, changeWlaPassword, checkAndRefreshAuthToken, cleanupOnUnload, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteDocumentForDispute, deleteRegistrationForPushNotifications, development, disputesIOCModule, downloadDocumentForDispute, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountBalances, getAccountHolderGroup, getAccountTransactions, getActiveEnvName, getActiveIocContainer, getActiveTheme, getAllStepsOfDispute, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthApiHeadersResolver, getCachedAuthToken, getCachedAuthTokenExpiration, getCardByToken, getCardholderContext, getCardsByUserToken, getClientId, getConsentById, getConsents, getDepositAccounts, getEnvConfigValueByName, getExternalAccount, getExternalAccountList, getExternalCards, getIconsByName, getLanguageCode, getLogLevel, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getNextTransactionChallenge, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getPinByCardToken, getSessionId, getShowpanByCardToken, getSsoAccessTokenHandler, getStatementAsset, getStatements, getStepOfDisputeByStepId, getTransactionChallengeByToken, getTransactionDetails, getTransactions, getTransferByToken, getTransfers, getUser, getUserProgram, getUserTokenHash, getUserTransactionsV2, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iLoggerService, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, initiateTransfer, isComponentEnabled, isMockModeEnabled, kybIOCModule, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, lockCardByToken, logDebug, logError, logInfo, logWarn, loggingIOCModule, loginWithIdAndPassword, markAccountActivated, markAccountVerified, markPasswordSetupDone, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockFeatureFlagIOCModule, mockIdpIOCModule, mockInvalidCreateUserRequest, mockInvalidKybEvaluationRequest, mockInvalidKybVerificationRequest, mockInvalidKycVerificationRequest, mockKybEvaluationRequest, mockKybEvaluationResponse, mockKybIOCModule, mockKybVerificationRequest, mockKybVerificationResponse, mockKycVerificationRequest, mockKycVerificationResponse, mockLoggingIOCModule, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKybHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postTransactionChallengeDecision, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, putUpdateUser, qa, refreshAccessToken, registerCleanupHandler, registerDeviceForPushNotifications, removeExternalCard, replaceCardByToken, replaceWlaCard, requestOtpCode, resendVerificationEmail, retrieveDocumentForDispute, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveEnvName, setActiveIocContainer, setActiveThemeByName, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthApiHeadersResolver, setCachedAuthToken, setLogLevel, setMockMode, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, startDispute, statementsIOCModule, submitAnswerForDisputeQuestion, submitDispute, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, unlockCardByToken, updateConsentStatus, updateExternalAccount, updatePinByCardToken, uploadDocumentForDispute, usersIOCModule, verifyExternalAccount, verifyOTP, verifyUserDevice };
|