@frontegg/redux-store 6.178.0 → 6.179.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.
Files changed (37) hide show
  1. package/auth/AcceptInvitationState/index.d.ts +6 -0
  2. package/auth/AccountSettingsState/index.d.ts +6 -0
  3. package/auth/ActivateState/index.d.ts +9 -0
  4. package/auth/ApiTokensState/index.d.ts +6 -0
  5. package/auth/CustomLoginState/index.d.ts +6 -0
  6. package/auth/ForgotPasswordState/index.d.ts +6 -0
  7. package/auth/GroupsState/groupsDialogsState.d.ts +36 -0
  8. package/auth/GroupsState/index.d.ts +6 -0
  9. package/auth/ImpersonationState/index.d.ts +6 -0
  10. package/auth/LoginState/index.d.ts +6 -0
  11. package/auth/MSP/AllAccountsState/allAccountsDialogsState.d.ts +42 -0
  12. package/auth/MSP/AllAccountsState/index.d.ts +9 -0
  13. package/auth/MfaState/index.d.ts +6 -0
  14. package/auth/PasskeysState/index.d.ts +6 -0
  15. package/auth/ProfileState/index.d.ts +6 -0
  16. package/auth/Provisioning/index.d.ts +6 -0
  17. package/auth/ResetPhoneNumberState/index.d.ts +6 -0
  18. package/auth/RolesState/index.d.ts +6 -0
  19. package/auth/SSOState/index.d.ts +6 -0
  20. package/auth/Security/RestrictionsState/index.d.ts +9 -12
  21. package/auth/Security/SecurityCenterState/index.d.ts +6 -0
  22. package/auth/Security/SecurityPolicyState/index.d.ts +39 -0
  23. package/auth/Security/SessionsPolicyState/index.d.ts +6 -0
  24. package/auth/SessionsState/index.d.ts +6 -0
  25. package/auth/SignUp/index.d.ts +6 -0
  26. package/auth/SmsState/index.d.ts +6 -0
  27. package/auth/SocialLogins/index.d.ts +6 -0
  28. package/auth/StepUpState/index.d.ts +6 -0
  29. package/auth/TeamState/index.d.ts +6 -0
  30. package/auth/TenantsState/index.d.ts +6 -0
  31. package/auth/interfaces.d.ts +3 -0
  32. package/auth/utils.d.ts +18 -0
  33. package/index.d.ts +1 -0
  34. package/index.js +3 -2
  35. package/node/index.js +10 -2
  36. package/package.json +1 -1
  37. package/toolkit/index.d.ts +1 -1
