@marqeta/ux-toolkit-sdk-javascript 2.0.0 → 2.2.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 +347 -144
- package/dist/index.d.ts +347 -144
- package/dist/index.js +781 -252
- package/dist/index.mjs +743 -266
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2877,6 +2877,99 @@ declare enum TransactionDirection {
|
|
|
2877
2877
|
Out = "OUT"
|
|
2878
2878
|
}
|
|
2879
2879
|
|
|
2880
|
+
interface AtmSearch {
|
|
2881
|
+
addressLine1?: string;
|
|
2882
|
+
addressLine2?: string;
|
|
2883
|
+
city?: string;
|
|
2884
|
+
countryCode?: string;
|
|
2885
|
+
countrySubdivisionCode?: string;
|
|
2886
|
+
latitude?: string;
|
|
2887
|
+
longitude?: string;
|
|
2888
|
+
postalCode?: string;
|
|
2889
|
+
}
|
|
2890
|
+
interface AtmsResponse {
|
|
2891
|
+
atms: Array<AtmLocation>;
|
|
2892
|
+
count?: number;
|
|
2893
|
+
limit?: number;
|
|
2894
|
+
offset?: number;
|
|
2895
|
+
total?: number;
|
|
2896
|
+
}
|
|
2897
|
+
interface AtmLocation {
|
|
2898
|
+
access_fees?: AtmLocationAccessFeesEnum;
|
|
2899
|
+
address_line1?: string;
|
|
2900
|
+
address_line2?: string;
|
|
2901
|
+
availability?: AtmLocationAvailabilityEnum;
|
|
2902
|
+
city?: string;
|
|
2903
|
+
country_code?: string;
|
|
2904
|
+
country_name?: string;
|
|
2905
|
+
distance?: number;
|
|
2906
|
+
distance_unit?: AtmLocationDistanceUnitEnum;
|
|
2907
|
+
handicap_accessible?: AtmLocationHandicapAccessibleEnum;
|
|
2908
|
+
has_shared_deposit?: AtmLocationHasSharedDepositEnum;
|
|
2909
|
+
is_surcharge_free_alliance?: AtmLocationIsSurchargeFreeAllianceEnum;
|
|
2910
|
+
latitude?: string;
|
|
2911
|
+
location_name?: string;
|
|
2912
|
+
location_type?: AtmLocationLocationTypeEnum;
|
|
2913
|
+
longitude?: string;
|
|
2914
|
+
postal_code?: string;
|
|
2915
|
+
supports_contactLess?: AtmLocationSupportsContactLessEnum;
|
|
2916
|
+
surcharge_free_alliance_network?: AtmLocationSurchargeFreeAllianceNetworkEnum;
|
|
2917
|
+
}
|
|
2918
|
+
declare enum AtmLocationAccessFeesEnum {
|
|
2919
|
+
Unknown = "UNKNOWN",
|
|
2920
|
+
Domestic = "DOMESTIC",
|
|
2921
|
+
International = "INTERNATIONAL",
|
|
2922
|
+
DomesticAndInternational = "DOMESTIC_AND_INTERNATIONAL",
|
|
2923
|
+
NoFee = "NO_FEE"
|
|
2924
|
+
}
|
|
2925
|
+
declare enum AtmLocationAvailabilityEnum {
|
|
2926
|
+
Unknown = "UNKNOWN",
|
|
2927
|
+
AlwaysAvailable = "ALWAYS_AVAILABLE",
|
|
2928
|
+
BusinessHours = "BUSINESS_HOURS",
|
|
2929
|
+
IrregularHours = "IRREGULAR_HOURS"
|
|
2930
|
+
}
|
|
2931
|
+
declare enum AtmLocationDistanceUnitEnum {
|
|
2932
|
+
Km = "KM",
|
|
2933
|
+
Mile = "MILE"
|
|
2934
|
+
}
|
|
2935
|
+
declare enum AtmLocationHandicapAccessibleEnum {
|
|
2936
|
+
Unknown = "UNKNOWN",
|
|
2937
|
+
IsHandicapAccessible = "IS_HANDICAP_ACCESSIBLE",
|
|
2938
|
+
NotHandicapAccessible = "NOT_HANDICAP_ACCESSIBLE"
|
|
2939
|
+
}
|
|
2940
|
+
declare enum AtmLocationHasSharedDepositEnum {
|
|
2941
|
+
True = "true",
|
|
2942
|
+
False = "false"
|
|
2943
|
+
}
|
|
2944
|
+
declare enum AtmLocationIsSurchargeFreeAllianceEnum {
|
|
2945
|
+
True = "true",
|
|
2946
|
+
False = "false"
|
|
2947
|
+
}
|
|
2948
|
+
declare enum AtmLocationLocationTypeEnum {
|
|
2949
|
+
Other = "OTHER",
|
|
2950
|
+
Airport = "AIRPORT",
|
|
2951
|
+
Hospital = "HOSPITAL",
|
|
2952
|
+
FinancialInstitution = "FINANCIAL_INSTITUTION"
|
|
2953
|
+
}
|
|
2954
|
+
declare enum AtmLocationSupportsContactLessEnum {
|
|
2955
|
+
SupportsContactless = "SUPPORTS_CONTACTLESS",
|
|
2956
|
+
DoesNotSupportContactless = "DOES_NOT_SUPPORT_CONTACTLESS",
|
|
2957
|
+
Unknown = "UNKNOWN"
|
|
2958
|
+
}
|
|
2959
|
+
declare enum AtmLocationSurchargeFreeAllianceNetworkEnum {
|
|
2960
|
+
DoesNotParticipateInSfa = "DOES_NOT_PARTICIPATE_IN_SFA",
|
|
2961
|
+
AllpointPrepaid = "ALLPOINT_PREPAID",
|
|
2962
|
+
MoneypassDebit = "MONEYPASS_DEBIT",
|
|
2963
|
+
AllSurchargeFree = "ALL_SURCHARGE_FREE"
|
|
2964
|
+
}
|
|
2965
|
+
type AtmSearchFilters = {
|
|
2966
|
+
country_code?: string;
|
|
2967
|
+
limit?: number;
|
|
2968
|
+
offset?: number;
|
|
2969
|
+
distance?: number;
|
|
2970
|
+
distance_unit?: AtmLocationDistanceUnitEnum;
|
|
2971
|
+
};
|
|
2972
|
+
|
|
2880
2973
|
type BookTransferRequest = {
|
|
2881
2974
|
token?: string;
|
|
2882
2975
|
source_account_token: string;
|
|
@@ -3134,6 +3227,79 @@ type CardResponseCardArt = {
|
|
|
3134
3227
|
front?: string;
|
|
3135
3228
|
};
|
|
3136
3229
|
|
|
3230
|
+
declare enum ConsentStatus {
|
|
3231
|
+
AUTHORISED = "authorised",
|
|
3232
|
+
REJECTED = "rejected",
|
|
3233
|
+
AWAITING_AUTHORISATION = "awaiting-authorisation",
|
|
3234
|
+
REVOKED = "revoked",
|
|
3235
|
+
CONSUMED = "consumed"
|
|
3236
|
+
}
|
|
3237
|
+
declare enum ConsentScope {
|
|
3238
|
+
ACCOUNTS = "accounts",
|
|
3239
|
+
PAYMENTS = "payments"
|
|
3240
|
+
}
|
|
3241
|
+
declare enum ConsentPaymentScope {
|
|
3242
|
+
DOMESTIC = "domestic",
|
|
3243
|
+
INTERNATIONAL = "international"
|
|
3244
|
+
}
|
|
3245
|
+
declare enum ConsentPaymentType {
|
|
3246
|
+
STANDARD = "standard",
|
|
3247
|
+
SCHEDULED = "scheduled"
|
|
3248
|
+
}
|
|
3249
|
+
type ConsentResponse = {
|
|
3250
|
+
data: {
|
|
3251
|
+
consent: {
|
|
3252
|
+
id: string;
|
|
3253
|
+
thirdPartyProvider: {
|
|
3254
|
+
name?: string;
|
|
3255
|
+
website?: string;
|
|
3256
|
+
applicationName?: string;
|
|
3257
|
+
applicationDescription?: string;
|
|
3258
|
+
applicationWebsite?: string;
|
|
3259
|
+
};
|
|
3260
|
+
status: ConsentStatus;
|
|
3261
|
+
content: {
|
|
3262
|
+
scope?: ConsentScope;
|
|
3263
|
+
paymentScope?: ConsentPaymentScope;
|
|
3264
|
+
paymentType?: ConsentPaymentType;
|
|
3265
|
+
instructedAmount?: number;
|
|
3266
|
+
instructedCurrency?: string;
|
|
3267
|
+
creditorAccount?: {
|
|
3268
|
+
schemeName?: string;
|
|
3269
|
+
identification?: string;
|
|
3270
|
+
name?: string;
|
|
3271
|
+
iban?: string;
|
|
3272
|
+
currency?: string;
|
|
3273
|
+
};
|
|
3274
|
+
debtorAccount?: object;
|
|
3275
|
+
permissions?: {
|
|
3276
|
+
type?: string;
|
|
3277
|
+
grantedPermissions?: string[];
|
|
3278
|
+
};
|
|
3279
|
+
currencyOfTransfer?: string;
|
|
3280
|
+
requestedExecutionDateTime?: string;
|
|
3281
|
+
};
|
|
3282
|
+
requestCreatedDateTime?: string;
|
|
3283
|
+
requestDateTime?: string;
|
|
3284
|
+
requestExpiryDateTime?: string;
|
|
3285
|
+
grantedDateTime?: string;
|
|
3286
|
+
grantDateTime?: string;
|
|
3287
|
+
expiryDateTime?: string;
|
|
3288
|
+
grantExpiryDateTime?: string;
|
|
3289
|
+
revokedDateTime?: string;
|
|
3290
|
+
};
|
|
3291
|
+
};
|
|
3292
|
+
};
|
|
3293
|
+
|
|
3294
|
+
type ConsentListResponse = {
|
|
3295
|
+
workflow?: Record<string, unknown>;
|
|
3296
|
+
data?: {
|
|
3297
|
+
consents?: ConsentResponse[];
|
|
3298
|
+
};
|
|
3299
|
+
connect?: Record<string, unknown>;
|
|
3300
|
+
metadata?: Record<string, unknown>;
|
|
3301
|
+
};
|
|
3302
|
+
|
|
3137
3303
|
type ExternalAccountListRequest = {
|
|
3138
3304
|
count?: number;
|
|
3139
3305
|
start_index?: number;
|
|
@@ -3358,6 +3524,21 @@ type OriginationTransferRequest = {
|
|
|
3358
3524
|
memo?: string;
|
|
3359
3525
|
};
|
|
3360
3526
|
|
|
3527
|
+
type OutagesResponse = {
|
|
3528
|
+
token: string;
|
|
3529
|
+
message: string;
|
|
3530
|
+
type: number;
|
|
3531
|
+
start_time: string;
|
|
3532
|
+
end_time: string;
|
|
3533
|
+
};
|
|
3534
|
+
type OutagesListResponse = {
|
|
3535
|
+
count: number;
|
|
3536
|
+
end_index: number;
|
|
3537
|
+
is_more: boolean;
|
|
3538
|
+
start_index: number;
|
|
3539
|
+
data: Array<OutagesResponse>;
|
|
3540
|
+
};
|
|
3541
|
+
|
|
3361
3542
|
type PushRegistrationRequest = {
|
|
3362
3543
|
device_platform: PushRegistrationRequestDevicePlatformEnum;
|
|
3363
3544
|
device_token: string;
|
|
@@ -3367,6 +3548,75 @@ declare enum PushRegistrationRequestDevicePlatformEnum {
|
|
|
3367
3548
|
ANDROID = "ANDROID"
|
|
3368
3549
|
}
|
|
3369
3550
|
|
|
3551
|
+
type ReplaceCardRequest = {
|
|
3552
|
+
card_token: string;
|
|
3553
|
+
reason: ReplaceCardRequestReasonEnum;
|
|
3554
|
+
recipient_address?: FulfillmentAddressRequest;
|
|
3555
|
+
};
|
|
3556
|
+
declare enum ReplaceCardRequestReasonEnum {
|
|
3557
|
+
Lost = "LOST",
|
|
3558
|
+
Stolen = "STOLEN",
|
|
3559
|
+
Damaged = "DAMAGED"
|
|
3560
|
+
}
|
|
3561
|
+
type ReplaceCardResponse = {
|
|
3562
|
+
reissued_physical_card_token: string;
|
|
3563
|
+
issued_virtual_card_token: string;
|
|
3564
|
+
};
|
|
3565
|
+
|
|
3566
|
+
declare enum RevokeConsentStatus {
|
|
3567
|
+
AUTHORISED = "authorised",
|
|
3568
|
+
REJECTED = "rejected",
|
|
3569
|
+
AWAITING_AUTHORISATION = "awaiting-authorisation",
|
|
3570
|
+
REVOKED = "revoked",
|
|
3571
|
+
CONSUMED = "consumed"
|
|
3572
|
+
}
|
|
3573
|
+
declare enum ConsentPermissionType {
|
|
3574
|
+
GB = "GB",
|
|
3575
|
+
EU = "EU"
|
|
3576
|
+
}
|
|
3577
|
+
type RevokeConsentResponse = {
|
|
3578
|
+
workflow?: {
|
|
3579
|
+
code?: string;
|
|
3580
|
+
};
|
|
3581
|
+
data?: {
|
|
3582
|
+
resource?: {
|
|
3583
|
+
consent?: {
|
|
3584
|
+
id: string;
|
|
3585
|
+
thirdPartyProvider?: {
|
|
3586
|
+
name?: string;
|
|
3587
|
+
website?: string;
|
|
3588
|
+
applicationName?: string;
|
|
3589
|
+
applicationDescription?: string;
|
|
3590
|
+
applicationWebsite?: string;
|
|
3591
|
+
};
|
|
3592
|
+
status: RevokeConsentStatus;
|
|
3593
|
+
content?: {
|
|
3594
|
+
scope?: ConsentScope;
|
|
3595
|
+
permissions?: {
|
|
3596
|
+
type?: ConsentPermissionType;
|
|
3597
|
+
grantedPermissions?: string[];
|
|
3598
|
+
};
|
|
3599
|
+
paymentScope?: ConsentPaymentScope;
|
|
3600
|
+
paymentType?: ConsentPaymentType;
|
|
3601
|
+
instructedAmount?: number;
|
|
3602
|
+
instructedCurrency?: string;
|
|
3603
|
+
creditorAccount?: {
|
|
3604
|
+
schemeName?: string;
|
|
3605
|
+
identification?: string;
|
|
3606
|
+
name?: string;
|
|
3607
|
+
};
|
|
3608
|
+
currencyOfTransfer?: string;
|
|
3609
|
+
requestedExecutionDateTime?: string;
|
|
3610
|
+
};
|
|
3611
|
+
requestCreatedDateTime?: string;
|
|
3612
|
+
requestExpiryDateTime?: string;
|
|
3613
|
+
};
|
|
3614
|
+
};
|
|
3615
|
+
};
|
|
3616
|
+
connect?: Record<string, unknown>;
|
|
3617
|
+
metadata?: Record<string, unknown>;
|
|
3618
|
+
};
|
|
3619
|
+
|
|
3370
3620
|
type RewardSummary = {
|
|
3371
3621
|
count: number;
|
|
3372
3622
|
end_index: number;
|
|
@@ -3390,6 +3640,58 @@ type RewardCategory = {
|
|
|
3390
3640
|
reward_earned?: number;
|
|
3391
3641
|
};
|
|
3392
3642
|
|
|
3643
|
+
type Transfer = {
|
|
3644
|
+
token: string;
|
|
3645
|
+
amount: number;
|
|
3646
|
+
currency: string;
|
|
3647
|
+
status: string;
|
|
3648
|
+
createdDateTime: string;
|
|
3649
|
+
};
|
|
3650
|
+
type TransferResponse = {
|
|
3651
|
+
data: {
|
|
3652
|
+
transfer: Transfer;
|
|
3653
|
+
};
|
|
3654
|
+
};
|
|
3655
|
+
|
|
3656
|
+
type TransferListResponse = {
|
|
3657
|
+
data: {
|
|
3658
|
+
transfers: Transfer[];
|
|
3659
|
+
};
|
|
3660
|
+
};
|
|
3661
|
+
|
|
3662
|
+
declare enum ConsentAction {
|
|
3663
|
+
APPROVE = "approve",
|
|
3664
|
+
REVOKE = "revoke",
|
|
3665
|
+
REJECT = "reject"
|
|
3666
|
+
}
|
|
3667
|
+
type UpdateConsentStatusRequest = {
|
|
3668
|
+
workflow?: {
|
|
3669
|
+
code?: string;
|
|
3670
|
+
};
|
|
3671
|
+
data: {
|
|
3672
|
+
consent: {
|
|
3673
|
+
action: ConsentAction;
|
|
3674
|
+
userId: string;
|
|
3675
|
+
accounts: string[];
|
|
3676
|
+
};
|
|
3677
|
+
};
|
|
3678
|
+
connect?: Record<string, unknown>;
|
|
3679
|
+
metadata?: Record<string, unknown>;
|
|
3680
|
+
};
|
|
3681
|
+
|
|
3682
|
+
type UpdateConsentStatusResponse = {
|
|
3683
|
+
workflow?: {
|
|
3684
|
+
code?: string;
|
|
3685
|
+
};
|
|
3686
|
+
data?: {
|
|
3687
|
+
resource?: {
|
|
3688
|
+
location?: string;
|
|
3689
|
+
};
|
|
3690
|
+
};
|
|
3691
|
+
connect?: Record<string, unknown>;
|
|
3692
|
+
metadata?: Record<string, unknown>;
|
|
3693
|
+
};
|
|
3694
|
+
|
|
3393
3695
|
type UpdateExternalAccountRequest = {
|
|
3394
3696
|
alias?: string;
|
|
3395
3697
|
status?: ExternalAccountStatus;
|
|
@@ -3427,165 +3729,48 @@ type Address = {
|
|
|
3427
3729
|
zip?: string;
|
|
3428
3730
|
};
|
|
3429
3731
|
|
|
3430
|
-
interface AtmSearch {
|
|
3431
|
-
addressLine1?: string;
|
|
3432
|
-
addressLine2?: string;
|
|
3433
|
-
city?: string;
|
|
3434
|
-
countryCode?: string;
|
|
3435
|
-
countrySubdivisionCode?: string;
|
|
3436
|
-
latitude?: string;
|
|
3437
|
-
longitude?: string;
|
|
3438
|
-
postalCode?: string;
|
|
3439
|
-
}
|
|
3440
|
-
interface AtmsResponse {
|
|
3441
|
-
atms: Array<AtmLocation>;
|
|
3442
|
-
count?: number;
|
|
3443
|
-
limit?: number;
|
|
3444
|
-
offset?: number;
|
|
3445
|
-
total?: number;
|
|
3446
|
-
}
|
|
3447
|
-
interface AtmLocation {
|
|
3448
|
-
access_fees?: AtmLocationAccessFeesEnum;
|
|
3449
|
-
address_line1?: string;
|
|
3450
|
-
address_line2?: string;
|
|
3451
|
-
availability?: AtmLocationAvailabilityEnum;
|
|
3452
|
-
city?: string;
|
|
3453
|
-
country_code?: string;
|
|
3454
|
-
country_name?: string;
|
|
3455
|
-
distance?: number;
|
|
3456
|
-
distance_unit?: AtmLocationDistanceUnitEnum;
|
|
3457
|
-
handicap_accessible?: AtmLocationHandicapAccessibleEnum;
|
|
3458
|
-
has_shared_deposit?: AtmLocationHasSharedDepositEnum;
|
|
3459
|
-
is_surcharge_free_alliance?: AtmLocationIsSurchargeFreeAllianceEnum;
|
|
3460
|
-
latitude?: string;
|
|
3461
|
-
location_name?: string;
|
|
3462
|
-
location_type?: AtmLocationLocationTypeEnum;
|
|
3463
|
-
longitude?: string;
|
|
3464
|
-
postal_code?: string;
|
|
3465
|
-
supports_contactLess?: AtmLocationSupportsContactLessEnum;
|
|
3466
|
-
surcharge_free_alliance_network?: AtmLocationSurchargeFreeAllianceNetworkEnum;
|
|
3467
|
-
}
|
|
3468
|
-
declare enum AtmLocationAccessFeesEnum {
|
|
3469
|
-
Unknown = "UNKNOWN",
|
|
3470
|
-
Domestic = "DOMESTIC",
|
|
3471
|
-
International = "INTERNATIONAL",
|
|
3472
|
-
DomesticAndInternational = "DOMESTIC_AND_INTERNATIONAL",
|
|
3473
|
-
NoFee = "NO_FEE"
|
|
3474
|
-
}
|
|
3475
|
-
declare enum AtmLocationAvailabilityEnum {
|
|
3476
|
-
Unknown = "UNKNOWN",
|
|
3477
|
-
AlwaysAvailable = "ALWAYS_AVAILABLE",
|
|
3478
|
-
BusinessHours = "BUSINESS_HOURS",
|
|
3479
|
-
IrregularHours = "IRREGULAR_HOURS"
|
|
3480
|
-
}
|
|
3481
|
-
declare enum AtmLocationDistanceUnitEnum {
|
|
3482
|
-
Km = "KM",
|
|
3483
|
-
Mile = "MILE"
|
|
3484
|
-
}
|
|
3485
|
-
declare enum AtmLocationHandicapAccessibleEnum {
|
|
3486
|
-
Unknown = "UNKNOWN",
|
|
3487
|
-
IsHandicapAccessible = "IS_HANDICAP_ACCESSIBLE",
|
|
3488
|
-
NotHandicapAccessible = "NOT_HANDICAP_ACCESSIBLE"
|
|
3489
|
-
}
|
|
3490
|
-
declare enum AtmLocationHasSharedDepositEnum {
|
|
3491
|
-
True = "true",
|
|
3492
|
-
False = "false"
|
|
3493
|
-
}
|
|
3494
|
-
declare enum AtmLocationIsSurchargeFreeAllianceEnum {
|
|
3495
|
-
True = "true",
|
|
3496
|
-
False = "false"
|
|
3497
|
-
}
|
|
3498
|
-
declare enum AtmLocationLocationTypeEnum {
|
|
3499
|
-
Other = "OTHER",
|
|
3500
|
-
Airport = "AIRPORT",
|
|
3501
|
-
Hospital = "HOSPITAL",
|
|
3502
|
-
FinancialInstitution = "FINANCIAL_INSTITUTION"
|
|
3503
|
-
}
|
|
3504
|
-
declare enum AtmLocationSupportsContactLessEnum {
|
|
3505
|
-
SupportsContactless = "SUPPORTS_CONTACTLESS",
|
|
3506
|
-
DoesNotSupportContactless = "DOES_NOT_SUPPORT_CONTACTLESS",
|
|
3507
|
-
Unknown = "UNKNOWN"
|
|
3508
|
-
}
|
|
3509
|
-
declare enum AtmLocationSurchargeFreeAllianceNetworkEnum {
|
|
3510
|
-
DoesNotParticipateInSfa = "DOES_NOT_PARTICIPATE_IN_SFA",
|
|
3511
|
-
AllpointPrepaid = "ALLPOINT_PREPAID",
|
|
3512
|
-
MoneypassDebit = "MONEYPASS_DEBIT",
|
|
3513
|
-
AllSurchargeFree = "ALL_SURCHARGE_FREE"
|
|
3514
|
-
}
|
|
3515
|
-
type AtmSearchFilters = {
|
|
3516
|
-
country_code?: string;
|
|
3517
|
-
limit?: number;
|
|
3518
|
-
offset?: number;
|
|
3519
|
-
distance?: number;
|
|
3520
|
-
distance_unit?: AtmLocationDistanceUnitEnum;
|
|
3521
|
-
};
|
|
3522
|
-
|
|
3523
|
-
type ReplaceCardRequest = {
|
|
3524
|
-
card_token: string;
|
|
3525
|
-
reason: ReplaceCardRequestReasonEnum;
|
|
3526
|
-
recipient_address?: FulfillmentAddressRequest;
|
|
3527
|
-
};
|
|
3528
|
-
declare enum ReplaceCardRequestReasonEnum {
|
|
3529
|
-
Lost = "LOST",
|
|
3530
|
-
Stolen = "STOLEN",
|
|
3531
|
-
Damaged = "DAMAGED"
|
|
3532
|
-
}
|
|
3533
|
-
type ReplaceCardResponse = {
|
|
3534
|
-
reissued_physical_card_token: string;
|
|
3535
|
-
issued_virtual_card_token: string;
|
|
3536
|
-
};
|
|
3537
|
-
|
|
3538
|
-
type OutagesResponse = {
|
|
3539
|
-
token: string;
|
|
3540
|
-
message: string;
|
|
3541
|
-
type: number;
|
|
3542
|
-
start_time: string;
|
|
3543
|
-
end_time: string;
|
|
3544
|
-
};
|
|
3545
|
-
type OutagesListResponse = {
|
|
3546
|
-
count: number;
|
|
3547
|
-
end_index: number;
|
|
3548
|
-
is_more: boolean;
|
|
3549
|
-
start_index: number;
|
|
3550
|
-
data: Array<OutagesResponse>;
|
|
3551
|
-
};
|
|
3552
|
-
|
|
3553
3732
|
declare abstract class iWlaService {
|
|
3733
|
+
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean, includeInterestTiers?: boolean): Promise<AccountResponse & {
|
|
3734
|
+
ytd?: AccountInterestResponse;
|
|
3735
|
+
interest_tier?: AccountInterestTierResponse;
|
|
3736
|
+
}>;
|
|
3554
3737
|
abstract bookTransfer(requestBody: BookTransferRequest): Promise<BookTransferResponse>;
|
|
3555
3738
|
abstract createCard(requestBody: CreateCardRequest): Promise<CreateCardResponse>;
|
|
3556
3739
|
abstract createOriginationTransfer(requestBody: OriginationTransferRequest): Promise<OriginationTransferResponse>;
|
|
3557
3740
|
abstract createWlaExternalAccount(requestBody: ExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3558
3741
|
abstract deleteRegistrationForPushNotifications(): Promise<void>;
|
|
3559
|
-
abstract getAccountDetails(accountToken: string, includeYtdInterest?: boolean, includeInterestTiers?: boolean): Promise<AccountResponse & {
|
|
3560
|
-
ytd?: AccountInterestResponse;
|
|
3561
|
-
interest_tier?: AccountInterestTierResponse;
|
|
3562
|
-
}>;
|
|
3563
3742
|
abstract getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3564
3743
|
abstract getCardByToken(cardToken: string): Promise<CardResponse>;
|
|
3744
|
+
abstract getConsentById(id: string, country_code: string): Promise<ConsentResponse>;
|
|
3745
|
+
abstract getConsents(country_code: string): Promise<ConsentListResponse>;
|
|
3565
3746
|
abstract getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3566
3747
|
abstract getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
3567
3748
|
abstract getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
3568
3749
|
abstract getOffers(): Promise<OfferListResponse>;
|
|
3750
|
+
abstract getOutageByToken(token: string, devicePlatform: string): Promise<OutagesResponse>;
|
|
3751
|
+
abstract getOutagesList(devicePlatform: string): Promise<OutagesListResponse>;
|
|
3569
3752
|
abstract getRewardSummaries(startIndex?: number, count?: number): Promise<RewardSummary>;
|
|
3570
3753
|
abstract getTransactionByToken(transactionToken: string): Promise<WlaTransactionDetailsResponse>;
|
|
3754
|
+
abstract getTransferByToken(token: string, country_code: string): Promise<TransferResponse>;
|
|
3755
|
+
abstract getTransfers(country_code: string): Promise<TransferListResponse>;
|
|
3571
3756
|
abstract getUserProfileDetails(): Promise<UserProfileResponse>;
|
|
3572
|
-
abstract
|
|
3757
|
+
abstract markAccountActivated(): Promise<{
|
|
3573
3758
|
data: UserResponse;
|
|
3574
3759
|
}>;
|
|
3575
|
-
abstract
|
|
3760
|
+
abstract markAccountVerified(): Promise<{
|
|
3576
3761
|
data: UserResponse;
|
|
3577
3762
|
}>;
|
|
3578
3763
|
abstract registerDeviceForPushNotifications(requestBody: PushRegistrationRequest): Promise<void>;
|
|
3764
|
+
abstract replaceCard(requestBody: ReplaceCardRequest): Promise<ReplaceCardResponse>;
|
|
3765
|
+
abstract revokeConsent(id: string, country_code: string, requestBody: UpdateConsentStatusRequest): Promise<RevokeConsentResponse>;
|
|
3766
|
+
abstract searchAtms(requestBody: AtmSearch, requestFilters: AtmSearchFilters): Promise<AtmsResponse>;
|
|
3579
3767
|
abstract setAppConfig(appVersion: string, deviceId: string, clientIp: string): void;
|
|
3580
3768
|
abstract setPin(cardToken: string, pin: string): Promise<{
|
|
3581
3769
|
data: UserResponse;
|
|
3582
3770
|
}>;
|
|
3771
|
+
abstract updateConsentStatus(id: string, country_code: string, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
|
|
3583
3772
|
abstract updateExternalAccount(token: string, requestBody: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3584
3773
|
abstract verifyExternalAccount(requestBody: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3585
|
-
abstract searchAtms(requestBody: AtmSearch, requestFilters: AtmSearchFilters): Promise<AtmsResponse>;
|
|
3586
|
-
abstract replaceCard(requestBody: ReplaceCardRequest): Promise<ReplaceCardResponse>;
|
|
3587
|
-
abstract getOutagesList(devicePlatform: string): Promise<OutagesListResponse>;
|
|
3588
|
-
abstract getOutageByToken(token: string, devicePlatform: string): Promise<OutagesResponse>;
|
|
3589
3774
|
}
|
|
3590
3775
|
|
|
3591
3776
|
declare class RestWlaService implements iWlaService {
|
|
@@ -3629,6 +3814,12 @@ declare class RestWlaService implements iWlaService {
|
|
|
3629
3814
|
replaceCard(requestBody: ReplaceCardRequest): Promise<ReplaceCardResponse>;
|
|
3630
3815
|
getOutageByToken(token: string, devicePlatform?: string): Promise<OutagesResponse>;
|
|
3631
3816
|
getOutagesList(devicePlatform?: string): Promise<OutagesListResponse>;
|
|
3817
|
+
getConsentById(id: string, country_code?: string): Promise<ConsentResponse>;
|
|
3818
|
+
getTransferByToken(token: string, country_code?: string): Promise<TransferResponse>;
|
|
3819
|
+
getConsents(country_code?: string): Promise<ConsentListResponse>;
|
|
3820
|
+
getTransfers(country_code?: string): Promise<TransferListResponse>;
|
|
3821
|
+
updateConsentStatus(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
|
|
3822
|
+
revokeConsent(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<RevokeConsentResponse>;
|
|
3632
3823
|
}
|
|
3633
3824
|
|
|
3634
3825
|
declare function bookTransfer(payload: BookTransferRequest): Promise<BookTransferResponse>;
|
|
@@ -3643,6 +3834,10 @@ declare function deleteRegistrationForPushNotifications(): Promise<void>;
|
|
|
3643
3834
|
|
|
3644
3835
|
declare function getAccountTransactions(requestBody: GetAccountTransactionsRequest): Promise<TransactionListResponse>;
|
|
3645
3836
|
|
|
3837
|
+
declare function getConsentById(id: string, country_code?: string): Promise<ConsentResponse>;
|
|
3838
|
+
|
|
3839
|
+
declare function getConsents(country_code?: string): Promise<ConsentListResponse>;
|
|
3840
|
+
|
|
3646
3841
|
declare function getExternalAccount(token: string): Promise<ExternalAccountResponse>;
|
|
3647
3842
|
|
|
3648
3843
|
declare function getExternalAccountList(requestBody: ExternalAccountListRequest): Promise<ExternalAccountListResponse>;
|
|
@@ -3651,6 +3846,14 @@ declare function getOfferDetails(offerId: string): Promise<OfferResponse>;
|
|
|
3651
3846
|
|
|
3652
3847
|
declare function getOffers(): Promise<OfferListResponse>;
|
|
3653
3848
|
|
|
3849
|
+
declare function getOutagesByToken(outageToken: string, devicePlatform: string): Promise<OutagesResponse>;
|
|
3850
|
+
|
|
3851
|
+
declare function getOutagesList(devicePlatform: string): Promise<OutagesListResponse>;
|
|
3852
|
+
|
|
3853
|
+
declare function getTransferByToken(token: string, country_code?: string): Promise<TransferResponse>;
|
|
3854
|
+
|
|
3855
|
+
declare function getTransfers(country_code?: string): Promise<TransferListResponse>;
|
|
3856
|
+
|
|
3654
3857
|
declare function getWlaAccountDetails(accountToken: string, includeYtdInterest?: boolean, includeInterestTiers?: boolean): Promise<AccountResponse & {
|
|
3655
3858
|
ytd?: AccountInterestResponse;
|
|
3656
3859
|
interest_tier?: AccountInterestTierResponse;
|
|
@@ -3664,34 +3867,34 @@ declare function getWlaTransactionByToken(transactionToken: string): Promise<Wla
|
|
|
3664
3867
|
|
|
3665
3868
|
declare function getWlaUserProfile(): Promise<UserProfileResponse>;
|
|
3666
3869
|
|
|
3667
|
-
declare function
|
|
3870
|
+
declare function markAccountActivated(): Promise<{
|
|
3668
3871
|
data: UserResponse;
|
|
3669
3872
|
}>;
|
|
3670
3873
|
|
|
3671
|
-
declare function
|
|
3874
|
+
declare function markAccountVerified(): Promise<{
|
|
3672
3875
|
data: UserResponse;
|
|
3673
3876
|
}>;
|
|
3674
3877
|
|
|
3675
3878
|
declare function registerDeviceForPushNotifications(requestBody: PushRegistrationRequest): Promise<void>;
|
|
3676
3879
|
|
|
3880
|
+
declare function replaceWlaCard(requestBody: ReplaceCardRequest): Promise<ReplaceCardResponse>;
|
|
3881
|
+
|
|
3882
|
+
declare function revokeConsent(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<RevokeConsentResponse>;
|
|
3883
|
+
|
|
3884
|
+
declare function searchAtms(requestBody: AtmSearch, requestFilters: AtmSearchFilters): Promise<AtmsResponse>;
|
|
3885
|
+
|
|
3677
3886
|
declare function setWlaCardPin(cardToken: string, pin: string): Promise<{
|
|
3678
3887
|
data: UserResponse;
|
|
3679
3888
|
}>;
|
|
3680
3889
|
|
|
3681
3890
|
declare function setWlaConfig(appVersion: string, deviceId: string, clientIp: string): Promise<void>;
|
|
3682
3891
|
|
|
3892
|
+
declare function updateConsentStatus(id: string, country_code: string | undefined, requestBody: UpdateConsentStatusRequest): Promise<UpdateConsentStatusResponse>;
|
|
3893
|
+
|
|
3683
3894
|
declare function updateExternalAccount(token: string, payload: UpdateExternalAccountRequest): Promise<ExternalAccountResponse>;
|
|
3684
3895
|
|
|
3685
3896
|
declare function verifyExternalAccount(payload: ExternalAccountVerificationRequest): Promise<ExternalAccountVerificationResponse>;
|
|
3686
3897
|
|
|
3687
|
-
declare function searchAtms(requestBody: AtmSearch, requestFilters: AtmSearchFilters): Promise<AtmsResponse>;
|
|
3688
|
-
|
|
3689
|
-
declare function replaceWlaCard(requestBody: ReplaceCardRequest): Promise<ReplaceCardResponse>;
|
|
3690
|
-
|
|
3691
|
-
declare function getOutagesList(devicePlatform: string): Promise<OutagesListResponse>;
|
|
3692
|
-
|
|
3693
|
-
declare function getOutagesByToken(outageToken: string, devicePlatform: string): Promise<OutagesResponse>;
|
|
3694
|
-
|
|
3695
3898
|
declare const WlaIocModule: ContainerModule;
|
|
3696
3899
|
|
|
3697
3900
|
declare const ITF_WLA_SERVICE: unique symbol;
|
|
@@ -3702,4 +3905,4 @@ declare const reactNativeContainer: Container;
|
|
|
3702
3905
|
|
|
3703
3906
|
declare const wlaReactNativeContainer: Container;
|
|
3704
3907
|
|
|
3705
|
-
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, CleanupOnUnload, type CreateCardRequest, type CreateCardResponse, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DeleteDocumentForDispute, DepositAccountEntity, type DepositAccountEntityJsonType, type Dictionary, type DisputeSuccessResponse, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, FFLAGS_SESSION_STORAGE_KEY, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, type InterestTierRateResponse, InterestTierResponseTypeEnum, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SourceCardsListEntity, type SourceCardsRecordEntity, type SourceCardsResponseEntity, type SsoAccessTokenHandler, type StandardOkResponse, StandardizedError, StartDispute, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, type SubmitAnswerPayload, SubmitDispute, type SubmitDisputeSuccessResponse, type SuccessBaseResponse, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, type ThemeObject, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, 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_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production, qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer };
|
|
3908
|
+
export { ACCOUNT_CLOSED_CUI_AUTH_TOKEN, ACCOUNT_LIMITED_CUI_AUTH_TOKEN, ACCOUNT_LOADING_CUI_AUTH_TOKEN, ACCOUNT_SUSPENDED_CUI_AUTH_TOKEN, ACCOUNT_UNVERIFIED_CUI_AUTH_TOKEN, ACTIVE_CARD_ACTIONS, ACTIVE_IOC_CONTAINER, ADDRESS_ISSUE_SSN, AUTH_REFRESH_INTERVAL_ID, AccountBalancesEntity, type AccountBalancesEntityJsonType, AccountHolderGroupEntity, type AccountHolderGroupEntityJsonType, type AccountInterestResponse, type AccountInterestTierResponse, type AccountResponse, AccountType, ActivateCardByTokenOrPan, type ActivationActions, type ActivationActionsModel, AddSourceCard, type Address, type AllStepsResponse, type ApiResponse, type AtmLocation, AtmLocationAccessFeesEnum, AtmLocationAvailabilityEnum, AtmLocationDistanceUnitEnum, AtmLocationHandicapAccessibleEnum, AtmLocationHasSharedDepositEnum, AtmLocationIsSurchargeFreeAllianceEnum, AtmLocationLocationTypeEnum, AtmLocationSupportsContactLessEnum, AtmLocationSurchargeFreeAllianceNetworkEnum, type AtmSearch, type AtmSearchFilters, type AtmsResponse, type AuthKeyPair, type AuthParams, BAD_GENERAL_SSN, BannerTypeEnum, type BookTransferRequest, type BookTransferResponse, BookTransferResponseStatusEnum, BrowserMessageService, CUI_ENABLED_SHORT_CODE, type CardActionEntity, type CardActionsListEntity, CardEntity, type CardEntityJsonType, type CardFulfillmentRequest, CardFulfillmentRequestCardFulfillmentReasonEnum, type CardFulfillmentResponse, type CardFulfillmentResponseCardFulfillmentReasonEnum, type CardRequest, type CardResponse, type CardResponseCardArt, type CardResponseFulfillmentStatusEnum, type CardResponseInstrumentTypeEnum, type CardResponseStateEnum, CardStates, CardholderContextEntity, type CardholderContextEntityJsonType, CardholderVerificationMethods, CleanupOnUnload, ConsentAction, type ConsentListResponse, ConsentPaymentScope, ConsentPaymentType, ConsentPermissionType, type ConsentResponse, ConsentScope, ConsentStatus, type CreateCardRequest, type CreateCardResponse, type CreateUserRequest, type CreateUserRequestIdentificationsInner, CreateUserRequestIdentificationsInnerTypeEnum, type CreateUserResponse, CreateUserResponseStatusEnum, Currency, DEFAULT_THEME, DEPOSIT_ACCOUNTS_TERMINATED_CUI_AUTH_TOKEN, DOB_ISSUE_SSN, type DebugItem, DeleteDocumentForDispute, DepositAccountEntity, type DepositAccountEntityJsonType, type Dictionary, type DisputeSuccessResponse, DownloadDocumentForDispute, DpopAuthCredentialService, EMPTY_DEPOSIT_ACCOUNTS_CUI_AUTH_TOKEN, type EnvType, type ExistingAuth, type ExternalAccountListRequest, type ExternalAccountListResponse, type ExternalAccountRequest, type ExternalAccountResponse, ExternalAccountStatus, type ExternalAccountVerificationRequest, type ExternalAccountVerificationResponse, FFLAGS_SESSION_STORAGE_KEY, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, INTR_ACTIVATE_CARD_BY_TOKEN_OR_PAN, INTR_ADD_SOURCE_CARD, INTR_CLEANUP_ON_UNLOAD, INTR_DELETE_DOCUMENT_FOR_DISPUTE, INTR_DOWNLOAD_DOCUMENT_FOR_DISPUTE, INTR_GET_ACCT_BALANCE_BY_TOKEN, INTR_GET_ACCT_HOLDER_GRP_BY_TOKEN, INTR_GET_ACTIVE_ENV_NAME, INTR_GET_ACTIVE_THEME, INTR_GET_ALL_STEPS_OF_DISPUTE, INTR_GET_CARDS_BY_USER_TOKEN, INTR_GET_CARD_BY_TOKEN, INTR_GET_CLIENT_ID, INTR_GET_DEPOSIT_ACCT_BY_TOKEN, INTR_GET_ENV_CONFIG_VALUE_BY_NAME, INTR_GET_ICONS, INTR_GET_LANGUAGE_CODE, INTR_GET_PIN_BY_CARD_TOKEN, INTR_GET_SESSION_ID, INTR_GET_SHOWPAN_BY_CARD_TOKEN, INTR_GET_SOURCE_CARDS, INTR_GET_STATEMENTS, INTR_GET_STATEMENT_ASSET, INTR_GET_STEP_OF_DISPUTE_BY_STEP_ID, INTR_GET_TRANSACTIONS, INTR_GET_TRANSACTIONS_V2, INTR_GET_TRANSACTION_DETAILS, INTR_GET_USER, INTR_INITIATE_FUNDING, INTR_IS_MOCK_MODE_ENABLED, INTR_LOCK_CARD_BY_TOKEN, INTR_POST_CREATE_USER, INTR_PUT_UPDATE_USER, INTR_REGISTER_CLEANUP_HANDLER, INTR_REMOVE_SOURCE_CARD, INTR_REPLACE_CARD_BY_TOKEN, INTR_RETRIEVE_DOCUMENT_FOR_DISPUTE, INTR_SET_ACTIVE_ENV_NAME, INTR_SET_ACTIVE_THEME_BY_NAME, INTR_SET_MOCK_MODE, INTR_START_DISPUTE, INTR_SUBMIT_ANS_DISPUTE, INTR_SUBMIT_DISPUTE, INTR_UNLOCK_CARD_BY_TOKEN, INTR_UPDATE_PIN_BY_CARD_TOKEN, INTR_UPLOAD_DOCUMENT_FOR_DISPUTE, INVALID_ACCOUNT_HOLDER, INVALID_CARD_DETAILS_CUI_AUTH_TOKEN, INVALID_CUI_AUTH_TOKEN, ITF_ACCOUNT_REPOSITORY, ITF_ANALYTICS_SERVICE, ITF_AUTHENTICATED_HTTP_CLIENT, ITF_AUTH_CREDENTIAL_SERVICE, ITF_AUTH_CREDS_MESSAGE_SERVICE, ITF_AUTH_SERVICE, ITF_CACHE_SERVICE, ITF_CARD_REPOSITORY, ITF_DISPUTES_REPOSITORY, ITF_ICONS_REPOSITORY, ITF_KYC, ITF_MONEY_MOVEMENT, ITF_PERSISTED_CACHE_SERVICE, ITF_REGISTRY_SERVICE, ITF_SESSION_SERVICE, ITF_SSO_ACCESS_TOKEN_SERVICE, ITF_STATEMENTS, ITF_STATEMENT_ASSET, ITF_THEME_REPOSITORY, ITF_TRANSACTIONS, ITF_USERS, ITF_WLA_SERVICE, type IconsObject, InitiateFunding, type InterestTierRateResponse, InterestTierResponseTypeEnum, IsMockModeEnabled, type KycVerificationRequest, KycVerificationRequestIdentifierTypeEnum, type KycVerificationResponse, LIST_OF_ENABLED_COMPONENTS, LOADING_SSN, LocalStorageCacheService, LockCardByToken, LoyaltyTier, MOCK_AMOUNT_STEP_RESPONSE, MOCK_CUSTOMER_ENDPOINT, MOCK_DELETE_DOCUMENTS_RESPONSE, MOCK_DISPUTE_ID, MOCK_DOCUMENT1, MOCK_DOCUMENT2, MOCK_DOCUMENT_ID1, MOCK_DOCUMENT_ID2, MOCK_FRAUD_STEP_RESPONSE, MOCK_GET_ALL_STEPS_RESPONSE, MOCK_INVALID_TRANSACTION_TOKEN, MOCK_RECOGNIZED_TRANSACTION_RESPONSE, MOCK_RETRIEVE_DOCUMENTS_RESPONSE, MOCK_START_DISPUTE_RESPONSE, MOCK_STATEMENT_ASSET_SIGNED_URL_PDF, MOCK_STEP1_RESPONSE, MOCK_STEP_COMPLETION_RESPONSE, MOCK_SUBMIT_DISPUTE_RESPONSE, MOCK_TRANSFORMED_ERROR_RESPONSE, MOCK_UPLOAD_DOCUMENTS_RESPONSE, type MetaProperties, MockAccountRepository, MockAnalyticsService, MockAuthCredentialService, MockAuthService, MockCacheService, MockCardRepository, MockComponentsRepository, MockDisputesRepository, MockFeatureFlagService, MockGetEnvConfigValueByName, MockMoneyMovementRepository, MockPersistedCacheService, MockRegistryService, MockSessionService, MockThemeRepository, MockTransactionsRepository, MockiUsersRepository, MqSDKError, NAME_ISSUE_SSN, NOT_OK_CUI_AUTH_TOKEN, NOT_OK_DPOP_TOKEN, OBAC_ISSUE_SSN, type OfferCard, type OfferDetail, type OfferHeadline, type OfferListResponse, type OfferMerchant, type OfferResponse, type OfferSummaryResponse, type OfferTermsAndConditions, OnboardingStatus, OriginationDirection, OriginationTransferReasonCode, type OriginationTransferRequest, type OriginationTransferResponse, OriginationTransferScheme, type OutagesListResponse, type OutagesResponse, type PinResponse, type PushRegistrationRequest, PushRegistrationRequestDevicePlatformEnum, PutUpdateUser, REFRESHED_CUI_AUTH_TOKEN, REPOSITORY_METHOD_FAILING_SHORT_CODE, ReactNativeAsyncStorageCacheService, RegisterCleanupHandler, RemoveSourceCard, ReplaceCardByToken, type ReplaceCardRequest, ReplaceCardRequestReasonEnum, type ReplaceCardResponse, type RequestNewAuthTokenMessageService, type RequestNewAuthTokenResponse, RestAuthService, RestComponentsRepository, RestKycRepository, RestUsersRepository, RestWlaService, RetrieveDocumentForDispute, type RevokeConsentResponse, RevokeConsentStatus, type RewardCategory, type RewardPeriod, type RewardSummary, SESSION_TTL, MOCK_USER as STATEMENTS_MOCK_USER, SUSPENDED_CARD_ACTIONS, type SecondaryIdentification, SessionStorageFeatureFlagService, SetActiveEnvName, SetActiveThemeByName, SetMockMode, type Shipping, type ShippingInformationResponse, type ShippingInformationResponseMethodEnum, ShippingMethodEnum, type SourceCardsListEntity, type SourceCardsRecordEntity, type SourceCardsResponseEntity, type SsoAccessTokenHandler, type StandardOkResponse, StandardizedError, StartDispute, type StatementAssetResponse, StatementAssetStateEnum, type StatementSummary, type StatementsPaginationParams, type StatementsResponse, type StepResponse, StubFeatureFlagService, SubmitAnswerForDisputeQuestion, type SubmitAnswerPayload, SubmitDispute, type SubmitDisputeSuccessResponse, type SuccessBaseResponse, TERMINATED_CARD_ACTIONS, TEST_ACTIVE_CARD, TEST_ACTIVE_CARD_VIRTUAL, TEST_CARD, TEST_CARDHOLDER_VERIFICATION_METHOD, TEST_CARD_ACTIONS, TEST_CARD_PRODUCT_TOKEN, TEST_CARD_TOKEN, TEST_CARD_TOKEN_INVALID, TEST_CARD_TOKEN_IS_ACTIVE, TEST_CARD_TOKEN_IS_ACTIVE_VIRTUAL, TEST_CARD_TOKEN_IS_EXPIRED, TEST_CARD_TOKEN_IS_SUSPENDED, TEST_CARD_TOKEN_IS_SUSPENDED_VIRTUAL, TEST_CARD_TOKEN_IS_TERMINATED, TEST_CARD_TOKEN_IS_UNACTIVATED, TEST_CARD_TOKEN_IS_VIRTUAL, TEST_CARD_TOKEN_LIMIT_EXCEEDED, TEST_CARD_TOKEN_LOADING, TEST_CLIENT_ID, TEST_CVV_NUMBER, TEST_DEPOSIT_ACCOUNT, TEST_EXPIRATION, TEST_OK_RESPONSE, TEST_PIN, TEST_SESSION_ID, TEST_SOURCE_CARD, TEST_SOURCE_CARDS_RESPONSE, TEST_SUSPENDED_CARD_VIRTUAL, TEST_THEME_NAME, TEST_THEME_OBJECT, TEST_USER_TOKEN, TEST_WEAK_PINS, type ThemeObject, TransactionDetailResponseIconTypeEnum, type TransactionDetailsBannerData, TransactionDetailsBannerType, type TransactionDetailsRecord, type TransactionDetailsResponse, TransactionDirection, type TransactionDispute, TransactionDisputeStatus, type TransactionListResponse, type TransactionRecord, TransactionRecordStatus, type TransactionResponse, TransactionStatus, TransactionType, type TransactionsPaginationParams, type TransactionsResponse, type Transfer, type TransferListResponse, type TransferResponse, TransferStatus, type UnlinkSourceCardResponse, UnlockCardByToken, type UpdateConsentStatusRequest, type UpdateConsentStatusResponse, type UpdateExternalAccountRequest, UpdatePinByCardToken, type UpdatePinResponse, UploadDocumentForDispute, type UserAddressEntity, type UserConfigResponse, UserEntity, type UserEntityJsonType, type UserProfileResponse, type UserResponse, UserRole, type UserStatus, VALID_CUI_AUTH_TOKEN, VALID_CUI_USER_RESPONSE, VALID_DPOP_TOKEN, VALID_OAUTH_TOKEN, VALID_PROGRAM_SHORT_CODE, VALID_USER_TOKEN_HASH, VanillaSessionService, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, accountsIOCModule, authIOCModule, bookTransfer, cardsIOCModule, checkAndRefreshAuthToken, commonIOCModule, componentsIOCModule, convertObjKeysToCamelCase, convertObjKeysToLowerCamelCase, createOriginationTransfer, createProofToken, createWlaCard, createWlaExternalAccount, deepMergeThemeObject, deleteRegistrationForPushNotifications, development, disputesIOCModule, envConfigIOCModule, featureFlagIsEnabled, featureFlagsIOCModule, formatDateForApi, generateAuthKeyPair, generateStatementsDateQueries, getAccountTransactions, getActiveIocContainer, getAuthKeyPair, getCachedAuthApiEndpoint, getCachedAuthToken, getCachedAuthTokenExpiration, getCardholderContext, getClientId, getConsentById, getConsents, getExternalAccount, getExternalAccountList, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, isComponentEnabled, kycIOCModule, loadEnabledComponentsByShortCode, loadFeatureFlags, localhost, markAccountActivated, markAccountVerified, mockAccountBalances, mockAccountHolderGroup, mockAccountsIOCModule, mockAnalyticsIOCModule, mockAuthIOCModule, mockCardsIOCModule, mockCommonIOCModule, mockCreateUserRequest, mockCreatedUserResponse, mockDepositAccountJson, mockDisputesIOCModule, mockEnvConfigIOCModule, mockFeatureFlagIOCModule, mockInvalidCreateUserRequest, mockInvalidKycVerificationRequest, mockKycVerificationRequest, mockKycVerificationResponse, mockMode, mockMoneyMovementIOCModule, mockSourceCards, mockThemesIOCModule, mockUpdateUserResponse, mockUsersIOCModule, moneyMovementIOCModule, mswAccountHandlers, mswAnalyticsHandlers, mswAuthHandlers, mswCardsHandlers, mswComponentsHandlers, mswDisputesHandlers, mswKycHandlers, mswSourceCardsHandler, mswStatementsHandlers, mswTransactionsHandlers, mswUsersHandlers, postCreateUser, postVerifyKyc, production, qa, reactNativeCommonIOCModule, reactNativeFeatureFlagsIOCModule, reactNativeContainer as reactNativeSdkJsContainer, registerDeviceForPushNotifications, replaceWlaCard, revokeConsent, sandbox, container as sdkJsContainer, searchAtms, setActiveIocContainer, setAuthKeyPair, setAuthParams, setCachedAuthApiEndpoint, setCachedAuthToken, setSsoAccessTokenHandler, setWlaCardPin, setWlaConfig, statementsIOCModule, themesIOCModule, toDateType, trackEvent, transactionsIOCModule, updateConsentStatus, updateExternalAccount, usersIOCModule, verifyExternalAccount, wlaReactNativeContainer as wlaReactNativeSdkJsContainer };
|