@frontegg/redux-store 6.129.0-alpha.1 → 6.129.0-alpha.3

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.
Files changed (65) hide show
  1. package/auth/ActivateState/index.d.ts +12 -0
  2. package/auth/ApiTokensState/index.d.ts +8 -0
  3. package/auth/LoginState/saga.js +1 -1
  4. package/auth/SSOState/saga.v2.js +4 -9
  5. package/auth/Security/RestrictionsState/index.d.ts +214 -0
  6. package/auth/{RestrictionsState → Security/RestrictionsState}/index.js +2 -2
  7. package/auth/{RestrictionsState → Security/RestrictionsState}/interfaces.d.ts +1 -1
  8. package/auth/{RestrictionsState → Security/RestrictionsState}/saga.js +5 -5
  9. package/auth/Security/SecurityCenterState/index.d.ts +141 -0
  10. package/auth/{SecurityCenterState → Security/SecurityCenterState}/index.js +2 -2
  11. package/auth/{SecurityCenterState → Security/SecurityCenterState}/interfaces.d.ts +1 -1
  12. package/auth/{SecurityCenterState → Security/SecurityCenterState}/saga.js +4 -4
  13. package/auth/Security/SecurityPolicyState/index.d.ts +802 -0
  14. package/auth/{SecurityPolicyState → Security/SecurityPolicyState}/index.js +2 -2
  15. package/auth/{SecurityPolicyState → Security/SecurityPolicyState}/interfaces.d.ts +1 -1
  16. package/auth/{SecurityPolicyState → Security/SecurityPolicyState}/saga.d.ts +9 -9
  17. package/auth/{SecurityPolicyState → Security/SecurityPolicyState}/saga.js +5 -5
  18. package/auth/Security/SessionsPolicyState/index.d.ts +120 -0
  19. package/auth/{SessionsPolicyState → Security/SessionsPolicyState}/index.js +2 -2
  20. package/auth/{SessionsPolicyState → Security/SessionsPolicyState}/saga.js +2 -2
  21. package/auth/SignUp/saga.js +1 -1
  22. package/auth/index.d.ts +17 -17
  23. package/auth/index.js +9 -9
  24. package/auth/initialState.js +4 -4
  25. package/auth/interfaces.d.ts +4 -4
  26. package/auth/reducer.d.ts +3 -3
  27. package/auth/reducer.js +4 -4
  28. package/auth/saga.js +4 -4
  29. package/index.js +1 -1
  30. package/node/auth/LoginState/saga.js +1 -1
  31. package/node/auth/SSOState/saga.v2.js +3 -8
  32. package/node/auth/{RestrictionsState → Security/RestrictionsState}/index.js +2 -2
  33. package/node/auth/{RestrictionsState → Security/RestrictionsState}/saga.js +5 -5
  34. package/node/auth/{SecurityCenterState → Security/SecurityCenterState}/index.js +2 -2
  35. package/node/auth/{SecurityCenterState → Security/SecurityCenterState}/saga.js +4 -4
  36. package/node/auth/{SecurityPolicyState → Security/SecurityPolicyState}/index.js +2 -2
  37. package/node/auth/{SecurityPolicyState → Security/SecurityPolicyState}/saga.js +5 -5
  38. package/node/auth/{SessionsPolicyState → Security/SessionsPolicyState}/index.js +2 -2
  39. package/node/auth/{SessionsPolicyState → Security/SessionsPolicyState}/saga.js +2 -2
  40. package/node/auth/SignUp/saga.js +1 -1
  41. package/node/auth/index.js +9 -9
  42. package/node/auth/initialState.js +4 -4
  43. package/node/auth/reducer.js +4 -4
  44. package/node/auth/saga.js +4 -4
  45. package/node/index.js +1 -1
  46. package/package.json +2 -2
  47. package/auth/RestrictionsState/index.d.ts +0 -226
  48. package/auth/SecurityCenterState/index.d.ts +0 -141
  49. package/auth/SecurityPolicyState/index.d.ts +0 -802
  50. package/auth/SessionsPolicyState/index.d.ts +0 -120
  51. /package/auth/{RestrictionsState → Security/RestrictionsState}/interfaces.js +0 -0
  52. /package/auth/{RestrictionsState → Security/RestrictionsState}/saga.d.ts +0 -0
  53. /package/auth/{SecurityCenterState → Security/SecurityCenterState}/interfaces.js +0 -0
  54. /package/auth/{SecurityCenterState → Security/SecurityCenterState}/saga.d.ts +0 -0
  55. /package/auth/{SecurityCenterState → Security/SecurityCenterState}/types.d.ts +0 -0
  56. /package/auth/{SecurityCenterState → Security/SecurityCenterState}/types.js +0 -0
  57. /package/auth/{SecurityPolicyState → Security/SecurityPolicyState}/interfaces.js +0 -0
  58. /package/auth/{SessionsPolicyState → Security/SessionsPolicyState}/interfaces.d.ts +0 -0
  59. /package/auth/{SessionsPolicyState → Security/SessionsPolicyState}/interfaces.js +0 -0
  60. /package/auth/{SessionsPolicyState → Security/SessionsPolicyState}/saga.d.ts +0 -0
  61. /package/node/auth/{RestrictionsState → Security/RestrictionsState}/interfaces.js +0 -0
  62. /package/node/auth/{SecurityCenterState → Security/SecurityCenterState}/interfaces.js +0 -0
  63. /package/node/auth/{SecurityCenterState → Security/SecurityCenterState}/types.js +0 -0
  64. /package/node/auth/{SecurityPolicyState → Security/SecurityPolicyState}/interfaces.js +0 -0
  65. /package/node/auth/{SessionsPolicyState → Security/SessionsPolicyState}/interfaces.js +0 -0