@@ -16,6 +16,9 @@ declare const reducers: {
16
16
  userIp?: string | undefined;
17
17
  isLoading: boolean;
18
18
  keepSessionAlive?: boolean | undefined;
19
+ socialLoginOptions?: {
20
+ promptConsent?: boolean | undefined;
21
+ } | undefined;
19
22
  user?: import("..").User | null | undefined;
20
23
  isSSOAuth: boolean;
21
24
  ssoACS?: string | undefined;
@@ -64,6 +67,9 @@ declare const reducers: {
64
67
  userIp?: string | undefined;
65
68
  isLoading: boolean;
66
69
  keepSessionAlive?: boolean | undefined;
70
+ socialLoginOptions?: {
71
+ promptConsent?: boolean | undefined;
72
+ } | undefined;
67
73
  user?: import("..").User | null | undefined;
68
74
  isSSOAuth: boolean;
69
75
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -119,6 +125,9 @@ declare const reducers: {
119
125
  userIp?: string | undefined;
120
126
  isLoading: boolean;
121
127
  keepSessionAlive?: boolean | undefined;
128
+ socialLoginOptions?: {
129
+ promptConsent?: boolean | undefined;
130
+ } | undefined;
122
131
  user?: import("..").User | null | undefined;
123
132
  isSSOAuth: boolean;
124
133
  ssoACS?: string | undefined;
@@ -34,6 +34,9 @@ declare const reducers: {
34
34
  userIp?: string | undefined;
35
35
  isLoading: boolean;
36
36
  keepSessionAlive?: boolean | undefined;
37
+ socialLoginOptions?: {
38
+ promptConsent?: boolean | undefined;
39
+ } | undefined;
37
40
  user?: import("..").User | null | undefined;
38
41
  isSSOAuth: boolean;
39
42
  ssoACS?: string | undefined;
@@ -82,6 +85,9 @@ declare const reducers: {
82
85
  userIp?: string | undefined;
83
86
  isLoading: boolean;
84
87
  keepSessionAlive?: boolean | undefined;
88
+ socialLoginOptions?: {
89
+ promptConsent?: boolean | undefined;
90
+ } | undefined;
85
91
  user?: import("..").User | null | undefined;
86
92
  isSSOAuth: boolean;
87
93
  ssoACS?: string | undefined;
@@ -16,6 +16,9 @@ declare const reducers: {
16
16
  userIp?: string | undefined;
17
17
  isLoading: boolean;
18
18
  keepSessionAlive?: boolean | undefined;
19
+ socialLoginOptions?: {
20
+ promptConsent?: boolean | undefined;
21
+ } | undefined;
19
22
  user?: import("..").User | null | undefined;
20
23
  isSSOAuth: boolean;
21
24
  ssoACS?: string | undefined;
@@ -64,6 +67,9 @@ declare const reducers: {
64
67
  userIp?: string | undefined;
65
68
  isLoading: boolean;
66
69
  keepSessionAlive?: boolean | undefined;
70
+ socialLoginOptions?: {
71
+ promptConsent?: boolean | undefined;
72
+ } | undefined;
67
73
  user?: import("..").User | null | undefined;
68
74
  isSSOAuth: boolean;
69
75
  ssoACS?: string | undefined;
@@ -16,6 +16,9 @@ declare const reducers: {
16
16
  userIp?: string | undefined;
17
17
  isLoading: boolean;
18
18
  keepSessionAlive?: boolean | undefined;
19
+ socialLoginOptions?: {
20
+ promptConsent?: boolean | undefined;
21
+ } | undefined;
19
22
  user?: import("..").User | null | undefined;
20
23
  isSSOAuth: boolean;
21
24
  ssoACS?: string | undefined;
@@ -64,6 +67,9 @@ declare const reducers: {
64
67
  userIp?: string | undefined;
65
68
  isLoading: boolean;
66
69
  keepSessionAlive?: boolean | undefined;
70
+ socialLoginOptions?: {
71
+ promptConsent?: boolean | undefined;
72
+ } | undefined;
67
73
  user?: import("..").User | null | undefined;
68
74
  isSSOAuth: boolean;
69
75
  ssoACS?: string | undefined;
@@ -15,6 +15,9 @@ declare const reducers: {
15
15
  userIp?: string | undefined;
16
16
  isLoading: boolean;
17
17
  keepSessionAlive?: boolean | undefined;
18
+ socialLoginOptions?: {
19
+ promptConsent?: boolean | undefined;
20
+ } | undefined;
18
21
  user?: import("..").User | null | undefined;
19
22
  isSSOAuth: boolean;
20
23
  ssoACS?: string | undefined;
@@ -63,6 +66,9 @@ declare const reducers: {
63
66
  userIp?: string | undefined;
64
67
  isLoading: boolean;
65
68
  keepSessionAlive?: boolean | undefined;
69
+ socialLoginOptions?: {
70
+ promptConsent?: boolean | undefined;
71
+ } | undefined;
66
72
  user?: import("..").User | null | undefined;
67
73
  isSSOAuth: boolean;
68
74
  ssoACS?: string | undefined;
@@ -110,6 +116,9 @@ declare const reducers: {
110
116
  userIp?: string | undefined;
111
117
  isLoading: boolean;
112
118
  keepSessionAlive?: boolean | undefined;
119
+ socialLoginOptions?: {
120
+ promptConsent?: boolean | undefined;
121
+ } | undefined;
113
122
  user?: import("..").User | null | undefined;
114
123
  isSSOAuth: boolean;
115
124
  ssoACS?: string | undefined;
@@ -157,6 +166,9 @@ declare const reducers: {
157
166
  userIp?: string | undefined;
158
167
  isLoading: boolean;
159
168
  keepSessionAlive?: boolean | undefined;
169
+ socialLoginOptions?: {
170
+ promptConsent?: boolean | undefined;
171
+ } | undefined;
160
172
  user?: import("..").User | null | undefined;
161
173
  isSSOAuth: boolean;
162
174
  ssoACS?: string | undefined;
@@ -211,6 +223,9 @@ declare const reducers: {
211
223
  userIp?: string | undefined;
212
224
  isLoading: boolean;
213
225
  keepSessionAlive?: boolean | undefined;
226
+ socialLoginOptions?: {
227
+ promptConsent?: boolean | undefined;
228
+ } | undefined;
214
229
  user?: import("..").User | null | undefined;
215
230
  isSSOAuth: boolean;
216
231
  ssoACS?: string | undefined;
@@ -259,6 +274,9 @@ declare const reducers: {
259
274
  userIp?: string | undefined;
260
275
  isLoading: boolean;
261
276
  keepSessionAlive?: boolean | undefined;
277
+ socialLoginOptions?: {
278
+ promptConsent?: boolean | undefined;
279
+ } | undefined;
262
280
  user?: import("..").User | null | undefined;
263
281
  isSSOAuth: boolean;
264
282
  ssoACS?: string | undefined;
@@ -334,6 +352,9 @@ declare const reducers: {
334
352
  userIp?: string | undefined;
335
353
  isLoading: boolean;
336
354
  keepSessionAlive?: boolean | undefined;
355
+ socialLoginOptions?: {
356
+ promptConsent?: boolean | undefined;
357
+ } | undefined;
337
358
  user?: import("..").User | null | undefined;
338
359
  isSSOAuth: boolean;
339
360
  ssoACS?: string | undefined;
@@ -382,6 +403,9 @@ declare const reducers: {
382
403
  userIp?: string | undefined;
383
404
  isLoading: boolean;
384
405
  keepSessionAlive?: boolean | undefined;
406
+ socialLoginOptions?: {
407
+ promptConsent?: boolean | undefined;
408
+ } | undefined;
385
409
  user?: import("..").User | null | undefined;
386
410
  isSSOAuth: boolean;
387
411
  ssoACS?: string | undefined;
@@ -429,6 +453,9 @@ declare const reducers: {
429
453
  userIp?: string | undefined;
430
454
  isLoading: boolean;
431
455
  keepSessionAlive?: boolean | undefined;
456
+ socialLoginOptions?: {
457
+ promptConsent?: boolean | undefined;
458
+ } | undefined;
432
459
  user?: import("..").User | null | undefined;
433
460
  isSSOAuth: boolean;
434
461
  ssoACS?: string | undefined;
@@ -476,6 +503,9 @@ declare const reducers: {
476
503
  userIp?: string | undefined;
477
504
  isLoading: boolean;
478
505
  keepSessionAlive?: boolean | undefined;
506
+ socialLoginOptions?: {
507
+ promptConsent?: boolean | undefined;
508
+ } | undefined;
479
509
  user?: import("..").User | null | undefined;
480
510
  isSSOAuth: boolean;
481
511
  ssoACS?: string | undefined;
@@ -530,6 +560,9 @@ declare const reducers: {
530
560
  userIp?: string | undefined;
531
561
  isLoading: boolean;
532
562
  keepSessionAlive?: boolean | undefined;
563
+ socialLoginOptions?: {
564
+ promptConsent?: boolean | undefined;
565
+ } | undefined;
533
566
  user?: import("..").User | null | undefined;
534
567
  isSSOAuth: boolean;
535
568
  ssoACS?: string | undefined;
@@ -578,6 +611,9 @@ declare const reducers: {
578
611
  userIp?: string | undefined;
579
612
  isLoading: boolean;
580
613
  keepSessionAlive?: boolean | undefined;
614
+ socialLoginOptions?: {
615
+ promptConsent?: boolean | undefined;
616
+ } | undefined;
581
617
  user?: import("..").User | null | undefined;
582
618
  isSSOAuth: boolean;
583
619
  ssoACS?: string | undefined;
@@ -33,6 +33,9 @@ declare const reducers: {
33
33
  userIp?: string | undefined;
34
34
  isLoading: boolean;
35
35
  keepSessionAlive?: boolean | undefined;
36
+ socialLoginOptions?: {
37
+ promptConsent?: boolean | undefined;
38
+ } | undefined;
36
39
  user?: import("..").User | null | undefined;
37
40
  isSSOAuth: boolean;
38
41
  ssoACS?: string | undefined;
@@ -81,6 +84,9 @@ declare const reducers: {
81
84
  userIp?: string | undefined;
82
85
  isLoading: boolean;
83
86
  keepSessionAlive?: boolean | undefined;
87
+ socialLoginOptions?: {
88
+ promptConsent?: boolean | undefined;
89
+ } | undefined;
84
90
  user?: import("..").User | null | undefined;
85
91
  isSSOAuth: boolean;
86
92
  ssoACS?: string | undefined;
@@ -16,6 +16,9 @@ declare const reducers: {
16
16
  userIp?: string | undefined;
17
17
  isLoading: boolean;
18
18
  keepSessionAlive?: boolean | undefined;
19
+ socialLoginOptions?: {
20
+ promptConsent?: boolean | undefined;
21
+ } | undefined;
19
22
  user?: import("..").User | null | undefined;
20
23
  isSSOAuth: boolean;
21
24
  ssoACS?: string | undefined;
@@ -64,6 +67,9 @@ declare const reducers: {
64
67
  userIp?: string | undefined;
65
68
  isLoading: boolean;
66
69
  keepSessionAlive?: boolean | undefined;
70
+ socialLoginOptions?: {
71
+ promptConsent?: boolean | undefined;
72
+ } | undefined;
67
73
  user?: import("..").User | null | undefined;
68
74
  isSSOAuth: boolean;
69
75
  ssoACS?: string | undefined;
@@ -18,6 +18,9 @@ declare const reducers: {
18
18
  userIp?: string | undefined;
19
19
  isLoading: boolean;
20
20
  keepSessionAlive?: boolean | undefined;
21
+ socialLoginOptions?: {
22
+ promptConsent?: boolean | undefined;
23
+ } | undefined;
21
24
  user?: import("..").User | null | undefined;
22
25
  isSSOAuth: boolean;
23
26
  ssoACS?: string | undefined;
@@ -66,6 +69,9 @@ declare const reducers: {
66
69
  userIp?: string | undefined;
67
70
  isLoading: boolean;
68
71
  keepSessionAlive?: boolean | undefined;
72
+ socialLoginOptions?: {
73
+ promptConsent?: boolean | undefined;
74
+ } | undefined;
69
75
  user?: import("..").User | null | undefined;
70
76
  isSSOAuth: boolean;
71
77
  ssoACS?: string | undefined;
@@ -16,6 +16,9 @@ declare const reducers: {
16
16
  userIp?: string | undefined;
17
17
  isLoading: boolean;
18
18
  keepSessionAlive?: boolean | undefined;
19
+ socialLoginOptions?: {
20
+ promptConsent?: boolean | undefined;
21
+ } | undefined;
19
22
  user?: import("../..").User | null | undefined;
20
23
  isSSOAuth: boolean;
21
24
  ssoACS?: string | undefined;
@@ -64,6 +67,9 @@ declare const reducers: {
64
67
  userIp?: string | undefined;
65
68
  isLoading: boolean;
66
69
  keepSessionAlive?: boolean | undefined;
70
+ socialLoginOptions?: {
71
+ promptConsent?: boolean | undefined;
72
+ } | undefined;
67
73
  user?: import("../..").User | null | undefined;
68
74
  isSSOAuth: boolean;
69
75
  ssoACS?: string | undefined;
@@ -130,6 +136,9 @@ declare const reducers: {
130
136
  userIp?: string | undefined;
131
137
  isLoading: boolean;
132
138
  keepSessionAlive?: boolean | undefined;
139
+ socialLoginOptions?: {
140
+ promptConsent?: boolean | undefined;
141
+ } | undefined;
133
142
  user?: import("../..").User | null | undefined;
134
143
  isSSOAuth: boolean;
135
144
  ssoACS?: string | undefined;
@@ -178,6 +187,9 @@ declare const reducers: {
178
187
  userIp?: string | undefined;
179
188
  isLoading: boolean;
180
189
  keepSessionAlive?: boolean | undefined;
190
+ socialLoginOptions?: {
191
+ promptConsent?: boolean | undefined;
192
+ } | undefined;
181
193
  user?: import("../..").User | null | undefined;
182
194
  isSSOAuth: boolean;
183
195
  ssoACS?: string | undefined;
@@ -232,6 +244,9 @@ declare const reducers: {
232
244
  userIp?: string | undefined;
233
245
  isLoading: boolean;
234
246
  keepSessionAlive?: boolean | undefined;
247
+ socialLoginOptions?: {
248
+ promptConsent?: boolean | undefined;
249
+ } | undefined;
235
250
  user?: import("../..").User | null | undefined;
236
251
  isSSOAuth: boolean;
237
252
  ssoACS?: string | undefined;
@@ -280,6 +295,9 @@ declare const reducers: {
280
295
  userIp?: string | undefined;
281
296
  isLoading: boolean;
282
297
  keepSessionAlive?: boolean | undefined;
298
+ socialLoginOptions?: {
299
+ promptConsent?: boolean | undefined;
300
+ } | undefined;
283
301
  user?: import("../..").User | null | undefined;
284
302
  isSSOAuth: boolean;
285
303
  ssoACS?: string | undefined;
@@ -346,6 +364,9 @@ declare const reducers: {
346
364
  userIp?: string | undefined;
347
365
  isLoading: boolean;
348
366
  keepSessionAlive?: boolean | undefined;
367
+ socialLoginOptions?: {
368
+ promptConsent?: boolean | undefined;
369
+ } | undefined;
349
370
  user?: import("../..").User | null | undefined;
350
371
  isSSOAuth: boolean;
351
372
  ssoACS?: string | undefined;
@@ -394,6 +415,9 @@ declare const reducers: {
394
415
  userIp?: string | undefined;
395
416
  isLoading: boolean;
396
417
  keepSessionAlive?: boolean | undefined;
418
+ socialLoginOptions?: {
419
+ promptConsent?: boolean | undefined;
420
+ } | undefined;
397
421
  user?: import("../..").User | null | undefined;
398
422
  isSSOAuth: boolean;
399
423
  ssoACS?: string | undefined;
@@ -460,6 +484,9 @@ declare const reducers: {
460
484
  userIp?: string | undefined;
461
485
  isLoading: boolean;
462
486
  keepSessionAlive?: boolean | undefined;
487
+ socialLoginOptions?: {
488
+ promptConsent?: boolean | undefined;
489
+ } | undefined;
463
490
  user?: import("../..").User | null | undefined;
464
491
  isSSOAuth: boolean;
465
492
  ssoACS?: string | undefined;
@@ -508,6 +535,9 @@ declare const reducers: {
508
535
  userIp?: string | undefined;
509
536
  isLoading: boolean;
510
537
  keepSessionAlive?: boolean | undefined;
538
+ socialLoginOptions?: {
539
+ promptConsent?: boolean | undefined;
540
+ } | undefined;
511
541
  user?: import("../..").User | null | undefined;
512
542
  isSSOAuth: boolean;
513
543
  ssoACS?: string | undefined;
@@ -580,6 +610,9 @@ declare const reducers: {
580
610
  userIp?: string | undefined;
581
611
  isLoading: boolean;
582
612
  keepSessionAlive?: boolean | undefined;
613
+ socialLoginOptions?: {
614
+ promptConsent?: boolean | undefined;
615
+ } | undefined;
583
616
  user?: import("../..").User | null | undefined;
584
617
  isSSOAuth: boolean;
585
618
  ssoACS?: string | undefined;
@@ -628,6 +661,9 @@ declare const reducers: {
628
661
  userIp?: string | undefined;
629
662
  isLoading: boolean;
630
663
  keepSessionAlive?: boolean | undefined;
664
+ socialLoginOptions?: {
665
+ promptConsent?: boolean | undefined;
666
+ } | undefined;
631
667
  user?: import("../..").User | null | undefined;
632
668
  isSSOAuth: boolean;
633
669
  ssoACS?: string | undefined;
@@ -682,6 +718,9 @@ declare const reducers: {
682
718
  userIp?: string | undefined;
683
719
  isLoading: boolean;
684
720
  keepSessionAlive?: boolean | undefined;
721
+ socialLoginOptions?: {
722
+ promptConsent?: boolean | undefined;
723
+ } | undefined;
685
724
  user?: import("../..").User | null | undefined;
686
725
  isSSOAuth: boolean;
687
726
  ssoACS?: string | undefined;
@@ -730,6 +769,9 @@ declare const reducers: {
730
769
  userIp?: string | undefined;
731
770
  isLoading: boolean;
732
771
  keepSessionAlive?: boolean | undefined;
772
+ socialLoginOptions?: {
773
+ promptConsent?: boolean | undefined;
774
+ } | undefined;
733
775
  user?: import("../..").User | null | undefined;
734
776
  isSSOAuth: boolean;
735
777
  ssoACS?: string | undefined;
@@ -35,6 +35,9 @@ declare const reducers: {
35
35
  userIp?: string | undefined;
36
36
  isLoading: boolean;
37
37
  keepSessionAlive?: boolean | undefined;
38
+ socialLoginOptions?: {
39
+ promptConsent?: boolean | undefined;
40
+ } | undefined;
38
41
  user?: import("../..").User | null | undefined;
39
42
  isSSOAuth: boolean;
40
43
  ssoACS?: string | undefined;
@@ -90,6 +93,9 @@ declare const reducers: {
90
93
  userIp?: string | undefined;
91
94
  isLoading: boolean;
92
95
  keepSessionAlive?: boolean | undefined;
96
+ socialLoginOptions?: {
97
+ promptConsent?: boolean | undefined;
98
+ } | undefined;
93
99
  user?: import("../..").User | null | undefined;
94
100
  isSSOAuth: boolean;
95
101
  ssoACS?: string | undefined;
@@ -138,6 +144,9 @@ declare const reducers: {
138
144
  userIp?: string | undefined;
139
145
  isLoading: boolean;
140
146
  keepSessionAlive?: boolean | undefined;
147
+ socialLoginOptions?: {
148
+ promptConsent?: boolean | undefined;
149
+ } | undefined;
141
150
  user?: import("../..").User | null | undefined;
142
151
  isSSOAuth: boolean;
143
152
  ssoACS?: string | undefined;
@@ -18,6 +18,9 @@ declare const reducers: {
18
18
  userIp?: string | undefined;
19
19
  isLoading: boolean;
20
20
  keepSessionAlive?: boolean | undefined;
21
+ socialLoginOptions?: {
22
+ promptConsent?: boolean | undefined;
23
+ } | undefined;
21
24
  user?: import("..").User | null | undefined;
22
25
  isSSOAuth: boolean;
23
26
  ssoACS?: string | undefined;
@@ -66,6 +69,9 @@ declare const reducers: {
66
69
  userIp?: string | undefined;
67
70
  isLoading: boolean;
68
71
  keepSessionAlive?: boolean | undefined;
72
+ socialLoginOptions?: {
73
+ promptConsent?: boolean | undefined;
74
+ } | undefined;
69
75
  user?: import("..").User | null | undefined;
70
76
  isSSOAuth: boolean;
71
77
  ssoACS?: string | undefined;
@@ -16,6 +16,9 @@ declare const reducers: {
16
16
  userIp?: string | undefined;
17
17
  isLoading: boolean;
18
18
  keepSessionAlive?: boolean | undefined;
19
+ socialLoginOptions?: {
20
+ promptConsent?: boolean | undefined;
21
+ } | undefined;
19
22
  user?: import("..").User | null | undefined;
20
23
  isSSOAuth: boolean;
21
24
  ssoACS?: string | undefined;
@@ -64,6 +67,9 @@ declare const reducers: {
64
67
  userIp?: string | undefined;
65
68
  isLoading: boolean;
66
69
  keepSessionAlive?: boolean | undefined;
70
+ socialLoginOptions?: {
71
+ promptConsent?: boolean | undefined;
72
+ } | undefined;
67
73
  user?: import("..").User | null | undefined;
68
74
  isSSOAuth: boolean;
69
75
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -18,6 +18,9 @@ declare const reducers: {
18
18
  userIp?: string | undefined;
19
19
  isLoading: boolean;
20
20
  keepSessionAlive?: boolean | undefined;
21
+ socialLoginOptions?: {
22
+ promptConsent?: boolean | undefined;
23
+ } | undefined;
21
24
  user?: import("..").User | null | undefined;
22
25
  isSSOAuth: boolean;
23
26
  ssoACS?: string | undefined;
@@ -66,6 +69,9 @@ declare const reducers: {
66
69
  userIp?: string | undefined;
67
70
  isLoading: boolean;
68
71
  keepSessionAlive?: boolean | undefined;
72
+ socialLoginOptions?: {
73
+ promptConsent?: boolean | undefined;
74
+ } | undefined;
69
75
  user?: import("..").User | null | undefined;
70
76
  isSSOAuth: boolean;
71
77
  ssoACS?: string | undefined;
@@ -35,6 +35,9 @@ declare const reducers: {
35
35
  userIp?: string | undefined;
36
36
  isLoading: boolean;
37
37
  keepSessionAlive?: boolean | undefined;
38
+ socialLoginOptions?: {
39
+ promptConsent?: boolean | undefined;
40
+ } | undefined;
38
41
  user?: import("..").User | null | undefined;
39
42
  isSSOAuth: boolean;
40
43
  ssoACS?: string | undefined;
@@ -83,6 +86,9 @@ declare const reducers: {
83
86
  userIp?: string | undefined;
84
87
  isLoading: boolean;
85
88
  keepSessionAlive?: boolean | undefined;
89
+ socialLoginOptions?: {
90
+ promptConsent?: boolean | undefined;
91
+ } | undefined;
86
92
  user?: import("..").User | null | undefined;
87
93
  isSSOAuth: boolean;
88
94
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("../..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -42,10 +45,6 @@ declare const reducers: {
42
45
  tenantsState: import("../..").TenantsState;
43
46
  rolesState: import("../..").RolesState;
44
47
  sessionsState: import("../..").SessionsState;
45
- /**
46
- * if you see error in matcher that's mean the DispatchAction does not
47
- * contains the same functions in reducers and actions
48
- */
49
48
  hostedLoginBox?: boolean | undefined;
50
49
  disableSilentRefresh?: boolean | undefined;
51
50
  sessionsPolicyState: import("../..").SessionsPolicyState;
@@ -76,6 +75,9 @@ declare const reducers: {
76
75
  userIp?: string | undefined;
77
76
  isLoading: boolean;
78
77
  keepSessionAlive?: boolean | undefined;
78
+ socialLoginOptions?: {
79
+ promptConsent?: boolean | undefined;
80
+ } | undefined;
79
81
  user?: import("../..").User | null | undefined;
80
82
  isSSOAuth: boolean;
81
83
  ssoACS?: string | undefined;
@@ -101,10 +103,6 @@ declare const reducers: {
101
103
  tenantsState: import("../..").TenantsState;
102
104
  rolesState: import("../..").RolesState;
103
105
  sessionsState: import("../..").SessionsState;
104
- /**
105
- * if you see error in matcher that's mean the DispatchAction does not
106
- * contains the same functions in reducers and actions
107
- */
108
106
  hostedLoginBox?: boolean | undefined;
109
107
  disableSilentRefresh?: boolean | undefined;
110
108
  sessionsPolicyState: import("../..").SessionsPolicyState;
@@ -135,6 +133,9 @@ declare const reducers: {
135
133
  userIp?: string | undefined;
136
134
  isLoading: boolean;
137
135
  keepSessionAlive?: boolean | undefined;
136
+ socialLoginOptions?: {
137
+ promptConsent?: boolean | undefined;
138
+ } | undefined;
138
139
  user?: import("../..").User | null | undefined;
139
140
  isSSOAuth: boolean;
140
141
  ssoACS?: string | undefined;
@@ -160,10 +161,6 @@ declare const reducers: {
160
161
  tenantsState: import("../..").TenantsState;
161
162
  rolesState: import("../..").RolesState;
162
163
  sessionsState: import("../..").SessionsState;
163
- /**
164
- * if you see error in matcher that's mean the DispatchAction does not
165
- * contains the same functions in reducers and actions
166
- */
167
164
  hostedLoginBox?: boolean | undefined;
168
165
  disableSilentRefresh?: boolean | undefined;
169
166
  sessionsPolicyState: import("../..").SessionsPolicyState;
@@ -19,6 +19,9 @@ declare const reducers: {
19
19
  userIp?: string | undefined;
20
20
  isLoading: boolean;
21
21
  keepSessionAlive?: boolean | undefined;
22
+ socialLoginOptions?: {
23
+ promptConsent?: boolean | undefined;
24
+ } | undefined;
22
25
  user?: import("../..").User | null | undefined;
23
26
  isSSOAuth: boolean;
24
27
  ssoACS?: string | undefined;
@@ -67,6 +70,9 @@ declare const reducers: {
67
70
  userIp?: string | undefined;
68
71
  isLoading: boolean;
69
72
  keepSessionAlive?: boolean | undefined;
73
+ socialLoginOptions?: {
74
+ promptConsent?: boolean | undefined;
75
+ } | undefined;
70
76
  user?: import("../..").User | null | undefined;
71
77
  isSSOAuth: boolean;
72
78
  ssoACS?: string | undefined;
@@ -15,6 +15,9 @@ declare const reducers: {
15
15
  userIp?: string | undefined;
16
16
  isLoading: boolean;
17
17
  keepSessionAlive?: boolean | undefined;
18
+ socialLoginOptions?: {
19
+ promptConsent?: boolean | undefined;
20
+ } | undefined;
18
21
  user?: import("../..").User | null | undefined;
19
22
  isSSOAuth: boolean;
20
23
  ssoACS?: string | undefined;
@@ -76,6 +79,9 @@ declare const reducers: {
76
79
  userIp?: string | undefined;
77
80
  isLoading: boolean;
78
81
  keepSessionAlive?: boolean | undefined;
82
+ socialLoginOptions?: {
83
+ promptConsent?: boolean | undefined;
84
+ } | undefined;
79
85
  user?: import("../..").User | null | undefined;
80
86
  isSSOAuth: boolean;
81
87
  ssoACS?: string | undefined;
@@ -137,6 +143,9 @@ declare const reducers: {
137
143
  userIp?: string | undefined;
138
144
  isLoading: boolean;
139
145
  keepSessionAlive?: boolean | undefined;
146
+ socialLoginOptions?: {
147
+ promptConsent?: boolean | undefined;
148
+ } | undefined;
140
149
  user?: import("../..").User | null | undefined;
141
150
  isSSOAuth: boolean;
142
151
  ssoACS?: string | undefined;
@@ -198,6 +207,9 @@ declare const reducers: {
198
207
  userIp?: string | undefined;
199
208
  isLoading: boolean;
200
209
  keepSessionAlive?: boolean | undefined;
210
+ socialLoginOptions?: {
211
+ promptConsent?: boolean | undefined;
212
+ } | undefined;
201
213
  user?: import("../..").User | null | undefined;
202
214
  isSSOAuth: boolean;
203
215
  ssoACS?: string | undefined;
@@ -259,6 +271,9 @@ declare const reducers: {
259
271
  userIp?: string | undefined;
260
272
  isLoading: boolean;
261
273
  keepSessionAlive?: boolean | undefined;
274
+ socialLoginOptions?: {
275
+ promptConsent?: boolean | undefined;
276
+ } | undefined;
262
277
  user?: import("../..").User | null | undefined;
263
278
  isSSOAuth: boolean;
264
279
  ssoACS?: string | undefined;
@@ -320,6 +335,9 @@ declare const reducers: {
320
335
  userIp?: string | undefined;
321
336
  isLoading: boolean;
322
337
  keepSessionAlive?: boolean | undefined;
338
+ socialLoginOptions?: {
339
+ promptConsent?: boolean | undefined;
340
+ } | undefined;
323
341
  user?: import("../..").User | null | undefined;
324
342
  isSSOAuth: boolean;
325
343
  ssoACS?: string | undefined;
@@ -381,6 +399,9 @@ declare const reducers: {
381
399
  userIp?: string | undefined;
382
400
  isLoading: boolean;
383
401
  keepSessionAlive?: boolean | undefined;
402
+ socialLoginOptions?: {
403
+ promptConsent?: boolean | undefined;
404
+ } | undefined;
384
405
  user?: import("../..").User | null | undefined;
385
406
  isSSOAuth: boolean;
386
407
  ssoACS?: string | undefined;
@@ -442,6 +463,9 @@ declare const reducers: {
442
463
  userIp?: string | undefined;
443
464
  isLoading: boolean;
444
465
  keepSessionAlive?: boolean | undefined;
466
+ socialLoginOptions?: {
467
+ promptConsent?: boolean | undefined;
468
+ } | undefined;
445
469
  user?: import("../..").User | null | undefined;
446
470
  isSSOAuth: boolean;
447
471
  ssoACS?: string | undefined;
@@ -503,6 +527,9 @@ declare const reducers: {
503
527
  userIp?: string | undefined;
504
528
  isLoading: boolean;
505
529
  keepSessionAlive?: boolean | undefined;
530
+ socialLoginOptions?: {
531
+ promptConsent?: boolean | undefined;
532
+ } | undefined;
506
533
  user?: import("../..").User | null | undefined;
507
534
  isSSOAuth: boolean;
508
535
  ssoACS?: string | undefined;
@@ -564,6 +591,9 @@ declare const reducers: {
564
591
  userIp?: string | undefined;
565
592
  isLoading: boolean;
566
593
  keepSessionAlive?: boolean | undefined;
594
+ socialLoginOptions?: {
595
+ promptConsent?: boolean | undefined;
596
+ } | undefined;
567
597
  user?: import("../..").User | null | undefined;
568
598
  isSSOAuth: boolean;
569
599
  ssoACS?: string | undefined;
@@ -625,6 +655,9 @@ declare const reducers: {
625
655
  userIp?: string | undefined;
626
656
  isLoading: boolean;
627
657
  keepSessionAlive?: boolean | undefined;
658
+ socialLoginOptions?: {
659
+ promptConsent?: boolean | undefined;
660
+ } | undefined;
628
661
  user?: import("../..").User | null | undefined;
629
662
  isSSOAuth: boolean;
630
663
  ssoACS?: string | undefined;
@@ -686,6 +719,9 @@ declare const reducers: {
686
719
  userIp?: string | undefined;
687
720
  isLoading: boolean;
688
721
  keepSessionAlive?: boolean | undefined;
722
+ socialLoginOptions?: {
723
+ promptConsent?: boolean | undefined;
724
+ } | undefined;
689
725
  user?: import("../..").User | null | undefined;
690
726
  isSSOAuth: boolean;
691
727
  ssoACS?: string | undefined;
@@ -734,6 +770,9 @@ declare const reducers: {
734
770
  userIp?: string | undefined;
735
771
  isLoading: boolean;
736
772
  keepSessionAlive?: boolean | undefined;
773
+ socialLoginOptions?: {
774
+ promptConsent?: boolean | undefined;
775
+ } | undefined;
737
776
  user?: import("../..").User | null | undefined;
738
777
  isSSOAuth: boolean;
739
778
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("../..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("../..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -16,6 +16,9 @@ declare const reducers: {
16
16
  userIp?: string | undefined;
17
17
  isLoading: boolean;
18
18
  keepSessionAlive?: boolean | undefined;
19
+ socialLoginOptions?: {
20
+ promptConsent?: boolean | undefined;
21
+ } | undefined;
19
22
  user?: import("..").User | null | undefined;
20
23
  isSSOAuth: boolean;
21
24
  ssoACS?: string | undefined;
@@ -64,6 +67,9 @@ declare const reducers: {
64
67
  userIp?: string | undefined;
65
68
  isLoading: boolean;
66
69
  keepSessionAlive?: boolean | undefined;
70
+ socialLoginOptions?: {
71
+ promptConsent?: boolean | undefined;
72
+ } | undefined;
67
73
  user?: import("..").User | null | undefined;
68
74
  isSSOAuth: boolean;
69
75
  ssoACS?: string | undefined;
@@ -15,6 +15,9 @@ declare const reducers: {
15
15
  userIp?: string | undefined;
16
16
  isLoading: boolean;
17
17
  keepSessionAlive?: boolean | undefined;
18
+ socialLoginOptions?: {
19
+ promptConsent?: boolean | undefined;
20
+ } | undefined;
18
21
  user?: import("..").User | null | undefined;
19
22
  isSSOAuth: boolean;
20
23
  ssoACS?: string | undefined;
@@ -63,6 +66,9 @@ declare const reducers: {
63
66
  userIp?: string | undefined;
64
67
  isLoading: boolean;
65
68
  keepSessionAlive?: boolean | undefined;
69
+ socialLoginOptions?: {
70
+ promptConsent?: boolean | undefined;
71
+ } | undefined;
66
72
  user?: import("..").User | null | undefined;
67
73
  isSSOAuth: boolean;
68
74
  ssoACS?: string | undefined;
@@ -18,6 +18,9 @@ declare const reducers: {
18
18
  userIp?: string | undefined;
19
19
  isLoading: boolean;
20
20
  keepSessionAlive?: boolean | undefined;
21
+ socialLoginOptions?: {
22
+ promptConsent?: boolean | undefined;
23
+ } | undefined;
21
24
  user?: import("..").User | null | undefined;
22
25
  isSSOAuth: boolean;
23
26
  ssoACS?: string | undefined;
@@ -66,6 +69,9 @@ declare const reducers: {
66
69
  userIp?: string | undefined;
67
70
  isLoading: boolean;
68
71
  keepSessionAlive?: boolean | undefined;
72
+ socialLoginOptions?: {
73
+ promptConsent?: boolean | undefined;
74
+ } | undefined;
69
75
  user?: import("..").User | null | undefined;
70
76
  isSSOAuth: boolean;
71
77
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -18,6 +18,9 @@ declare const reducers: {
18
18
  userIp?: string | undefined;
19
19
  isLoading: boolean;
20
20
  keepSessionAlive?: boolean | undefined;
21
+ socialLoginOptions?: {
22
+ promptConsent?: boolean | undefined;
23
+ } | undefined;
21
24
  user?: import("..").User | null | undefined;
22
25
  isSSOAuth: boolean;
23
26
  ssoACS?: string | undefined;
@@ -66,6 +69,9 @@ declare const reducers: {
66
69
  userIp?: string | undefined;
67
70
  isLoading: boolean;
68
71
  keepSessionAlive?: boolean | undefined;
72
+ socialLoginOptions?: {
73
+ promptConsent?: boolean | undefined;
74
+ } | undefined;
69
75
  user?: import("..").User | null | undefined;
70
76
  isSSOAuth: boolean;
71
77
  ssoACS?: string | undefined;
@@ -35,6 +35,9 @@ declare const reducers: {
35
35
  userIp?: string | undefined;
36
36
  isLoading: boolean;
37
37
  keepSessionAlive?: boolean | undefined;
38
+ socialLoginOptions?: {
39
+ promptConsent?: boolean | undefined;
40
+ } | undefined;
38
41
  user?: import("..").User | null | undefined;
39
42
  isSSOAuth: boolean;
40
43
  ssoACS?: string | undefined;
@@ -83,6 +86,9 @@ declare const reducers: {
83
86
  userIp?: string | undefined;
84
87
  isLoading: boolean;
85
88
  keepSessionAlive?: boolean | undefined;
89
+ socialLoginOptions?: {
90
+ promptConsent?: boolean | undefined;
91
+ } | undefined;
86
92
  user?: import("..").User | null | undefined;
87
93
  isSSOAuth: boolean;
88
94
  ssoACS?: string | undefined;
@@ -17,6 +17,9 @@ declare const reducers: {
17
17
  userIp?: string | undefined;
18
18
  isLoading: boolean;
19
19
  keepSessionAlive?: boolean | undefined;
20
+ socialLoginOptions?: {
21
+ promptConsent?: boolean | undefined;
22
+ } | undefined;
20
23
  user?: import("..").User | null | undefined;
21
24
  isSSOAuth: boolean;
22
25
  ssoACS?: string | undefined;
@@ -65,6 +68,9 @@ declare const reducers: {
65
68
  userIp?: string | undefined;
66
69
  isLoading: boolean;
67
70
  keepSessionAlive?: boolean | undefined;
71
+ socialLoginOptions?: {
72
+ promptConsent?: boolean | undefined;
73
+ } | undefined;
68
74
  user?: import("..").User | null | undefined;
69
75
  isSSOAuth: boolean;
70
76
  ssoACS?: string | undefined;
@@ -60,6 +60,9 @@ export interface AuthState extends Routes, PluginOptions {
60
60
  userIp?: string;
61
61
  isLoading: boolean;
62
62
  keepSessionAlive?: boolean;
63
+ socialLoginOptions?: {
64
+ promptConsent?: boolean;
65
+ };
63
66
  user?: User | null;
64
67
  isSSOAuth: boolean;
65
68
  ssoACS?: string;
package/auth/utils.d.ts CHANGED
@@ -7,6 +7,9 @@ export declare const resetStateByKey: <T>(key: keyof AuthState, initialState: Pa
7
7
  userIp?: string | undefined;
8
8
  isLoading: boolean;
9
9
  keepSessionAlive?: boolean | undefined;
10
+ socialLoginOptions?: {
11
+ promptConsent?: boolean | undefined;
12
+ } | undefined;
10
13
  user?: import("./interfaces").User | null | undefined;
11
14
  isSSOAuth: boolean;
12
15
  ssoACS?: string | undefined;
@@ -57,6 +60,9 @@ export declare const typeReducer: <T>(key: keyof AuthState) => (state: AuthState
57
60
  userIp?: string | undefined;
58
61
  isLoading: boolean;
59
62
  keepSessionAlive?: boolean | undefined;
63
+ socialLoginOptions?: {
64
+ promptConsent?: boolean | undefined;
65
+ } | undefined;
60
66
  user?: import("./interfaces").User | null | undefined;
61
67
  isSSOAuth: boolean;
62
68
  ssoACS?: string | undefined;
@@ -111,6 +117,9 @@ export declare const typeReducerForKey: <T>(key: keyof AuthState) => {
111
117
  userIp?: string | undefined;
112
118
  isLoading: boolean;
113
119
  keepSessionAlive?: boolean | undefined;
120
+ socialLoginOptions?: {
121
+ promptConsent?: boolean | undefined;
122
+ } | undefined;
114
123
  user?: import("./interfaces").User | null | undefined;
115
124
  isSSOAuth: boolean;
116
125
  ssoACS?: string | undefined;
@@ -166,6 +175,9 @@ export declare const typeReducerNestedKey: <T, K>(key: keyof AuthState, nestedKe
166
175
  userIp?: string | undefined;
167
176
  isLoading: boolean;
168
177
  keepSessionAlive?: boolean | undefined;
178
+ socialLoginOptions?: {
179
+ promptConsent?: boolean | undefined;
180
+ } | undefined;
169
181
  user?: import("./interfaces").User | null | undefined;
170
182
  isSSOAuth: boolean;
171
183
  ssoACS?: string | undefined;
@@ -245,6 +257,9 @@ export declare const dialogStateForKey: <T, K>(key: keyof AuthState, dialogKey:
245
257
  userIp?: string | undefined;
246
258
  isLoading: boolean;
247
259
  keepSessionAlive?: boolean | undefined;
260
+ socialLoginOptions?: {
261
+ promptConsent?: boolean | undefined;
262
+ } | undefined;
248
263
  user?: import("./interfaces").User | null | undefined;
249
264
  isSSOAuth: boolean;
250
265
  ssoACS?: string | undefined;
@@ -293,6 +308,9 @@ export declare const dialogStateForKeyWithoutPayload: <T, K>(key: keyof AuthStat
293
308
  userIp?: string | undefined;
294
309
  isLoading: boolean;
295
310
  keepSessionAlive?: boolean | undefined;
311
+ socialLoginOptions?: {
312
+ promptConsent?: boolean | undefined;
313
+ } | undefined;
296
314
  user?: import("./interfaces").User | null | undefined;
297
315
  isSSOAuth: boolean;
298
316
  ssoACS?: string | undefined;
package/index.d.ts CHANGED
@@ -16,3 +16,4 @@ export type { WithCallback, WithSilentLoad, CallbackMethod } from './interfaces'
16
16
  export type { NotEntitledJustification } from '@frontegg/rest-api';
17
17
  export type { FronteggState } from './fronteggState';
18
18
  export { FRONTEGG_AFTER_AUTH_REDIRECT_URL } from './constants';
19
+ export { base64ToFormData } from './auth/Helpers/base64ToFormData';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.178.0
1
+ /** @license Frontegg v6.179.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -17,4 +17,5 @@ export * from './vendor';
17
17
  export * from './toolkit';
18
18
  export * from './helpers';
19
19
  export * from './utils';
20
- export { FRONTEGG_AFTER_AUTH_REDIRECT_URL } from './constants';
20
+ export { FRONTEGG_AFTER_AUTH_REDIRECT_URL } from './constants';
21
+ export { base64ToFormData } from './auth/Helpers/base64ToFormData';
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.178.0
1
+ /** @license Frontegg v6.179.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -14,7 +14,8 @@ var _exportNames = {
14
14
  connectivity: true,
15
15
  subscriptions: true,
16
16
  vendor: true,
17
- FRONTEGG_AFTER_AUTH_REDIRECT_URL: true
17
+ FRONTEGG_AFTER_AUTH_REDIRECT_URL: true,
18
+ base64ToFormData: true
18
19
  };
19
20
  Object.defineProperty(exports, "FRONTEGG_AFTER_AUTH_REDIRECT_URL", {
20
21
  enumerable: true,
@@ -34,6 +35,12 @@ Object.defineProperty(exports, "auth", {
34
35
  return _auth.default;
35
36
  }
36
37
  });
38
+ Object.defineProperty(exports, "base64ToFormData", {
39
+ enumerable: true,
40
+ get: function () {
41
+ return _base64ToFormData.base64ToFormData;
42
+ }
43
+ });
37
44
  Object.defineProperty(exports, "connectivity", {
38
45
  enumerable: true,
39
46
  get: function () {
@@ -161,5 +168,6 @@ Object.keys(_utils).forEach(function (key) {
161
168
  });
162
169
  });
163
170
  var _constants = require("./constants");
171
+ var _base64ToFormData = require("./auth/Helpers/base64ToFormData");
164
172
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
165
173
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/redux-store",
3
- "version": "6.178.0",
3
+ "version": "6.179.0",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "author": "Frontegg LTD",
@@ -13,7 +13,7 @@ declare type InitialState = {
13
13
  export { bindActionCreators } from '@reduxjs/toolkit';
14
14
  export type { CaseReducerActions, SliceCaseReducers } from '@reduxjs/toolkit';
15
15
  export type { RootState } from './interfaces';
16
- export declare const createFronteggStore: (rootInitialState: InitialState, storeHolder?: any, previewMode?: boolean, authInitialState?: (Partial<Pick<AuthState, "user" | "error" | "isLoading" | "onRedirectTo" | "isAuthenticated" | "userIp" | "keepSessionAlive" | "isSSOAuth" | "ssoACS" | "includeQueryParam" | "loginState" | "activateState" | "acceptInvitationState" | "forgotPasswordState" | "resetPhoneNumberState" | "ssoState" | "profileState" | "mfaState" | "teamState" | "groupsState" | "groupsDialogsState" | "socialLoginState" | "signUpState" | "apiTokensState" | "securityPolicyState" | "restrictionsState" | "provisioningState" | "accountSettingsState" | "tenantsState" | "rolesState" | "sessionsState" | "hostedLoginBox" | "disableSilentRefresh" | "sessionsPolicyState" | "impersonateState" | "passkeysState" | "customLoginState" | "allAccountsState" | "allAccountsDialogsState" | "securityCenterState" | "smsState" | "stepUpState" | "header" | "loaderComponent">> & {
16
+ export declare const createFronteggStore: (rootInitialState: InitialState, storeHolder?: any, previewMode?: boolean, authInitialState?: (Partial<Pick<AuthState, "user" | "error" | "isLoading" | "onRedirectTo" | "isAuthenticated" | "userIp" | "keepSessionAlive" | "socialLoginOptions" | "isSSOAuth" | "ssoACS" | "includeQueryParam" | "loginState" | "activateState" | "acceptInvitationState" | "forgotPasswordState" | "resetPhoneNumberState" | "ssoState" | "profileState" | "mfaState" | "teamState" | "groupsState" | "groupsDialogsState" | "socialLoginState" | "signUpState" | "apiTokensState" | "securityPolicyState" | "restrictionsState" | "provisioningState" | "accountSettingsState" | "tenantsState" | "rolesState" | "sessionsState" | "hostedLoginBox" | "disableSilentRefresh" | "sessionsPolicyState" | "impersonateState" | "passkeysState" | "customLoginState" | "allAccountsState" | "allAccountsDialogsState" | "securityCenterState" | "smsState" | "stepUpState" | "header" | "loaderComponent">> & {
17
17
  routes?: Partial<AuthPageRoutes> | undefined;
18
18
  }) | undefined, overrideInitialState?: Partial<{
19
19
  auth: Partial<Omit<AuthState, 'routes'>> & {