@frontegg/redux-store 5.61.0 → 6.0.1-alpha.2

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 (389) hide show
  1. package/audits/AuditLogsState/index.d.ts +47 -47
  2. package/audits/AuditLogsState/index.js +28 -0
  3. package/audits/AuditLogsState/interfaces.d.ts +19 -19
  4. package/audits/AuditLogsState/interfaces.js +1 -0
  5. package/audits/AuditLogsState/saga.d.ts +2 -2
  6. package/audits/AuditLogsState/saga.js +166 -0
  7. package/audits/AuditsMetadataState/index.d.ts +35 -35
  8. package/audits/AuditsMetadataState/index.js +18 -0
  9. package/audits/AuditsMetadataState/interfaces.d.ts +17 -17
  10. package/audits/AuditsMetadataState/interfaces.js +1 -0
  11. package/audits/AuditsMetadataState/saga.d.ts +2 -2
  12. package/audits/AuditsMetadataState/saga.js +56 -0
  13. package/audits/backward-compatibility/index.d.ts +4 -4
  14. package/audits/backward-compatibility/index.js +4 -4
  15. package/audits/backward-compatibility/initialState.d.ts +2 -2
  16. package/audits/backward-compatibility/initialState.js +20 -0
  17. package/audits/backward-compatibility/interfaces.d.ts +55 -55
  18. package/audits/backward-compatibility/interfaces.js +1 -0
  19. package/audits/backward-compatibility/reducer.d.ts +35 -35
  20. package/audits/backward-compatibility/reducer.js +129 -0
  21. package/audits/backward-compatibility/saga.d.ts +1 -1
  22. package/audits/backward-compatibility/saga.js +187 -0
  23. package/audits/dummy.d.ts +10 -10
  24. package/audits/dummy.js +191 -0
  25. package/audits/index.d.ts +40 -40
  26. package/audits/index.js +18 -362
  27. package/audits/initialState.d.ts +2 -2
  28. package/audits/initialState.js +6 -0
  29. package/audits/interfaces.d.ts +6 -6
  30. package/audits/interfaces.js +1 -0
  31. package/audits/reducer.d.ts +31 -31
  32. package/audits/reducer.js +23 -0
  33. package/audits/saga.d.ts +2 -2
  34. package/audits/saga.js +9 -0
  35. package/audits/utils.d.ts +14 -14
  36. package/audits/utils.js +13 -0
  37. package/auth/AcceptInvitationState/index.d.ts +85 -85
  38. package/auth/AcceptInvitationState/index.js +20 -0
  39. package/auth/AcceptInvitationState/interfaces.d.ts +11 -11
  40. package/auth/AcceptInvitationState/interfaces.js +9 -0
  41. package/auth/AcceptInvitationState/saga.d.ts +1 -1
  42. package/auth/AcceptInvitationState/saga.js +41 -0
  43. package/auth/AccountSettingsState/index.d.ts +92 -92
  44. package/auth/AccountSettingsState/index.js +22 -0
  45. package/auth/AccountSettingsState/interfaces.d.ts +10 -10
  46. package/auth/AccountSettingsState/interfaces.js +1 -0
  47. package/auth/AccountSettingsState/saga.d.ts +2 -2
  48. package/auth/AccountSettingsState/saga.js +133 -0
  49. package/auth/ActivateState/index.d.ts +130 -130
  50. package/auth/ActivateState/index.js +35 -0
  51. package/auth/ActivateState/interfaces.d.ts +26 -26
  52. package/auth/ActivateState/interfaces.js +8 -0
  53. package/auth/ActivateState/saga.d.ts +1 -1
  54. package/auth/ActivateState/saga.js +187 -0
  55. package/auth/ApiTokensState/index.d.ts +119 -119
  56. package/auth/ApiTokensState/index.js +54 -0
  57. package/auth/ApiTokensState/interfaces.d.ts +49 -49
  58. package/auth/ApiTokensState/interfaces.js +7 -0
  59. package/auth/ApiTokensState/saga.d.ts +2 -2
  60. package/auth/ApiTokensState/saga.js +410 -0
  61. package/auth/ForgotPasswordState/index.d.ts +90 -90
  62. package/auth/ForgotPasswordState/index.js +29 -0
  63. package/auth/ForgotPasswordState/interfaces.d.ts +18 -18
  64. package/auth/ForgotPasswordState/interfaces.js +6 -0
  65. package/auth/ForgotPasswordState/saga.d.ts +8 -8
  66. package/auth/ForgotPasswordState/saga.js +83 -0
  67. package/auth/LoginState/index.d.ts +132 -144
  68. package/auth/LoginState/index.js +64 -0
  69. package/auth/LoginState/interfaces.d.ts +41 -60
  70. package/auth/LoginState/interfaces.js +17 -0
  71. package/auth/LoginState/saga.d.ts +80 -84
  72. package/auth/LoginState/saga.js +860 -0
  73. package/auth/MfaState/index.d.ts +92 -92
  74. package/auth/MfaState/index.js +28 -0
  75. package/auth/MfaState/interfaces.d.ts +12 -12
  76. package/auth/MfaState/interfaces.js +6 -0
  77. package/auth/MfaState/saga.d.ts +2 -2
  78. package/auth/MfaState/saga.js +252 -0
  79. package/auth/ProfileState/index.d.ts +90 -90
  80. package/auth/ProfileState/index.js +24 -0
  81. package/auth/ProfileState/interfaces.d.ts +9 -9
  82. package/auth/ProfileState/interfaces.js +1 -0
  83. package/auth/ProfileState/saga.d.ts +2 -2
  84. package/auth/ProfileState/saga.js +230 -0
  85. package/auth/ResetPhoneNumberState/index.d.ts +96 -96
  86. package/auth/ResetPhoneNumberState/index.js +27 -0
  87. package/auth/ResetPhoneNumberState/interfaces.d.ts +18 -18
  88. package/auth/ResetPhoneNumberState/interfaces.js +7 -0
  89. package/auth/ResetPhoneNumberState/saga.d.ts +17 -17
  90. package/auth/ResetPhoneNumberState/saga.js +127 -0
  91. package/auth/RolesState/index.d.ts +100 -100
  92. package/auth/RolesState/index.js +37 -0
  93. package/auth/RolesState/interfaces.d.ts +7 -7
  94. package/auth/RolesState/interfaces.js +1 -0
  95. package/auth/RolesState/saga.d.ts +1 -1
  96. package/auth/RolesState/saga.js +197 -0
  97. package/auth/SSOState/index.d.ts +224 -224
  98. package/auth/SSOState/index.js +83 -0
  99. package/auth/SSOState/interfaces.d.ts +92 -92
  100. package/auth/SSOState/interfaces.js +28 -0
  101. package/auth/SSOState/saga.d.ts +2 -2
  102. package/auth/SSOState/saga.js +523 -0
  103. package/auth/SSOState/saga.v2.d.ts +1 -1
  104. package/auth/SSOState/saga.v2.js +501 -0
  105. package/auth/SecurityPolicyState/index.d.ts +456 -502
  106. package/auth/SecurityPolicyState/index.js +64 -0
  107. package/auth/SecurityPolicyState/interfaces.d.ts +26 -28
  108. package/auth/SecurityPolicyState/interfaces.js +1 -0
  109. package/auth/SecurityPolicyState/saga.d.ts +18 -24
  110. package/auth/SecurityPolicyState/saga.js +464 -0
  111. package/auth/SignUp/index.d.ts +86 -86
  112. package/auth/SignUp/index.js +25 -0
  113. package/auth/SignUp/interfaces.d.ts +19 -19
  114. package/auth/SignUp/interfaces.js +6 -0
  115. package/auth/SignUp/saga.d.ts +49 -49
  116. package/auth/SignUp/saga.js +147 -0
  117. package/auth/SocialLogins/index.d.ts +91 -91
  118. package/auth/SocialLogins/index.js +26 -0
  119. package/auth/SocialLogins/interfaces.d.ts +13 -13
  120. package/auth/SocialLogins/interfaces.js +1 -0
  121. package/auth/SocialLogins/saga.d.ts +10 -10
  122. package/auth/SocialLogins/saga.js +140 -0
  123. package/auth/TeamState/index.d.ts +168 -168
  124. package/auth/TeamState/index.js +111 -0
  125. package/auth/TeamState/interfaces.d.ts +78 -78
  126. package/auth/TeamState/interfaces.js +16 -0
  127. package/auth/TeamState/saga.d.ts +2 -2
  128. package/auth/TeamState/saga.js +1123 -0
  129. package/auth/TenantsState/index.d.ts +104 -104
  130. package/auth/TenantsState/index.js +31 -0
  131. package/auth/TenantsState/interfaces.d.ts +9 -9
  132. package/auth/TenantsState/interfaces.js +1 -0
  133. package/auth/TenantsState/saga.d.ts +2 -2
  134. package/auth/TenantsState/saga.js +136 -0
  135. package/auth/dummy.d.ts +28 -28
  136. package/auth/dummy.js +250 -0
  137. package/auth/index.d.ts +378 -392
  138. package/auth/index.js +46 -4078
  139. package/auth/initialState.d.ts +3 -3
  140. package/auth/initialState.js +58 -0
  141. package/auth/interfaces.d.ts +161 -161
  142. package/auth/interfaces.js +14 -0
  143. package/auth/reducer.d.ts +356 -370
  144. package/auth/reducer.js +39 -0
  145. package/auth/saga.d.ts +2 -2
  146. package/auth/saga.js +24 -0
  147. package/auth/utils.d.ts +162 -165
  148. package/auth/utils.js +74 -0
  149. package/connectivity/ConnectivityState/index.d.ts +292 -292
  150. package/connectivity/ConnectivityState/index.js +94 -0
  151. package/connectivity/consts.d.ts +12 -12
  152. package/connectivity/consts.js +71 -0
  153. package/connectivity/index.d.ts +40 -40
  154. package/connectivity/index.js +12 -454
  155. package/connectivity/interfaces.d.ts +112 -112
  156. package/connectivity/interfaces.js +1 -0
  157. package/connectivity/reducer.d.ts +31 -31
  158. package/connectivity/reducer.js +25 -0
  159. package/connectivity/saga.d.ts +1 -1
  160. package/connectivity/saga.js +546 -0
  161. package/constants.d.ts +7 -7
  162. package/constants.js +7 -0
  163. package/helpers.d.ts +5 -5
  164. package/helpers.js +37 -0
  165. package/index.d.ts +28 -28
  166. package/index.js +17 -15
  167. package/interfaces.d.ts +15 -15
  168. package/interfaces.js +1 -0
  169. package/node/audits/AuditLogsState/index.js +43 -0
  170. package/node/audits/AuditLogsState/interfaces.js +5 -0
  171. package/node/audits/AuditLogsState/saga.js +181 -0
  172. package/node/audits/AuditsMetadataState/index.js +33 -0
  173. package/node/audits/AuditsMetadataState/interfaces.js +5 -0
  174. package/node/audits/AuditsMetadataState/saga.js +67 -0
  175. package/node/audits/backward-compatibility/index.js +52 -12
  176. package/node/audits/backward-compatibility/initialState.js +27 -0
  177. package/node/audits/backward-compatibility/interfaces.js +5 -0
  178. package/node/audits/backward-compatibility/reducer.js +144 -0
  179. package/node/audits/backward-compatibility/saga.js +199 -0
  180. package/node/audits/dummy.js +204 -0
  181. package/node/audits/index.js +124 -364
  182. package/node/audits/initialState.js +16 -0
  183. package/node/audits/interfaces.js +5 -0
  184. package/node/audits/reducer.js +37 -0
  185. package/node/audits/saga.js +21 -0
  186. package/node/audits/utils.js +25 -0
  187. package/node/auth/AcceptInvitationState/index.js +33 -0
  188. package/node/auth/AcceptInvitationState/interfaces.js +16 -0
  189. package/node/auth/AcceptInvitationState/saga.js +51 -0
  190. package/node/auth/AccountSettingsState/index.js +34 -0
  191. package/node/auth/AccountSettingsState/interfaces.js +5 -0
  192. package/node/auth/AccountSettingsState/saga.js +145 -0
  193. package/node/auth/ActivateState/index.js +48 -0
  194. package/node/auth/ActivateState/interfaces.js +15 -0
  195. package/node/auth/ActivateState/saga.js +201 -0
  196. package/node/auth/ApiTokensState/index.js +66 -0
  197. package/node/auth/ApiTokensState/interfaces.js +14 -0
  198. package/node/auth/ApiTokensState/saga.js +424 -0
  199. package/node/auth/ForgotPasswordState/index.js +42 -0
  200. package/node/auth/ForgotPasswordState/interfaces.js +13 -0
  201. package/node/auth/ForgotPasswordState/saga.js +98 -0
  202. package/node/auth/LoginState/index.js +77 -0
  203. package/node/auth/LoginState/interfaces.js +31 -0
  204. package/node/auth/LoginState/saga.js +918 -0
  205. package/node/auth/MfaState/index.js +41 -0
  206. package/node/auth/MfaState/interfaces.js +13 -0
  207. package/node/auth/MfaState/saga.js +265 -0
  208. package/node/auth/ProfileState/index.js +36 -0
  209. package/node/auth/ProfileState/interfaces.js +5 -0
  210. package/node/auth/ProfileState/saga.js +245 -0
  211. package/node/auth/ResetPhoneNumberState/index.js +40 -0
  212. package/node/auth/ResetPhoneNumberState/interfaces.js +14 -0
  213. package/node/auth/ResetPhoneNumberState/saga.js +141 -0
  214. package/node/auth/RolesState/index.js +49 -0
  215. package/node/auth/RolesState/interfaces.js +5 -0
  216. package/node/auth/RolesState/saga.js +205 -0
  217. package/node/auth/SSOState/index.js +95 -0
  218. package/node/auth/SSOState/interfaces.js +36 -0
  219. package/node/auth/SSOState/saga.js +535 -0
  220. package/node/auth/SSOState/saga.v2.js +512 -0
  221. package/node/auth/SecurityPolicyState/index.js +76 -0
  222. package/node/auth/SecurityPolicyState/interfaces.js +5 -0
  223. package/node/auth/SecurityPolicyState/saga.js +472 -0
  224. package/node/auth/SignUp/index.js +38 -0
  225. package/node/auth/SignUp/interfaces.js +13 -0
  226. package/node/auth/SignUp/saga.js +173 -0
  227. package/node/auth/SocialLogins/index.js +38 -0
  228. package/node/auth/SocialLogins/interfaces.js +5 -0
  229. package/node/auth/SocialLogins/saga.js +162 -0
  230. package/node/auth/TeamState/index.js +123 -0
  231. package/node/auth/TeamState/interfaces.js +23 -0
  232. package/node/auth/TeamState/saga.js +1118 -0
  233. package/node/auth/TenantsState/index.js +43 -0
  234. package/node/auth/TenantsState/interfaces.js +5 -0
  235. package/node/auth/TenantsState/saga.js +149 -0
  236. package/node/auth/dummy.js +284 -0
  237. package/node/auth/index.js +528 -170
  238. package/node/auth/initialState.js +86 -0
  239. package/node/auth/interfaces.js +22 -0
  240. package/node/auth/reducer.js +68 -0
  241. package/node/auth/saga.js +51 -0
  242. package/node/auth/utils.js +104 -0
  243. package/node/connectivity/ConnectivityState/index.js +107 -0
  244. package/node/connectivity/consts.js +84 -0
  245. package/node/connectivity/index.js +64 -455
  246. package/node/connectivity/interfaces.js +5 -0
  247. package/node/connectivity/reducer.js +38 -0
  248. package/node/connectivity/saga.js +560 -0
  249. package/node/{constants-52e37c08.js → constants.js} +14 -11
  250. package/node/helpers.js +57 -0
  251. package/node/index.js +120 -293
  252. package/node/interfaces.js +5 -0
  253. package/node/subscriptions/Billing/Information/index.js +42 -0
  254. package/node/subscriptions/Billing/Information/interfaces.js +5 -0
  255. package/node/subscriptions/Billing/Information/saga.js +141 -0
  256. package/node/subscriptions/Billing/Invoices/index.js +55 -0
  257. package/node/subscriptions/Billing/Invoices/interfaces.js +5 -0
  258. package/node/subscriptions/Billing/Invoices/saga.js +92 -0
  259. package/node/subscriptions/Billing/PaymentMethod/index.js +51 -0
  260. package/node/subscriptions/Billing/PaymentMethod/interfaces.js +13 -0
  261. package/node/subscriptions/Billing/PaymentMethod/saga.js +98 -0
  262. package/node/subscriptions/Billing/Subscription/index.js +53 -0
  263. package/node/subscriptions/Billing/Subscription/interfaces.js +5 -0
  264. package/node/subscriptions/Billing/Subscription/saga.js +131 -0
  265. package/node/subscriptions/Billing/index.js +38 -0
  266. package/node/subscriptions/Billing/interfaces.js +57 -0
  267. package/node/subscriptions/Billing/saga.js +25 -0
  268. package/node/subscriptions/Checkout/index.js +47 -0
  269. package/node/subscriptions/Checkout/interfaces.js +5 -0
  270. package/node/subscriptions/Checkout/saga.js +129 -0
  271. package/node/subscriptions/Config/index.js +39 -0
  272. package/node/subscriptions/Config/interfaces.js +5 -0
  273. package/node/subscriptions/Config/saga.js +71 -0
  274. package/node/subscriptions/Plans/index.js +38 -0
  275. package/node/subscriptions/Plans/interfaces.js +5 -0
  276. package/node/subscriptions/Plans/saga.js +73 -0
  277. package/node/subscriptions/Stripe/index.js +39 -0
  278. package/node/subscriptions/Stripe/interfaces.js +5 -0
  279. package/node/subscriptions/Stripe/saga.js +44 -0
  280. package/node/subscriptions/dummy.js +84 -0
  281. package/node/subscriptions/general.interfaces.js +30 -0
  282. package/node/subscriptions/index.js +70 -906
  283. package/node/subscriptions/interfaces.js +83 -0
  284. package/node/subscriptions/mapper.js +51 -0
  285. package/node/subscriptions/reducer.js +52 -0
  286. package/node/subscriptions/saga.js +27 -0
  287. package/node/subscriptions/utils.js +68 -0
  288. package/node/toolkit/index.js +163 -99
  289. package/node/toolkit/redux-saga.js +59 -0
  290. package/node/toolkit/redux.js +43 -0
  291. package/node/vendor/VendorState/index.js +26 -0
  292. package/node/vendor/index.js +66 -13
  293. package/node/vendor/interfaces.js +5 -0
  294. package/node/vendor/reducer.js +32 -0
  295. package/node/vendor/saga.js +48 -0
  296. package/package.json +12 -11
  297. package/subscriptions/Billing/Information/index.d.ts +12 -12
  298. package/subscriptions/Billing/Information/index.js +30 -0
  299. package/subscriptions/Billing/Information/interfaces.d.ts +14 -14
  300. package/subscriptions/Billing/Information/interfaces.js +1 -0
  301. package/subscriptions/Billing/Information/saga.d.ts +52 -52
  302. package/subscriptions/Billing/Information/saga.js +118 -0
  303. package/subscriptions/Billing/Invoices/index.d.ts +18 -18
  304. package/subscriptions/Billing/Invoices/index.js +44 -0
  305. package/subscriptions/Billing/Invoices/interfaces.d.ts +19 -19
  306. package/subscriptions/Billing/Invoices/interfaces.js +1 -0
  307. package/subscriptions/Billing/Invoices/saga.d.ts +13 -13
  308. package/subscriptions/Billing/Invoices/saga.js +75 -0
  309. package/subscriptions/Billing/PaymentMethod/index.d.ts +20 -20
  310. package/subscriptions/Billing/PaymentMethod/index.js +40 -0
  311. package/subscriptions/Billing/PaymentMethod/interfaces.d.ts +46 -46
  312. package/subscriptions/Billing/PaymentMethod/interfaces.js +6 -0
  313. package/subscriptions/Billing/PaymentMethod/saga.d.ts +13 -13
  314. package/subscriptions/Billing/PaymentMethod/saga.js +81 -0
  315. package/subscriptions/Billing/Subscription/index.d.ts +16 -16
  316. package/subscriptions/Billing/Subscription/index.js +42 -0
  317. package/subscriptions/Billing/Subscription/interfaces.d.ts +18 -18
  318. package/subscriptions/Billing/Subscription/interfaces.js +1 -0
  319. package/subscriptions/Billing/Subscription/saga.d.ts +13 -13
  320. package/subscriptions/Billing/Subscription/saga.js +117 -0
  321. package/subscriptions/Billing/index.d.ts +54 -54
  322. package/subscriptions/Billing/index.js +23 -0
  323. package/subscriptions/Billing/interfaces.d.ts +20 -20
  324. package/subscriptions/Billing/interfaces.js +5 -0
  325. package/subscriptions/Billing/saga.d.ts +2 -2
  326. package/subscriptions/Billing/saga.js +11 -0
  327. package/subscriptions/Checkout/index.d.ts +14 -14
  328. package/subscriptions/Checkout/index.js +36 -0
  329. package/subscriptions/Checkout/interfaces.d.ts +17 -17
  330. package/subscriptions/Checkout/interfaces.js +1 -0
  331. package/subscriptions/Checkout/saga.d.ts +5 -5
  332. package/subscriptions/Checkout/saga.js +110 -0
  333. package/subscriptions/Config/index.d.ts +10 -10
  334. package/subscriptions/Config/index.js +28 -0
  335. package/subscriptions/Config/interfaces.d.ts +16 -16
  336. package/subscriptions/Config/interfaces.js +1 -0
  337. package/subscriptions/Config/saga.d.ts +2 -2
  338. package/subscriptions/Config/saga.js +59 -0
  339. package/subscriptions/Plans/index.d.ts +10 -10
  340. package/subscriptions/Plans/index.js +25 -0
  341. package/subscriptions/Plans/interfaces.d.ts +10 -10
  342. package/subscriptions/Plans/interfaces.js +1 -0
  343. package/subscriptions/Plans/saga.d.ts +2 -2
  344. package/subscriptions/Plans/saga.js +58 -0
  345. package/subscriptions/Stripe/index.d.ts +11 -11
  346. package/subscriptions/Stripe/index.js +28 -0
  347. package/subscriptions/Stripe/interfaces.d.ts +10 -10
  348. package/subscriptions/Stripe/interfaces.js +1 -0
  349. package/subscriptions/Stripe/saga.d.ts +1 -1
  350. package/subscriptions/Stripe/saga.js +34 -0
  351. package/subscriptions/dummy.d.ts +5 -5
  352. package/subscriptions/dummy.js +72 -0
  353. package/subscriptions/general.interfaces.d.ts +49 -49
  354. package/subscriptions/general.interfaces.js +21 -0
  355. package/subscriptions/index.d.ts +100 -100
  356. package/subscriptions/index.js +13 -906
  357. package/subscriptions/interfaces.d.ts +25 -25
  358. package/subscriptions/interfaces.js +7 -0
  359. package/subscriptions/mapper.d.ts +6 -6
  360. package/subscriptions/mapper.js +36 -0
  361. package/subscriptions/reducer.d.ts +92 -92
  362. package/subscriptions/reducer.js +29 -0
  363. package/subscriptions/saga.d.ts +2 -2
  364. package/subscriptions/saga.js +12 -0
  365. package/subscriptions/utils.d.ts +68 -68
  366. package/subscriptions/utils.js +52 -0
  367. package/toolkit/index.d.ts +24 -23
  368. package/toolkit/index.js +106 -94
  369. package/toolkit/redux-saga.d.ts +4 -4
  370. package/toolkit/redux-saga.js +3 -0
  371. package/toolkit/redux.d.ts +3 -2
  372. package/toolkit/redux.js +1 -0
  373. package/vendor/VendorState/index.d.ts +20 -20
  374. package/vendor/VendorState/index.js +13 -0
  375. package/vendor/index.d.ts +17 -17
  376. package/vendor/index.js +12 -18
  377. package/vendor/interfaces.d.ts +3 -3
  378. package/vendor/interfaces.js +1 -0
  379. package/vendor/reducer.d.ts +8 -8
  380. package/vendor/reducer.js +19 -0
  381. package/vendor/saga.d.ts +8 -8
  382. package/vendor/saga.js +34 -0
  383. package/audits/backward-compatibility/package.json +0 -6
  384. package/constants-4d9682b2.js +0 -9
  385. package/node/index-5642a636.js +0 -4131
  386. package/node/index-6906e508.js +0 -151
  387. package/node/saga-b0d1a607.js +0 -230
  388. package/saga-7a267fe0.js +0 -223
  389. package/saga-b6529ffb.js +0 -36