@@ -1,802 +0,0 @@
1
- import { CaptchaPolicyState, GlobalPolicyState, PublicPolicyState, LockoutPolicyState, MfaPolicyState, PasswordPolicyState, SaveSecurityPolicyLockoutPayload, SaveSecurityPolicyMfaPayload, SecurityPolicyState, PasswordHistoryPolicyState, SaveSecurityPolicyPasswordHistoryPayload, PublicAuthStrategyPolicyState } from './interfaces';
2
- declare const securityPolicyState: SecurityPolicyState;
3
- declare const reducers: {
4
- setSecurityPolicyState: {
5
- prepare: (payload: Partial<SecurityPolicyState>) => {
6
- payload: Partial<SecurityPolicyState>;
7
- };
8
- reducer: (state: import("..").AuthState, { payload }: {
9
- payload: Partial<SecurityPolicyState>;
10
- type: string;
11
- }) => {
12
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
13
- error?: any;
14
- isAuthenticated: boolean;
15
- userIp?: string | undefined;
16
- isLoading: boolean;
17
- keepSessionAlive?: boolean | undefined;
18
- user?: import("..").User | null | undefined;
19
- isSSOAuth: boolean;
20
- ssoACS?: string | undefined;
21
- includeQueryParam?: boolean | undefined;
22
- loginState: import("..").LoginState;
23
- activateState: import("..").ActivateAccountState;
24
- acceptInvitationState: import("..").AcceptInvitationState;
25
- forgotPasswordState: import("..").ForgotPasswordState;
26
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
27
- ssoState: import("..").SSOState;
28
- profileState: import("..").ProfileState;
29
- mfaState: import("..").MFAState;
30
- teamState: import("..").TeamState;
31
- groupsState: import("..").GroupsState;
32
- groupsDialogsState: import("..").GroupsDialogsState;
33
- socialLoginState: import("..").SocialLoginState;
34
- signUpState: import("..").SignUpState;
35
- apiTokensState: import("..").ApiTokensState;
36
- securityPolicyState: SecurityPolicyState;
37
- restrictionsState: import("..").RestrictionsState;
38
- provisioningState: import("..").ProvisioningState;
39
- accountSettingsState: import("..").AccountSettingsState;
40
- tenantsState: import("..").TenantsState;
41
- rolesState: import("..").RolesState;
42
- sessionsState: import("..").SessionsState;
43
- hostedLoginBox?: boolean | undefined;
44
- disableSilentRefresh?: boolean | undefined;
45
- sessionsPolicyState: import("..").SessionsPolicyState;
46
- impersonateState?: import("..").ImpersonateState | undefined;
47
- passkeysState?: import("..").PasskeysState | undefined;
48
- customLoginState?: import("..").CustomLoginState | undefined;
49
- allAccountsState?: import("..").IAllAccountsState | undefined;
50
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
51
- securityCenterState?: import("..").SecurityCenterState | undefined;
52
- routes: import("..").AuthPageRoutes;
53
- header?: any;
54
- loaderComponent?: any;
55
- };
56
- };
57
- setSecurityPolicyGlobalState: {
58
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
59
- policy?: import("@frontegg/rest-api").ISecurityPolicy | undefined;
60
- }>) => {
61
- payload: Partial<import("../../interfaces").WithStatus & {
62
- policy?: import("@frontegg/rest-api").ISecurityPolicy | undefined;
63
- }>;
64
- };
65
- reducer: (state: import("..").AuthState, { payload }: {
66
- payload: Partial<import("../../interfaces").WithStatus & {
67
- policy?: import("@frontegg/rest-api").ISecurityPolicy | undefined;
68
- }>;
69
- type: string;
70
- }) => {
71
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
72
- error?: any;
73
- isAuthenticated: boolean;
74
- userIp?: string | undefined;
75
- isLoading: boolean;
76
- keepSessionAlive?: boolean | undefined;
77
- user?: import("..").User | null | undefined;
78
- isSSOAuth: boolean;
79
- ssoACS?: string | undefined;
80
- includeQueryParam?: boolean | undefined;
81
- loginState: import("..").LoginState;
82
- activateState: import("..").ActivateAccountState;
83
- acceptInvitationState: import("..").AcceptInvitationState;
84
- forgotPasswordState: import("..").ForgotPasswordState;
85
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
86
- ssoState: import("..").SSOState;
87
- profileState: import("..").ProfileState;
88
- mfaState: import("..").MFAState;
89
- teamState: import("..").TeamState;
90
- groupsState: import("..").GroupsState;
91
- groupsDialogsState: import("..").GroupsDialogsState;
92
- socialLoginState: import("..").SocialLoginState;
93
- signUpState: import("..").SignUpState;
94
- apiTokensState: import("..").ApiTokensState;
95
- securityPolicyState: SecurityPolicyState;
96
- restrictionsState: import("..").RestrictionsState;
97
- provisioningState: import("..").ProvisioningState;
98
- accountSettingsState: import("..").AccountSettingsState;
99
- tenantsState: import("..").TenantsState;
100
- rolesState: import("..").RolesState;
101
- sessionsState: import("..").SessionsState;
102
- hostedLoginBox?: boolean | undefined;
103
- disableSilentRefresh?: boolean | undefined;
104
- sessionsPolicyState: import("..").SessionsPolicyState;
105
- impersonateState?: import("..").ImpersonateState | undefined;
106
- passkeysState?: import("..").PasskeysState | undefined;
107
- customLoginState?: import("..").CustomLoginState | undefined;
108
- allAccountsState?: import("..").IAllAccountsState | undefined;
109
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
110
- securityCenterState?: import("..").SecurityCenterState | undefined;
111
- routes: import("..").AuthPageRoutes;
112
- header?: any;
113
- loaderComponent?: any;
114
- };
115
- };
116
- setSecurityPolicyPublicState: {
117
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
118
- policy?: import("@frontegg/rest-api").IVendorConfig | undefined;
119
- }>) => {
120
- payload: Partial<import("../../interfaces").WithStatus & {
121
- policy?: import("@frontegg/rest-api").IVendorConfig | undefined;
122
- }>;
123
- };
124
- reducer: (state: import("..").AuthState, { payload }: {
125
- payload: Partial<import("../../interfaces").WithStatus & {
126
- policy?: import("@frontegg/rest-api").IVendorConfig | undefined;
127
- }>;
128
- type: string;
129
- }) => {
130
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
131
- error?: any;
132
- isAuthenticated: boolean;
133
- userIp?: string | undefined;
134
- isLoading: boolean;
135
- keepSessionAlive?: boolean | undefined;
136
- user?: import("..").User | null | undefined;
137
- isSSOAuth: boolean;
138
- ssoACS?: string | undefined;
139
- includeQueryParam?: boolean | undefined;
140
- loginState: import("..").LoginState;
141
- activateState: import("..").ActivateAccountState;
142
- acceptInvitationState: import("..").AcceptInvitationState;
143
- forgotPasswordState: import("..").ForgotPasswordState;
144
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
145
- ssoState: import("..").SSOState;
146
- profileState: import("..").ProfileState;
147
- mfaState: import("..").MFAState;
148
- teamState: import("..").TeamState;
149
- groupsState: import("..").GroupsState;
150
- groupsDialogsState: import("..").GroupsDialogsState;
151
- socialLoginState: import("..").SocialLoginState;
152
- signUpState: import("..").SignUpState;
153
- apiTokensState: import("..").ApiTokensState;
154
- securityPolicyState: SecurityPolicyState;
155
- restrictionsState: import("..").RestrictionsState;
156
- provisioningState: import("..").ProvisioningState;
157
- accountSettingsState: import("..").AccountSettingsState;
158
- tenantsState: import("..").TenantsState;
159
- rolesState: import("..").RolesState;
160
- sessionsState: import("..").SessionsState;
161
- hostedLoginBox?: boolean | undefined;
162
- disableSilentRefresh?: boolean | undefined;
163
- sessionsPolicyState: import("..").SessionsPolicyState;
164
- impersonateState?: import("..").ImpersonateState | undefined;
165
- passkeysState?: import("..").PasskeysState | undefined;
166
- customLoginState?: import("..").CustomLoginState | undefined;
167
- allAccountsState?: import("..").IAllAccountsState | undefined;
168
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
169
- securityCenterState?: import("..").SecurityCenterState | undefined;
170
- routes: import("..").AuthPageRoutes;
171
- header?: any;
172
- loaderComponent?: any;
173
- };
174
- };
175
- setSecurityPolicyAuthStrategyPublicState: {
176
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
177
- policy?: import("@frontegg/rest-api").IAuthStrategiesConfig | undefined;
178
- }>) => {
179
- payload: Partial<import("../../interfaces").WithStatus & {
180
- policy?: import("@frontegg/rest-api").IAuthStrategiesConfig | undefined;
181
- }>;
182
- };
183
- reducer: (state: import("..").AuthState, { payload }: {
184
- payload: Partial<import("../../interfaces").WithStatus & {
185
- policy?: import("@frontegg/rest-api").IAuthStrategiesConfig | undefined;
186
- }>;
187
- type: string;
188
- }) => {
189
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
190
- error?: any;
191
- isAuthenticated: boolean;
192
- userIp?: string | undefined;
193
- isLoading: boolean;
194
- keepSessionAlive?: boolean | undefined;
195
- user?: import("..").User | null | undefined;
196
- isSSOAuth: boolean;
197
- ssoACS?: string | undefined;
198
- includeQueryParam?: boolean | undefined;
199
- loginState: import("..").LoginState;
200
- activateState: import("..").ActivateAccountState;
201
- acceptInvitationState: import("..").AcceptInvitationState;
202
- forgotPasswordState: import("..").ForgotPasswordState;
203
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
204
- ssoState: import("..").SSOState;
205
- profileState: import("..").ProfileState;
206
- mfaState: import("..").MFAState;
207
- teamState: import("..").TeamState;
208
- groupsState: import("..").GroupsState;
209
- groupsDialogsState: import("..").GroupsDialogsState;
210
- socialLoginState: import("..").SocialLoginState;
211
- signUpState: import("..").SignUpState;
212
- apiTokensState: import("..").ApiTokensState;
213
- securityPolicyState: SecurityPolicyState;
214
- restrictionsState: import("..").RestrictionsState;
215
- provisioningState: import("..").ProvisioningState;
216
- accountSettingsState: import("..").AccountSettingsState;
217
- tenantsState: import("..").TenantsState;
218
- rolesState: import("..").RolesState;
219
- sessionsState: import("..").SessionsState;
220
- hostedLoginBox?: boolean | undefined;
221
- disableSilentRefresh?: boolean | undefined;
222
- sessionsPolicyState: import("..").SessionsPolicyState;
223
- impersonateState?: import("..").ImpersonateState | undefined;
224
- passkeysState?: import("..").PasskeysState | undefined;
225
- customLoginState?: import("..").CustomLoginState | undefined;
226
- allAccountsState?: import("..").IAllAccountsState | undefined;
227
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
228
- securityCenterState?: import("..").SecurityCenterState | undefined;
229
- routes: import("..").AuthPageRoutes;
230
- header?: any;
231
- loaderComponent?: any;
232
- };
233
- };
234
- setSecurityPolicyMfaState: {
235
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
236
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
237
- }>) => {
238
- payload: Partial<import("../../interfaces").WithStatus & {
239
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
240
- }>;
241
- };
242
- reducer: (state: import("..").AuthState, { payload }: {
243
- payload: Partial<import("../../interfaces").WithStatus & {
244
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
245
- }>;
246
- type: string;
247
- }) => {
248
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
249
- error?: any;
250
- isAuthenticated: boolean;
251
- userIp?: string | undefined;
252
- isLoading: boolean;
253
- keepSessionAlive?: boolean | undefined;
254
- user?: import("..").User | null | undefined;
255
- isSSOAuth: boolean;
256
- ssoACS?: string | undefined;
257
- includeQueryParam?: boolean | undefined;
258
- loginState: import("..").LoginState;
259
- activateState: import("..").ActivateAccountState;
260
- acceptInvitationState: import("..").AcceptInvitationState;
261
- forgotPasswordState: import("..").ForgotPasswordState;
262
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
263
- ssoState: import("..").SSOState;
264
- profileState: import("..").ProfileState;
265
- mfaState: import("..").MFAState;
266
- teamState: import("..").TeamState;
267
- groupsState: import("..").GroupsState;
268
- groupsDialogsState: import("..").GroupsDialogsState;
269
- socialLoginState: import("..").SocialLoginState;
270
- signUpState: import("..").SignUpState;
271
- apiTokensState: import("..").ApiTokensState;
272
- securityPolicyState: SecurityPolicyState;
273
- restrictionsState: import("..").RestrictionsState;
274
- provisioningState: import("..").ProvisioningState;
275
- accountSettingsState: import("..").AccountSettingsState;
276
- tenantsState: import("..").TenantsState;
277
- rolesState: import("..").RolesState;
278
- sessionsState: import("..").SessionsState;
279
- hostedLoginBox?: boolean | undefined;
280
- disableSilentRefresh?: boolean | undefined;
281
- sessionsPolicyState: import("..").SessionsPolicyState;
282
- impersonateState?: import("..").ImpersonateState | undefined;
283
- passkeysState?: import("..").PasskeysState | undefined;
284
- customLoginState?: import("..").CustomLoginState | undefined;
285
- allAccountsState?: import("..").IAllAccountsState | undefined;
286
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
287
- securityCenterState?: import("..").SecurityCenterState | undefined;
288
- routes: import("..").AuthPageRoutes;
289
- header?: any;
290
- loaderComponent?: any;
291
- };
292
- };
293
- setSecurityPolicyVendorMfaState: {
294
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
295
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
296
- }>) => {
297
- payload: Partial<import("../../interfaces").WithStatus & {
298
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
299
- }>;
300
- };
301
- reducer: (state: import("..").AuthState, { payload }: {
302
- payload: Partial<import("../../interfaces").WithStatus & {
303
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
304
- }>;
305
- type: string;
306
- }) => {
307
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
308
- error?: any;
309
- isAuthenticated: boolean;
310
- userIp?: string | undefined;
311
- isLoading: boolean;
312
- keepSessionAlive?: boolean | undefined;
313
- user?: import("..").User | null | undefined;
314
- isSSOAuth: boolean;
315
- ssoACS?: string | undefined;
316
- includeQueryParam?: boolean | undefined;
317
- loginState: import("..").LoginState;
318
- activateState: import("..").ActivateAccountState;
319
- acceptInvitationState: import("..").AcceptInvitationState;
320
- forgotPasswordState: import("..").ForgotPasswordState;
321
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
322
- ssoState: import("..").SSOState;
323
- profileState: import("..").ProfileState;
324
- mfaState: import("..").MFAState;
325
- teamState: import("..").TeamState;
326
- groupsState: import("..").GroupsState;
327
- groupsDialogsState: import("..").GroupsDialogsState;
328
- socialLoginState: import("..").SocialLoginState;
329
- signUpState: import("..").SignUpState;
330
- apiTokensState: import("..").ApiTokensState;
331
- securityPolicyState: SecurityPolicyState;
332
- restrictionsState: import("..").RestrictionsState;
333
- provisioningState: import("..").ProvisioningState;
334
- accountSettingsState: import("..").AccountSettingsState;
335
- tenantsState: import("..").TenantsState;
336
- rolesState: import("..").RolesState;
337
- sessionsState: import("..").SessionsState;
338
- hostedLoginBox?: boolean | undefined;
339
- disableSilentRefresh?: boolean | undefined;
340
- sessionsPolicyState: import("..").SessionsPolicyState;
341
- impersonateState?: import("..").ImpersonateState | undefined;
342
- passkeysState?: import("..").PasskeysState | undefined;
343
- customLoginState?: import("..").CustomLoginState | undefined;
344
- allAccountsState?: import("..").IAllAccountsState | undefined;
345
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
346
- securityCenterState?: import("..").SecurityCenterState | undefined;
347
- routes: import("..").AuthPageRoutes;
348
- header?: any;
349
- loaderComponent?: any;
350
- };
351
- };
352
- setSecurityPolicyVendorLockoutState: {
353
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
354
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
355
- }>) => {
356
- payload: Partial<import("../../interfaces").WithStatus & {
357
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
358
- }>;
359
- };
360
- reducer: (state: import("..").AuthState, { payload }: {
361
- payload: Partial<import("../../interfaces").WithStatus & {
362
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
363
- }>;
364
- type: string;
365
- }) => {
366
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
367
- error?: any;
368
- isAuthenticated: boolean;
369
- userIp?: string | undefined;
370
- isLoading: boolean;
371
- keepSessionAlive?: boolean | undefined;
372
- user?: import("..").User | null | undefined;
373
- isSSOAuth: boolean;
374
- ssoACS?: string | undefined;
375
- includeQueryParam?: boolean | undefined;
376
- loginState: import("..").LoginState;
377
- activateState: import("..").ActivateAccountState;
378
- acceptInvitationState: import("..").AcceptInvitationState;
379
- forgotPasswordState: import("..").ForgotPasswordState;
380
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
381
- ssoState: import("..").SSOState;
382
- profileState: import("..").ProfileState;
383
- mfaState: import("..").MFAState;
384
- teamState: import("..").TeamState;
385
- groupsState: import("..").GroupsState;
386
- groupsDialogsState: import("..").GroupsDialogsState;
387
- socialLoginState: import("..").SocialLoginState;
388
- signUpState: import("..").SignUpState;
389
- apiTokensState: import("..").ApiTokensState;
390
- securityPolicyState: SecurityPolicyState;
391
- restrictionsState: import("..").RestrictionsState;
392
- provisioningState: import("..").ProvisioningState;
393
- accountSettingsState: import("..").AccountSettingsState;
394
- tenantsState: import("..").TenantsState;
395
- rolesState: import("..").RolesState;
396
- sessionsState: import("..").SessionsState;
397
- hostedLoginBox?: boolean | undefined;
398
- disableSilentRefresh?: boolean | undefined;
399
- sessionsPolicyState: import("..").SessionsPolicyState;
400
- impersonateState?: import("..").ImpersonateState | undefined;
401
- passkeysState?: import("..").PasskeysState | undefined;
402
- customLoginState?: import("..").CustomLoginState | undefined;
403
- allAccountsState?: import("..").IAllAccountsState | undefined;
404
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
405
- securityCenterState?: import("..").SecurityCenterState | undefined;
406
- routes: import("..").AuthPageRoutes;
407
- header?: any;
408
- loaderComponent?: any;
409
- };
410
- };
411
- setSecurityPolicyVendorPasswordHistoryState: {
412
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
413
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
414
- }>) => {
415
- payload: Partial<import("../../interfaces").WithStatus & {
416
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
417
- }>;
418
- };
419
- reducer: (state: import("..").AuthState, { payload }: {
420
- payload: Partial<import("../../interfaces").WithStatus & {
421
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
422
- }>;
423
- type: string;
424
- }) => {
425
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
426
- error?: any;
427
- isAuthenticated: boolean;
428
- userIp?: string | undefined;
429
- isLoading: boolean;
430
- keepSessionAlive?: boolean | undefined;
431
- user?: import("..").User | null | undefined;
432
- isSSOAuth: boolean;
433
- ssoACS?: string | undefined;
434
- includeQueryParam?: boolean | undefined;
435
- loginState: import("..").LoginState;
436
- activateState: import("..").ActivateAccountState;
437
- acceptInvitationState: import("..").AcceptInvitationState;
438
- forgotPasswordState: import("..").ForgotPasswordState;
439
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
440
- ssoState: import("..").SSOState;
441
- profileState: import("..").ProfileState;
442
- mfaState: import("..").MFAState;
443
- teamState: import("..").TeamState;
444
- groupsState: import("..").GroupsState;
445
- groupsDialogsState: import("..").GroupsDialogsState;
446
- socialLoginState: import("..").SocialLoginState;
447
- signUpState: import("..").SignUpState;
448
- apiTokensState: import("..").ApiTokensState;
449
- securityPolicyState: SecurityPolicyState;
450
- restrictionsState: import("..").RestrictionsState;
451
- provisioningState: import("..").ProvisioningState;
452
- accountSettingsState: import("..").AccountSettingsState;
453
- tenantsState: import("..").TenantsState;
454
- rolesState: import("..").RolesState;
455
- sessionsState: import("..").SessionsState;
456
- hostedLoginBox?: boolean | undefined;
457
- disableSilentRefresh?: boolean | undefined;
458
- sessionsPolicyState: import("..").SessionsPolicyState;
459
- impersonateState?: import("..").ImpersonateState | undefined;
460
- passkeysState?: import("..").PasskeysState | undefined;
461
- customLoginState?: import("..").CustomLoginState | undefined;
462
- allAccountsState?: import("..").IAllAccountsState | undefined;
463
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
464
- securityCenterState?: import("..").SecurityCenterState | undefined;
465
- routes: import("..").AuthPageRoutes;
466
- header?: any;
467
- loaderComponent?: any;
468
- };
469
- };
470
- setSecurityPolicyLockoutState: {
471
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
472
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
473
- }>) => {
474
- payload: Partial<import("../../interfaces").WithStatus & {
475
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
476
- }>;
477
- };
478
- reducer: (state: import("..").AuthState, { payload }: {
479
- payload: Partial<import("../../interfaces").WithStatus & {
480
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
481
- }>;
482
- type: string;
483
- }) => {
484
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
485
- error?: any;
486
- isAuthenticated: boolean;
487
- userIp?: string | undefined;
488
- isLoading: boolean;
489
- keepSessionAlive?: boolean | undefined;
490
- user?: import("..").User | null | undefined;
491
- isSSOAuth: boolean;
492
- ssoACS?: string | undefined;
493
- includeQueryParam?: boolean | undefined;
494
- loginState: import("..").LoginState;
495
- activateState: import("..").ActivateAccountState;
496
- acceptInvitationState: import("..").AcceptInvitationState;
497
- forgotPasswordState: import("..").ForgotPasswordState;
498
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
499
- ssoState: import("..").SSOState;
500
- profileState: import("..").ProfileState;
501
- mfaState: import("..").MFAState;
502
- teamState: import("..").TeamState;
503
- groupsState: import("..").GroupsState;
504
- groupsDialogsState: import("..").GroupsDialogsState;
505
- socialLoginState: import("..").SocialLoginState;
506
- signUpState: import("..").SignUpState;
507
- apiTokensState: import("..").ApiTokensState;
508
- securityPolicyState: SecurityPolicyState;
509
- restrictionsState: import("..").RestrictionsState;
510
- provisioningState: import("..").ProvisioningState;
511
- accountSettingsState: import("..").AccountSettingsState;
512
- tenantsState: import("..").TenantsState;
513
- rolesState: import("..").RolesState;
514
- sessionsState: import("..").SessionsState;
515
- hostedLoginBox?: boolean | undefined;
516
- disableSilentRefresh?: boolean | undefined;
517
- sessionsPolicyState: import("..").SessionsPolicyState;
518
- impersonateState?: import("..").ImpersonateState | undefined;
519
- passkeysState?: import("..").PasskeysState | undefined;
520
- customLoginState?: import("..").CustomLoginState | undefined;
521
- allAccountsState?: import("..").IAllAccountsState | undefined;
522
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
523
- securityCenterState?: import("..").SecurityCenterState | undefined;
524
- routes: import("..").AuthPageRoutes;
525
- header?: any;
526
- loaderComponent?: any;
527
- };
528
- };
529
- setSecurityPolicyCaptchaState: {
530
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
531
- policy?: import("@frontegg/rest-api").ISecurityPolicyCaptcha | undefined;
532
- }>) => {
533
- payload: Partial<import("../../interfaces").WithStatus & {
534
- policy?: import("@frontegg/rest-api").ISecurityPolicyCaptcha | undefined;
535
- }>;
536
- };
537
- reducer: (state: import("..").AuthState, { payload }: {
538
- payload: Partial<import("../../interfaces").WithStatus & {
539
- policy?: import("@frontegg/rest-api").ISecurityPolicyCaptcha | undefined;
540
- }>;
541
- type: string;
542
- }) => {
543
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
544
- error?: any;
545
- isAuthenticated: boolean;
546
- userIp?: string | undefined;
547
- isLoading: boolean;
548
- keepSessionAlive?: boolean | undefined;
549
- user?: import("..").User | null | undefined;
550
- isSSOAuth: boolean;
551
- ssoACS?: string | undefined;
552
- includeQueryParam?: boolean | undefined;
553
- loginState: import("..").LoginState;
554
- activateState: import("..").ActivateAccountState;
555
- acceptInvitationState: import("..").AcceptInvitationState;
556
- forgotPasswordState: import("..").ForgotPasswordState;
557
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
558
- ssoState: import("..").SSOState;
559
- profileState: import("..").ProfileState;
560
- mfaState: import("..").MFAState;
561
- teamState: import("..").TeamState;
562
- groupsState: import("..").GroupsState;
563
- groupsDialogsState: import("..").GroupsDialogsState;
564
- socialLoginState: import("..").SocialLoginState;
565
- signUpState: import("..").SignUpState;
566
- apiTokensState: import("..").ApiTokensState;
567
- securityPolicyState: SecurityPolicyState;
568
- restrictionsState: import("..").RestrictionsState;
569
- provisioningState: import("..").ProvisioningState;
570
- accountSettingsState: import("..").AccountSettingsState;
571
- tenantsState: import("..").TenantsState;
572
- rolesState: import("..").RolesState;
573
- sessionsState: import("..").SessionsState;
574
- hostedLoginBox?: boolean | undefined;
575
- disableSilentRefresh?: boolean | undefined;
576
- sessionsPolicyState: import("..").SessionsPolicyState;
577
- impersonateState?: import("..").ImpersonateState | undefined;
578
- passkeysState?: import("..").PasskeysState | undefined;
579
- customLoginState?: import("..").CustomLoginState | undefined;
580
- allAccountsState?: import("..").IAllAccountsState | undefined;
581
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
582
- securityCenterState?: import("..").SecurityCenterState | undefined;
583
- routes: import("..").AuthPageRoutes;
584
- header?: any;
585
- loaderComponent?: any;
586
- };
587
- };
588
- setSecurityPolicyPasswordHistoryState: {
589
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
590
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
591
- }>) => {
592
- payload: Partial<import("../../interfaces").WithStatus & {
593
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
594
- }>;
595
- };
596
- reducer: (state: import("..").AuthState, { payload }: {
597
- payload: Partial<import("../../interfaces").WithStatus & {
598
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
599
- }>;
600
- type: string;
601
- }) => {
602
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
603
- error?: any;
604
- isAuthenticated: boolean;
605
- userIp?: string | undefined;
606
- isLoading: boolean;
607
- keepSessionAlive?: boolean | undefined;
608
- user?: import("..").User | null | undefined;
609
- isSSOAuth: boolean;
610
- ssoACS?: string | undefined;
611
- includeQueryParam?: boolean | undefined;
612
- loginState: import("..").LoginState;
613
- activateState: import("..").ActivateAccountState;
614
- acceptInvitationState: import("..").AcceptInvitationState;
615
- forgotPasswordState: import("..").ForgotPasswordState;
616
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
617
- ssoState: import("..").SSOState;
618
- profileState: import("..").ProfileState;
619
- mfaState: import("..").MFAState;
620
- teamState: import("..").TeamState;
621
- groupsState: import("..").GroupsState;
622
- groupsDialogsState: import("..").GroupsDialogsState;
623
- socialLoginState: import("..").SocialLoginState;
624
- signUpState: import("..").SignUpState;
625
- apiTokensState: import("..").ApiTokensState;
626
- securityPolicyState: SecurityPolicyState;
627
- restrictionsState: import("..").RestrictionsState;
628
- provisioningState: import("..").ProvisioningState;
629
- accountSettingsState: import("..").AccountSettingsState;
630
- tenantsState: import("..").TenantsState;
631
- rolesState: import("..").RolesState;
632
- sessionsState: import("..").SessionsState;
633
- hostedLoginBox?: boolean | undefined;
634
- disableSilentRefresh?: boolean | undefined;
635
- sessionsPolicyState: import("..").SessionsPolicyState;
636
- impersonateState?: import("..").ImpersonateState | undefined;
637
- passkeysState?: import("..").PasskeysState | undefined;
638
- customLoginState?: import("..").CustomLoginState | undefined;
639
- allAccountsState?: import("..").IAllAccountsState | undefined;
640
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
641
- securityCenterState?: import("..").SecurityCenterState | undefined;
642
- routes: import("..").AuthPageRoutes;
643
- header?: any;
644
- loaderComponent?: any;
645
- };
646
- };
647
- setSecurityPolicyPasswordState: {
648
- prepare: (payload: Partial<import("../../interfaces").WithStatus & {
649
- policy?: Partial<import("@frontegg/rest-api").TestConfig> | undefined;
650
- }>) => {
651
- payload: Partial<import("../../interfaces").WithStatus & {
652
- policy?: Partial<import("@frontegg/rest-api").TestConfig> | undefined;
653
- }>;
654
- };
655
- reducer: (state: import("..").AuthState, { payload }: {
656
- payload: Partial<import("../../interfaces").WithStatus & {
657
- policy?: Partial<import("@frontegg/rest-api").TestConfig> | undefined;
658
- }>;
659
- type: string;
660
- }) => {
661
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
662
- error?: any;
663
- isAuthenticated: boolean;
664
- userIp?: string | undefined;
665
- isLoading: boolean;
666
- keepSessionAlive?: boolean | undefined;
667
- user?: import("..").User | null | undefined;
668
- isSSOAuth: boolean;
669
- ssoACS?: string | undefined;
670
- includeQueryParam?: boolean | undefined;
671
- loginState: import("..").LoginState;
672
- activateState: import("..").ActivateAccountState;
673
- acceptInvitationState: import("..").AcceptInvitationState;
674
- forgotPasswordState: import("..").ForgotPasswordState;
675
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
676
- ssoState: import("..").SSOState;
677
- profileState: import("..").ProfileState;
678
- mfaState: import("..").MFAState;
679
- teamState: import("..").TeamState;
680
- groupsState: import("..").GroupsState;
681
- groupsDialogsState: import("..").GroupsDialogsState;
682
- socialLoginState: import("..").SocialLoginState;
683
- signUpState: import("..").SignUpState;
684
- apiTokensState: import("..").ApiTokensState;
685
- securityPolicyState: SecurityPolicyState;
686
- restrictionsState: import("..").RestrictionsState;
687
- provisioningState: import("..").ProvisioningState;
688
- accountSettingsState: import("..").AccountSettingsState;
689
- tenantsState: import("..").TenantsState;
690
- rolesState: import("..").RolesState;
691
- sessionsState: import("..").SessionsState;
692
- hostedLoginBox?: boolean | undefined;
693
- disableSilentRefresh?: boolean | undefined;
694
- sessionsPolicyState: import("..").SessionsPolicyState;
695
- impersonateState?: import("..").ImpersonateState | undefined;
696
- passkeysState?: import("..").PasskeysState | undefined;
697
- customLoginState?: import("..").CustomLoginState | undefined;
698
- allAccountsState?: import("..").IAllAccountsState | undefined;
699
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
700
- securityCenterState?: import("..").SecurityCenterState | undefined;
701
- routes: import("..").AuthPageRoutes;
702
- header?: any;
703
- loaderComponent?: any;
704
- };
705
- };
706
- resetSecurityPolicyState: (state: import("..").AuthState) => {
707
- onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
708
- error?: any;
709
- isAuthenticated: boolean;
710
- userIp?: string | undefined;
711
- isLoading: boolean;
712
- keepSessionAlive?: boolean | undefined;
713
- user?: import("..").User | null | undefined;
714
- isSSOAuth: boolean;
715
- ssoACS?: string | undefined;
716
- includeQueryParam?: boolean | undefined;
717
- loginState: import("..").LoginState;
718
- activateState: import("..").ActivateAccountState;
719
- acceptInvitationState: import("..").AcceptInvitationState;
720
- forgotPasswordState: import("..").ForgotPasswordState;
721
- resetPhoneNumberState: import("..").ResetPhoneNumberState;
722
- ssoState: import("..").SSOState;
723
- profileState: import("..").ProfileState;
724
- mfaState: import("..").MFAState;
725
- teamState: import("..").TeamState;
726
- groupsState: import("..").GroupsState;
727
- groupsDialogsState: import("..").GroupsDialogsState;
728
- socialLoginState: import("..").SocialLoginState;
729
- signUpState: import("..").SignUpState;
730
- apiTokensState: import("..").ApiTokensState;
731
- securityPolicyState: SecurityPolicyState;
732
- restrictionsState: import("..").RestrictionsState;
733
- provisioningState: import("..").ProvisioningState;
734
- accountSettingsState: import("..").AccountSettingsState;
735
- tenantsState: import("..").TenantsState;
736
- rolesState: import("..").RolesState;
737
- sessionsState: import("..").SessionsState;
738
- hostedLoginBox?: boolean | undefined;
739
- disableSilentRefresh?: boolean | undefined;
740
- sessionsPolicyState: import("..").SessionsPolicyState;
741
- impersonateState?: import("..").ImpersonateState | undefined;
742
- passkeysState?: import("..").PasskeysState | undefined;
743
- customLoginState?: import("..").CustomLoginState | undefined;
744
- allAccountsState?: import("..").IAllAccountsState | undefined;
745
- allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
746
- securityCenterState?: import("..").SecurityCenterState | undefined;
747
- routes: import("..").AuthPageRoutes;
748
- header?: any;
749
- loaderComponent?: any;
750
- };
751
- };
752
- declare const actions: {
753
- loadSecurityPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
754
- loadPublicSecurityPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
755
- loadSecurityPolicyMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
756
- loadSecurityPolicyVendorMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
757
- saveSecurityPolicyMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../../interfaces").WithCallback<import("@frontegg/rest-api").ISaveSecurityPolicyMfa, import("@frontegg/rest-api").ISecurityPolicyMfa>], import("../../interfaces").WithCallback<import("@frontegg/rest-api").ISaveSecurityPolicyMfa, import("@frontegg/rest-api").ISecurityPolicyMfa>, string, never, never>;
758
- loadSecurityPolicyLockout: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
759
- loadSecurityPolicyVendorLockout: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
760
- saveSecurityPolicyLockout: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../../interfaces").WithCallback<import("@frontegg/rest-api").ISaveSecurityPolicyLockout, import("@frontegg/rest-api").ISecurityPolicyLockout>], import("../../interfaces").WithCallback<import("@frontegg/rest-api").ISaveSecurityPolicyLockout, import("@frontegg/rest-api").ISecurityPolicyLockout>, string, never, never>;
761
- loadSecurityPolicyCaptcha: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
762
- loadSecurityPolicyPasswordHistory: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
763
- loadSecurityPolicyVendorPasswordHistory: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
764
- saveSecurityPolicyPasswordHistory: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../../interfaces").WithCallback<import("@frontegg/rest-api").ISaveSecurityPolicyPasswordHistory, import("@frontegg/rest-api").ISecurityPolicyPasswordHistory>], import("../../interfaces").WithCallback<import("@frontegg/rest-api").ISaveSecurityPolicyPasswordHistory, import("@frontegg/rest-api").ISecurityPolicyPasswordHistory>, string, never, never>;
765
- loadVendorPasswordConfig: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
766
- loadPublicAuthStrategiesPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
767
- };
768
- /**
769
- * To be used for actions types after dispatch, and should contains
770
- * the reducers and actions as standalone function
771
- */
772
- declare type DispatchedActions = {
773
- setSecurityPolicyState: (state: Partial<SecurityPolicyState>) => void;
774
- setSecurityPolicyGlobalState: (state: Partial<GlobalPolicyState>) => void;
775
- setSecurityPolicyPublicState: (state: Partial<PublicPolicyState>) => void;
776
- setSecurityPolicyMfaState: (state: Partial<MfaPolicyState>) => void;
777
- setSecurityPolicyVendorMfaState: (state: Partial<MfaPolicyState>) => void;
778
- setSecurityPolicyLockoutState: (state: Partial<LockoutPolicyState>) => void;
779
- setSecurityPolicyVendorLockoutState: (state: Partial<LockoutPolicyState>) => void;
780
- setSecurityPolicyCaptchaState: (state: Partial<CaptchaPolicyState>) => void;
781
- setSecurityPolicyPasswordHistoryState: (state: Partial<PasswordHistoryPolicyState>) => void;
782
- setSecurityPolicyVendorPasswordHistoryState: (state: Partial<PasswordHistoryPolicyState>) => void;
783
- resetSecurityPolicyState: () => void;
784
- setSecurityPolicyPasswordState: (state: Partial<PasswordPolicyState>) => void;
785
- setSecurityPolicyAuthStrategyPublicState: (state: Partial<PublicAuthStrategyPolicyState>) => void;
786
- loadSecurityPolicy: () => void;
787
- loadPublicSecurityPolicy: () => void;
788
- loadVendorPasswordConfig: () => void;
789
- loadSecurityPolicyMfa: () => void;
790
- loadSecurityPolicyVendorMfa: () => void;
791
- saveSecurityPolicyMfa: (payload: SaveSecurityPolicyMfaPayload) => void;
792
- loadSecurityPolicyLockout: () => void;
793
- loadSecurityPolicyVendorLockout: () => void;
794
- saveSecurityPolicyLockout: (payload: SaveSecurityPolicyLockoutPayload) => void;
795
- loadSecurityPolicyCaptcha: () => void;
796
- loadSecurityPolicyPasswordHistory: () => void;
797
- loadSecurityPolicyVendorPasswordHistory: () => void;
798
- saveSecurityPolicyPasswordHistory: (payload: SaveSecurityPolicyPasswordHistoryPayload) => void;
799
- loadPublicAuthStrategiesPolicy: () => void;
800
- };
801
- export declare type SecurityPolicyActions = DispatchedActions;
802
- export { securityPolicyState, reducers as securityPolicyReducers, actions as securityPolicyActions };