@marqeta/ux-toolkit-sdk-javascript 2.20.0 → 2.21.1
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-KQ3M4IEL.mjs → chunk-QV5OMZDF.mjs} +41 -47
- package/dist/{chunk-TE7F5GLR.js → chunk-ZZJHSEG4.js} +41 -47
- package/dist/index.d.mts +17 -13
- package/dist/index.d.ts +17 -13
- package/dist/index.js +482 -482
- package/dist/index.mjs +1 -1
- package/dist/react-native.d.mts +1 -1
- package/dist/react-native.d.ts +1 -1
- package/dist/react-native.js +589 -524
- package/dist/react-native.mjs +67 -2
- package/package.json +1 -1
|
@@ -17474,7 +17474,7 @@ function initPasswordAndLogin(request) {
|
|
|
17474
17474
|
function _initPasswordAndLogin() {
|
|
17475
17475
|
_initPasswordAndLogin = // src/idp/base/interactors/initPasswordAndLogin.ts
|
|
17476
17476
|
_async_to_generator(function(request) {
|
|
17477
|
-
var container2, wlaService, idpService
|
|
17477
|
+
var container2, wlaService, idpService;
|
|
17478
17478
|
return _ts_generator(this, function(_state) {
|
|
17479
17479
|
switch(_state.label){
|
|
17480
17480
|
case 0:
|
|
@@ -17487,17 +17487,9 @@ function _initPasswordAndLogin() {
|
|
|
17487
17487
|
];
|
|
17488
17488
|
case 1:
|
|
17489
17489
|
_state.sent();
|
|
17490
|
-
loginRequest = {
|
|
17491
|
-
identifier: request.identifier,
|
|
17492
|
-
password: request.password,
|
|
17493
|
-
clientId: request.clientId,
|
|
17494
|
-
oauthBaseUrl: request.oauthBaseUrl,
|
|
17495
|
-
audience: request.audience,
|
|
17496
|
-
scope: request.scope
|
|
17497
|
-
};
|
|
17498
17490
|
return [
|
|
17499
17491
|
4,
|
|
17500
|
-
idpService.loginWithPassword(
|
|
17492
|
+
idpService.loginWithPassword(request)
|
|
17501
17493
|
];
|
|
17502
17494
|
case 2:
|
|
17503
17495
|
return [
|
|
@@ -17708,20 +17700,6 @@ var _MockIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
17708
17700
|
})();
|
|
17709
17701
|
}
|
|
17710
17702
|
},
|
|
17711
|
-
{
|
|
17712
|
-
key: "handleMfaRequired",
|
|
17713
|
-
value: function handleMfaRequired(request) {
|
|
17714
|
-
var _this = this;
|
|
17715
|
-
return _async_to_generator(function() {
|
|
17716
|
-
return _ts_generator(this, function(_state) {
|
|
17717
|
-
return [
|
|
17718
|
-
2,
|
|
17719
|
-
_this.mockMfaRequiredResponse
|
|
17720
|
-
];
|
|
17721
|
-
});
|
|
17722
|
-
})();
|
|
17723
|
-
}
|
|
17724
|
-
},
|
|
17725
17703
|
{
|
|
17726
17704
|
key: "otpVerification",
|
|
17727
17705
|
value: function otpVerification(request) {
|
|
@@ -17839,11 +17817,11 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
17839
17817
|
headers: {
|
|
17840
17818
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
17841
17819
|
},
|
|
17842
|
-
body: new URLSearchParams({
|
|
17820
|
+
body: new URLSearchParams(_object_spread({
|
|
17843
17821
|
mfa_token: request.mfaToken,
|
|
17844
17822
|
challenge_type: "oob",
|
|
17845
17823
|
client_id: request.clientId
|
|
17846
|
-
}).toString()
|
|
17824
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
17847
17825
|
})
|
|
17848
17826
|
];
|
|
17849
17827
|
case 1:
|
|
@@ -17893,26 +17871,21 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
17893
17871
|
headers: {
|
|
17894
17872
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
17895
17873
|
},
|
|
17896
|
-
body: new URLSearchParams({
|
|
17874
|
+
body: new URLSearchParams(_object_spread({
|
|
17897
17875
|
grant_type: "password",
|
|
17898
17876
|
username: request.identifier,
|
|
17899
17877
|
password: request.password,
|
|
17900
17878
|
client_id: request.clientId,
|
|
17901
17879
|
scope: request.scope || "openid email profile offline_access cardholder:all",
|
|
17902
17880
|
audience: request.audience || audience
|
|
17903
|
-
}).toString()
|
|
17881
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
17904
17882
|
})
|
|
17905
17883
|
];
|
|
17906
17884
|
case 2:
|
|
17907
17885
|
response = _state.sent();
|
|
17908
17886
|
return [
|
|
17909
17887
|
2,
|
|
17910
|
-
|
|
17911
|
-
accessToken: response.access_token,
|
|
17912
|
-
expiresIn: response.expires_in,
|
|
17913
|
-
refreshToken: response.refresh_token,
|
|
17914
|
-
idToken: response.id_token
|
|
17915
|
-
}
|
|
17888
|
+
_this.mapAccessTokenResponse(response)
|
|
17916
17889
|
];
|
|
17917
17890
|
case 3:
|
|
17918
17891
|
error2 = _state.sent();
|
|
@@ -17926,7 +17899,8 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
17926
17899
|
oauthBaseUrl: request.oauthBaseUrl,
|
|
17927
17900
|
mfa_token: error2.mfa_token,
|
|
17928
17901
|
clientId: request.clientId,
|
|
17929
|
-
error: error2.error
|
|
17902
|
+
error: error2.error,
|
|
17903
|
+
deviceDetails: request.deviceDetails
|
|
17930
17904
|
})
|
|
17931
17905
|
];
|
|
17932
17906
|
case 4:
|
|
@@ -17968,25 +17942,20 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
17968
17942
|
headers: {
|
|
17969
17943
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
17970
17944
|
},
|
|
17971
|
-
body: new URLSearchParams({
|
|
17945
|
+
body: new URLSearchParams(_object_spread({
|
|
17972
17946
|
grant_type: "refresh_token",
|
|
17973
17947
|
refresh_token: request.refreshToken,
|
|
17974
17948
|
client_id: request.clientId,
|
|
17975
17949
|
scope: request.scope,
|
|
17976
17950
|
login_status: request.loginStatus
|
|
17977
|
-
}).toString()
|
|
17951
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
17978
17952
|
})
|
|
17979
17953
|
];
|
|
17980
17954
|
case 2:
|
|
17981
17955
|
response = _state.sent();
|
|
17982
17956
|
return [
|
|
17983
17957
|
2,
|
|
17984
|
-
|
|
17985
|
-
accessToken: response.access_token,
|
|
17986
|
-
expiresIn: response.expires_in,
|
|
17987
|
-
refreshToken: response.refresh_token,
|
|
17988
|
-
idToken: response.id_token
|
|
17989
|
-
}
|
|
17958
|
+
_this.mapAccessTokenResponse(response)
|
|
17990
17959
|
];
|
|
17991
17960
|
case 3:
|
|
17992
17961
|
error2 = _state.sent();
|
|
@@ -18000,7 +17969,8 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18000
17969
|
oauthBaseUrl: request.oauthBaseUrl,
|
|
18001
17970
|
mfa_token: error2.mfa_token,
|
|
18002
17971
|
clientId: request.clientId,
|
|
18003
|
-
error: error2.error
|
|
17972
|
+
error: error2.error,
|
|
17973
|
+
deviceDetails: request.deviceDetails
|
|
18004
17974
|
})
|
|
18005
17975
|
];
|
|
18006
17976
|
case 4:
|
|
@@ -18017,6 +17987,29 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18017
17987
|
})();
|
|
18018
17988
|
}
|
|
18019
17989
|
},
|
|
17990
|
+
{
|
|
17991
|
+
key: "extractDeviceDetails",
|
|
17992
|
+
value: function extractDeviceDetails(request) {
|
|
17993
|
+
return {
|
|
17994
|
+
device_id: request.deviceDetails.deviceId,
|
|
17995
|
+
device_os: request.deviceDetails.deviceOs,
|
|
17996
|
+
device_os_version: request.deviceDetails.deviceOsVersion,
|
|
17997
|
+
device_type: request.deviceDetails.deviceType,
|
|
17998
|
+
app_version: request.deviceDetails.appVersion
|
|
17999
|
+
};
|
|
18000
|
+
}
|
|
18001
|
+
},
|
|
18002
|
+
{
|
|
18003
|
+
key: "mapAccessTokenResponse",
|
|
18004
|
+
value: function mapAccessTokenResponse(response) {
|
|
18005
|
+
return {
|
|
18006
|
+
accessToken: response.access_token,
|
|
18007
|
+
expiresIn: response.expires_in,
|
|
18008
|
+
refreshToken: response.refresh_token,
|
|
18009
|
+
idToken: response.id_token
|
|
18010
|
+
};
|
|
18011
|
+
}
|
|
18012
|
+
},
|
|
18020
18013
|
{
|
|
18021
18014
|
key: "handleMfaRequired",
|
|
18022
18015
|
value: function handleMfaRequired(request) {
|
|
@@ -18042,7 +18035,8 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18042
18035
|
_this.requestOtpCode({
|
|
18043
18036
|
mfaToken: request.mfa_token,
|
|
18044
18037
|
oauthBaseUrl: request.oauthBaseUrl,
|
|
18045
|
-
clientId: request.clientId
|
|
18038
|
+
clientId: request.clientId,
|
|
18039
|
+
deviceDetails: request.deviceDetails
|
|
18046
18040
|
})
|
|
18047
18041
|
];
|
|
18048
18042
|
case 2:
|
|
@@ -18098,14 +18092,14 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18098
18092
|
headers: {
|
|
18099
18093
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
18100
18094
|
},
|
|
18101
|
-
body: new URLSearchParams({
|
|
18095
|
+
body: new URLSearchParams(_object_spread({
|
|
18102
18096
|
// Auth0's token endpoint specifically looks for the exact string http://auth0.com/oauth/grant-type/mfa-oob to identify MFA OOB requests.
|
|
18103
18097
|
grant_type: "http://auth0.com/oauth/grant-type/mfa-oob",
|
|
18104
18098
|
client_id: request.clientId,
|
|
18105
18099
|
mfa_token: request.mfaToken,
|
|
18106
18100
|
oob_code: request.oobCode,
|
|
18107
18101
|
binding_code: request.bindingCode
|
|
18108
|
-
}).toString()
|
|
18102
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
18109
18103
|
})
|
|
18110
18104
|
];
|
|
18111
18105
|
case 2:
|
|
@@ -17896,7 +17896,7 @@ function initPasswordAndLogin(request) {
|
|
|
17896
17896
|
function _initPasswordAndLogin() {
|
|
17897
17897
|
_initPasswordAndLogin = // src/idp/base/interactors/initPasswordAndLogin.ts
|
|
17898
17898
|
_async_to_generator(function(request) {
|
|
17899
|
-
var container2, wlaService, idpService
|
|
17899
|
+
var container2, wlaService, idpService;
|
|
17900
17900
|
return _ts_generator(this, function(_state) {
|
|
17901
17901
|
switch(_state.label){
|
|
17902
17902
|
case 0:
|
|
@@ -17909,17 +17909,9 @@ function _initPasswordAndLogin() {
|
|
|
17909
17909
|
];
|
|
17910
17910
|
case 1:
|
|
17911
17911
|
_state.sent();
|
|
17912
|
-
loginRequest = {
|
|
17913
|
-
identifier: request.identifier,
|
|
17914
|
-
password: request.password,
|
|
17915
|
-
clientId: request.clientId,
|
|
17916
|
-
oauthBaseUrl: request.oauthBaseUrl,
|
|
17917
|
-
audience: request.audience,
|
|
17918
|
-
scope: request.scope
|
|
17919
|
-
};
|
|
17920
17912
|
return [
|
|
17921
17913
|
4,
|
|
17922
|
-
idpService.loginWithPassword(
|
|
17914
|
+
idpService.loginWithPassword(request)
|
|
17923
17915
|
];
|
|
17924
17916
|
case 2:
|
|
17925
17917
|
return [
|
|
@@ -18126,20 +18118,6 @@ var _MockIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18126
18118
|
})();
|
|
18127
18119
|
}
|
|
18128
18120
|
},
|
|
18129
|
-
{
|
|
18130
|
-
key: "handleMfaRequired",
|
|
18131
|
-
value: function handleMfaRequired(request) {
|
|
18132
|
-
var _this = this;
|
|
18133
|
-
return _async_to_generator(function() {
|
|
18134
|
-
return _ts_generator(this, function(_state) {
|
|
18135
|
-
return [
|
|
18136
|
-
2,
|
|
18137
|
-
_this.mockMfaRequiredResponse
|
|
18138
|
-
];
|
|
18139
|
-
});
|
|
18140
|
-
})();
|
|
18141
|
-
}
|
|
18142
|
-
},
|
|
18143
18121
|
{
|
|
18144
18122
|
key: "otpVerification",
|
|
18145
18123
|
value: function otpVerification(request) {
|
|
@@ -18255,11 +18233,11 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18255
18233
|
headers: {
|
|
18256
18234
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
18257
18235
|
},
|
|
18258
|
-
body: new URLSearchParams({
|
|
18236
|
+
body: new URLSearchParams(_object_spread({
|
|
18259
18237
|
mfa_token: request.mfaToken,
|
|
18260
18238
|
challenge_type: "oob",
|
|
18261
18239
|
client_id: request.clientId
|
|
18262
|
-
}).toString()
|
|
18240
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
18263
18241
|
})
|
|
18264
18242
|
];
|
|
18265
18243
|
case 1:
|
|
@@ -18309,26 +18287,21 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18309
18287
|
headers: {
|
|
18310
18288
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
18311
18289
|
},
|
|
18312
|
-
body: new URLSearchParams({
|
|
18290
|
+
body: new URLSearchParams(_object_spread({
|
|
18313
18291
|
grant_type: "password",
|
|
18314
18292
|
username: request.identifier,
|
|
18315
18293
|
password: request.password,
|
|
18316
18294
|
client_id: request.clientId,
|
|
18317
18295
|
scope: request.scope || "openid email profile offline_access cardholder:all",
|
|
18318
18296
|
audience: request.audience || audience
|
|
18319
|
-
}).toString()
|
|
18297
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
18320
18298
|
})
|
|
18321
18299
|
];
|
|
18322
18300
|
case 2:
|
|
18323
18301
|
response = _state.sent();
|
|
18324
18302
|
return [
|
|
18325
18303
|
2,
|
|
18326
|
-
|
|
18327
|
-
accessToken: response.access_token,
|
|
18328
|
-
expiresIn: response.expires_in,
|
|
18329
|
-
refreshToken: response.refresh_token,
|
|
18330
|
-
idToken: response.id_token
|
|
18331
|
-
}
|
|
18304
|
+
_this.mapAccessTokenResponse(response)
|
|
18332
18305
|
];
|
|
18333
18306
|
case 3:
|
|
18334
18307
|
error2 = _state.sent();
|
|
@@ -18342,7 +18315,8 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18342
18315
|
oauthBaseUrl: request.oauthBaseUrl,
|
|
18343
18316
|
mfa_token: error2.mfa_token,
|
|
18344
18317
|
clientId: request.clientId,
|
|
18345
|
-
error: error2.error
|
|
18318
|
+
error: error2.error,
|
|
18319
|
+
deviceDetails: request.deviceDetails
|
|
18346
18320
|
})
|
|
18347
18321
|
];
|
|
18348
18322
|
case 4:
|
|
@@ -18384,25 +18358,20 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18384
18358
|
headers: {
|
|
18385
18359
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
18386
18360
|
},
|
|
18387
|
-
body: new URLSearchParams({
|
|
18361
|
+
body: new URLSearchParams(_object_spread({
|
|
18388
18362
|
grant_type: "refresh_token",
|
|
18389
18363
|
refresh_token: request.refreshToken,
|
|
18390
18364
|
client_id: request.clientId,
|
|
18391
18365
|
scope: request.scope,
|
|
18392
18366
|
login_status: request.loginStatus
|
|
18393
|
-
}).toString()
|
|
18367
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
18394
18368
|
})
|
|
18395
18369
|
];
|
|
18396
18370
|
case 2:
|
|
18397
18371
|
response = _state.sent();
|
|
18398
18372
|
return [
|
|
18399
18373
|
2,
|
|
18400
|
-
|
|
18401
|
-
accessToken: response.access_token,
|
|
18402
|
-
expiresIn: response.expires_in,
|
|
18403
|
-
refreshToken: response.refresh_token,
|
|
18404
|
-
idToken: response.id_token
|
|
18405
|
-
}
|
|
18374
|
+
_this.mapAccessTokenResponse(response)
|
|
18406
18375
|
];
|
|
18407
18376
|
case 3:
|
|
18408
18377
|
error2 = _state.sent();
|
|
@@ -18416,7 +18385,8 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18416
18385
|
oauthBaseUrl: request.oauthBaseUrl,
|
|
18417
18386
|
mfa_token: error2.mfa_token,
|
|
18418
18387
|
clientId: request.clientId,
|
|
18419
|
-
error: error2.error
|
|
18388
|
+
error: error2.error,
|
|
18389
|
+
deviceDetails: request.deviceDetails
|
|
18420
18390
|
})
|
|
18421
18391
|
];
|
|
18422
18392
|
case 4:
|
|
@@ -18433,6 +18403,29 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18433
18403
|
})();
|
|
18434
18404
|
}
|
|
18435
18405
|
},
|
|
18406
|
+
{
|
|
18407
|
+
key: "extractDeviceDetails",
|
|
18408
|
+
value: function extractDeviceDetails(request) {
|
|
18409
|
+
return {
|
|
18410
|
+
device_id: request.deviceDetails.deviceId,
|
|
18411
|
+
device_os: request.deviceDetails.deviceOs,
|
|
18412
|
+
device_os_version: request.deviceDetails.deviceOsVersion,
|
|
18413
|
+
device_type: request.deviceDetails.deviceType,
|
|
18414
|
+
app_version: request.deviceDetails.appVersion
|
|
18415
|
+
};
|
|
18416
|
+
}
|
|
18417
|
+
},
|
|
18418
|
+
{
|
|
18419
|
+
key: "mapAccessTokenResponse",
|
|
18420
|
+
value: function mapAccessTokenResponse(response) {
|
|
18421
|
+
return {
|
|
18422
|
+
accessToken: response.access_token,
|
|
18423
|
+
expiresIn: response.expires_in,
|
|
18424
|
+
refreshToken: response.refresh_token,
|
|
18425
|
+
idToken: response.id_token
|
|
18426
|
+
};
|
|
18427
|
+
}
|
|
18428
|
+
},
|
|
18436
18429
|
{
|
|
18437
18430
|
key: "handleMfaRequired",
|
|
18438
18431
|
value: function handleMfaRequired(request) {
|
|
@@ -18458,7 +18451,8 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18458
18451
|
_this.requestOtpCode({
|
|
18459
18452
|
mfaToken: request.mfa_token,
|
|
18460
18453
|
oauthBaseUrl: request.oauthBaseUrl,
|
|
18461
|
-
clientId: request.clientId
|
|
18454
|
+
clientId: request.clientId,
|
|
18455
|
+
deviceDetails: request.deviceDetails
|
|
18462
18456
|
})
|
|
18463
18457
|
];
|
|
18464
18458
|
case 2:
|
|
@@ -18514,14 +18508,14 @@ var _RestIdpService = /*#__PURE__*/ function(iIdpService) {
|
|
|
18514
18508
|
headers: {
|
|
18515
18509
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
18516
18510
|
},
|
|
18517
|
-
body: new URLSearchParams({
|
|
18511
|
+
body: new URLSearchParams(_object_spread({
|
|
18518
18512
|
// Auth0's token endpoint specifically looks for the exact string http://auth0.com/oauth/grant-type/mfa-oob to identify MFA OOB requests.
|
|
18519
18513
|
grant_type: "http://auth0.com/oauth/grant-type/mfa-oob",
|
|
18520
18514
|
client_id: request.clientId,
|
|
18521
18515
|
mfa_token: request.mfaToken,
|
|
18522
18516
|
oob_code: request.oobCode,
|
|
18523
18517
|
binding_code: request.bindingCode
|
|
18524
|
-
}).toString()
|
|
18518
|
+
}, _this.extractDeviceDetails(request))).toString()
|
|
18525
18519
|
})
|
|
18526
18520
|
];
|
|
18527
18521
|
case 2:
|
package/dist/index.d.mts
CHANGED
|
@@ -1906,10 +1906,18 @@ type RequestOtpCodeRequest = {
|
|
|
1906
1906
|
mfaToken: string;
|
|
1907
1907
|
oauthBaseUrl: string;
|
|
1908
1908
|
clientId: string;
|
|
1909
|
+
deviceDetails: DeviceDetails;
|
|
1909
1910
|
};
|
|
1910
1911
|
type RequestOtpCodeResponse = {
|
|
1911
1912
|
oobCode: string;
|
|
1912
1913
|
};
|
|
1914
|
+
type DeviceDetails = {
|
|
1915
|
+
deviceId: string;
|
|
1916
|
+
deviceOs: string;
|
|
1917
|
+
deviceOsVersion: string;
|
|
1918
|
+
deviceType: string;
|
|
1919
|
+
appVersion: string;
|
|
1920
|
+
};
|
|
1913
1921
|
type LoginWithPasswordRequest = {
|
|
1914
1922
|
identifier: string;
|
|
1915
1923
|
password: string;
|
|
@@ -1917,6 +1925,7 @@ type LoginWithPasswordRequest = {
|
|
|
1917
1925
|
oauthBaseUrl: string;
|
|
1918
1926
|
audience?: string;
|
|
1919
1927
|
scope?: string;
|
|
1928
|
+
deviceDetails: DeviceDetails;
|
|
1920
1929
|
};
|
|
1921
1930
|
type LoginWithPasswordResponse = {
|
|
1922
1931
|
accessToken: string;
|
|
@@ -1936,6 +1945,7 @@ type RefreshAccessTokenRequest = {
|
|
|
1936
1945
|
oauthBaseUrl: string;
|
|
1937
1946
|
scope: string;
|
|
1938
1947
|
loginStatus: string;
|
|
1948
|
+
deviceDetails: DeviceDetails;
|
|
1939
1949
|
};
|
|
1940
1950
|
type RefreshAccessTokenResponse = {
|
|
1941
1951
|
accessToken: string;
|
|
@@ -1948,6 +1958,7 @@ type HandleMFARequiredRequest = {
|
|
|
1948
1958
|
mfa_token: string;
|
|
1949
1959
|
clientId: string;
|
|
1950
1960
|
error: any;
|
|
1961
|
+
deviceDetails: DeviceDetails;
|
|
1951
1962
|
};
|
|
1952
1963
|
type OTPVerificationRequest = {
|
|
1953
1964
|
mfaToken: string;
|
|
@@ -1955,12 +1966,12 @@ type OTPVerificationRequest = {
|
|
|
1955
1966
|
clientId: string;
|
|
1956
1967
|
oauthBaseUrl: string;
|
|
1957
1968
|
bindingCode: string;
|
|
1969
|
+
deviceDetails: DeviceDetails;
|
|
1958
1970
|
};
|
|
1959
1971
|
declare abstract class iIdpService {
|
|
1960
1972
|
abstract requestOtpCode(request: RequestOtpCodeRequest): Promise<RequestOtpCodeResponse>;
|
|
1961
1973
|
abstract loginWithPassword(request: LoginWithPasswordRequest): Promise<LoginWithPasswordResponse>;
|
|
1962
1974
|
abstract refreshAccessToken(request: RefreshAccessTokenRequest): Promise<RefreshAccessTokenResponse>;
|
|
1963
|
-
abstract handleMfaRequired(request: HandleMFARequiredRequest): Promise<LoginWithPasswordResponse>;
|
|
1964
1975
|
abstract otpVerification(request: OTPVerificationRequest): Promise<LoginWithPasswordResponse>;
|
|
1965
1976
|
}
|
|
1966
1977
|
|
|
@@ -1973,7 +1984,6 @@ declare class MockIdpService extends iIdpService {
|
|
|
1973
1984
|
requestOtpCode(request: RequestOtpCodeRequest): Promise<RequestOtpCodeResponse>;
|
|
1974
1985
|
loginWithPassword(request: LoginWithPasswordRequest): Promise<LoginWithPasswordResponse>;
|
|
1975
1986
|
refreshAccessToken(request: RefreshAccessTokenRequest): Promise<RefreshAccessTokenResponse>;
|
|
1976
|
-
handleMfaRequired(request: HandleMFARequiredRequest): Promise<LoginWithPasswordResponse>;
|
|
1977
1987
|
otpVerification(request: OTPVerificationRequest): Promise<LoginWithPasswordResponse>;
|
|
1978
1988
|
setMockOtpResponse(response: RequestOtpCodeResponse): void;
|
|
1979
1989
|
setMockLoginResponse(response: LoginWithPasswordResponse): void;
|
|
@@ -1984,15 +1994,7 @@ declare class MockIdpService extends iIdpService {
|
|
|
1984
1994
|
|
|
1985
1995
|
declare function requestOtpCode(request: RequestOtpCodeRequest): Promise<RequestOtpCodeResponse>;
|
|
1986
1996
|
|
|
1987
|
-
|
|
1988
|
-
identifier: string;
|
|
1989
|
-
password: string;
|
|
1990
|
-
clientId: string;
|
|
1991
|
-
oauthBaseUrl: string;
|
|
1992
|
-
audience?: string;
|
|
1993
|
-
scope?: string;
|
|
1994
|
-
};
|
|
1995
|
-
declare function initPasswordAndLogin(request: InitPasswordAndLoginRequest): Promise<LoginWithPasswordResponse>;
|
|
1997
|
+
declare function initPasswordAndLogin(request: LoginWithPasswordRequest): Promise<LoginWithPasswordResponse>;
|
|
1996
1998
|
|
|
1997
1999
|
declare function loginWithIdAndPassword(request: LoginWithPasswordRequest): Promise<LoginWithPasswordResponse>;
|
|
1998
2000
|
|
|
@@ -2009,7 +2011,9 @@ declare class RestIdpService extends iIdpService {
|
|
|
2009
2011
|
requestOtpCode(request: RequestOtpCodeRequest): Promise<RequestOtpCodeResponse>;
|
|
2010
2012
|
loginWithPassword(request: LoginWithPasswordRequest): Promise<LoginWithPasswordResponse>;
|
|
2011
2013
|
refreshAccessToken(request: RefreshAccessTokenRequest): Promise<RefreshAccessTokenResponse>;
|
|
2012
|
-
|
|
2014
|
+
private extractDeviceDetails;
|
|
2015
|
+
private mapAccessTokenResponse;
|
|
2016
|
+
private handleMfaRequired;
|
|
2013
2017
|
otpVerification(request: OTPVerificationRequest): Promise<LoginWithPasswordResponse>;
|
|
2014
2018
|
}
|
|
2015
2019
|
|
|
@@ -4275,4 +4279,4 @@ declare const ITF_WLA_SERVICE: unique symbol;
|
|
|
4275
4279
|
|
|
4276
4280
|
declare const container: Container;
|
|
4277
4281
|
|
|
4278
|
-
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 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, 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 Dictionary, 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, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, type HandleMFARequiredRequest, 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_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, type InitPasswordAndLoginRequest, InitiateFunding, 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, 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, RemoveSourceCard, 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 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, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, 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, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, 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, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, qa, refreshAccessToken, registerDeviceForPushNotifications, 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 };
|
|
4282
|
+
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 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, 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, 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, FFLAGS_SESSION_STORAGE_KEY, type FaqItem, type FaqParagraph, type FaqParagraphSublist, FaqParagraphTypeEnum, type FaqSection, type FaqsGroup, type FaqsResponse, FormField, type FulfillmentAddressRequest, type FulfillmentAddressResponse, GaMeasurementAnalyticsService, GetAccountBalances, GetAccountHolderGroup, type GetAccountTransactionsRequest, GetActiveEnvName, GetActiveTheme, GetAllStepsOfDispute, GetCardByToken, GetCardsByUserToken, GetDepositAccounts, GetEnvConfigValueByName, GetIconsByName, GetLanguageCode, GetPinByCardToken, GetShowpanByCardToken, GetSourceCards, GetStatementAsset, GetStatements, GetStepOfDisputeByStepId, GetTransactionDetails, type GetTransactionDetailsByTokenJsonResponseTxnsDetailsBannerData, GetTransactions, type GetTransactionsResponse, GetUser, type HandleMFARequiredRequest, 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_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, InitiateFunding, 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, 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, RemoveSourceCard, 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 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, type ValidationRuleType, VanillaSessionService, type VerifyOTPRequest, type VerifyUserDeviceRequest, type VerifyUserDeviceResponse, WindowCacheService, WlaIocModule, WlaSdkError, type WlaTransactionDetailsResponse, WlaUserStatus, type WorkflowFieldAnswer, accountsIOCModule, 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, getMockUpdatedUserRequestToCreateResponse, getMockUserRequestToCreateResponse, getOfferDetails, getOffers, getOutagesByToken, getOutagesList, getSessionId, getSsoAccessTokenHandler, getTransferByToken, getTransfers, getUserProgram, getUserTokenHash, getWlaAccountDetails, getWlaCardByToken, getWlaFaqs, getWlaRewardSummaries, getWlaTransactionByToken, getWlaUserProfile, handleGetStatementAsset, handleGetStatements, iAccountRepository, iAnalyticsService, iAuthCredentialService, iAuthCredsMessageService, iAuthService, iAuthenticatedHttpClient, iCacheService, iCardRepository, iComponentsRepository, iDisputesRepository, iFeatureFlagService, iGetEnvConfigValueByName, iIconsRepository, iIdpService, iKybRepository, iKycRepository, iMoneyMovementRepository, iPersistedCacheService, iRegistryService, iSessionService, iSsoAccessTokenService, iStatementsRepository, iThemeRepository, iTransactionsRepository, iUsersRepository, iconsIOCModule, idpIOCModule, initPasswordAndLogin, initializeOnboarding, 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, postVerifyKyb, postVerifyKyc, postWlaSendResetPasswordLink, production, qa, refreshAccessToken, registerDeviceForPushNotifications, 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 };
|