package/auth/index.d.ts CHANGED
@@ -1,392 +1,378 @@
1
- import { reducer, actions } from './reducer';
2
- import { mockSagas, sagas } from './saga';
3
- import { authStoreName as storeName } from '../constants';
4
- import { initialState } from './initialState';
5
- export * from './interfaces';
6
- export * from './LoginState/interfaces';
7
- export * from './LoginState';
8
- export * from './ActivateState/interfaces';
9
- export * from './ActivateState';
10
- export * from './AcceptInvitationState/interfaces';
11
- export * from './AcceptInvitationState';
12
- export * from './ForgotPasswordState/interfaces';
13
- export * from './ForgotPasswordState';
14
- export * from './ResetPhoneNumberState/interfaces';
15
- export * from './ResetPhoneNumberState';
16
- export * from './SSOState/interfaces';
17
- export * from './SSOState';
18
- export * from './MfaState/interfaces';
19
- export * from './MfaState';
20
- export * from './ProfileState/interfaces';
21
- export * from './ProfileState';
22
- export * from './TeamState/interfaces';
23
- export * from './TeamState';
24
- export * from './SocialLogins/interfaces';
25
- export * from './SocialLogins';
26
- export * from './SignUp/interfaces';
27
- export * from './SignUp';
28
- export * from './ApiTokensState/interfaces';
29
- export * from './ApiTokensState';
30
- export * from './SecurityPolicyState/interfaces';
31
- export * from './SecurityPolicyState';
32
- export * from './AccountSettingsState/interfaces';
33
- export * from './AccountSettingsState';
34
- export * from './TenantsState/interfaces';
35
- export * from './TenantsState';
36
- export * from './RolesState/interfaces';
37
- export * from './RolesState';
38
- export type { AuthActions } from './reducer';
39
- export { sagas as authSagas, mockSagas as authMockSagas, reducer as authReducers, actions as authActions, initialState as authInitialState, storeName as authStoreName, };
40
- declare const _default: {
41
- sagas: typeof sagas;
42
- mockSagas: typeof mockSagas;
43
- storeName: string;
44
- initialState: import("./interfaces").AuthState;
45
- reducer: import("redux").Reducer<import("./interfaces").AuthState, import("redux").AnyAction>;
46
- actions: {
47
- loadRolesAndPermissions: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
48
- silentLoading?: boolean | undefined;
49
- } | undefined)?], {
50
- silentLoading?: boolean | undefined;
51
- } | undefined, string, never, never>;
52
- addRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddRole, import("@frontegg/rest-api").IRole>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddRole, import("@frontegg/rest-api").IRole>, string, never, never>;
53
- updateRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IUpdateRole, import("@frontegg/rest-api").IRole>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IUpdateRole, import("@frontegg/rest-api").IRole>, string, never, never>;
54
- deleteRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteRole, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteRole, boolean>, string, never, never>;
55
- attachPermissionsToRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionsToRole, import("@frontegg/rest-api").IRole>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionsToRole, import("@frontegg/rest-api").IRole>, string, never, never>;
56
- attachPermissionToRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionToRoles, import("@frontegg/rest-api").IRolePermission>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionToRoles, import("@frontegg/rest-api").IRolePermission>, string, never, never>;
57
- switchTenant: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ISwitchTenant, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ISwitchTenant, boolean>, string, never, never>;
58
- loadTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
59
- callback?: ((data: import("@frontegg/rest-api").ITenantsResponse[] | null, error?: string | undefined) => void) | undefined;
60
- } | undefined)?], {
61
- callback?: ((data: import("@frontegg/rest-api").ITenantsResponse[] | null, error?: string | undefined) => void) | undefined;
62
- } | undefined, string, never, never>;
63
- loadSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
64
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
65
- } | undefined)?], {
66
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
67
- } | undefined, string, never, never>;
68
- loadSubTenantsTree: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
69
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
70
- } | undefined)?], {
71
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
72
- } | undefined, string, never, never>;
73
- loadAccountSettings: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(import("../interfaces").WithCallback<{
74
- silentLoading?: boolean | undefined;
75
- }, boolean> | undefined)?], import("../interfaces").WithCallback<{
76
- silentLoading?: boolean | undefined;
77
- }, boolean> | undefined, string, never, never>;
78
- saveAccountSettings: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ISettingsResponse, import("@frontegg/rest-api").ISettingsResponse>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ISettingsResponse, import("@frontegg/rest-api").ISettingsResponse>, string, never, never>;
79
- loadSecurityPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
80
- loadPublicSecurityPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
81
- loadSecurityPolicyMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
82
- loadSecurityPolicyVendorMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
83
- 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>;
84
- loadSecurityPolicyLockout: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
85
- 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>;
86
- loadSecurityPolicyCaptcha: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
87
- loadSecurityPolicyPasswordHistory: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
88
- 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>;
89
- loadVendorPasswordConfig: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
90
- loadPublicAuthStrategiesPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
91
- loadApiTokens: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(import("../interfaces").WithSilentLoad<{
92
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
93
- }> | undefined)?], import("../interfaces").WithSilentLoad<{
94
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
95
- }> | undefined, string, never, never>;
96
- initApiTokensData: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ApiTokensState/interfaces").ApiTokenType], import("./ApiTokensState/interfaces").ApiTokenType, string, never, never>;
97
- addTenantApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").ITenantApiTokensData, "roleIds" | "description">, boolean>], import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").ITenantApiTokensData, "roleIds" | "description">, boolean>, string, never, never>;
98
- addUserApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").IApiTokensData, "description">, boolean>], import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").IApiTokensData, "description">, boolean>, string, never, never>;
99
- deleteUserApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[string], string, string, never, never>;
100
- deleteTenantApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[string], string, string, never, never>;
101
- loadUsers: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<import("@frontegg/rest-api").ILoadUsers>, import("@frontegg/rest-api").ITeamUser[]>], import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<import("@frontegg/rest-api").ILoadUsers>, import("@frontegg/rest-api").ITeamUser[]>, string, never, never>;
102
- loadAllSubTenantsUsers: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<Partial<import("@frontegg/rest-api").ILoadAllUsers>>, import("@frontegg/rest-api").ISubTenantUser[]>], import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<Partial<import("@frontegg/rest-api").ILoadAllUsers>>, import("@frontegg/rest-api").ISubTenantUser[]>, string, never, never>;
103
- loadRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
104
- callback?: ((data: {
105
- roles: import("@frontegg/rest-api").ITeamUserRole[];
106
- permissions: import("@frontegg/rest-api").ITeamUserPermission[];
107
- } | null, error?: string | undefined) => void) | undefined;
108
- } | undefined)?], {
109
- callback?: ((data: {
110
- roles: import("@frontegg/rest-api").ITeamUserRole[];
111
- permissions: import("@frontegg/rest-api").ITeamUserPermission[];
112
- } | null, error?: string | undefined) => void) | undefined;
113
- } | undefined, string, never, never>;
114
- addUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddUser, import("@frontegg/rest-api").ITeamUser>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddUser, import("@frontegg/rest-api").ITeamUser>, string, never, never>;
115
- addUserToSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").AddUserToSubTenantsRequest, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").AddUserToSubTenantsRequest, boolean>, string, never, never>;
116
- updateUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<import("@frontegg/rest-api").ITeamUser>, import("@frontegg/rest-api").ITeamUser>], import("../interfaces").WithCallback<Partial<import("@frontegg/rest-api").ITeamUser>, import("@frontegg/rest-api").ITeamUser>, string, never, never>;
117
- deleteUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>, string, never, never>;
118
- setUserRolesForSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").UpdateUserRolesForSubTenantsRequestDto & {
119
- userId: string;
120
- }, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").UpdateUserRolesForSubTenantsRequestDto & {
121
- userId: string;
122
- }, boolean>, string, never, never>;
123
- deleteUserFromSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").RemoveUserFromSubTenantsRequest, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").RemoveUserFromSubTenantsRequest, boolean>, string, never, never>;
124
- lockUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>, string, never, never>;
125
- resendActivationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendActivationLink, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendActivationLink, boolean>, string, never, never>;
126
- resendInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendInvitationLink, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendInvitationLink, boolean>, string, never, never>;
127
- getInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
128
- createInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, string>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, string>, string, never, never>;
129
- updateInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, boolean>, string, never, never>;
130
- deleteInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
131
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
132
- } | undefined)?], {
133
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
134
- } | undefined, string, never, never>;
135
- openAddUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(Pick<import("./TeamState/interfaces").AddUserDialogState, "onClose"> | undefined)?], Pick<import("./TeamState/interfaces").AddUserDialogState, "onClose"> | undefined, string, never, never>;
136
- closeAddUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[any?], any, string, never, never>;
137
- openDeleteUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(Pick<import("./TeamState/interfaces").DeleteUserDialogState, "email" | "onClose" | "userId"> | undefined)?], Pick<import("./TeamState/interfaces").DeleteUserDialogState, "email" | "onClose" | "userId"> | undefined, string, never, never>;
138
- closeDeleteUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[any?], any, string, never, never>;
139
- openLockUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(Pick<import("./TeamState/interfaces").DeleteUserDialogState, "email" | "onClose" | "userId"> | undefined)?], Pick<import("./TeamState/interfaces").DeleteUserDialogState, "email" | "onClose" | "userId"> | undefined, string, never, never>;
140
- closeLockUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[any?], any, string, never, never>;
141
- enrollMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
142
- verifyMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyMfa, string | undefined>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyMfa, string | undefined>, string, never, never>;
143
- verifyMfaAfterForce: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, string | undefined>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, string | undefined>, string, never, never>;
144
- disableMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDisableMfa, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDisableMfa, boolean>, string, never, never>;
145
- loadSSOConfigurationsV2: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
146
- saveSSOConfigurationV2: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration, "roleIds" | "enabled" | "generatedVerification" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">>, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration, "roleIds" | "enabled" | "generatedVerification" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">>, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>, string, never, never>;
147
- updateSSOConfiguration: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration, "roleIds" | "enabled" | "generatedVerification" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">> & {
148
- ssoConfigId: string;
149
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration, "roleIds" | "enabled" | "generatedVerification" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">> & {
150
- ssoConfigId: string;
151
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>, string, never, never>;
152
- deleteSSOConfiguration: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
153
- ssoConfigId: string;
154
- }, boolean>], import("../interfaces").WithCallback<{
155
- ssoConfigId: string;
156
- }, boolean>, string, never, never>;
157
- saveSSODomain: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSSODomain & {
158
- ssoConfigId: string;
159
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSODomain>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSSODomain & {
160
- ssoConfigId: string;
161
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSODomain>, string, never, never>;
162
- deleteSSODomain: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
163
- domainId: string;
164
- ssoConfigId: string;
165
- }, boolean>], import("../interfaces").WithCallback<{
166
- domainId: string;
167
- ssoConfigId: string;
168
- }, boolean>, string, never, never>;
169
- validateSSODomainV2: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
170
- domainId: string;
171
- ssoConfigId: string;
172
- }, boolean>], import("../interfaces").WithCallback<{
173
- domainId: string;
174
- ssoConfigId: string;
175
- }, boolean>, string, never, never>;
176
- setSSODefaultRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
177
- roleIds: string[];
178
- ssoConfigId: string;
179
- }, boolean>], import("../interfaces").WithCallback<{
180
- roleIds: string[];
181
- ssoConfigId: string;
182
- }, boolean>, string, never, never>;
183
- setSSOGroups: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
184
- ssoConfigId: string;
185
- groupsToAdd: import("@frontegg/rest-api").ICreateSamlGroup[];
186
- groupsToDelete: string[];
187
- }, boolean>], import("../interfaces").WithCallback<{
188
- ssoConfigId: string;
189
- groupsToAdd: import("@frontegg/rest-api").ICreateSamlGroup[];
190
- groupsToDelete: string[];
191
- }, boolean>, string, never, never>;
192
- updateSSOGroups: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
193
- ssoConfigId: string;
194
- changedGroups: import("@frontegg/rest-api").IUpdateSamlGroup[];
195
- }, boolean>], import("../interfaces").WithCallback<{
196
- ssoConfigId: string;
197
- changedGroups: import("@frontegg/rest-api").IUpdateSamlGroup[];
198
- }, boolean>, string, never, never>;
199
- saveSSOConfigurationByMetadata: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
200
- configFile: File;
201
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<{
202
- configFile: File;
203
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>, string, never, never>;
204
- updateSSOConfigurationByMetadata: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
205
- configFile: File;
206
- ssoConfigId: string;
207
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<{
208
- configFile: File;
209
- ssoConfigId: string;
210
- }, import("@frontegg/rest-api/dist/auth/interfaces").ISSOConfiguration>, string, never, never>;
211
- loadSSOConfigurations: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
212
- loadSSOAuthorizationRoles: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
213
- saveSSOConfigurations: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api").ISamlConfiguration, "enabled" | "domain" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "isSamlActive" | "oidcClientId" | "oidcSecret" | "type"> & {
214
- samlVendor: import("./SSOState/interfaces").SamlVendors;
215
- }>, boolean>], import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api").ISamlConfiguration, "enabled" | "domain" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "isSamlActive" | "oidcClientId" | "oidcSecret" | "type"> & {
216
- samlVendor: import("./SSOState/interfaces").SamlVendors;
217
- }>, boolean>, string, never, never>;
218
- saveSSOConfigurationsFile: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[File[]], File[], string, never, never>;
219
- saveSSOConfigurationsFileWithCallback: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
220
- configFile: File;
221
- }, boolean>], import("../interfaces").WithCallback<{
222
- configFile: File;
223
- }, boolean>, string, never, never>;
224
- validateSSODomain: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
225
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
226
- } | undefined)?], {
227
- callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
228
- } | undefined, string, never, never>;
229
- updateSSOAuthorizationRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
230
- authorizationRoles: string[];
231
- groups?: import("@frontegg/rest-api").ISamlRolesGroup[] | undefined;
232
- }, boolean>], import("../interfaces").WithCallback<{
233
- authorizationRoles: string[];
234
- groups?: import("@frontegg/rest-api").ISamlRolesGroup[] | undefined;
235
- }, boolean>, string, never, never>;
236
- deleteSamlGroup: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
237
- id: string;
238
- }, boolean>], import("../interfaces").WithCallback<{
239
- id: string;
240
- }, boolean>, string, never, never>;
241
- createSamlGroup: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSamlGroup, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSamlGroup, boolean>, string, never, never>;
242
- oidcPostlogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IOidcPostLogin], import("@frontegg/rest-api").IOidcPostLogin, string, never, never>;
243
- loadProfile: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
244
- saveProfile: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithCallback<import("@frontegg/rest-api").IUserProfile, import("@frontegg/rest-api").IUserProfile>>], Partial<import("../interfaces").WithCallback<import("@frontegg/rest-api").IUserProfile, import("@frontegg/rest-api").IUserProfile>>, string, never, never>;
245
- changePassword: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePassword, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePassword, boolean>, string, never, never>;
246
- signUpUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SignUp/interfaces").ISignUpUserPayload], import("./SignUp/interfaces").ISignUpUserPayload, string, never, never>;
247
- resetSignUpStateSoft: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
248
- resetPhoneNumber: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPhoneNumber, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPhoneNumber, boolean>, string, never, never>;
249
- verifyResetPhoneNumber: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyResetPhoneNumber, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyResetPhoneNumber, boolean>, string, never, never>;
250
- changePhoneNumber: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePhoneNumber & {
251
- recaptchaToken: string;
252
- email: string;
253
- }, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePhoneNumber & {
254
- recaptchaToken: string;
255
- email: string;
256
- }, boolean>, string, never, never>;
257
- forgotPassword: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IForgotPassword], import("@frontegg/rest-api").IForgotPassword, string, never, never>;
258
- resetPassword: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPassword, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPassword, boolean>, string, never, never>;
259
- loadPasswordConfig: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(import("@frontegg/rest-api").IGetUserPasswordConfig | undefined)?], import("@frontegg/rest-api").IGetUserPasswordConfig | undefined, string, never, never>;
260
- acceptInvitation: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IAcceptInvitation], import("@frontegg/rest-api").IAcceptInvitation, string, never, never>;
261
- activateAccount: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("./ActivateState/interfaces").IActivateAccountPayload, boolean>], import("../interfaces").WithCallback<import("./ActivateState/interfaces").IActivateAccountPayload, boolean>, string, never, never>;
262
- preActivateAccount: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ActivateState/interfaces").IPreActivateAccount], import("./ActivateState/interfaces").IPreActivateAccount, string, never, never>;
263
- getActivateAccountStrategy: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IGetActivateAccountStrategy, import("@frontegg/rest-api").IGetActivateAccountStrategyResponse>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IGetActivateAccountStrategy, import("@frontegg/rest-api").IGetActivateAccountStrategyResponse>, string, never, never>;
264
- resendActivationEmail: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IResendActivationEmail], import("@frontegg/rest-api").IResendActivationEmail, string, never, never>;
265
- loadSocialLoginsConfiguration: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
266
- loadSocialLoginsConfigurationV2: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
267
- loginViaSocialLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SocialLogins/interfaces").ILoginViaSocialLoginPayload], import("./SocialLogins/interfaces").ILoginViaSocialLoginPayload, string, never, never>;
268
- setSocialLoginError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").ISetSocialLoginError], import("@frontegg/rest-api").ISetSocialLoginError, string, never, never>;
269
- requestAuthorize: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(boolean | undefined)?], boolean, string, never, never>;
270
- requestAuthorizeSSR: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[string], string, string, never, never>;
271
- requestHostedLoginAuthorize: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
272
- handleHostedLoginCallback: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./LoginState/interfaces").HostedLoginCallback], import("./LoginState/interfaces").HostedLoginCallback, string, never, never>;
273
- afterAuthNavigation: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
274
- preLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IPreLogin & {
275
- recaptchaToken?: string | undefined;
276
- invitationToken?: string | undefined;
277
- }, void>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IPreLogin & {
278
- recaptchaToken?: string | undefined;
279
- invitationToken?: string | undefined;
280
- }, void>, string, never, never>;
281
- postLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IPostLogin], import("@frontegg/rest-api").IPostLogin, string, never, never>;
282
- login: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ILogin, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ILogin, boolean>, string, never, never>;
283
- loginWithMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, boolean>, string, never, never>;
284
- recoverMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IRecoverMFAToken], import("@frontegg/rest-api").IRecoverMFAToken, string, never, never>;
285
- logout: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[((() => void) | undefined)?], (() => void) | undefined, string, never, never>;
286
- silentLogout: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[((() => void) | undefined)?], (() => void) | undefined, string, never, never>;
287
- checkIfAllowToRememberMfaDevice: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[{
288
- mfaToken: string;
289
- }], {
290
- mfaToken: string;
291
- }, string, never, never>;
292
- passwordlessPreLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IPasswordlessPreLogin, void>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IPasswordlessPreLogin, void>, string, never, never>;
293
- passwordlessPostLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("./LoginState/interfaces").IPasswordlessPostLoginPayload, boolean>], import("../interfaces").WithCallback<import("./LoginState/interfaces").IPasswordlessPostLoginPayload, boolean>, string, never, never>;
294
- verifyInviteToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IVerifyInviteToken], import("@frontegg/rest-api").IVerifyInviteToken, string, never, never>;
295
- webAuthnPrelogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IWebAuthnPreLogin, import("@frontegg/rest-api").IWebAuthnPreLoginResponse | null>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IWebAuthnPreLogin, import("@frontegg/rest-api").IWebAuthnPreLoginResponse | null>, string, never, never>;
296
- webAuthnPostLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./LoginState/interfaces").IWebAuthnPostLoginPayload], import("./LoginState/interfaces").IWebAuthnPostLoginPayload, string, never, never>;
297
- webAuthnCreateNewDeviceSession: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[{
298
- callback?: ((data: import("@frontegg/rest-api").ICreateNewDeviceSessionResponse | null, error?: string | undefined) => void) | undefined;
299
- }], {
300
- callback?: ((data: import("@frontegg/rest-api").ICreateNewDeviceSessionResponse | null, error?: string | undefined) => void) | undefined;
301
- }, string, never, never>;
302
- webAuthnVerifyNewDeviceSession: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./LoginState/interfaces").IVerifyNewWebAuthnDevicePayload], import("./LoginState/interfaces").IVerifyNewWebAuthnDevicePayload, string, never, never>;
303
- setRolesState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./RolesState/interfaces").RolesState>], Partial<import("./RolesState/interfaces").RolesState>, string, never, never>;
304
- resetRolesState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
305
- setTenantsState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./TenantsState/interfaces").TenantsState>], Partial<import("./TenantsState/interfaces").TenantsState>, string, never, never>;
306
- resetTenantsState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
307
- setAccountSettingsState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./AccountSettingsState/interfaces").AccountSettingsState>], Partial<import("./AccountSettingsState/interfaces").AccountSettingsState>, string, never, never>;
308
- resetAccountSettingsState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
309
- setSecurityPolicyState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SecurityPolicyState/interfaces").SecurityPolicyState>], Partial<import("./SecurityPolicyState/interfaces").SecurityPolicyState>, string, never, never>;
310
- setSecurityPolicyGlobalState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
311
- policy?: import("@frontegg/rest-api").ISecurityPolicy | undefined;
312
- }>], Partial<import("../interfaces").WithStatus & {
313
- policy?: import("@frontegg/rest-api").ISecurityPolicy | undefined;
314
- }>, string, never, never>;
315
- setSecurityPolicyPublicState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
316
- policy?: import("@frontegg/rest-api").IVendorConfig | undefined;
317
- }>], Partial<import("../interfaces").WithStatus & {
318
- policy?: import("@frontegg/rest-api").IVendorConfig | undefined;
319
- }>, string, never, never>;
320
- setSecurityPolicyAuthStrategyPublicState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
321
- policy?: import("@frontegg/rest-api").IAuthStrategiesConfig | undefined;
322
- }>], Partial<import("../interfaces").WithStatus & {
323
- policy?: import("@frontegg/rest-api").IAuthStrategiesConfig | undefined;
324
- }>, string, never, never>;
325
- setSecurityPolicyMfaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
326
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
327
- }>], Partial<import("../interfaces").WithStatus & {
328
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
329
- }>, string, never, never>;
330
- setSecurityPolicyVendorMfaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
331
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
332
- }>], Partial<import("../interfaces").WithStatus & {
333
- policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
334
- }>, string, never, never>;
335
- setSecurityPolicyLockoutState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
336
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
337
- }>], Partial<import("../interfaces").WithStatus & {
338
- policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
339
- }>, string, never, never>;
340
- setSecurityPolicyCaptchaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
341
- policy?: import("@frontegg/rest-api").ISecurityPolicyCaptcha | undefined;
342
- }>], Partial<import("../interfaces").WithStatus & {
343
- policy?: import("@frontegg/rest-api").ISecurityPolicyCaptcha | undefined;
344
- }>, string, never, never>;
345
- setSecurityPolicyPasswordHistoryState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
346
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
347
- }>], Partial<import("../interfaces").WithStatus & {
348
- policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
349
- }>, string, never, never>;
350
- setSecurityPolicyPasswordState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
351
- policy?: Partial<import("@frontegg/rest-api").TestConfig> | undefined;
352
- }>], Partial<import("../interfaces").WithStatus & {
353
- policy?: Partial<import("@frontegg/rest-api").TestConfig> | undefined;
354
- }>, string, never, never>;
355
- resetSecurityPolicyState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
356
- setApiTokensLoader: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ApiTokensState/interfaces").ApiStateIndicator], import("./ApiTokensState/interfaces").ApiStateIndicator, string, never, never>;
357
- setApiTokensError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ApiTokensState/interfaces").ApiStateIndicator], import("./ApiTokensState/interfaces").ApiStateIndicator, string, never, never>;
358
- setApiTokensState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ApiTokensState/interfaces").ApiTokensState>], Partial<import("./ApiTokensState/interfaces").ApiTokensState>, string, never, never>;
359
- resetApiTokensState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
360
- setTeamLoader: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./TeamState/interfaces").TeamStateIndicator], import("./TeamState/interfaces").TeamStateIndicator, string, never, never>;
361
- setTeamError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./TeamState/interfaces").TeamStateIndicator], import("./TeamState/interfaces").TeamStateIndicator, string, never, never>;
362
- setTeamState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./TeamState/interfaces").TeamState>], Partial<import("./TeamState/interfaces").TeamState>, string, never, never>;
363
- resetTeamState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
364
- setMfaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./MfaState/interfaces").MFAState>], Partial<import("./MfaState/interfaces").MFAState>, string, never, never>;
365
- resetMfaState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
366
- setSSOLoader: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SSOState/interfaces").SSOStateIndicator], import("./SSOState/interfaces").SSOStateIndicator, string, never, never>;
367
- setSSOError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SSOState/interfaces").SSOStateIndicator], import("./SSOState/interfaces").SSOStateIndicator, string, never, never>;
368
- setSSOState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SSOState/interfaces").SSOState>], Partial<import("./SSOState/interfaces").SSOState>, string, never, never>;
369
- resetSSOState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
370
- setProfileState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ProfileState/interfaces").ProfileState>], Partial<import("./ProfileState/interfaces").ProfileState>, string, never, never>;
371
- resetProfileState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
372
- setSignUpState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SignUp/interfaces").SignUpState>], Partial<import("./SignUp/interfaces").SignUpState>, string, never, never>;
373
- resetSignUpState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
374
- setResetPhoneNumberState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ResetPhoneNumberState/interfaces").ResetPhoneNumberState>], Partial<import("./ResetPhoneNumberState/interfaces").ResetPhoneNumberState>, string, never, never>;
375
- resetResetPhoneNumberState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
376
- setForgotPasswordState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ForgotPasswordState/interfaces").ForgotPasswordState>], Partial<import("./ForgotPasswordState/interfaces").ForgotPasswordState>, string, never, never>;
377
- resetForgotPasswordState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
378
- setAcceptInvitationState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./AcceptInvitationState/interfaces").AcceptInvitationState>], Partial<import("./AcceptInvitationState/interfaces").AcceptInvitationState>, string, never, never>;
379
- resetAcceptInvitationState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
380
- setActivateState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ActivateState/interfaces").ActivateAccountState>], Partial<import("./ActivateState/interfaces").ActivateAccountState>, string, never, never>;
381
- resetActivateState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
382
- setActivateStrategyState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ActivateState/interfaces").ActivateAccountStrategyState>], Partial<import("./ActivateState/interfaces").ActivateAccountStrategyState>, string, never, never>;
383
- setSocialLoginsState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SocialLogins/interfaces").SocialLoginState>], Partial<import("./SocialLogins/interfaces").SocialLoginState>, string, never, never>;
384
- resetSocialLoginsState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
385
- setLoginState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./LoginState/interfaces").LoginState>], Partial<import("./LoginState/interfaces").LoginState>, string, never, never>;
386
- resetLoginState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
387
- resetState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
388
- setState: import("@reduxjs/toolkit").ActionCreatorWithPayload<Partial<import("./interfaces").AuthState>, string>;
389
- setUser: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./interfaces").User, string>;
390
- };
391
- };
392
- export default _default;
1
+ import { reducer, actions } from './reducer';
2
+ import { mockSagas, sagas } from './saga';
3
+ import { authStoreName as storeName } from '../constants';
4
+ import { initialState } from './initialState';
5
+ export * from './interfaces';
6
+ export * from './LoginState/interfaces';
7
+ export * from './LoginState';
8
+ export * from './ActivateState/interfaces';
9
+ export * from './ActivateState';
10
+ export * from './AcceptInvitationState/interfaces';
11
+ export * from './AcceptInvitationState';
12
+ export * from './ForgotPasswordState/interfaces';
13
+ export * from './ForgotPasswordState';
14
+ export * from './ResetPhoneNumberState/interfaces';
15
+ export * from './ResetPhoneNumberState';
16
+ export * from './SSOState/interfaces';
17
+ export * from './SSOState';
18
+ export * from './MfaState/interfaces';
19
+ export * from './MfaState';
20
+ export * from './ProfileState/interfaces';
21
+ export * from './ProfileState';
22
+ export * from './TeamState/interfaces';
23
+ export * from './TeamState';
24
+ export * from './SocialLogins/interfaces';
25
+ export * from './SocialLogins';
26
+ export * from './SignUp/interfaces';
27
+ export * from './SignUp';
28
+ export * from './ApiTokensState/interfaces';
29
+ export * from './ApiTokensState';
30
+ export * from './SecurityPolicyState/interfaces';
31
+ export * from './SecurityPolicyState';
32
+ export * from './AccountSettingsState/interfaces';
33
+ export * from './AccountSettingsState';
34
+ export * from './TenantsState/interfaces';
35
+ export * from './TenantsState';
36
+ export * from './RolesState/interfaces';
37
+ export * from './RolesState';
38
+ export type { AuthActions } from './reducer';
39
+ export { sagas as authSagas, mockSagas as authMockSagas, reducer as authReducers, actions as authActions, initialState as authInitialState, storeName as authStoreName, };
40
+ declare const _default: {
41
+ sagas: typeof sagas;
42
+ mockSagas: typeof mockSagas;
43
+ storeName: string;
44
+ initialState: import("./interfaces").AuthState;
45
+ reducer: import("redux").Reducer<import("./interfaces").AuthState, import("redux").AnyAction>;
46
+ actions: {
47
+ loadRolesAndPermissions: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
48
+ silentLoading?: boolean | undefined;
49
+ } | undefined)?], {
50
+ silentLoading?: boolean | undefined;
51
+ } | undefined, string, never, never>;
52
+ addRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddRole, import("@frontegg/rest-api").IRole>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddRole, import("@frontegg/rest-api").IRole>, string, never, never>;
53
+ updateRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IUpdateRole, import("@frontegg/rest-api").IRole>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IUpdateRole, import("@frontegg/rest-api").IRole>, string, never, never>;
54
+ deleteRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteRole, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteRole, boolean>, string, never, never>;
55
+ attachPermissionsToRole: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionsToRole, import("@frontegg/rest-api").IRole>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionsToRole, import("@frontegg/rest-api").IRole>, string, never, never>;
56
+ attachPermissionToRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionToRoles, import("@frontegg/rest-api").IRolePermission>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAttachPermissionToRoles, import("@frontegg/rest-api").IRolePermission>, string, never, never>;
57
+ switchTenant: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ISwitchTenant, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ISwitchTenant, boolean>, string, never, never>;
58
+ loadTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
59
+ callback?: ((data: import("@frontegg/rest-api").ITenantsResponse[] | null, error?: string | undefined) => void) | undefined;
60
+ } | undefined)?], {
61
+ callback?: ((data: import("@frontegg/rest-api").ITenantsResponse[] | null, error?: string | undefined) => void) | undefined;
62
+ } | undefined, string, never, never>;
63
+ loadSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
64
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
65
+ } | undefined)?], {
66
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
67
+ } | undefined, string, never, never>;
68
+ loadSubTenantsTree: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
69
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
70
+ } | undefined)?], {
71
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
72
+ } | undefined, string, never, never>;
73
+ loadAccountSettings: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(import("../interfaces").WithCallback<{
74
+ silentLoading?: boolean | undefined;
75
+ }, boolean> | undefined)?], import("../interfaces").WithCallback<{
76
+ silentLoading?: boolean | undefined;
77
+ }, boolean> | undefined, string, never, never>;
78
+ saveAccountSettings: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ISettingsResponse, import("@frontegg/rest-api").ISettingsResponse>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ISettingsResponse, import("@frontegg/rest-api").ISettingsResponse>, string, never, never>;
79
+ loadSecurityPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
80
+ loadPublicSecurityPolicy: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
81
+ loadSecurityPolicyMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
82
+ loadSecurityPolicyVendorMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
83
+ 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>;
84
+ loadSecurityPolicyLockout: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
85
+ 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>;
86
+ loadSecurityPolicyCaptcha: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
87
+ loadSecurityPolicyPasswordHistory: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
88
+ 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>;
89
+ loadVendorPasswordConfig: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
90
+ loadApiTokens: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(import("../interfaces").WithSilentLoad<{
91
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
92
+ }> | undefined)?], import("../interfaces").WithSilentLoad<{
93
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
94
+ }> | undefined, string, never, never>;
95
+ initApiTokensData: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ApiTokensState/interfaces").ApiTokenType], import("./ApiTokensState/interfaces").ApiTokenType, string, never, never>;
96
+ addTenantApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").ITenantApiTokensData, "description" | "roleIds">, boolean>], import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").ITenantApiTokensData, "description" | "roleIds">, boolean>, string, never, never>;
97
+ addUserApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").IApiTokensData, "description">, boolean>], import("../interfaces").WithCallback<Pick<import("./ApiTokensState/interfaces").IApiTokensData, "description">, boolean>, string, never, never>;
98
+ deleteUserApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[string], string, string, never, never>;
99
+ deleteTenantApiToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[string], string, string, never, never>;
100
+ loadUsers: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<import("@frontegg/rest-api").ILoadUsers>, import("@frontegg/rest-api").ITeamUser[]>], import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<import("@frontegg/rest-api").ILoadUsers>, import("@frontegg/rest-api").ITeamUser[]>, string, never, never>;
101
+ loadAllSubTenantsUsers: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<Partial<import("@frontegg/rest-api").ILoadAllUsers>>, import("@frontegg/rest-api").ISubTenantUser[]>], import("../interfaces").WithCallback<import("../interfaces").WithSilentLoad<Partial<import("@frontegg/rest-api").ILoadAllUsers>>, import("@frontegg/rest-api").ISubTenantUser[]>, string, never, never>;
102
+ loadRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
103
+ callback?: ((data: {
104
+ roles: import("@frontegg/rest-api").ITeamUserRole[];
105
+ permissions: import("@frontegg/rest-api").ITeamUserPermission[];
106
+ } | null, error?: string | undefined) => void) | undefined;
107
+ } | undefined)?], {
108
+ callback?: ((data: {
109
+ roles: import("@frontegg/rest-api").ITeamUserRole[];
110
+ permissions: import("@frontegg/rest-api").ITeamUserPermission[];
111
+ } | null, error?: string | undefined) => void) | undefined;
112
+ } | undefined, string, never, never>;
113
+ addUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddUser, import("@frontegg/rest-api").ITeamUser>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IAddUser, import("@frontegg/rest-api").ITeamUser>, string, never, never>;
114
+ addUserToSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").AddUserToSubTenantsRequest, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").AddUserToSubTenantsRequest, boolean>, string, never, never>;
115
+ updateUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<import("@frontegg/rest-api").ITeamUser>, import("@frontegg/rest-api").ITeamUser>], import("../interfaces").WithCallback<Partial<import("@frontegg/rest-api").ITeamUser>, import("@frontegg/rest-api").ITeamUser>, string, never, never>;
116
+ deleteUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>, string, never, never>;
117
+ setUserRolesForSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").UpdateUserRolesForSubTenantsRequestDto & {
118
+ userId: string;
119
+ }, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").UpdateUserRolesForSubTenantsRequestDto & {
120
+ userId: string;
121
+ }, boolean>, string, never, never>;
122
+ deleteUserFromSubTenants: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").RemoveUserFromSubTenantsRequest, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").RemoveUserFromSubTenantsRequest, boolean>, string, never, never>;
123
+ lockUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDeleteUser, boolean>, string, never, never>;
124
+ resendActivationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendActivationLink, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendActivationLink, boolean>, string, never, never>;
125
+ resendInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendInvitationLink, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResendInvitationLink, boolean>, string, never, never>;
126
+ getInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
127
+ createInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, string>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, string>, string, never, never>;
128
+ updateInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateOrUpdateInviteUserLink, boolean>, string, never, never>;
129
+ deleteInvitationLink: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
130
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
131
+ } | undefined)?], {
132
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
133
+ } | undefined, string, never, never>;
134
+ openAddUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(Pick<import("./TeamState/interfaces").AddUserDialogState, "onClose"> | undefined)?], Pick<import("./TeamState/interfaces").AddUserDialogState, "onClose"> | undefined, string, never, never>;
135
+ closeAddUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[any?], any, string, never, never>;
136
+ openDeleteUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(Pick<import("./TeamState/interfaces").DeleteUserDialogState, "onClose" | "userId" | "email"> | undefined)?], Pick<import("./TeamState/interfaces").DeleteUserDialogState, "onClose" | "userId" | "email"> | undefined, string, never, never>;
137
+ closeDeleteUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[any?], any, string, never, never>;
138
+ openLockUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(Pick<import("./TeamState/interfaces").DeleteUserDialogState, "onClose" | "userId" | "email"> | undefined)?], Pick<import("./TeamState/interfaces").DeleteUserDialogState, "onClose" | "userId" | "email"> | undefined, string, never, never>;
139
+ closeLockUserDialog: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[any?], any, string, never, never>;
140
+ enrollMfa: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
141
+ verifyMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyMfa, string | undefined>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyMfa, string | undefined>, string, never, never>;
142
+ verifyMfaAfterForce: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, string | undefined>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, string | undefined>, string, never, never>;
143
+ disableMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IDisableMfa, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IDisableMfa, boolean>, string, never, never>;
144
+ loadSSOConfigurationsV2: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
145
+ saveSSOConfigurationV2: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration, "roleIds" | "generatedVerification" | "enabled" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">>, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration, "roleIds" | "generatedVerification" | "enabled" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">>, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>, string, never, never>;
146
+ updateSSOConfiguration: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration, "roleIds" | "generatedVerification" | "enabled" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">> & {
147
+ ssoConfigId: string;
148
+ }, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration, "roleIds" | "generatedVerification" | "enabled" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "oidcClientId" | "oidcSecret" | "type" | "groups">> & {
149
+ ssoConfigId: string;
150
+ }, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>, string, never, never>;
151
+ deleteSSOConfiguration: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
152
+ ssoConfigId: string;
153
+ }, boolean>], import("../interfaces").WithCallback<{
154
+ ssoConfigId: string;
155
+ }, boolean>, string, never, never>;
156
+ saveSSODomain: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSSODomain & {
157
+ ssoConfigId: string;
158
+ }, import("@frontegg/rest-api/auth/interfaces").ISSODomain>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSSODomain & {
159
+ ssoConfigId: string;
160
+ }, import("@frontegg/rest-api/auth/interfaces").ISSODomain>, string, never, never>;
161
+ deleteSSODomain: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
162
+ domainId: string;
163
+ ssoConfigId: string;
164
+ }, boolean>], import("../interfaces").WithCallback<{
165
+ domainId: string;
166
+ ssoConfigId: string;
167
+ }, boolean>, string, never, never>;
168
+ validateSSODomainV2: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
169
+ domainId: string;
170
+ ssoConfigId: string;
171
+ }, boolean>], import("../interfaces").WithCallback<{
172
+ domainId: string;
173
+ ssoConfigId: string;
174
+ }, boolean>, string, never, never>;
175
+ setSSODefaultRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
176
+ roleIds: string[];
177
+ ssoConfigId: string;
178
+ }, boolean>], import("../interfaces").WithCallback<{
179
+ roleIds: string[];
180
+ ssoConfigId: string;
181
+ }, boolean>, string, never, never>;
182
+ setSSOGroups: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
183
+ ssoConfigId: string;
184
+ groupsToAdd: import("@frontegg/rest-api").ICreateSamlGroup[];
185
+ groupsToDelete: string[];
186
+ }, boolean>], import("../interfaces").WithCallback<{
187
+ ssoConfigId: string;
188
+ groupsToAdd: import("@frontegg/rest-api").ICreateSamlGroup[];
189
+ groupsToDelete: string[];
190
+ }, boolean>, string, never, never>;
191
+ updateSSOGroups: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
192
+ ssoConfigId: string;
193
+ changedGroups: import("@frontegg/rest-api").IUpdateSamlGroup[];
194
+ }, boolean>], import("../interfaces").WithCallback<{
195
+ ssoConfigId: string;
196
+ changedGroups: import("@frontegg/rest-api").IUpdateSamlGroup[];
197
+ }, boolean>, string, never, never>;
198
+ saveSSOConfigurationByMetadata: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
199
+ configFile: File;
200
+ }, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<{
201
+ configFile: File;
202
+ }, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>, string, never, never>;
203
+ updateSSOConfigurationByMetadata: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
204
+ configFile: File;
205
+ ssoConfigId: string;
206
+ }, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>], import("../interfaces").WithCallback<{
207
+ configFile: File;
208
+ ssoConfigId: string;
209
+ }, import("@frontegg/rest-api/auth/interfaces").ISSOConfiguration>, string, never, never>;
210
+ loadSSOConfigurations: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
211
+ loadSSOAuthorizationRoles: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
212
+ saveSSOConfigurations: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api").ISamlConfiguration, "enabled" | "domain" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "isSamlActive" | "oidcClientId" | "oidcSecret" | "type"> & {
213
+ samlVendor: import("./SSOState/interfaces").SamlVendors;
214
+ }>, boolean>], import("../interfaces").WithCallback<Partial<Pick<import("@frontegg/rest-api").ISamlConfiguration, "enabled" | "domain" | "ssoEndpoint" | "publicCertificate" | "signRequest" | "acsUrl" | "spEntityId" | "isSamlActive" | "oidcClientId" | "oidcSecret" | "type"> & {
215
+ samlVendor: import("./SSOState/interfaces").SamlVendors;
216
+ }>, boolean>, string, never, never>;
217
+ saveSSOConfigurationsFile: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[File[]], File[], string, never, never>;
218
+ saveSSOConfigurationsFileWithCallback: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
219
+ configFile: File;
220
+ }, boolean>], import("../interfaces").WithCallback<{
221
+ configFile: File;
222
+ }, boolean>, string, never, never>;
223
+ validateSSODomain: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[({
224
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
225
+ } | undefined)?], {
226
+ callback?: ((data: boolean | null, error?: string | undefined) => void) | undefined;
227
+ } | undefined, string, never, never>;
228
+ updateSSOAuthorizationRoles: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
229
+ authorizationRoles: string[];
230
+ groups?: import("@frontegg/rest-api").ISamlRolesGroup[] | undefined;
231
+ }, boolean>], import("../interfaces").WithCallback<{
232
+ authorizationRoles: string[];
233
+ groups?: import("@frontegg/rest-api").ISamlRolesGroup[] | undefined;
234
+ }, boolean>, string, never, never>;
235
+ deleteSamlGroup: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<{
236
+ id: string;
237
+ }, boolean>], import("../interfaces").WithCallback<{
238
+ id: string;
239
+ }, boolean>, string, never, never>;
240
+ createSamlGroup: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSamlGroup, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ICreateSamlGroup, boolean>, string, never, never>;
241
+ oidcPostlogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IOidcPostLogin], import("@frontegg/rest-api").IOidcPostLogin, string, never, never>;
242
+ loadProfile: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
243
+ saveProfile: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithCallback<import("@frontegg/rest-api").IUserProfile, import("@frontegg/rest-api").IUserProfile>>], Partial<import("../interfaces").WithCallback<import("@frontegg/rest-api").IUserProfile, import("@frontegg/rest-api").IUserProfile>>, string, never, never>;
244
+ changePassword: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePassword, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePassword, boolean>, string, never, never>;
245
+ signUpUser: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SignUp/interfaces").ISignUpUserPayload], import("./SignUp/interfaces").ISignUpUserPayload, string, never, never>;
246
+ resetSignUpStateSoft: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
247
+ resetPhoneNumber: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPhoneNumber, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPhoneNumber, boolean>, string, never, never>;
248
+ verifyResetPhoneNumber: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyResetPhoneNumber, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IVerifyResetPhoneNumber, boolean>, string, never, never>;
249
+ changePhoneNumber: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePhoneNumber & {
250
+ recaptchaToken: string;
251
+ email: string;
252
+ }, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IChangePhoneNumber & {
253
+ recaptchaToken: string;
254
+ email: string;
255
+ }, boolean>, string, never, never>;
256
+ forgotPassword: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IForgotPassword], import("@frontegg/rest-api").IForgotPassword, string, never, never>;
257
+ resetPassword: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPassword, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IResetPassword, boolean>, string, never, never>;
258
+ loadPasswordConfig: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(import("@frontegg/rest-api").IGetUserPasswordConfig | undefined)?], import("@frontegg/rest-api").IGetUserPasswordConfig | undefined, string, never, never>;
259
+ acceptInvitation: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IAcceptInvitation], import("@frontegg/rest-api").IAcceptInvitation, string, never, never>;
260
+ activateAccount: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("./ActivateState/interfaces").IActivateAccountPayload, boolean>], import("../interfaces").WithCallback<import("./ActivateState/interfaces").IActivateAccountPayload, boolean>, string, never, never>;
261
+ preActivateAccount: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ActivateState/interfaces").IPreActivateAccount], import("./ActivateState/interfaces").IPreActivateAccount, string, never, never>;
262
+ getActivateAccountStrategy: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IGetActivateAccountStrategy, import("@frontegg/rest-api").IGetActivateAccountStrategyResponse>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IGetActivateAccountStrategy, import("@frontegg/rest-api").IGetActivateAccountStrategyResponse>, string, never, never>;
263
+ resendActivationEmail: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IResendActivationEmail], import("@frontegg/rest-api").IResendActivationEmail, string, never, never>;
264
+ loadSocialLoginsConfiguration: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
265
+ loadSocialLoginsConfigurationV2: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
266
+ loginViaSocialLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SocialLogins/interfaces").ILoginViaSocialLoginPayload], import("./SocialLogins/interfaces").ILoginViaSocialLoginPayload, string, never, never>;
267
+ setSocialLoginError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").ISetSocialLoginError], import("@frontegg/rest-api").ISetSocialLoginError, string, never, never>;
268
+ requestAuthorize: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[(boolean | undefined)?], boolean, string, never, never>;
269
+ requestAuthorizeSSR: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[string], string, string, never, never>;
270
+ requestHostedLoginAuthorize: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
271
+ handleHostedLoginCallback: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./LoginState/interfaces").HostedLoginCallback], import("./LoginState/interfaces").HostedLoginCallback, string, never, never>;
272
+ afterAuthNavigation: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
273
+ preLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IPreLogin & {
274
+ recaptchaToken?: string | undefined;
275
+ invitationToken?: string | undefined;
276
+ }, void>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IPreLogin & {
277
+ recaptchaToken?: string | undefined;
278
+ invitationToken?: string | undefined;
279
+ }, void>, string, never, never>;
280
+ postLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IPostLogin], import("@frontegg/rest-api").IPostLogin, string, never, never>;
281
+ login: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ILogin, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ILogin, boolean>, string, never, never>;
282
+ loginWithMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, boolean>], import("../interfaces").WithCallback<import("@frontegg/rest-api").ILoginWithMfa, boolean>, string, never, never>;
283
+ recoverMfa: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IRecoverMFAToken], import("@frontegg/rest-api").IRecoverMFAToken, string, never, never>;
284
+ logout: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[((() => void) | undefined)?], (() => void) | undefined, string, never, never>;
285
+ silentLogout: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[((() => void) | undefined)?], (() => void) | undefined, string, never, never>;
286
+ checkIfAllowToRememberMfaDevice: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[{
287
+ mfaToken: string;
288
+ }], {
289
+ mfaToken: string;
290
+ }, string, never, never>;
291
+ passwordlessPreLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("@frontegg/rest-api").IPasswordlessPreLogin, void>], import("../interfaces").WithCallback<import("@frontegg/rest-api").IPasswordlessPreLogin, void>, string, never, never>;
292
+ passwordlessPostLogin: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("../interfaces").WithCallback<import("./LoginState/interfaces").IPasswordlessPostLoginPayload, boolean>], import("../interfaces").WithCallback<import("./LoginState/interfaces").IPasswordlessPostLoginPayload, boolean>, string, never, never>;
293
+ verifyInviteToken: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("@frontegg/rest-api").IVerifyInviteToken], import("@frontegg/rest-api").IVerifyInviteToken, string, never, never>;
294
+ setRolesState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./RolesState/interfaces").RolesState>], Partial<import("./RolesState/interfaces").RolesState>, string, never, never>;
295
+ resetRolesState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
296
+ setTenantsState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./TenantsState/interfaces").TenantsState>], Partial<import("./TenantsState/interfaces").TenantsState>, string, never, never>;
297
+ resetTenantsState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
298
+ setAccountSettingsState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./AccountSettingsState/interfaces").AccountSettingsState>], Partial<import("./AccountSettingsState/interfaces").AccountSettingsState>, string, never, never>;
299
+ resetAccountSettingsState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
300
+ setSecurityPolicyState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SecurityPolicyState/interfaces").SecurityPolicyState>], Partial<import("./SecurityPolicyState/interfaces").SecurityPolicyState>, string, never, never>;
301
+ setSecurityPolicyGlobalState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
302
+ policy?: import("@frontegg/rest-api").ISecurityPolicy | undefined;
303
+ }>], Partial<import("../interfaces").WithStatus & {
304
+ policy?: import("@frontegg/rest-api").ISecurityPolicy | undefined;
305
+ }>, string, never, never>;
306
+ setSecurityPolicyPublicState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
307
+ policy?: import("@frontegg/rest-api").IVendorConfig | undefined;
308
+ }>], Partial<import("../interfaces").WithStatus & {
309
+ policy?: import("@frontegg/rest-api").IVendorConfig | undefined;
310
+ }>, string, never, never>;
311
+ setSecurityPolicyMfaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
312
+ policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
313
+ }>], Partial<import("../interfaces").WithStatus & {
314
+ policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
315
+ }>, string, never, never>;
316
+ setSecurityPolicyVendorMfaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
317
+ policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
318
+ }>], Partial<import("../interfaces").WithStatus & {
319
+ policy?: import("@frontegg/rest-api").ISecurityPolicyMfa | undefined;
320
+ }>, string, never, never>;
321
+ setSecurityPolicyLockoutState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
322
+ policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
323
+ }>], Partial<import("../interfaces").WithStatus & {
324
+ policy?: import("@frontegg/rest-api").ISecurityPolicyLockout | undefined;
325
+ }>, string, never, never>;
326
+ setSecurityPolicyCaptchaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
327
+ policy?: import("@frontegg/rest-api").ISecurityPolicyCaptcha | undefined;
328
+ }>], Partial<import("../interfaces").WithStatus & {
329
+ policy?: import("@frontegg/rest-api").ISecurityPolicyCaptcha | undefined;
330
+ }>, string, never, never>;
331
+ setSecurityPolicyPasswordHistoryState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
332
+ policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
333
+ }>], Partial<import("../interfaces").WithStatus & {
334
+ policy?: import("@frontegg/rest-api").ISecurityPolicyPasswordHistory | undefined;
335
+ }>, string, never, never>;
336
+ setSecurityPolicyPasswordState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("../interfaces").WithStatus & {
337
+ policy?: Partial<import("@frontegg/rest-api").TestConfig> | undefined;
338
+ }>], Partial<import("../interfaces").WithStatus & {
339
+ policy?: Partial<import("@frontegg/rest-api").TestConfig> | undefined;
340
+ }>, string, never, never>;
341
+ resetSecurityPolicyState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
342
+ setApiTokensLoader: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ApiTokensState/interfaces").ApiStateIndicator], import("./ApiTokensState/interfaces").ApiStateIndicator, string, never, never>;
343
+ setApiTokensError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./ApiTokensState/interfaces").ApiStateIndicator], import("./ApiTokensState/interfaces").ApiStateIndicator, string, never, never>;
344
+ setApiTokensState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ApiTokensState/interfaces").ApiTokensState>], Partial<import("./ApiTokensState/interfaces").ApiTokensState>, string, never, never>;
345
+ resetApiTokensState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
346
+ setTeamLoader: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./TeamState/interfaces").TeamStateIndicator], import("./TeamState/interfaces").TeamStateIndicator, string, never, never>;
347
+ setTeamError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./TeamState/interfaces").TeamStateIndicator], import("./TeamState/interfaces").TeamStateIndicator, string, never, never>;
348
+ setTeamState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./TeamState/interfaces").TeamState>], Partial<import("./TeamState/interfaces").TeamState>, string, never, never>;
349
+ resetTeamState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
350
+ setMfaState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./MfaState/interfaces").MFAState>], Partial<import("./MfaState/interfaces").MFAState>, string, never, never>;
351
+ resetMfaState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
352
+ setSSOLoader: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SSOState/interfaces").SSOStateIndicator], import("./SSOState/interfaces").SSOStateIndicator, string, never, never>;
353
+ setSSOError: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[import("./SSOState/interfaces").SSOStateIndicator], import("./SSOState/interfaces").SSOStateIndicator, string, never, never>;
354
+ setSSOState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SSOState/interfaces").SSOState>], Partial<import("./SSOState/interfaces").SSOState>, string, never, never>;
355
+ resetSSOState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
356
+ setProfileState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ProfileState/interfaces").ProfileState>], Partial<import("./ProfileState/interfaces").ProfileState>, string, never, never>;
357
+ resetProfileState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
358
+ setSignUpState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SignUp/interfaces").SignUpState>], Partial<import("./SignUp/interfaces").SignUpState>, string, never, never>;
359
+ resetSignUpState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
360
+ setResetPhoneNumberState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ResetPhoneNumberState/interfaces").ResetPhoneNumberState>], Partial<import("./ResetPhoneNumberState/interfaces").ResetPhoneNumberState>, string, never, never>;
361
+ resetResetPhoneNumberState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
362
+ setForgotPasswordState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ForgotPasswordState/interfaces").ForgotPasswordState>], Partial<import("./ForgotPasswordState/interfaces").ForgotPasswordState>, string, never, never>;
363
+ resetForgotPasswordState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
364
+ setAcceptInvitationState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./AcceptInvitationState/interfaces").AcceptInvitationState>], Partial<import("./AcceptInvitationState/interfaces").AcceptInvitationState>, string, never, never>;
365
+ resetAcceptInvitationState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
366
+ setActivateState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ActivateState/interfaces").ActivateAccountState>], Partial<import("./ActivateState/interfaces").ActivateAccountState>, string, never, never>;
367
+ resetActivateState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
368
+ setActivateStrategyState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./ActivateState/interfaces").ActivateAccountStrategyState>], Partial<import("./ActivateState/interfaces").ActivateAccountStrategyState>, string, never, never>;
369
+ setSocialLoginsState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./SocialLogins/interfaces").SocialLoginState>], Partial<import("./SocialLogins/interfaces").SocialLoginState>, string, never, never>;
370
+ resetSocialLoginsState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
371
+ setLoginState: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[Partial<import("./LoginState/interfaces").LoginState>], Partial<import("./LoginState/interfaces").LoginState>, string, never, never>;
372
+ resetLoginState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
373
+ resetState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
374
+ setState: import("@reduxjs/toolkit").ActionCreatorWithPayload<Partial<import("./interfaces").AuthState>, string>;
375
+ setUser: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./interfaces").User, string>;
376
+ };
377
+ };
378
+ export default _default;