@frontegg/redux-store 6.119.0 → 6.120.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/auth/AcceptInvitationState/index.d.ts +2 -0
- package/auth/AccountSettingsState/index.d.ts +2 -0
- package/auth/ActivateState/index.d.ts +3 -0
- package/auth/ApiTokensState/index.d.ts +10 -2
- package/auth/CustomLoginState/index.d.ts +2 -0
- package/auth/EntitlementsState/index.d.ts +1 -0
- package/auth/ForgotPasswordState/index.d.ts +2 -0
- package/auth/GroupsState/groupsDialogsState.d.ts +12 -0
- package/auth/GroupsState/index.d.ts +2 -0
- package/auth/ImpersonationState/index.d.ts +2 -0
- package/auth/LoginState/index.d.ts +2 -0
- package/auth/MSP/AllAccountsState/allAccountsDialogsState.d.ts +14 -0
- package/auth/MSP/AllAccountsState/index.d.ts +3 -0
- package/auth/MfaState/index.d.ts +2 -0
- package/auth/PasskeysState/index.d.ts +2 -0
- package/auth/ProfileState/index.d.ts +2 -0
- package/auth/Provisioning/index.d.ts +2 -0
- package/auth/ResetPhoneNumberState/index.d.ts +2 -0
- package/auth/RestrictionsState/index.d.ts +12 -9
- package/auth/RolesState/index.d.ts +2 -0
- package/auth/SSOState/index.d.ts +2 -0
- package/auth/SecurityCenterState/index.d.ts +141 -0
- package/auth/SecurityCenterState/index.js +35 -0
- package/auth/SecurityCenterState/interfaces.d.ts +10 -0
- package/auth/SecurityCenterState/interfaces.js +1 -0
- package/auth/SecurityCenterState/saga.d.ts +16 -0
- package/auth/SecurityCenterState/saga.js +61 -0
- package/auth/SecurityCenterState/types.d.ts +8 -0
- package/auth/SecurityCenterState/types.js +5 -0
- package/auth/SecurityPolicyState/index.d.ts +13 -0
- package/auth/SessionsPolicyState/index.d.ts +2 -0
- package/auth/SessionsState/index.d.ts +2 -0
- package/auth/SignUp/index.d.ts +2 -0
- package/auth/SocialLogins/index.d.ts +2 -0
- package/auth/TeamState/index.d.ts +2 -0
- package/auth/TenantsState/index.d.ts +2 -0
- package/auth/index.d.ts +8 -0
- package/auth/index.js +2 -0
- package/auth/interfaces.d.ts +2 -0
- package/auth/reducer.d.ts +8 -1
- package/auth/reducer.js +3 -2
- package/auth/utils.d.ts +6 -0
- package/index.js +1 -1
- package/interfaces.d.ts +3 -0
- package/node/auth/SecurityCenterState/index.js +42 -0
- package/node/auth/SecurityCenterState/interfaces.js +5 -0
- package/node/auth/SecurityCenterState/saga.js +69 -0
- package/node/auth/SecurityCenterState/types.js +12 -0
- package/node/auth/index.js +28 -4
- package/node/auth/reducer.js +3 -2
- package/node/index.js +1 -1
- package/node/toolkit/index.js +13 -14
- package/package.json +2 -2
- package/toolkit/index.d.ts +2 -2
- package/toolkit/index.js +2 -2
- /package/node/toolkit/{redux-saga.js → redux-saga-tools.js} +0 -0
- /package/toolkit/{redux-saga.d.ts → redux-saga-tools.d.ts} +0 -0
- /package/toolkit/{redux-saga.js → redux-saga-tools.js} +0 -0
|
@@ -50,6 +50,7 @@ declare const reducers: {
|
|
|
50
50
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
51
51
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
52
52
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
53
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
53
54
|
routes: import("..").AuthPageRoutes;
|
|
54
55
|
header?: any;
|
|
55
56
|
loaderComponent?: any;
|
|
@@ -96,6 +97,7 @@ declare const reducers: {
|
|
|
96
97
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
97
98
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
98
99
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
100
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
99
101
|
routes: import("..").AuthPageRoutes;
|
|
100
102
|
header?: any;
|
|
101
103
|
loaderComponent?: any;
|
|
@@ -51,6 +51,7 @@ declare const reducers: {
|
|
|
51
51
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
52
52
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
53
53
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
54
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
54
55
|
routes: import("..").AuthPageRoutes;
|
|
55
56
|
header?: any;
|
|
56
57
|
loaderComponent?: any;
|
|
@@ -97,6 +98,7 @@ declare const reducers: {
|
|
|
97
98
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
98
99
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
99
100
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
101
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
100
102
|
routes: import("..").AuthPageRoutes;
|
|
101
103
|
header?: any;
|
|
102
104
|
loaderComponent?: any;
|
|
@@ -51,6 +51,7 @@ declare const reducers: {
|
|
|
51
51
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
52
52
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
53
53
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
54
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
54
55
|
routes: import("..").AuthPageRoutes;
|
|
55
56
|
header?: any;
|
|
56
57
|
loaderComponent?: any;
|
|
@@ -97,6 +98,7 @@ declare const reducers: {
|
|
|
97
98
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
98
99
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
99
100
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
101
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
100
102
|
routes: import("..").AuthPageRoutes;
|
|
101
103
|
header?: any;
|
|
102
104
|
loaderComponent?: any;
|
|
@@ -149,6 +151,7 @@ declare const reducers: {
|
|
|
149
151
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
150
152
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
151
153
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
154
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
152
155
|
routes: import("..").AuthPageRoutes;
|
|
153
156
|
header?: any;
|
|
154
157
|
loaderComponent?: any;
|
|
@@ -47,7 +47,10 @@ declare const reducers: {
|
|
|
47
47
|
profileState: import("..").ProfileState;
|
|
48
48
|
mfaState: import("..").MFAState;
|
|
49
49
|
teamState: import("..").TeamState;
|
|
50
|
-
groupsState: import("..").GroupsState;
|
|
50
|
+
groupsState: import("..").GroupsState; /**
|
|
51
|
+
* if you see error in matcher that's mean the DispatchAction does not
|
|
52
|
+
* contains the same functions in reducers and actions
|
|
53
|
+
*/
|
|
51
54
|
groupsDialogsState: import("..").GroupsDialogsState;
|
|
52
55
|
socialLoginState: import("..").SocialLoginState;
|
|
53
56
|
signUpState: import("..").SignUpState;
|
|
@@ -68,6 +71,7 @@ declare const reducers: {
|
|
|
68
71
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
69
72
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
70
73
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
74
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
71
75
|
routes: import("..").AuthPageRoutes;
|
|
72
76
|
header?: any;
|
|
73
77
|
loaderComponent?: any;
|
|
@@ -93,7 +97,10 @@ declare const reducers: {
|
|
|
93
97
|
profileState: import("..").ProfileState;
|
|
94
98
|
mfaState: import("..").MFAState;
|
|
95
99
|
teamState: import("..").TeamState;
|
|
96
|
-
groupsState: import("..").GroupsState;
|
|
100
|
+
groupsState: import("..").GroupsState; /**
|
|
101
|
+
* if you see error in matcher that's mean the DispatchAction does not
|
|
102
|
+
* contains the same functions in reducers and actions
|
|
103
|
+
*/
|
|
97
104
|
groupsDialogsState: import("..").GroupsDialogsState;
|
|
98
105
|
socialLoginState: import("..").SocialLoginState;
|
|
99
106
|
signUpState: import("..").SignUpState;
|
|
@@ -114,6 +121,7 @@ declare const reducers: {
|
|
|
114
121
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
115
122
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
116
123
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
124
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
117
125
|
routes: import("..").AuthPageRoutes;
|
|
118
126
|
header?: any;
|
|
119
127
|
loaderComponent?: any;
|
|
@@ -50,6 +50,7 @@ declare const reducers: {
|
|
|
50
50
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
51
51
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
52
52
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
53
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
53
54
|
routes: import("..").AuthPageRoutes;
|
|
54
55
|
header?: any;
|
|
55
56
|
loaderComponent?: any;
|
|
@@ -96,6 +97,7 @@ declare const reducers: {
|
|
|
96
97
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
97
98
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
98
99
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
100
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
99
101
|
routes: import("..").AuthPageRoutes;
|
|
100
102
|
header?: any;
|
|
101
103
|
loaderComponent?: any;
|
|
@@ -49,6 +49,7 @@ declare const reducers: {
|
|
|
49
49
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
50
50
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
51
51
|
entitlementsState?: EntitlementsState | undefined;
|
|
52
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
52
53
|
routes: import("..").AuthPageRoutes;
|
|
53
54
|
header?: any;
|
|
54
55
|
loaderComponent?: any;
|
|
@@ -50,6 +50,7 @@ declare const reducers: {
|
|
|
50
50
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
51
51
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
52
52
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
53
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
53
54
|
routes: import("..").AuthPageRoutes;
|
|
54
55
|
header?: any;
|
|
55
56
|
loaderComponent?: any;
|
|
@@ -96,6 +97,7 @@ declare const reducers: {
|
|
|
96
97
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
97
98
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
98
99
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
100
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
99
101
|
routes: import("..").AuthPageRoutes;
|
|
100
102
|
header?: any;
|
|
101
103
|
loaderComponent?: any;
|
|
@@ -49,6 +49,7 @@ declare const reducers: {
|
|
|
49
49
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
50
50
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
51
51
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
52
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
52
53
|
routes: import("..").AuthPageRoutes;
|
|
53
54
|
header?: any;
|
|
54
55
|
loaderComponent?: any;
|
|
@@ -95,6 +96,7 @@ declare const reducers: {
|
|
|
95
96
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
96
97
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
97
98
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
99
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
98
100
|
routes: import("..").AuthPageRoutes;
|
|
99
101
|
header?: any;
|
|
100
102
|
loaderComponent?: any;
|
|
@@ -140,6 +142,7 @@ declare const reducers: {
|
|
|
140
142
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
141
143
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
142
144
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
145
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
143
146
|
routes: import("..").AuthPageRoutes;
|
|
144
147
|
header?: any;
|
|
145
148
|
loaderComponent?: any;
|
|
@@ -185,6 +188,7 @@ declare const reducers: {
|
|
|
185
188
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
186
189
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
187
190
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
191
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
188
192
|
routes: import("..").AuthPageRoutes;
|
|
189
193
|
header?: any;
|
|
190
194
|
loaderComponent?: any;
|
|
@@ -237,6 +241,7 @@ declare const reducers: {
|
|
|
237
241
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
238
242
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
239
243
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
244
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
240
245
|
routes: import("..").AuthPageRoutes;
|
|
241
246
|
header?: any;
|
|
242
247
|
loaderComponent?: any;
|
|
@@ -283,6 +288,7 @@ declare const reducers: {
|
|
|
283
288
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
284
289
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
285
290
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
291
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
286
292
|
routes: import("..").AuthPageRoutes;
|
|
287
293
|
header?: any;
|
|
288
294
|
loaderComponent?: any;
|
|
@@ -356,6 +362,7 @@ declare const reducers: {
|
|
|
356
362
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
357
363
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
358
364
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
365
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
359
366
|
routes: import("..").AuthPageRoutes;
|
|
360
367
|
header?: any;
|
|
361
368
|
loaderComponent?: any;
|
|
@@ -402,6 +409,7 @@ declare const reducers: {
|
|
|
402
409
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
403
410
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
404
411
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
412
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
405
413
|
routes: import("..").AuthPageRoutes;
|
|
406
414
|
header?: any;
|
|
407
415
|
loaderComponent?: any;
|
|
@@ -447,6 +455,7 @@ declare const reducers: {
|
|
|
447
455
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
448
456
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
449
457
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
458
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
450
459
|
routes: import("..").AuthPageRoutes;
|
|
451
460
|
header?: any;
|
|
452
461
|
loaderComponent?: any;
|
|
@@ -492,6 +501,7 @@ declare const reducers: {
|
|
|
492
501
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
493
502
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
494
503
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
504
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
495
505
|
routes: import("..").AuthPageRoutes;
|
|
496
506
|
header?: any;
|
|
497
507
|
loaderComponent?: any;
|
|
@@ -544,6 +554,7 @@ declare const reducers: {
|
|
|
544
554
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
545
555
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
546
556
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
557
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
547
558
|
routes: import("..").AuthPageRoutes;
|
|
548
559
|
header?: any;
|
|
549
560
|
loaderComponent?: any;
|
|
@@ -590,6 +601,7 @@ declare const reducers: {
|
|
|
590
601
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
591
602
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
592
603
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
604
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
593
605
|
routes: import("..").AuthPageRoutes;
|
|
594
606
|
header?: any;
|
|
595
607
|
loaderComponent?: any;
|
|
@@ -67,6 +67,7 @@ declare const reducers: {
|
|
|
67
67
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
68
68
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
69
69
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
70
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
70
71
|
routes: import("..").AuthPageRoutes;
|
|
71
72
|
header?: any;
|
|
72
73
|
loaderComponent?: any;
|
|
@@ -113,6 +114,7 @@ declare const reducers: {
|
|
|
113
114
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
114
115
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
115
116
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
117
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
116
118
|
routes: import("..").AuthPageRoutes;
|
|
117
119
|
header?: any;
|
|
118
120
|
loaderComponent?: any;
|
|
@@ -50,6 +50,7 @@ declare const reducers: {
|
|
|
50
50
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
51
51
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
52
52
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
53
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
53
54
|
routes: import("..").AuthPageRoutes;
|
|
54
55
|
header?: any;
|
|
55
56
|
loaderComponent?: any;
|
|
@@ -96,6 +97,7 @@ declare const reducers: {
|
|
|
96
97
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
97
98
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
98
99
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
100
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
99
101
|
routes: import("..").AuthPageRoutes;
|
|
100
102
|
header?: any;
|
|
101
103
|
loaderComponent?: any;
|
|
@@ -52,6 +52,7 @@ declare const reducers: {
|
|
|
52
52
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
53
53
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
54
54
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
55
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
55
56
|
routes: import("..").AuthPageRoutes;
|
|
56
57
|
header?: any;
|
|
57
58
|
loaderComponent?: any;
|
|
@@ -98,6 +99,7 @@ declare const reducers: {
|
|
|
98
99
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
99
100
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
100
101
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
102
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
101
103
|
routes: import("..").AuthPageRoutes;
|
|
102
104
|
header?: any;
|
|
103
105
|
loaderComponent?: any;
|
|
@@ -50,6 +50,7 @@ declare const reducers: {
|
|
|
50
50
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
51
51
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
52
52
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
53
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
53
54
|
routes: import("../..").AuthPageRoutes;
|
|
54
55
|
header?: any;
|
|
55
56
|
loaderComponent?: any;
|
|
@@ -96,6 +97,7 @@ declare const reducers: {
|
|
|
96
97
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
97
98
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
98
99
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
100
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
99
101
|
routes: import("../..").AuthPageRoutes;
|
|
100
102
|
header?: any;
|
|
101
103
|
loaderComponent?: any;
|
|
@@ -160,6 +162,7 @@ declare const reducers: {
|
|
|
160
162
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
161
163
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
162
164
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
165
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
163
166
|
routes: import("../..").AuthPageRoutes;
|
|
164
167
|
header?: any;
|
|
165
168
|
loaderComponent?: any;
|
|
@@ -206,6 +209,7 @@ declare const reducers: {
|
|
|
206
209
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
207
210
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
208
211
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
212
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
209
213
|
routes: import("../..").AuthPageRoutes;
|
|
210
214
|
header?: any;
|
|
211
215
|
loaderComponent?: any;
|
|
@@ -258,6 +262,7 @@ declare const reducers: {
|
|
|
258
262
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
259
263
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
260
264
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
265
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
261
266
|
routes: import("../..").AuthPageRoutes;
|
|
262
267
|
header?: any;
|
|
263
268
|
loaderComponent?: any;
|
|
@@ -304,6 +309,7 @@ declare const reducers: {
|
|
|
304
309
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
305
310
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
306
311
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
312
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
307
313
|
routes: import("../..").AuthPageRoutes;
|
|
308
314
|
header?: any;
|
|
309
315
|
loaderComponent?: any;
|
|
@@ -368,6 +374,7 @@ declare const reducers: {
|
|
|
368
374
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
369
375
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
370
376
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
377
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
371
378
|
routes: import("../..").AuthPageRoutes;
|
|
372
379
|
header?: any;
|
|
373
380
|
loaderComponent?: any;
|
|
@@ -414,6 +421,7 @@ declare const reducers: {
|
|
|
414
421
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
415
422
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
416
423
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
424
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
417
425
|
routes: import("../..").AuthPageRoutes;
|
|
418
426
|
header?: any;
|
|
419
427
|
loaderComponent?: any;
|
|
@@ -478,6 +486,7 @@ declare const reducers: {
|
|
|
478
486
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
479
487
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
480
488
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
489
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
481
490
|
routes: import("../..").AuthPageRoutes;
|
|
482
491
|
header?: any;
|
|
483
492
|
loaderComponent?: any;
|
|
@@ -524,6 +533,7 @@ declare const reducers: {
|
|
|
524
533
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
525
534
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
526
535
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
536
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
527
537
|
routes: import("../..").AuthPageRoutes;
|
|
528
538
|
header?: any;
|
|
529
539
|
loaderComponent?: any;
|
|
@@ -594,6 +604,7 @@ declare const reducers: {
|
|
|
594
604
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
595
605
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
596
606
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
607
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
597
608
|
routes: import("../..").AuthPageRoutes;
|
|
598
609
|
header?: any;
|
|
599
610
|
loaderComponent?: any;
|
|
@@ -640,6 +651,7 @@ declare const reducers: {
|
|
|
640
651
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
641
652
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
642
653
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
654
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
643
655
|
routes: import("../..").AuthPageRoutes;
|
|
644
656
|
header?: any;
|
|
645
657
|
loaderComponent?: any;
|
|
@@ -692,6 +704,7 @@ declare const reducers: {
|
|
|
692
704
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
693
705
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
694
706
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
707
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
695
708
|
routes: import("../..").AuthPageRoutes;
|
|
696
709
|
header?: any;
|
|
697
710
|
loaderComponent?: any;
|
|
@@ -738,6 +751,7 @@ declare const reducers: {
|
|
|
738
751
|
allAccountsState?: import("./types").IAllAccountsState | undefined;
|
|
739
752
|
allAccountsDialogsState?: IAllAccountsDialogsState | undefined;
|
|
740
753
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
754
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
741
755
|
routes: import("../..").AuthPageRoutes;
|
|
742
756
|
header?: any;
|
|
743
757
|
loaderComponent?: any;
|
|
@@ -69,6 +69,7 @@ declare const reducers: {
|
|
|
69
69
|
allAccountsState?: IAllAccountsState | undefined;
|
|
70
70
|
allAccountsDialogsState?: import("./types").IAllAccountsDialogsState | undefined;
|
|
71
71
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
72
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
72
73
|
routes: import("../..").AuthPageRoutes;
|
|
73
74
|
header?: any;
|
|
74
75
|
loaderComponent?: any;
|
|
@@ -122,6 +123,7 @@ declare const reducers: {
|
|
|
122
123
|
allAccountsState?: IAllAccountsState | undefined;
|
|
123
124
|
allAccountsDialogsState?: import("./types").IAllAccountsDialogsState | undefined;
|
|
124
125
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
126
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
125
127
|
routes: import("../..").AuthPageRoutes;
|
|
126
128
|
header?: any;
|
|
127
129
|
loaderComponent?: any;
|
|
@@ -168,6 +170,7 @@ declare const reducers: {
|
|
|
168
170
|
allAccountsState?: IAllAccountsState | undefined;
|
|
169
171
|
allAccountsDialogsState?: import("./types").IAllAccountsDialogsState | undefined;
|
|
170
172
|
entitlementsState?: import("../..").EntitlementsState | undefined;
|
|
173
|
+
securityCenterState?: import("../..").SecurityCenterState | undefined;
|
|
171
174
|
routes: import("../..").AuthPageRoutes;
|
|
172
175
|
header?: any;
|
|
173
176
|
loaderComponent?: any;
|
package/auth/MfaState/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ declare const reducers: {
|
|
|
52
52
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
53
53
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
54
54
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
55
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
55
56
|
routes: import("..").AuthPageRoutes;
|
|
56
57
|
header?: any;
|
|
57
58
|
loaderComponent?: any;
|
|
@@ -98,6 +99,7 @@ declare const reducers: {
|
|
|
98
99
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
99
100
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
100
101
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
102
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
101
103
|
routes: import("..").AuthPageRoutes;
|
|
102
104
|
header?: any;
|
|
103
105
|
loaderComponent?: any;
|
|
@@ -50,6 +50,7 @@ declare const reducers: {
|
|
|
50
50
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
51
51
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
52
52
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
53
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
53
54
|
routes: import("..").AuthPageRoutes;
|
|
54
55
|
header?: any;
|
|
55
56
|
loaderComponent?: any;
|
|
@@ -96,6 +97,7 @@ declare const reducers: {
|
|
|
96
97
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
97
98
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
98
99
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
100
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
99
101
|
routes: import("..").AuthPageRoutes;
|
|
100
102
|
header?: any;
|
|
101
103
|
loaderComponent?: any;
|
|
@@ -51,6 +51,7 @@ declare const reducers: {
|
|
|
51
51
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
52
52
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
53
53
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
54
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
54
55
|
routes: import("..").AuthPageRoutes;
|
|
55
56
|
header?: any;
|
|
56
57
|
loaderComponent?: any;
|
|
@@ -97,6 +98,7 @@ declare const reducers: {
|
|
|
97
98
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
98
99
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
99
100
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
101
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
100
102
|
routes: import("..").AuthPageRoutes;
|
|
101
103
|
header?: any;
|
|
102
104
|
loaderComponent?: any;
|
|
@@ -51,6 +51,7 @@ declare const reducers: {
|
|
|
51
51
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
52
52
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
53
53
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
54
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
54
55
|
routes: import("..").AuthPageRoutes;
|
|
55
56
|
header?: any;
|
|
56
57
|
loaderComponent?: any;
|
|
@@ -97,6 +98,7 @@ declare const reducers: {
|
|
|
97
98
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
98
99
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
99
100
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
101
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
100
102
|
routes: import("..").AuthPageRoutes;
|
|
101
103
|
header?: any;
|
|
102
104
|
loaderComponent?: any;
|
|
@@ -51,6 +51,7 @@ declare const reducers: {
|
|
|
51
51
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
52
52
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
53
53
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
54
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
54
55
|
routes: import("..").AuthPageRoutes;
|
|
55
56
|
header?: any;
|
|
56
57
|
loaderComponent?: any;
|
|
@@ -97,6 +98,7 @@ declare const reducers: {
|
|
|
97
98
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
98
99
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
99
100
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
101
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
100
102
|
routes: import("..").AuthPageRoutes;
|
|
101
103
|
header?: any;
|
|
102
104
|
loaderComponent?: any;
|
|
@@ -45,19 +45,20 @@ declare const reducers: {
|
|
|
45
45
|
hostedLoginBox?: boolean | undefined;
|
|
46
46
|
disableSilentRefresh?: boolean | undefined;
|
|
47
47
|
sessionsPolicyState: import("..").SessionsPolicyState;
|
|
48
|
-
impersonateState?: import("..").ImpersonateState | undefined;
|
|
49
|
-
passkeysState?: import("..").PasskeysState | undefined;
|
|
50
48
|
/**
|
|
51
49
|
* if you see error in matcher that's mean the DispatchAction does not
|
|
52
50
|
* contains the same functions in reducers and actions
|
|
53
51
|
*/
|
|
54
|
-
|
|
52
|
+
impersonateState?: import("..").ImpersonateState | undefined; /**
|
|
55
53
|
* if you see error in matcher that's mean the DispatchAction does not
|
|
56
54
|
* contains the same functions in reducers and actions
|
|
57
55
|
*/
|
|
56
|
+
passkeysState?: import("..").PasskeysState | undefined;
|
|
57
|
+
customLoginState?: import("..").CustomLoginState | undefined;
|
|
58
58
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
59
59
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
60
60
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
61
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
61
62
|
routes: import("..").AuthPageRoutes;
|
|
62
63
|
header?: any;
|
|
63
64
|
loaderComponent?: any;
|
|
@@ -105,19 +106,20 @@ declare const reducers: {
|
|
|
105
106
|
hostedLoginBox?: boolean | undefined;
|
|
106
107
|
disableSilentRefresh?: boolean | undefined;
|
|
107
108
|
sessionsPolicyState: import("..").SessionsPolicyState;
|
|
108
|
-
impersonateState?: import("..").ImpersonateState | undefined;
|
|
109
|
-
passkeysState?: import("..").PasskeysState | undefined;
|
|
110
109
|
/**
|
|
111
110
|
* if you see error in matcher that's mean the DispatchAction does not
|
|
112
111
|
* contains the same functions in reducers and actions
|
|
113
112
|
*/
|
|
114
|
-
|
|
113
|
+
impersonateState?: import("..").ImpersonateState | undefined; /**
|
|
115
114
|
* if you see error in matcher that's mean the DispatchAction does not
|
|
116
115
|
* contains the same functions in reducers and actions
|
|
117
116
|
*/
|
|
117
|
+
passkeysState?: import("..").PasskeysState | undefined;
|
|
118
|
+
customLoginState?: import("..").CustomLoginState | undefined;
|
|
118
119
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
119
120
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
120
121
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
122
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
121
123
|
routes: import("..").AuthPageRoutes;
|
|
122
124
|
header?: any;
|
|
123
125
|
loaderComponent?: any;
|
|
@@ -165,19 +167,20 @@ declare const reducers: {
|
|
|
165
167
|
hostedLoginBox?: boolean | undefined;
|
|
166
168
|
disableSilentRefresh?: boolean | undefined;
|
|
167
169
|
sessionsPolicyState: import("..").SessionsPolicyState;
|
|
168
|
-
impersonateState?: import("..").ImpersonateState | undefined;
|
|
169
|
-
passkeysState?: import("..").PasskeysState | undefined;
|
|
170
170
|
/**
|
|
171
171
|
* if you see error in matcher that's mean the DispatchAction does not
|
|
172
172
|
* contains the same functions in reducers and actions
|
|
173
173
|
*/
|
|
174
|
-
|
|
174
|
+
impersonateState?: import("..").ImpersonateState | undefined; /**
|
|
175
175
|
* if you see error in matcher that's mean the DispatchAction does not
|
|
176
176
|
* contains the same functions in reducers and actions
|
|
177
177
|
*/
|
|
178
|
+
passkeysState?: import("..").PasskeysState | undefined;
|
|
179
|
+
customLoginState?: import("..").CustomLoginState | undefined;
|
|
178
180
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
179
181
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
180
182
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
183
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
181
184
|
routes: import("..").AuthPageRoutes;
|
|
182
185
|
header?: any;
|
|
183
186
|
loaderComponent?: any;
|
|
@@ -51,6 +51,7 @@ declare const reducers: {
|
|
|
51
51
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
52
52
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
53
53
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
54
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
54
55
|
routes: import("..").AuthPageRoutes;
|
|
55
56
|
header?: any;
|
|
56
57
|
loaderComponent?: any;
|
|
@@ -97,6 +98,7 @@ declare const reducers: {
|
|
|
97
98
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
98
99
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
99
100
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
101
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
100
102
|
routes: import("..").AuthPageRoutes;
|
|
101
103
|
header?: any;
|
|
102
104
|
loaderComponent?: any;
|
package/auth/SSOState/index.d.ts
CHANGED
|
@@ -69,6 +69,7 @@ declare const reducers: {
|
|
|
69
69
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
70
70
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
71
71
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
72
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
72
73
|
routes: import("..").AuthPageRoutes;
|
|
73
74
|
header?: any;
|
|
74
75
|
loaderComponent?: any;
|
|
@@ -115,6 +116,7 @@ declare const reducers: {
|
|
|
115
116
|
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
116
117
|
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
117
118
|
entitlementsState?: import("..").EntitlementsState | undefined;
|
|
119
|
+
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
118
120
|
routes: import("..").AuthPageRoutes;
|
|
119
121
|
header?: any;
|
|
120
122
|
loaderComponent?: any;
|