@frontegg/redux-store 7.0.0-alpha.1 → 7.0.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/audits/AuditLogsState/actions.d.ts +9 -0
- package/audits/AuditLogsState/actions.js +103 -0
- package/audits/AuditLogsState/index.d.ts +3 -47
- package/audits/AuditLogsState/index.js +3 -39
- package/audits/AuditLogsState/state.d.ts +4 -0
- package/audits/AuditLogsState/state.js +12 -0
- package/audits/AuditsMetadataState/actions.d.ts +8 -0
- package/audits/AuditsMetadataState/actions.js +36 -0
- package/audits/AuditsMetadataState/index.d.ts +3 -35
- package/audits/AuditsMetadataState/index.js +3 -29
- package/audits/AuditsMetadataState/state.d.ts +4 -0
- package/audits/AuditsMetadataState/state.js +5 -0
- package/audits/index.d.ts +19 -39
- package/audits/index.js +11 -21
- package/audits/interfaces.d.ts +2 -0
- package/audits/interfaces.js +2 -0
- package/audits-backward-compatibility/actions.d.ts +12 -0
- package/audits-backward-compatibility/actions.js +256 -0
- package/audits-backward-compatibility/index.d.ts +5 -0
- package/audits-backward-compatibility/index.js +6 -0
- package/audits-backward-compatibility/interfaces.d.ts +60 -0
- package/audits-backward-compatibility/package.json +6 -0
- package/audits-backward-compatibility/state.d.ts +5 -0
- package/audits-backward-compatibility/state.js +24 -0
- package/auth/AcceptInvitationState/actions.d.ts +12 -0
- package/auth/AcceptInvitationState/actions.js +43 -0
- package/auth/AcceptInvitationState/index.d.ts +3 -117
- package/auth/AcceptInvitationState/index.js +3 -31
- package/auth/AcceptInvitationState/state.d.ts +4 -0
- package/auth/AcceptInvitationState/state.js +6 -0
- package/auth/AccountSettingsState/actions.d.ts +23 -0
- package/auth/AccountSettingsState/actions.js +93 -0
- package/auth/AccountSettingsState/index.d.ts +3 -124
- package/auth/AccountSettingsState/index.js +3 -33
- package/auth/AccountSettingsState/state.d.ts +4 -0
- package/auth/AccountSettingsState/state.js +5 -0
- package/auth/ActivateAccountState/actions.d.ts +26 -0
- package/auth/ActivateAccountState/actions.js +192 -0
- package/auth/ActivateAccountState/index.d.ts +3 -0
- package/auth/ActivateAccountState/index.js +3 -0
- package/auth/ActivateAccountState/state.d.ts +4 -0
- package/auth/ActivateAccountState/state.js +11 -0
- package/auth/ApiTokensState/actions.d.ts +16 -0
- package/auth/ApiTokensState/actions.js +371 -0
- package/auth/ApiTokensState/index.d.ts +3 -171
- package/auth/ApiTokensState/index.js +3 -71
- package/auth/ApiTokensState/interfaces.d.ts +4 -1
- package/auth/ApiTokensState/state.d.ts +4 -0
- package/auth/ApiTokensState/state.js +23 -0
- package/auth/ApplicationsState/actions.d.ts +25 -0
- package/auth/ApplicationsState/actions.js +221 -0
- package/auth/ApplicationsState/helpers.d.ts +3 -0
- package/auth/ApplicationsState/helpers.js +13 -0
- package/auth/ApplicationsState/index.d.ts +3 -0
- package/auth/ApplicationsState/index.js +3 -0
- package/auth/ApplicationsState/interfaces.d.ts +12 -0
- package/auth/ApplicationsState/state.d.ts +4 -0
- package/auth/ApplicationsState/state.js +9 -0
- package/auth/CustomLoginState/actions.d.ts +11 -0
- package/auth/CustomLoginState/actions.js +116 -0
- package/auth/CustomLoginState/index.d.ts +3 -119
- package/auth/CustomLoginState/index.js +3 -32
- package/auth/CustomLoginState/state.d.ts +4 -0
- package/auth/CustomLoginState/state.js +6 -0
- package/auth/Entitlements/actions.d.ts +9 -0
- package/auth/Entitlements/actions.js +40 -0
- package/auth/Entitlements/helpers.d.ts +38 -0
- package/auth/Entitlements/helpers.js +66 -0
- package/auth/Entitlements/index.d.ts +6 -2
- package/auth/Entitlements/index.js +6 -3
- package/auth/ForgotPasswordState/actions.d.ts +11 -0
- package/auth/ForgotPasswordState/actions.js +84 -0
- package/auth/ForgotPasswordState/index.d.ts +3 -121
- package/auth/ForgotPasswordState/index.js +3 -40
- package/auth/ForgotPasswordState/interfaces.d.ts +2 -2
- package/auth/ForgotPasswordState/state.d.ts +4 -0
- package/auth/ForgotPasswordState/state.js +9 -0
- package/auth/GroupsDialogsState/actions.d.ts +17 -0
- package/auth/GroupsDialogsState/actions.js +77 -0
- package/auth/GroupsDialogsState/index.d.ts +3 -0
- package/auth/GroupsDialogsState/index.js +3 -0
- package/auth/GroupsDialogsState/interfaces.d.ts +32 -0
- package/auth/GroupsDialogsState/state.d.ts +4 -0
- package/auth/GroupsDialogsState/state.js +25 -0
- package/auth/GroupsState/actions.d.ts +21 -0
- package/auth/GroupsState/actions.js +403 -0
- package/auth/GroupsState/index.d.ts +3 -178
- package/auth/GroupsState/index.js +3 -58
- package/auth/GroupsState/interfaces.d.ts +1 -32
- package/auth/GroupsState/interfaces.js +2 -0
- package/auth/GroupsState/state.d.ts +4 -0
- package/auth/GroupsState/state.js +8 -0
- package/auth/ImpersonateState/actions.d.ts +8 -0
- package/auth/ImpersonateState/actions.js +52 -0
- package/auth/ImpersonateState/index.d.ts +3 -0
- package/auth/ImpersonateState/index.js +3 -0
- package/auth/ImpersonateState/interfaces.d.ts +14 -0
- package/auth/ImpersonateState/state.d.ts +4 -0
- package/auth/ImpersonateState/state.js +7 -0
- package/auth/LoginState/actions/afterAuthNavigation.actions.d.ts +11 -0
- package/auth/LoginState/actions/afterAuthNavigation.actions.js +183 -0
- package/auth/LoginState/actions/handleVerifyMFAResponse.actions.d.ts +8 -0
- package/auth/LoginState/actions/handleVerifyMFAResponse.actions.js +92 -0
- package/auth/LoginState/actions/hostedLoginAuthorize.actions.d.ts +15 -0
- package/auth/LoginState/actions/hostedLoginAuthorize.actions.js +203 -0
- package/auth/LoginState/actions/index.d.ts +79 -0
- package/auth/LoginState/actions/index.js +1298 -0
- package/auth/LoginState/actions/mfaRequiredState.actions.d.ts +11 -0
- package/auth/LoginState/actions/mfaRequiredState.actions.js +63 -0
- package/auth/LoginState/actions/mfaWithAuthenticator.actions.d.ts +8 -0
- package/auth/LoginState/actions/mfaWithAuthenticator.actions.js +137 -0
- package/auth/LoginState/actions/mfaWithEmailCode.actions.d.ts +10 -0
- package/auth/LoginState/actions/mfaWithEmailCode.actions.js +101 -0
- package/auth/LoginState/actions/mfaWithSMS.actions.d.ts +10 -0
- package/auth/LoginState/actions/mfaWithSMS.actions.js +108 -0
- package/auth/LoginState/actions/mfaWithWebAuthn.actions.d.ts +10 -0
- package/auth/LoginState/actions/mfaWithWebAuthn.actions.js +119 -0
- package/auth/LoginState/consts.d.ts +6 -22
- package/auth/LoginState/consts.js +7 -6
- package/auth/LoginState/helpers.d.ts +31 -0
- package/auth/LoginState/helpers.js +131 -0
- package/auth/LoginState/index.d.ts +3 -233
- package/auth/LoginState/index.js +3 -142
- package/auth/LoginState/interfaces.d.ts +29 -1
- package/auth/LoginState/interfaces.js +7 -1
- package/auth/LoginState/state.d.ts +4 -0
- package/auth/LoginState/state.js +10 -0
- package/auth/MSP/actions.d.ts +28 -0
- package/auth/MSP/actions.js +962 -0
- package/auth/MSP/dialogs/actions.d.ts +25 -0
- package/auth/MSP/dialogs/actions.js +124 -0
- package/auth/MSP/dialogs/state.d.ts +4 -0
- package/auth/MSP/dialogs/state.js +76 -0
- package/auth/MSP/helpers/appendChildrenToNode.d.ts +2 -0
- package/auth/MSP/helpers/getAccountsWithUsersCount.d.ts +15 -0
- package/auth/MSP/helpers/getAccountsWithUsersCount.js +21 -0
- package/auth/MSP/helpers/index.d.ts +5 -0
- package/auth/MSP/helpers/index.js +5 -0
- package/auth/MSP/helpers/removeNodeFromTree.d.ts +2 -0
- package/auth/MSP/helpers/updateNodeIsReseller.d.ts +2 -0
- package/auth/MSP/helpers/updateNodeIsReseller.js +14 -0
- package/auth/MSP/helpers/updateNodeName.d.ts +2 -0
- package/auth/MSP/helpers/updateNodeSubAccountAccessType.d.ts +3 -0
- package/auth/MSP/helpers/updateNodeSubAccountAccessType.js +13 -0
- package/auth/MSP/index.d.ts +5 -1
- package/auth/MSP/index.js +5 -1
- package/auth/MSP/interfaces/dialogsStateTypes.d.ts +63 -0
- package/auth/MSP/interfaces/stateTypes.d.ts +114 -0
- package/auth/MSP/interfaces/stateTypes.js +24 -0
- package/auth/MSP/state.d.ts +4 -0
- package/auth/MSP/state.js +38 -0
- package/auth/MfaState/actions.d.ts +24 -0
- package/auth/MfaState/actions.js +431 -0
- package/auth/MfaState/index.d.ts +3 -157
- package/auth/MfaState/index.js +3 -66
- package/auth/MfaState/interfaces.d.ts +5 -4
- package/auth/MfaState/interfaces.js +1 -0
- package/auth/MfaState/state.d.ts +4 -0
- package/auth/MfaState/state.js +8 -0
- package/auth/PasskeysState/actions.d.ts +12 -0
- package/auth/PasskeysState/actions.js +102 -0
- package/auth/PasskeysState/index.d.ts +3 -125
- package/auth/PasskeysState/index.js +3 -33
- package/auth/PasskeysState/state.d.ts +4 -0
- package/auth/PasskeysState/state.js +7 -0
- package/auth/ProfileState/actions.d.ts +11 -0
- package/auth/ProfileState/actions.js +112 -0
- package/auth/ProfileState/index.d.ts +3 -122
- package/auth/ProfileState/index.js +3 -35
- package/auth/ProfileState/state.d.ts +4 -0
- package/auth/ProfileState/state.js +6 -0
- package/auth/ProvisioningState/actions.d.ts +21 -0
- package/auth/ProvisioningState/actions.js +130 -0
- package/auth/ProvisioningState/index.d.ts +3 -0
- package/auth/ProvisioningState/index.js +3 -0
- package/auth/ProvisioningState/state.d.ts +4 -0
- package/auth/ProvisioningState/state.js +5 -0
- package/auth/ResetPhoneNumberState/actions.d.ts +11 -0
- package/auth/ResetPhoneNumberState/actions.js +115 -0
- package/auth/ResetPhoneNumberState/index.d.ts +3 -128
- package/auth/ResetPhoneNumberState/index.js +3 -38
- package/auth/ResetPhoneNumberState/state.d.ts +4 -0
- package/auth/ResetPhoneNumberState/state.js +7 -0
- package/auth/RolesState/actions.d.ts +24 -0
- package/auth/RolesState/actions.js +274 -0
- package/auth/RolesState/index.d.ts +3 -132
- package/auth/RolesState/index.js +3 -48
- package/auth/RolesState/interfaces.d.ts +17 -2
- package/auth/RolesState/interfaces.js +8 -1
- package/auth/RolesState/state.d.ts +4 -0
- package/auth/RolesState/state.js +9 -0
- package/auth/SSOState/actions/actions.v1.d.ts +20 -0
- package/auth/SSOState/actions/actions.v1.js +387 -0
- package/auth/SSOState/actions/actions.v2.d.ts +19 -0
- package/auth/SSOState/actions/actions.v2.js +359 -0
- package/auth/SSOState/actions/index.d.ts +75 -0
- package/auth/SSOState/actions/index.js +6 -0
- package/auth/SSOState/index.d.ts +3 -274
- package/auth/SSOState/index.js +3 -101
- package/auth/SSOState/state.d.ts +4 -0
- package/auth/SSOState/state.js +10 -0
- package/auth/Security/RestrictionsState/actions.d.ts +24 -0
- package/auth/Security/RestrictionsState/actions.js +444 -0
- package/auth/Security/RestrictionsState/index.d.ts +3 -214
- package/auth/Security/RestrictionsState/index.js +3 -63
- package/auth/Security/RestrictionsState/state.d.ts +4 -0
- package/auth/Security/RestrictionsState/state.js +18 -0
- package/auth/Security/SecurityCenterState/actions.d.ts +17 -0
- package/auth/Security/SecurityCenterState/actions.js +308 -0
- package/auth/Security/SecurityCenterState/index.d.ts +3 -156
- package/auth/Security/SecurityCenterState/index.js +3 -81
- package/auth/Security/SecurityCenterState/interfaces.d.ts +28 -1
- package/auth/Security/SecurityCenterState/interfaces.js +10 -1
- package/auth/Security/SecurityCenterState/state.d.ts +4 -0
- package/auth/Security/SecurityCenterState/state.js +40 -0
- package/auth/Security/SecurityPolicyState/actions.d.ts +35 -0
- package/auth/Security/SecurityPolicyState/actions.js +413 -0
- package/auth/Security/SecurityPolicyState/index.d.ts +3 -802
- package/auth/Security/SecurityPolicyState/index.js +3 -90
- package/auth/Security/SecurityPolicyState/interfaces.d.ts +1 -1
- package/auth/Security/SecurityPolicyState/state.d.ts +4 -0
- package/auth/Security/SecurityPolicyState/state.js +37 -0
- package/auth/Security/SessionsPolicyState/actions.d.ts +10 -0
- package/auth/Security/SessionsPolicyState/actions.js +57 -0
- package/auth/Security/SessionsPolicyState/index.d.ts +3 -120
- package/auth/Security/SessionsPolicyState/index.js +3 -32
- package/auth/Security/SessionsPolicyState/state.d.ts +4 -0
- package/auth/Security/SessionsPolicyState/state.js +6 -0
- package/auth/SessionsState/actions.d.ts +14 -0
- package/auth/SessionsState/actions.js +111 -0
- package/auth/SessionsState/index.d.ts +3 -137
- package/auth/SessionsState/index.js +3 -37
- package/auth/SessionsState/interfaces.d.ts +1 -0
- package/auth/SessionsState/state.d.ts +4 -0
- package/auth/SessionsState/state.js +6 -0
- package/auth/SignUpState/actions.d.ts +10 -0
- package/auth/SignUpState/actions.js +146 -0
- package/auth/SignUpState/index.d.ts +3 -0
- package/auth/SignUpState/index.js +3 -0
- package/auth/SignUpState/state.d.ts +4 -0
- package/auth/SignUpState/state.js +10 -0
- package/auth/SmsState/actions.d.ts +15 -0
- package/auth/SmsState/actions.js +181 -0
- package/auth/SmsState/index.d.ts +3 -0
- package/auth/SmsState/index.js +3 -0
- package/auth/SmsState/interfaces.d.ts +10 -0
- package/auth/SmsState/state.d.ts +4 -0
- package/auth/SmsState/state.js +7 -0
- package/auth/SocialLoginState/actions.d.ts +14 -0
- package/auth/SocialLoginState/actions.js +163 -0
- package/auth/SocialLoginState/index.d.ts +3 -0
- package/auth/SocialLoginState/index.js +3 -0
- package/auth/SocialLoginState/state.d.ts +4 -0
- package/auth/SocialLoginState/state.js +7 -0
- package/auth/StepUpState/actions/generateStepUpSession.actions.d.ts +6 -0
- package/auth/StepUpState/actions/generateStepUpSession.actions.js +104 -0
- package/auth/StepUpState/actions/index.d.ts +18 -0
- package/auth/StepUpState/actions/index.js +98 -0
- package/auth/StepUpState/actions/stepUpHostedLogin.actions.d.ts +6 -0
- package/auth/StepUpState/actions/stepUpHostedLogin.actions.js +32 -0
- package/auth/StepUpState/consts.d.ts +21 -0
- package/auth/StepUpState/consts.js +25 -0
- package/auth/StepUpState/helpers.d.ts +29 -0
- package/auth/StepUpState/helpers.js +54 -0
- package/auth/StepUpState/index.d.ts +3 -0
- package/auth/StepUpState/index.js +3 -0
- package/auth/StepUpState/interfaces.d.ts +36 -0
- package/auth/StepUpState/interfaces.js +1 -0
- package/auth/StepUpState/state.d.ts +4 -0
- package/auth/StepUpState/state.js +7 -0
- package/auth/TeamState/actions/activation-link.actions.d.ts +9 -0
- package/auth/TeamState/actions/activation-link.actions.js +84 -0
- package/auth/TeamState/actions/index.d.ts +52 -0
- package/auth/TeamState/actions/index.js +88 -0
- package/auth/TeamState/actions/invitation-link.actions.d.ts +11 -0
- package/auth/TeamState/actions/invitation-link.actions.js +131 -0
- package/auth/TeamState/actions/sub-tenants.actions.d.ts +11 -0
- package/auth/TeamState/actions/sub-tenants.actions.js +214 -0
- package/auth/TeamState/actions/users.actions.d.ts +27 -0
- package/auth/TeamState/actions/users.actions.js +580 -0
- package/auth/TeamState/index.d.ts +3 -211
- package/auth/TeamState/index.js +3 -133
- package/auth/TeamState/interfaces.d.ts +19 -2
- package/auth/TeamState/interfaces.js +2 -0
- package/auth/TeamState/state.d.ts +4 -0
- package/auth/TeamState/state.js +41 -0
- package/auth/TenantsState/actions.d.ts +18 -0
- package/auth/TenantsState/actions.js +109 -0
- package/auth/TenantsState/index.d.ts +3 -136
- package/auth/TenantsState/index.js +3 -42
- package/auth/TenantsState/interfaces.d.ts +3 -1
- package/auth/TenantsState/state.d.ts +4 -0
- package/auth/TenantsState/state.js +8 -0
- package/auth/helpers.d.ts +20 -0
- package/auth/helpers.js +55 -0
- package/auth/index.d.ts +134 -745
- package/auth/index.js +205 -67
- package/auth/interfaces.d.ts +101 -71
- package/auth/interfaces.js +2 -0
- package/connectivity/actions.d.ts +44 -0
- package/connectivity/actions.js +534 -0
- package/connectivity/consts.d.ts +0 -3
- package/connectivity/consts.js +3 -23
- package/connectivity/index.d.ts +4 -40
- package/connectivity/index.js +3 -16
- package/connectivity/interfaces.d.ts +6 -5
- package/connectivity/state.d.ts +4 -0
- package/connectivity/state.js +11 -0
- package/constants.d.ts +2 -6
- package/constants.js +2 -6
- package/helpers/common.d.ts +8 -0
- package/helpers/common.js +44 -0
- package/helpers/converters.d.ts +3 -0
- package/helpers/converters.js +64 -0
- package/helpers/encoders.d.ts +2 -0
- package/helpers/encoders.js +46 -0
- package/helpers/gtm.d.ts +27 -0
- package/helpers/gtm.js +25 -0
- package/helpers/index.d.ts +6 -0
- package/helpers/index.js +6 -0
- package/helpers/package.json +6 -0
- package/helpers/random.d.ts +4 -0
- package/helpers/random.js +28 -0
- package/helpers/sha256.d.ts +21 -0
- package/helpers/sha256.js +424 -0
- package/index.d.ts +11 -12
- package/index.js +13 -11
- package/interfaces.d.ts +80 -6
- package/mocks/audits-mocks/auditLogsActions.mocks.d.ts +13 -0
- package/mocks/audits-mocks/auditLogsActions.mocks.js +52 -0
- package/mocks/audits-mocks/auditsMetadataActions.mocks.d.ts +7 -0
- package/mocks/audits-mocks/auditsMetadataActions.mocks.js +28 -0
- package/mocks/audits-mocks/index.d.ts +15 -0
- package/mocks/audits-mocks/index.js +8 -0
- package/mocks/auth-mocks/acceptInvitationActions.mocks.d.ts +10 -0
- package/mocks/auth-mocks/acceptInvitationActions.mocks.js +6 -0
- package/mocks/auth-mocks/accountSettingsActions.mocks.d.ts +22 -0
- package/mocks/auth-mocks/accountSettingsActions.mocks.js +52 -0
- package/mocks/auth-mocks/activateAccountActions.mocks.d.ts +24 -0
- package/mocks/auth-mocks/activateAccountActions.mocks.js +7 -0
- package/mocks/auth-mocks/allAccountsActions.mocks.d.ts +37 -0
- package/mocks/auth-mocks/allAccountsActions.mocks.js +6 -0
- package/mocks/auth-mocks/apiTokensActions.mocks.d.ts +17 -0
- package/mocks/auth-mocks/apiTokensActions.mocks.js +127 -0
- package/mocks/auth-mocks/applicationsActions.mocks.d.ts +23 -0
- package/mocks/auth-mocks/applicationsActions.mocks.js +7 -0
- package/mocks/auth-mocks/customLoginActions.mocks.d.ts +11 -0
- package/mocks/auth-mocks/customLoginActions.mocks.js +32 -0
- package/mocks/auth-mocks/entitlementsActions.mocks.d.ts +7 -0
- package/mocks/auth-mocks/entitlementsActions.mocks.js +6 -0
- package/mocks/auth-mocks/forgotPasswordActions.mocks.d.ts +10 -0
- package/mocks/auth-mocks/forgotPasswordActions.mocks.js +30 -0
- package/mocks/auth-mocks/groupsActions.mocks.d.ts +33 -0
- package/mocks/auth-mocks/groupsActions.mocks.js +234 -0
- package/mocks/auth-mocks/impersonateActions.mocks.d.ts +7 -0
- package/mocks/auth-mocks/impersonateActions.mocks.js +6 -0
- package/mocks/auth-mocks/index.d.ts +6 -0
- package/mocks/auth-mocks/index.js +130 -0
- package/mocks/auth-mocks/loginActions.mocks.d.ts +77 -0
- package/mocks/auth-mocks/loginActions.mocks.js +39 -0
- package/mocks/auth-mocks/mfaActions.mocks.d.ts +29 -0
- package/mocks/auth-mocks/mfaActions.mocks.js +220 -0
- package/mocks/auth-mocks/passkeysActions.mocks.d.ts +11 -0
- package/mocks/auth-mocks/passkeysActions.mocks.js +6 -0
- package/mocks/auth-mocks/profileActions.mocks.d.ts +10 -0
- package/mocks/auth-mocks/profileActions.mocks.js +67 -0
- package/mocks/auth-mocks/provisioningActions.mocks.d.ts +19 -0
- package/mocks/auth-mocks/provisioningActions.mocks.js +6 -0
- package/mocks/auth-mocks/resetPhoneNumberActions.mocks.d.ts +12 -0
- package/mocks/auth-mocks/resetPhoneNumberActions.mocks.js +6 -0
- package/mocks/auth-mocks/rolesActions.mocks.d.ts +17 -0
- package/mocks/auth-mocks/rolesActions.mocks.js +33 -0
- package/mocks/auth-mocks/security/restrictionsActions.mocks.d.ts +23 -0
- package/mocks/auth-mocks/security/restrictionsActions.mocks.js +248 -0
- package/mocks/auth-mocks/security/securityCenterActions.mocks.d.ts +16 -0
- package/mocks/auth-mocks/security/securityCenterActions.mocks.js +102 -0
- package/mocks/auth-mocks/security/securityPolicyActions.mocks.d.ts +56 -0
- package/mocks/auth-mocks/security/securityPolicyActions.mocks.js +179 -0
- package/mocks/auth-mocks/security/sessionsPolicyActions.mocks.d.ts +10 -0
- package/mocks/auth-mocks/security/sessionsPolicyActions.mocks.js +35 -0
- package/mocks/auth-mocks/sessionsActions.mocks.d.ts +13 -0
- package/mocks/auth-mocks/sessionsActions.mocks.js +44 -0
- package/mocks/auth-mocks/signUpActions.mocks.d.ts +9 -0
- package/mocks/auth-mocks/signUpActions.mocks.js +6 -0
- package/mocks/auth-mocks/smsActions.mocks.d.ts +12 -0
- package/mocks/auth-mocks/smsActions.mocks.js +6 -0
- package/mocks/auth-mocks/socialLoginActions.mocks.d.ts +12 -0
- package/mocks/auth-mocks/socialLoginActions.mocks.js +6 -0
- package/mocks/auth-mocks/ssoActions.mocks.d.ts +77 -0
- package/mocks/auth-mocks/ssoActions.mocks.js +128 -0
- package/mocks/auth-mocks/stepUpActions.mocks.d.ts +15 -0
- package/mocks/auth-mocks/stepUpActions.mocks.js +6 -0
- package/mocks/auth-mocks/teamActions.mocks.d.ts +52 -0
- package/mocks/auth-mocks/teamActions.mocks.js +378 -0
- package/mocks/auth-mocks/tenantsActions.mocks.d.ts +16 -0
- package/mocks/auth-mocks/tenantsActions.mocks.js +18 -0
- package/mocks/connectivity-mocks/index.d.ts +41 -0
- package/mocks/connectivity-mocks/index.js +7 -0
- package/mocks/dummy.d.ts +41 -0
- package/mocks/dummy.js +965 -0
- package/mocks/helpers.d.ts +1 -0
- package/mocks/helpers.js +16 -0
- package/mocks/index.d.ts +68 -0
- package/mocks/index.js +25 -0
- package/mocks/package.json +6 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/index.d.ts +4 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/index.js +17 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/informationActions.mocks.d.ts +8 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/informationActions.mocks.js +36 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/invoicesActions.mocks.d.ts +10 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/invoicesActions.mocks.js +27 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/paymentMethodActions.mocks.d.ts +11 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/paymentMethodActions.mocks.js +20 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/subscriptionActions.mocks.d.ts +14 -0
- package/mocks/subscriptions-mocks/billingActions-mocks/subscriptionActions.mocks.js +21 -0
- package/mocks/subscriptions-mocks/checkoutActions.mocks.d.ts +11 -0
- package/mocks/subscriptions-mocks/checkoutActions.mocks.js +7 -0
- package/mocks/subscriptions-mocks/configActions.mocks.d.ts +7 -0
- package/mocks/subscriptions-mocks/configActions.mocks.js +23 -0
- package/mocks/subscriptions-mocks/index.d.ts +3 -0
- package/mocks/subscriptions-mocks/index.js +23 -0
- package/mocks/subscriptions-mocks/plansActions.mocks.d.ts +7 -0
- package/mocks/subscriptions-mocks/plansActions.mocks.js +28 -0
- package/mocks/subscriptions-mocks/stripeActions.mocks.d.ts +5 -0
- package/mocks/subscriptions-mocks/stripeActions.mocks.js +6 -0
- package/mocks/subscriptions-mocks/vendorPublicConfigActions.mocks.d.ts +9 -0
- package/mocks/subscriptions-mocks/vendorPublicConfigActions.mocks.js +18 -0
- package/mocks/vendor-mocks/index.d.ts +7 -0
- package/mocks/vendor-mocks/index.js +19 -0
- package/node/audits/AuditLogsState/actions.js +111 -0
- package/node/audits/AuditLogsState/index.js +14 -41
- package/node/audits/AuditLogsState/state.js +20 -0
- package/node/audits/AuditsMetadataState/actions.js +43 -0
- package/node/audits/AuditsMetadataState/index.js +14 -31
- package/node/audits/AuditsMetadataState/state.js +13 -0
- package/node/audits/index.js +13 -117
- package/node/audits/interfaces.js +22 -0
- package/node/audits-backward-compatibility/actions.js +265 -0
- package/node/audits-backward-compatibility/index.js +20 -0
- package/node/audits-backward-compatibility/state.js +32 -0
- package/node/auth/AcceptInvitationState/actions.js +50 -0
- package/node/auth/AcceptInvitationState/index.js +15 -33
- package/node/auth/AcceptInvitationState/state.js +14 -0
- package/node/auth/AccountSettingsState/actions.js +101 -0
- package/node/auth/AccountSettingsState/index.js +15 -35
- package/node/auth/AccountSettingsState/state.js +13 -0
- package/node/auth/ActivateAccountState/actions.js +200 -0
- package/node/auth/ActivateAccountState/index.js +20 -0
- package/node/auth/ActivateAccountState/state.js +19 -0
- package/node/auth/ApiTokensState/actions.js +379 -0
- package/node/auth/ApiTokensState/index.js +15 -73
- package/node/auth/ApiTokensState/state.js +31 -0
- package/node/auth/ApplicationsState/actions.js +229 -0
- package/node/auth/ApplicationsState/helpers.js +20 -0
- package/node/auth/ApplicationsState/index.js +20 -0
- package/node/auth/ApplicationsState/state.js +17 -0
- package/node/auth/CustomLoginState/actions.js +124 -0
- package/node/auth/CustomLoginState/index.js +15 -34
- package/node/auth/CustomLoginState/state.js +14 -0
- package/node/auth/Entitlements/actions.js +47 -0
- package/node/auth/Entitlements/helpers.js +77 -0
- package/node/auth/Entitlements/index.js +7 -21
- package/node/auth/ForgotPasswordState/actions.js +92 -0
- package/node/auth/ForgotPasswordState/index.js +15 -42
- package/node/auth/ForgotPasswordState/state.js +17 -0
- package/node/auth/GroupsDialogsState/actions.js +85 -0
- package/node/auth/GroupsDialogsState/index.js +20 -0
- package/node/auth/GroupsDialogsState/state.js +33 -0
- package/node/auth/GroupsState/actions.js +411 -0
- package/node/auth/GroupsState/index.js +15 -61
- package/node/auth/GroupsState/interfaces.js +1 -0
- package/node/auth/GroupsState/state.js +16 -0
- package/node/auth/ImpersonateState/actions.js +60 -0
- package/node/auth/ImpersonateState/index.js +20 -0
- package/node/auth/ImpersonateState/state.js +15 -0
- package/node/auth/LoginState/actions/afterAuthNavigation.actions.js +191 -0
- package/node/auth/LoginState/actions/handleVerifyMFAResponse.actions.js +98 -0
- package/node/auth/LoginState/actions/hostedLoginAuthorize.actions.js +211 -0
- package/node/auth/LoginState/actions/index.js +1304 -0
- package/node/auth/LoginState/actions/mfaRequiredState.actions.js +71 -0
- package/node/auth/LoginState/actions/mfaWithAuthenticator.actions.js +145 -0
- package/node/auth/LoginState/actions/mfaWithEmailCode.actions.js +109 -0
- package/node/auth/LoginState/actions/mfaWithSMS.actions.js +116 -0
- package/node/auth/LoginState/actions/mfaWithWebAuthn.actions.js +127 -0
- package/node/auth/LoginState/consts.js +7 -6
- package/node/auth/LoginState/helpers.js +150 -0
- package/node/auth/LoginState/index.js +11 -146
- package/node/auth/LoginState/interfaces.js +9 -2
- package/node/auth/LoginState/state.js +18 -0
- package/node/auth/MSP/actions.js +970 -0
- package/node/auth/MSP/dialogs/actions.js +132 -0
- package/node/auth/MSP/dialogs/state.js +84 -0
- package/node/auth/MSP/helpers/getAccountsWithUsersCount.js +28 -0
- package/node/auth/MSP/helpers/index.js +60 -0
- package/node/auth/MSP/helpers/updateNodeIsReseller.js +22 -0
- package/node/auth/MSP/helpers/updateNodeSubAccountAccessType.js +21 -0
- package/node/auth/MSP/index.js +29 -11
- package/node/auth/MSP/interfaces/stateTypes.js +29 -0
- package/node/auth/MSP/state.js +46 -0
- package/node/auth/MfaState/actions.js +439 -0
- package/node/auth/MfaState/index.js +15 -68
- package/node/auth/MfaState/interfaces.js +1 -0
- package/node/auth/MfaState/state.js +16 -0
- package/node/auth/PasskeysState/actions.js +109 -0
- package/node/auth/PasskeysState/index.js +15 -35
- package/node/auth/PasskeysState/state.js +15 -0
- package/node/auth/ProfileState/actions.js +120 -0
- package/node/auth/ProfileState/index.js +15 -37
- package/node/auth/ProfileState/state.js +14 -0
- package/node/auth/ProvisioningState/actions.js +138 -0
- package/node/auth/ProvisioningState/index.js +20 -0
- package/node/auth/ProvisioningState/state.js +13 -0
- package/node/auth/ResetPhoneNumberState/actions.js +123 -0
- package/node/auth/ResetPhoneNumberState/index.js +15 -40
- package/node/auth/ResetPhoneNumberState/state.js +15 -0
- package/node/auth/RolesState/actions.js +282 -0
- package/node/auth/RolesState/index.js +15 -50
- package/node/auth/RolesState/interfaces.js +11 -1
- package/node/auth/RolesState/state.js +17 -0
- package/node/auth/SSOState/actions/actions.v1.js +395 -0
- package/node/auth/SSOState/actions/actions.v2.js +367 -0
- package/node/auth/SSOState/actions/index.js +14 -0
- package/node/auth/SSOState/index.js +15 -103
- package/node/auth/SSOState/state.js +18 -0
- package/node/auth/Security/RestrictionsState/actions.js +452 -0
- package/node/auth/Security/RestrictionsState/index.js +14 -64
- package/node/auth/Security/RestrictionsState/state.js +26 -0
- package/node/auth/Security/SecurityCenterState/actions.js +316 -0
- package/node/auth/Security/SecurityCenterState/index.js +14 -82
- package/node/auth/Security/SecurityCenterState/interfaces.js +13 -1
- package/node/auth/Security/SecurityCenterState/state.js +48 -0
- package/node/auth/Security/SecurityPolicyState/actions.js +421 -0
- package/node/auth/Security/SecurityPolicyState/index.js +14 -91
- package/node/auth/Security/SecurityPolicyState/state.js +45 -0
- package/node/auth/Security/SessionsPolicyState/actions.js +65 -0
- package/node/auth/Security/SessionsPolicyState/index.js +15 -34
- package/node/auth/Security/SessionsPolicyState/state.js +14 -0
- package/node/auth/SessionsState/actions.js +118 -0
- package/node/auth/SessionsState/index.js +15 -39
- package/node/auth/SessionsState/state.js +14 -0
- package/node/auth/SignUpState/actions.js +154 -0
- package/node/auth/SignUpState/index.js +20 -0
- package/node/auth/SignUpState/state.js +18 -0
- package/node/auth/SmsState/actions.js +189 -0
- package/node/auth/SmsState/index.js +20 -0
- package/node/auth/SmsState/state.js +15 -0
- package/node/auth/SocialLoginState/actions.js +171 -0
- package/node/auth/SocialLoginState/index.js +20 -0
- package/node/auth/SocialLoginState/state.js +15 -0
- package/node/auth/StepUpState/actions/generateStepUpSession.actions.js +111 -0
- package/node/auth/StepUpState/actions/index.js +106 -0
- package/node/auth/StepUpState/actions/stepUpHostedLogin.actions.js +39 -0
- package/node/auth/StepUpState/consts.js +36 -0
- package/node/auth/StepUpState/helpers.js +63 -0
- package/node/auth/StepUpState/index.js +20 -0
- package/node/auth/StepUpState/interfaces.js +5 -0
- package/node/auth/StepUpState/state.js +15 -0
- package/node/auth/TeamState/actions/activation-link.actions.js +92 -0
- package/node/auth/TeamState/actions/index.js +96 -0
- package/node/auth/TeamState/actions/invitation-link.actions.js +139 -0
- package/node/auth/TeamState/actions/sub-tenants.actions.js +222 -0
- package/node/auth/TeamState/actions/users.actions.js +588 -0
- package/node/auth/TeamState/index.js +14 -134
- package/node/auth/TeamState/interfaces.js +2 -0
- package/node/auth/TeamState/state.js +49 -0
- package/node/auth/TenantsState/actions.js +116 -0
- package/node/auth/TenantsState/index.js +15 -44
- package/node/auth/TenantsState/state.js +16 -0
- package/node/auth/helpers.js +107 -0
- package/node/auth/index.js +237 -422
- package/node/auth/interfaces.js +1 -1
- package/node/connectivity/actions.js +542 -0
- package/node/connectivity/consts.js +4 -28
- package/node/connectivity/index.js +7 -55
- package/node/connectivity/state.js +19 -0
- package/node/constants.js +30 -14
- package/node/helpers/common.js +57 -0
- package/node/helpers/converters.js +73 -0
- package/node/helpers/encoders.js +54 -0
- package/node/helpers/gtm.js +31 -0
- package/node/helpers/index.js +71 -0
- package/node/helpers/random.js +37 -0
- package/node/index.js +90 -72
- package/node/mocks/audits-mocks/auditLogsActions.mocks.js +59 -0
- package/node/mocks/audits-mocks/auditsMetadataActions.mocks.js +35 -0
- package/node/mocks/audits-mocks/index.js +16 -0
- package/node/mocks/auth-mocks/acceptInvitationActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/accountSettingsActions.mocks.js +60 -0
- package/node/mocks/auth-mocks/activateAccountActions.mocks.js +14 -0
- package/node/mocks/auth-mocks/allAccountsActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/apiTokensActions.mocks.js +135 -0
- package/node/mocks/auth-mocks/applicationsActions.mocks.js +14 -0
- package/node/mocks/auth-mocks/customLoginActions.mocks.js +39 -0
- package/node/mocks/auth-mocks/entitlementsActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/forgotPasswordActions.mocks.js +37 -0
- package/node/mocks/auth-mocks/groupsActions.mocks.js +242 -0
- package/node/mocks/auth-mocks/impersonateActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/index.js +140 -0
- package/node/mocks/auth-mocks/loginActions.mocks.js +46 -0
- package/node/mocks/auth-mocks/mfaActions.mocks.js +228 -0
- package/node/mocks/auth-mocks/passkeysActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/profileActions.mocks.js +75 -0
- package/node/mocks/auth-mocks/provisioningActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/resetPhoneNumberActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/rolesActions.mocks.js +40 -0
- package/node/mocks/auth-mocks/security/restrictionsActions.mocks.js +256 -0
- package/node/mocks/auth-mocks/security/securityCenterActions.mocks.js +109 -0
- package/node/mocks/auth-mocks/security/securityPolicyActions.mocks.js +187 -0
- package/node/mocks/auth-mocks/security/sessionsPolicyActions.mocks.js +43 -0
- package/node/mocks/auth-mocks/sessionsActions.mocks.js +51 -0
- package/node/mocks/auth-mocks/signUpActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/smsActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/socialLoginActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/ssoActions.mocks.js +136 -0
- package/node/mocks/auth-mocks/stepUpActions.mocks.js +13 -0
- package/node/mocks/auth-mocks/teamActions.mocks.js +386 -0
- package/node/mocks/auth-mocks/tenantsActions.mocks.js +25 -0
- package/node/mocks/connectivity-mocks/index.js +14 -0
- package/node/mocks/dummy.js +1010 -0
- package/node/mocks/helpers.js +24 -0
- package/node/mocks/index.js +32 -0
- package/node/mocks/subscriptions-mocks/billingActions-mocks/index.js +25 -0
- package/node/mocks/subscriptions-mocks/billingActions-mocks/informationActions.mocks.js +44 -0
- package/node/mocks/subscriptions-mocks/billingActions-mocks/invoicesActions.mocks.js +35 -0
- package/node/mocks/subscriptions-mocks/billingActions-mocks/paymentMethodActions.mocks.js +27 -0
- package/node/mocks/subscriptions-mocks/billingActions-mocks/subscriptionActions.mocks.js +28 -0
- package/node/mocks/subscriptions-mocks/checkoutActions.mocks.js +14 -0
- package/node/mocks/subscriptions-mocks/configActions.mocks.js +30 -0
- package/node/mocks/subscriptions-mocks/index.js +31 -0
- package/node/mocks/subscriptions-mocks/plansActions.mocks.js +36 -0
- package/node/mocks/subscriptions-mocks/stripeActions.mocks.js +13 -0
- package/node/mocks/subscriptions-mocks/vendorPublicConfigActions.mocks.js +25 -0
- package/node/mocks/vendor-mocks/index.js +26 -0
- package/node/subscriptions/Billing/Information/actions.js +96 -0
- package/node/subscriptions/Billing/Information/index.js +13 -28
- package/node/subscriptions/Billing/Information/state.js +15 -0
- package/node/subscriptions/Billing/Invoices/actions.js +80 -0
- package/node/subscriptions/Billing/Invoices/index.js +11 -40
- package/node/subscriptions/Billing/Invoices/state.js +20 -0
- package/node/subscriptions/Billing/PaymentMethod/actions.js +92 -0
- package/node/subscriptions/Billing/PaymentMethod/index.js +11 -37
- package/node/subscriptions/Billing/PaymentMethod/interfaces.js +0 -1
- package/node/subscriptions/Billing/PaymentMethod/state.js +15 -0
- package/node/subscriptions/Billing/Subscription/actions.js +145 -0
- package/node/subscriptions/Billing/Subscription/index.js +11 -38
- package/node/subscriptions/Billing/Subscription/state.js +23 -0
- package/node/subscriptions/Billing/index.js +25 -22
- package/node/subscriptions/Checkout/actions.js +108 -0
- package/node/subscriptions/Checkout/index.js +13 -34
- package/node/subscriptions/Checkout/state.js +16 -0
- package/node/subscriptions/Config/actions.js +69 -0
- package/node/subscriptions/Config/index.js +13 -26
- package/node/subscriptions/Config/state.js +16 -0
- package/node/subscriptions/Plans/actions.js +56 -0
- package/node/subscriptions/Plans/index.js +13 -25
- package/node/subscriptions/Plans/state.js +16 -0
- package/node/subscriptions/Stripe/actions.js +50 -0
- package/node/subscriptions/Stripe/index.js +13 -26
- package/node/subscriptions/Stripe/state.js +15 -0
- package/node/subscriptions/VendorPublicConfig/actions.js +51 -0
- package/node/subscriptions/VendorPublicConfig/index.js +13 -24
- package/node/subscriptions/VendorPublicConfig/state.js +15 -0
- package/node/subscriptions/helpers.js +36 -0
- package/node/subscriptions/index.js +98 -55
- package/node/subscriptions/interfaces.js +20 -77
- package/node/toolkit/FronteggNativeModule.js +64 -0
- package/node/toolkit/index.js +22 -146
- package/node/toolkit/proxy.js +17 -0
- package/node/toolkit/store.js +233 -0
- package/node/vendor/actions.js +46 -0
- package/node/vendor/index.js +7 -55
- package/node/vendor/state.js +13 -0
- package/package.json +6 -5
- package/subscriptions/Billing/Information/actions.d.ts +9 -0
- package/subscriptions/Billing/Information/actions.js +88 -0
- package/subscriptions/Billing/Information/index.d.ts +3 -12
- package/subscriptions/Billing/Information/index.js +3 -26
- package/subscriptions/Billing/Information/interfaces.d.ts +1 -1
- package/subscriptions/Billing/Information/state.d.ts +4 -0
- package/subscriptions/Billing/Information/state.js +7 -0
- package/subscriptions/Billing/Invoices/actions.d.ts +11 -0
- package/subscriptions/Billing/Invoices/actions.js +73 -0
- package/subscriptions/Billing/Invoices/index.d.ts +3 -18
- package/subscriptions/Billing/Invoices/index.js +3 -40
- package/subscriptions/Billing/Invoices/interfaces.d.ts +1 -1
- package/subscriptions/Billing/Invoices/state.d.ts +4 -0
- package/subscriptions/Billing/Invoices/state.js +12 -0
- package/subscriptions/Billing/PaymentMethod/actions.d.ts +12 -0
- package/subscriptions/Billing/PaymentMethod/actions.js +84 -0
- package/subscriptions/Billing/PaymentMethod/index.d.ts +3 -20
- package/subscriptions/Billing/PaymentMethod/index.js +3 -37
- package/subscriptions/Billing/PaymentMethod/interfaces.d.ts +1 -1
- package/subscriptions/Billing/PaymentMethod/interfaces.js +0 -2
- package/subscriptions/Billing/PaymentMethod/state.d.ts +4 -0
- package/subscriptions/Billing/PaymentMethod/state.js +7 -0
- package/subscriptions/Billing/Subscription/actions.d.ts +14 -0
- package/subscriptions/Billing/Subscription/actions.js +138 -0
- package/subscriptions/Billing/Subscription/index.d.ts +3 -16
- package/subscriptions/Billing/Subscription/index.js +3 -38
- package/subscriptions/Billing/Subscription/interfaces.d.ts +0 -3
- package/subscriptions/Billing/Subscription/state.d.ts +4 -0
- package/subscriptions/Billing/Subscription/state.js +15 -0
- package/subscriptions/Billing/index.d.ts +13 -52
- package/subscriptions/Billing/index.js +25 -22
- package/subscriptions/Billing/interfaces.d.ts +4 -10
- package/subscriptions/Billing/interfaces.js +0 -2
- package/subscriptions/Checkout/actions.d.ts +12 -0
- package/subscriptions/Checkout/actions.js +100 -0
- package/subscriptions/Checkout/index.d.ts +3 -14
- package/subscriptions/Checkout/index.js +3 -32
- package/subscriptions/Checkout/interfaces.d.ts +0 -7
- package/subscriptions/Checkout/state.d.ts +4 -0
- package/subscriptions/Checkout/state.js +8 -0
- package/subscriptions/Config/actions.d.ts +8 -0
- package/subscriptions/Config/actions.js +62 -0
- package/subscriptions/Config/index.d.ts +3 -10
- package/subscriptions/Config/index.js +3 -24
- package/subscriptions/Config/interfaces.d.ts +1 -1
- package/subscriptions/Config/state.d.ts +4 -0
- package/subscriptions/Config/state.js +8 -0
- package/subscriptions/Plans/actions.d.ts +8 -0
- package/subscriptions/Plans/actions.js +49 -0
- package/subscriptions/Plans/index.d.ts +3 -10
- package/subscriptions/Plans/index.js +3 -23
- package/subscriptions/Plans/interfaces.d.ts +1 -4
- package/subscriptions/Plans/state.d.ts +4 -0
- package/subscriptions/Plans/state.js +8 -0
- package/subscriptions/Stripe/actions.d.ts +6 -0
- package/subscriptions/Stripe/actions.js +43 -0
- package/subscriptions/Stripe/index.d.ts +3 -11
- package/subscriptions/Stripe/index.js +3 -24
- package/subscriptions/Stripe/state.d.ts +4 -0
- package/subscriptions/Stripe/state.js +7 -0
- package/subscriptions/VendorPublicConfig/actions.d.ts +10 -0
- package/subscriptions/VendorPublicConfig/actions.js +44 -0
- package/subscriptions/VendorPublicConfig/index.d.ts +3 -10
- package/subscriptions/VendorPublicConfig/index.js +3 -22
- package/subscriptions/VendorPublicConfig/state.d.ts +4 -0
- package/subscriptions/VendorPublicConfig/state.js +7 -0
- package/subscriptions/helpers.d.ts +5 -0
- package/subscriptions/helpers.js +28 -0
- package/subscriptions/index.d.ts +28 -106
- package/subscriptions/index.js +40 -17
- package/subscriptions/interfaces.d.ts +56 -22
- package/subscriptions/interfaces.js +16 -8
- package/toolkit/FronteggNativeModule.d.ts +29 -0
- package/toolkit/FronteggNativeModule.js +57 -0
- package/toolkit/index.d.ts +5 -23
- package/toolkit/index.js +3 -128
- package/toolkit/proxy.d.ts +1 -0
- package/toolkit/proxy.js +9 -0
- package/toolkit/store.d.ts +59 -0
- package/toolkit/store.js +198 -0
- package/vendor/actions.d.ts +12 -0
- package/vendor/actions.js +38 -0
- package/vendor/index.d.ts +4 -17
- package/vendor/index.js +3 -16
- package/vendor/interfaces.d.ts +4 -1
- package/vendor/state.d.ts +4 -0
- package/vendor/state.js +5 -0
- package/audits/AuditLogsState/saga.d.ts +0 -2
- package/audits/AuditLogsState/saga.js +0 -153
- package/audits/AuditsMetadataState/saga.d.ts +0 -2
- package/audits/AuditsMetadataState/saga.js +0 -55
- package/audits/backward-compatibility/index.d.ts +0 -4
- package/audits/backward-compatibility/index.js +0 -4
- package/audits/backward-compatibility/initialState.d.ts +0 -2
- package/audits/backward-compatibility/initialState.js +0 -20
- package/audits/backward-compatibility/interfaces.d.ts +0 -55
- package/audits/backward-compatibility/reducer.d.ts +0 -35
- package/audits/backward-compatibility/reducer.js +0 -129
- package/audits/backward-compatibility/saga.d.ts +0 -1
- package/audits/backward-compatibility/saga.js +0 -173
- package/audits/initialState.d.ts +0 -2
- package/audits/initialState.js +0 -6
- package/audits/reducer.d.ts +0 -31
- package/audits/reducer.js +0 -21
- package/audits/saga.d.ts +0 -2
- package/audits/saga.js +0 -9
- package/audits/utils.d.ts +0 -14
- package/audits/utils.js +0 -13
- package/auth/AcceptInvitationState/saga.d.ts +0 -1
- package/auth/AcceptInvitationState/saga.js +0 -39
- package/auth/AccountSettingsState/saga.d.ts +0 -2
- package/auth/AccountSettingsState/saga.js +0 -127
- package/auth/ActivateState/index.d.ts +0 -190
- package/auth/ActivateState/index.js +0 -46
- package/auth/ActivateState/saga.d.ts +0 -1
- package/auth/ActivateState/saga.js +0 -191
- package/auth/ApiTokensState/saga.d.ts +0 -2
- package/auth/ApiTokensState/saga.js +0 -485
- package/auth/CustomLoginState/saga.d.ts +0 -20
- package/auth/CustomLoginState/saga.js +0 -152
- package/auth/CustomLoginState/utils.d.ts +0 -2
- package/auth/CustomLoginState/utils.js +0 -11
- package/auth/Entitlements/saga.d.ts +0 -30
- package/auth/Entitlements/saga.js +0 -51
- package/auth/Entitlements/utils.d.ts +0 -23
- package/auth/Entitlements/utils.js +0 -71
- package/auth/ForgotPasswordState/saga.d.ts +0 -8
- package/auth/ForgotPasswordState/saga.js +0 -81
- package/auth/GroupsState/groupsDialogsState.d.ts +0 -614
- package/auth/GroupsState/groupsDialogsState.js +0 -79
- package/auth/GroupsState/saga.d.ts +0 -2
- package/auth/GroupsState/saga.js +0 -640
- package/auth/Helpers/base64ToFormData.d.ts +0 -1
- package/auth/Helpers/base64ToFormData.js +0 -37
- package/auth/Helpers/index.d.ts +0 -2
- package/auth/Helpers/index.js +0 -2
- package/auth/Helpers/isAuthRoute.d.ts +0 -2
- package/auth/Helpers/isAuthRoute.js +0 -9
- package/auth/ImpersonationState/index.d.ts +0 -117
- package/auth/ImpersonationState/index.js +0 -32
- package/auth/ImpersonationState/interfaces.d.ts +0 -14
- package/auth/ImpersonationState/saga.d.ts +0 -1
- package/auth/ImpersonationState/saga.js +0 -37
- package/auth/LoginState/mfaRequiredState.saga.d.ts +0 -32
- package/auth/LoginState/mfaRequiredState.saga.js +0 -61
- package/auth/LoginState/saga.d.ts +0 -35
- package/auth/LoginState/saga.js +0 -1967
- package/auth/LoginState/utils.d.ts +0 -27
- package/auth/LoginState/utils.js +0 -126
- package/auth/MSP/AllAccountsState/allAccountsDialogsState.d.ts +0 -767
- package/auth/MSP/AllAccountsState/allAccountsDialogsState.js +0 -89
- package/auth/MSP/AllAccountsState/index.d.ts +0 -232
- package/auth/MSP/AllAccountsState/index.js +0 -101
- package/auth/MSP/AllAccountsState/saga.d.ts +0 -3
- package/auth/MSP/AllAccountsState/saga.js +0 -825
- package/auth/MSP/AllAccountsState/types/dialogsStateTypes.d.ts +0 -49
- package/auth/MSP/AllAccountsState/types/stateTypes.d.ts +0 -106
- package/auth/MSP/AllAccountsState/types/stateTypes.js +0 -22
- package/auth/MSP/AllAccountsState/utils/appendChildrenToNode.d.ts +0 -2
- package/auth/MSP/AllAccountsState/utils/getAccountsWithUsersCount.d.ts +0 -13
- package/auth/MSP/AllAccountsState/utils/getAccountsWithUsersCount.js +0 -19
- package/auth/MSP/AllAccountsState/utils/removeNodeFromTree.d.ts +0 -2
- package/auth/MSP/AllAccountsState/utils/updateNodeName.d.ts +0 -2
- package/auth/MfaState/saga.d.ts +0 -2
- package/auth/MfaState/saga.js +0 -673
- package/auth/PasskeysState/helpers.d.ts +0 -2
- package/auth/PasskeysState/helpers.js +0 -8
- package/auth/PasskeysState/saga.d.ts +0 -14
- package/auth/PasskeysState/saga.js +0 -56
- package/auth/ProfileState/saga.d.ts +0 -2
- package/auth/ProfileState/saga.js +0 -178
- package/auth/Provisioning/index.d.ts +0 -128
- package/auth/Provisioning/index.js +0 -37
- package/auth/Provisioning/saga.d.ts +0 -1
- package/auth/Provisioning/saga.js +0 -121
- package/auth/ResetPhoneNumberState/saga.d.ts +0 -17
- package/auth/ResetPhoneNumberState/saga.js +0 -119
- package/auth/RolesState/saga.d.ts +0 -2
- package/auth/RolesState/saga.js +0 -208
- package/auth/SSOState/saga.d.ts +0 -2
- package/auth/SSOState/saga.js +0 -478
- package/auth/SSOState/saga.v2.d.ts +0 -1
- package/auth/SSOState/saga.v2.js +0 -546
- package/auth/Security/RestrictionsState/saga.d.ts +0 -2
- package/auth/Security/RestrictionsState/saga.js +0 -698
- package/auth/Security/SecurityCenterState/saga.d.ts +0 -129
- package/auth/Security/SecurityCenterState/saga.js +0 -419
- package/auth/Security/SecurityCenterState/types.d.ts +0 -28
- package/auth/Security/SecurityCenterState/types.js +0 -10
- package/auth/Security/SecurityPolicyState/saga.d.ts +0 -50
- package/auth/Security/SecurityPolicyState/saga.js +0 -560
- package/auth/Security/SessionsPolicyState/saga.d.ts +0 -2
- package/auth/Security/SessionsPolicyState/saga.js +0 -87
- package/auth/SessionsState/saga.d.ts +0 -2
- package/auth/SessionsState/saga.js +0 -152
- package/auth/SignUp/index.d.ts +0 -118
- package/auth/SignUp/index.js +0 -36
- package/auth/SignUp/saga.d.ts +0 -64
- package/auth/SignUp/saga.js +0 -134
- package/auth/SocialLogins/index.d.ts +0 -123
- package/auth/SocialLogins/index.js +0 -37
- package/auth/SocialLogins/saga.d.ts +0 -11
- package/auth/SocialLogins/saga.js +0 -152
- package/auth/TeamState/saga.d.ts +0 -2
- package/auth/TeamState/saga.js +0 -1278
- package/auth/TenantsState/saga.d.ts +0 -2
- package/auth/TenantsState/saga.js +0 -125
- package/auth/dummy.d.ts +0 -45
- package/auth/dummy.js +0 -590
- package/auth/initialState.d.ts +0 -3
- package/auth/initialState.js +0 -66
- package/auth/reducer.d.ts +0 -720
- package/auth/reducer.js +0 -54
- package/auth/saga.d.ts +0 -2
- package/auth/saga.js +0 -41
- package/auth/utils.d.ts +0 -327
- package/auth/utils.js +0 -159
- package/connectivity/ConnectivityState/index.d.ts +0 -301
- package/connectivity/ConnectivityState/index.js +0 -101
- package/connectivity/reducer.d.ts +0 -31
- package/connectivity/reducer.js +0 -23
- package/connectivity/saga.d.ts +0 -1
- package/connectivity/saga.js +0 -562
- package/fronteggState.d.ts +0 -28
- package/helpers.d.ts +0 -8
- package/helpers.js +0 -56
- package/node/audits/AuditLogsState/saga.js +0 -161
- package/node/audits/AuditsMetadataState/saga.js +0 -62
- package/node/audits/backward-compatibility/index.js +0 -49
- package/node/audits/backward-compatibility/initialState.js +0 -27
- package/node/audits/backward-compatibility/reducer.js +0 -139
- package/node/audits/backward-compatibility/saga.js +0 -180
- package/node/audits/initialState.js +0 -13
- package/node/audits/reducer.js +0 -29
- package/node/audits/saga.js +0 -16
- package/node/audits/utils.js +0 -21
- package/node/auth/AcceptInvitationState/saga.js +0 -45
- package/node/auth/AccountSettingsState/saga.js +0 -135
- package/node/auth/ActivateState/index.js +0 -53
- package/node/auth/ActivateState/saga.js +0 -198
- package/node/auth/ApiTokensState/saga.js +0 -493
- package/node/auth/CustomLoginState/saga.js +0 -163
- package/node/auth/CustomLoginState/utils.js +0 -18
- package/node/auth/Entitlements/saga.js +0 -61
- package/node/auth/Entitlements/utils.js +0 -80
- package/node/auth/ForgotPasswordState/saga.js +0 -89
- package/node/auth/GroupsState/groupsDialogsState.js +0 -87
- package/node/auth/GroupsState/saga.js +0 -648
- package/node/auth/Helpers/base64ToFormData.js +0 -43
- package/node/auth/Helpers/index.js +0 -27
- package/node/auth/Helpers/isAuthRoute.js +0 -17
- package/node/auth/ImpersonationState/index.js +0 -39
- package/node/auth/ImpersonationState/saga.js +0 -44
- package/node/auth/LoginState/mfaRequiredState.saga.js +0 -68
- package/node/auth/LoginState/saga.js +0 -1981
- package/node/auth/LoginState/utils.js +0 -142
- package/node/auth/MSP/AllAccountsState/allAccountsDialogsState.js +0 -96
- package/node/auth/MSP/AllAccountsState/index.js +0 -126
- package/node/auth/MSP/AllAccountsState/saga.js +0 -835
- package/node/auth/MSP/AllAccountsState/types/stateTypes.js +0 -27
- package/node/auth/MSP/AllAccountsState/utils/getAccountsWithUsersCount.js +0 -26
- package/node/auth/MfaState/saga.js +0 -681
- package/node/auth/PasskeysState/helpers.js +0 -15
- package/node/auth/PasskeysState/saga.js +0 -64
- package/node/auth/ProfileState/saga.js +0 -186
- package/node/auth/Provisioning/index.js +0 -44
- package/node/auth/Provisioning/saga.js +0 -128
- package/node/auth/ResetPhoneNumberState/saga.js +0 -127
- package/node/auth/RolesState/saga.js +0 -216
- package/node/auth/SSOState/saga.js +0 -486
- package/node/auth/SSOState/saga.v2.js +0 -553
- package/node/auth/Security/RestrictionsState/saga.js +0 -706
- package/node/auth/Security/SecurityCenterState/saga.js +0 -441
- package/node/auth/Security/SecurityCenterState/types.js +0 -17
- package/node/auth/Security/SecurityPolicyState/saga.js +0 -574
- package/node/auth/Security/SessionsPolicyState/saga.js +0 -95
- package/node/auth/SessionsState/saga.js +0 -159
- package/node/auth/SignUp/index.js +0 -43
- package/node/auth/SignUp/saga.js +0 -144
- package/node/auth/SocialLogins/index.js +0 -44
- package/node/auth/SocialLogins/saga.js +0 -161
- package/node/auth/TeamState/saga.js +0 -1286
- package/node/auth/TenantsState/saga.js +0 -132
- package/node/auth/dummy.js +0 -633
- package/node/auth/initialState.js +0 -75
- package/node/auth/reducer.js +0 -62
- package/node/auth/saga.js +0 -48
- package/node/auth/utils.js +0 -178
- package/node/connectivity/ConnectivityState/index.js +0 -108
- package/node/connectivity/reducer.js +0 -32
- package/node/connectivity/saga.js +0 -567
- package/node/helpers.js +0 -70
- package/node/subscriptions/Billing/Information/saga.js +0 -122
- package/node/subscriptions/Billing/Invoices/saga.js +0 -85
- package/node/subscriptions/Billing/PaymentMethod/saga.js +0 -87
- package/node/subscriptions/Billing/Subscription/loadSubscription.saga.js +0 -26
- package/node/subscriptions/Billing/Subscription/saga.js +0 -101
- package/node/subscriptions/Billing/saga.js +0 -18
- package/node/subscriptions/Checkout/saga.js +0 -116
- package/node/subscriptions/Config/saga.js +0 -65
- package/node/subscriptions/Plans/saga.js +0 -66
- package/node/subscriptions/Stripe/saga.js +0 -37
- package/node/subscriptions/VendorPublicConfig/saga.js +0 -45
- package/node/subscriptions/general.interfaces.js +0 -25
- package/node/subscriptions/mapper.js +0 -40
- package/node/subscriptions/reducer.js +0 -48
- package/node/subscriptions/saga.js +0 -20
- package/node/subscriptions/utils.js +0 -62
- package/node/toolkit/redux-saga-tools.js +0 -56
- package/node/toolkit/redux.js +0 -42
- package/node/utils/gtm.js +0 -29
- package/node/utils/index.js +0 -38
- package/node/vendor/VendorState/index.js +0 -31
- package/node/vendor/reducer.js +0 -26
- package/node/vendor/saga.js +0 -52
- package/subscriptions/Billing/Information/saga.d.ts +0 -34
- package/subscriptions/Billing/Information/saga.js +0 -111
- package/subscriptions/Billing/Invoices/saga.d.ts +0 -13
- package/subscriptions/Billing/Invoices/saga.js +0 -76
- package/subscriptions/Billing/PaymentMethod/saga.d.ts +0 -13
- package/subscriptions/Billing/PaymentMethod/saga.js +0 -78
- package/subscriptions/Billing/Subscription/loadSubscription.saga.d.ts +0 -1
- package/subscriptions/Billing/Subscription/loadSubscription.saga.js +0 -21
- package/subscriptions/Billing/Subscription/saga.d.ts +0 -2
- package/subscriptions/Billing/Subscription/saga.js +0 -94
- package/subscriptions/Billing/saga.d.ts +0 -2
- package/subscriptions/Billing/saga.js +0 -11
- package/subscriptions/Checkout/saga.d.ts +0 -5
- package/subscriptions/Checkout/saga.js +0 -108
- package/subscriptions/Config/saga.d.ts +0 -2
- package/subscriptions/Config/saga.js +0 -58
- package/subscriptions/Plans/saga.d.ts +0 -2
- package/subscriptions/Plans/saga.js +0 -58
- package/subscriptions/Stripe/saga.d.ts +0 -1
- package/subscriptions/Stripe/saga.js +0 -31
- package/subscriptions/VendorPublicConfig/saga.d.ts +0 -2
- package/subscriptions/VendorPublicConfig/saga.js +0 -38
- package/subscriptions/general.interfaces.d.ts +0 -49
- package/subscriptions/general.interfaces.js +0 -16
- package/subscriptions/mapper.d.ts +0 -6
- package/subscriptions/mapper.js +0 -31
- package/subscriptions/reducer.d.ts +0 -99
- package/subscriptions/reducer.js +0 -33
- package/subscriptions/saga.d.ts +0 -2
- package/subscriptions/saga.js +0 -13
- package/subscriptions/utils.d.ts +0 -68
- package/subscriptions/utils.js +0 -52
- package/toolkit/interfaces.d.ts +0 -7
- package/toolkit/redux-saga-tools.d.ts +0 -4
- package/toolkit/redux-saga-tools.js +0 -3
- package/toolkit/redux-types.d.ts +0 -3
- package/toolkit/redux.d.ts +0 -4
- package/toolkit/redux.js +0 -1
- package/utils/gtm.d.ts +0 -28
- package/utils/gtm.js +0 -22
- package/utils/index.d.ts +0 -3
- package/utils/index.js +0 -3
- package/utils/package.json +0 -6
- package/utils/sha256.d.ts +0 -22
- package/utils/sha256.js +0 -425
- package/vendor/VendorState/index.d.ts +0 -21
- package/vendor/VendorState/index.js +0 -24
- package/vendor/reducer.d.ts +0 -8
- package/vendor/reducer.js +0 -17
- package/vendor/saga.d.ts +0 -8
- package/vendor/saga.js +0 -44
- /package/{audits/backward-compatibility → audits-backward-compatibility}/interfaces.js +0 -0
- /package/auth/{ActivateState → ActivateAccountState}/interfaces.d.ts +0 -0
- /package/auth/{ActivateState → ActivateAccountState}/interfaces.js +0 -0
- /package/auth/{Provisioning → ApplicationsState}/interfaces.js +0 -0
- /package/auth/{SocialLogins → GroupsDialogsState}/interfaces.js +0 -0
- /package/auth/{ImpersonationState → ImpersonateState}/interfaces.js +0 -0
- /package/auth/MSP/{AllAccountsState/utils → helpers}/appendChildrenToNode.js +0 -0
- /package/auth/MSP/{AllAccountsState/utils → helpers}/removeNodeFromTree.js +0 -0
- /package/auth/MSP/{AllAccountsState/utils → helpers}/updateNodeName.js +0 -0
- /package/auth/MSP/{AllAccountsState/types → interfaces}/dialogsStateTypes.js +0 -0
- /package/auth/MSP/{AllAccountsState/types → interfaces}/index.d.ts +0 -0
- /package/auth/MSP/{AllAccountsState/types → interfaces}/index.js +0 -0
- /package/auth/{Provisioning → ProvisioningState}/interfaces.d.ts +0 -0
- /package/{toolkit → auth/ProvisioningState}/interfaces.js +0 -0
- /package/auth/{SignUp → SignUpState}/interfaces.d.ts +0 -0
- /package/auth/{SignUp → SignUpState}/interfaces.js +0 -0
- /package/{fronteggState.js → auth/SmsState/interfaces.js} +0 -0
- /package/auth/{SocialLogins → SocialLoginState}/interfaces.d.ts +0 -0
- /package/{toolkit/redux-types.js → auth/SocialLoginState/interfaces.js} +0 -0
- /package/{utils/errorHandler.d.ts → helpers/handlers.d.ts} +0 -0
- /package/{utils/errorHandler.js → helpers/handlers.js} +0 -0
- /package/{audits → mocks/audits-mocks}/dummy.d.ts +0 -0
- /package/{audits → mocks/audits-mocks}/dummy.js +0 -0
- /package/{subscriptions → mocks/subscriptions-mocks}/dummy.d.ts +0 -0
- /package/{subscriptions → mocks/subscriptions-mocks}/dummy.js +0 -0
- /package/node/{audits/backward-compatibility → audits-backward-compatibility}/interfaces.js +0 -0
- /package/node/auth/{ActivateState → ActivateAccountState}/interfaces.js +0 -0
- /package/node/auth/{Provisioning → ApplicationsState}/interfaces.js +0 -0
- /package/node/auth/{SocialLogins → GroupsDialogsState}/interfaces.js +0 -0
- /package/node/auth/{ImpersonationState → ImpersonateState}/interfaces.js +0 -0
- /package/node/auth/MSP/{AllAccountsState/utils → helpers}/appendChildrenToNode.js +0 -0
- /package/node/auth/MSP/{AllAccountsState/utils → helpers}/removeNodeFromTree.js +0 -0
- /package/node/auth/MSP/{AllAccountsState/utils → helpers}/updateNodeName.js +0 -0
- /package/node/auth/MSP/{AllAccountsState/types → interfaces}/dialogsStateTypes.js +0 -0
- /package/node/auth/MSP/{AllAccountsState/types → interfaces}/index.js +0 -0
- /package/node/{toolkit → auth/ProvisioningState}/interfaces.js +0 -0
- /package/node/auth/{SignUp → SignUpState}/interfaces.js +0 -0
- /package/node/{fronteggState.js → auth/SmsState/interfaces.js} +0 -0
- /package/node/{toolkit/redux-types.js → auth/SocialLoginState/interfaces.js} +0 -0
- /package/node/{utils/errorHandler.js → helpers/handlers.js} +0 -0
- /package/node/{utils → helpers}/sha256.js +0 -0
- /package/node/{audits → mocks/audits-mocks}/dummy.js +0 -0
- /package/node/{subscriptions → mocks/subscriptions-mocks}/dummy.js +0 -0
package/audits/reducer.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import { auditsStoreName } from '../constants';
|
|
3
|
-
import { initialState } from './initialState';
|
|
4
|
-
import { createSlice } from '@reduxjs/toolkit';
|
|
5
|
-
import { auditLogsActions, auditLogsReducers } from './AuditLogsState';
|
|
6
|
-
import { auditsMetadataActions, auditsMetadataReducers } from './AuditsMetadataState';
|
|
7
|
-
const {
|
|
8
|
-
reducer,
|
|
9
|
-
actions: sliceActions
|
|
10
|
-
} = createSlice({
|
|
11
|
-
name: auditsStoreName,
|
|
12
|
-
initialState,
|
|
13
|
-
reducers: _extends({
|
|
14
|
-
resetState: state => _extends({}, state, initialState),
|
|
15
|
-
setState: (state, {
|
|
16
|
-
payload
|
|
17
|
-
}) => _extends({}, state, payload)
|
|
18
|
-
}, auditLogsReducers, auditsMetadataReducers)
|
|
19
|
-
});
|
|
20
|
-
const actions = _extends({}, sliceActions, auditLogsActions, auditsMetadataActions);
|
|
21
|
-
export { reducer, actions };
|
package/audits/saga.d.ts
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export declare function sagas(): Generator<import("redux-saga/effects").AllEffect<import("redux-saga/effects").CallEffect<void>>, void, unknown>;
|
|
2
|
-
export declare function mockSagas(): Generator<import("redux-saga/effects").AllEffect<import("redux-saga/effects").CallEffect<void>>, void, unknown>;
|
package/audits/saga.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { all, call } from 'redux-saga/effects';
|
|
2
|
-
import { auditLogsSagas, auditLogsSagasMock } from './AuditLogsState/saga';
|
|
3
|
-
import { auditsMetadataSagas, auditsMetadataSagasMock } from './AuditsMetadataState/saga';
|
|
4
|
-
export function* sagas() {
|
|
5
|
-
yield all([call(auditLogsSagas), call(auditsMetadataSagas)]);
|
|
6
|
-
}
|
|
7
|
-
export function* mockSagas() {
|
|
8
|
-
yield all([call(auditLogsSagasMock), call(auditsMetadataSagasMock)]);
|
|
9
|
-
}
|
package/audits/utils.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
import { AuditsState } from './interfaces';
|
|
3
|
-
export declare const typeReducerForKey: <T>(key: keyof AuditsState) => {
|
|
4
|
-
prepare: (payload: Partial<T>) => {
|
|
5
|
-
payload: Partial<T>;
|
|
6
|
-
};
|
|
7
|
-
reducer: (state: AuditsState, { payload }: {
|
|
8
|
-
payload: Partial<T>;
|
|
9
|
-
type: string;
|
|
10
|
-
}) => {
|
|
11
|
-
auditLogsState: import(".").AuditLogsState;
|
|
12
|
-
auditsMetadataState: import(".").AuditsMetadataState;
|
|
13
|
-
};
|
|
14
|
-
};
|
package/audits/utils.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
export const typeReducerForKey = key => ({
|
|
3
|
-
prepare: payload => ({
|
|
4
|
-
payload
|
|
5
|
-
}),
|
|
6
|
-
reducer: (state, {
|
|
7
|
-
payload
|
|
8
|
-
}) => {
|
|
9
|
-
return _extends({}, state, {
|
|
10
|
-
[key]: _extends({}, state[key], payload)
|
|
11
|
-
});
|
|
12
|
-
}
|
|
13
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function acceptInvitationSagas(): Generator<import("redux-saga/effects").ForkEffect<never>, void, unknown>;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { call, put, takeLeading } from 'redux-saga/effects';
|
|
2
|
-
import { actions } from '../reducer';
|
|
3
|
-
import { api } from '@frontegg/rest-api';
|
|
4
|
-
import { AcceptInvitationStep } from './interfaces';
|
|
5
|
-
import { errorHandler } from '../../utils';
|
|
6
|
-
function* acceptInvitation({
|
|
7
|
-
payload
|
|
8
|
-
}) {
|
|
9
|
-
if (!payload.token || !payload.userId) {
|
|
10
|
-
yield put(actions.setAcceptInvitationState({
|
|
11
|
-
error: undefined,
|
|
12
|
-
step: AcceptInvitationStep.invalid
|
|
13
|
-
}));
|
|
14
|
-
return;
|
|
15
|
-
}
|
|
16
|
-
try {
|
|
17
|
-
yield put(actions.setAcceptInvitationState({
|
|
18
|
-
error: undefined,
|
|
19
|
-
step: AcceptInvitationStep.pending
|
|
20
|
-
}));
|
|
21
|
-
yield call(api.auth.acceptInvitation, payload);
|
|
22
|
-
yield put(actions.setState({
|
|
23
|
-
isAuthenticated: false,
|
|
24
|
-
user: null,
|
|
25
|
-
acceptInvitationState: {
|
|
26
|
-
error: undefined,
|
|
27
|
-
step: AcceptInvitationStep.success
|
|
28
|
-
}
|
|
29
|
-
}));
|
|
30
|
-
} catch (e) {
|
|
31
|
-
yield put(actions.setAcceptInvitationState({
|
|
32
|
-
step: AcceptInvitationStep.failed,
|
|
33
|
-
error: errorHandler(e)
|
|
34
|
-
}));
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
export function* acceptInvitationSagas() {
|
|
38
|
-
yield takeLeading(actions.acceptInvitation, acceptInvitation);
|
|
39
|
-
}
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import { call, put, select, takeLeading } from 'redux-saga/effects';
|
|
3
|
-
import { actions } from '../reducer';
|
|
4
|
-
import { api } from '@frontegg/rest-api';
|
|
5
|
-
import { delay } from '../utils';
|
|
6
|
-
import { errorHandler } from '../../utils';
|
|
7
|
-
function* saveAccountSettings({
|
|
8
|
-
payload
|
|
9
|
-
}) {
|
|
10
|
-
try {
|
|
11
|
-
var _payload$callback;
|
|
12
|
-
yield put(actions.setAccountSettingsState({
|
|
13
|
-
loading: true
|
|
14
|
-
}));
|
|
15
|
-
const {
|
|
16
|
-
accountSettingsState
|
|
17
|
-
} = yield select(state => state.auth);
|
|
18
|
-
const {
|
|
19
|
-
address,
|
|
20
|
-
timezone,
|
|
21
|
-
dateFormat,
|
|
22
|
-
timeFormat,
|
|
23
|
-
currency,
|
|
24
|
-
logo
|
|
25
|
-
} = accountSettingsState;
|
|
26
|
-
const body = yield call(api.accountSettings.updateSettings, _extends({
|
|
27
|
-
address,
|
|
28
|
-
timezone,
|
|
29
|
-
dateFormat,
|
|
30
|
-
timeFormat,
|
|
31
|
-
currency,
|
|
32
|
-
logo
|
|
33
|
-
}, payload));
|
|
34
|
-
yield put(actions.setAccountSettingsState(_extends({}, body, {
|
|
35
|
-
loading: false
|
|
36
|
-
})));
|
|
37
|
-
(_payload$callback = payload.callback) == null ? void 0 : _payload$callback.call(payload, body);
|
|
38
|
-
} catch (e) {
|
|
39
|
-
var _payload$callback2;
|
|
40
|
-
yield put(actions.setAccountSettingsState({
|
|
41
|
-
loading: false,
|
|
42
|
-
error: errorHandler(e)
|
|
43
|
-
}));
|
|
44
|
-
(_payload$callback2 = payload.callback) == null ? void 0 : _payload$callback2.call(payload, null, e);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
function* loadAccountSettings({
|
|
48
|
-
payload
|
|
49
|
-
}) {
|
|
50
|
-
yield put(actions.setAccountSettingsState({
|
|
51
|
-
loading: !(payload != null && payload.silentLoading),
|
|
52
|
-
error: null
|
|
53
|
-
}));
|
|
54
|
-
try {
|
|
55
|
-
const body = yield call(api.accountSettings.getSettings);
|
|
56
|
-
yield put(actions.setAccountSettingsState(_extends({}, body, {
|
|
57
|
-
loading: false
|
|
58
|
-
})));
|
|
59
|
-
} catch (e) {
|
|
60
|
-
yield put(actions.setAccountSettingsState({
|
|
61
|
-
loading: false,
|
|
62
|
-
error: errorHandler(e)
|
|
63
|
-
}));
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
export function* accountSettingsSaga() {
|
|
67
|
-
yield takeLeading(actions.saveAccountSettings, saveAccountSettings);
|
|
68
|
-
yield takeLeading(actions.loadAccountSettings, loadAccountSettings);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
/*********************************
|
|
72
|
-
* Preview Sagas
|
|
73
|
-
*********************************/
|
|
74
|
-
|
|
75
|
-
function* saveAccountSettingsMock({
|
|
76
|
-
payload
|
|
77
|
-
}) {
|
|
78
|
-
var _payload$callback3;
|
|
79
|
-
yield put(actions.setAccountSettingsState({
|
|
80
|
-
loading: true
|
|
81
|
-
}));
|
|
82
|
-
yield delay();
|
|
83
|
-
const {
|
|
84
|
-
accountSettingsState
|
|
85
|
-
} = yield select(state => state.auth);
|
|
86
|
-
const {
|
|
87
|
-
address,
|
|
88
|
-
timezone,
|
|
89
|
-
dateFormat,
|
|
90
|
-
timeFormat,
|
|
91
|
-
currency,
|
|
92
|
-
logo
|
|
93
|
-
} = accountSettingsState;
|
|
94
|
-
const body = _extends({
|
|
95
|
-
address,
|
|
96
|
-
timezone,
|
|
97
|
-
dateFormat,
|
|
98
|
-
timeFormat,
|
|
99
|
-
currency,
|
|
100
|
-
logo
|
|
101
|
-
}, payload);
|
|
102
|
-
yield put(actions.setAccountSettingsState(_extends({}, body, {
|
|
103
|
-
loading: false
|
|
104
|
-
})));
|
|
105
|
-
(_payload$callback3 = payload.callback) == null ? void 0 : _payload$callback3.call(payload, body);
|
|
106
|
-
}
|
|
107
|
-
function* loadAccountSettingsMock({
|
|
108
|
-
payload
|
|
109
|
-
}) {
|
|
110
|
-
yield put(actions.setAccountSettingsState({
|
|
111
|
-
loading: !(payload != null && payload.silentLoading),
|
|
112
|
-
error: null
|
|
113
|
-
}));
|
|
114
|
-
yield delay();
|
|
115
|
-
yield put(actions.setAccountSettingsState({
|
|
116
|
-
address: 'Tel-aviv',
|
|
117
|
-
timezone: 'Asia/Jerusalem',
|
|
118
|
-
dateFormat: 'DD/MM/YYYY',
|
|
119
|
-
timeFormat: 'HH:mm',
|
|
120
|
-
currency: 'USD',
|
|
121
|
-
loading: false
|
|
122
|
-
}));
|
|
123
|
-
}
|
|
124
|
-
export function* accountSettingsSagaMock() {
|
|
125
|
-
yield takeLeading(actions.saveAccountSettings, saveAccountSettingsMock);
|
|
126
|
-
yield takeLeading(actions.loadAccountSettings, loadAccountSettingsMock);
|
|
127
|
-
}
|
|
@@ -1,190 +0,0 @@
|
|
|
1
|
-
import { IGetActivateAccountStrategy, IGetActivateAccountStrategyResponse, IResendActivationEmail } from '@frontegg/rest-api';
|
|
2
|
-
import { ActivateAccountState, ActivateAccountStrategyState, IActivateAccountPayload, IPreActivateAccount } from './interfaces';
|
|
3
|
-
import { WithCallback } from '../../interfaces';
|
|
4
|
-
declare const activateState: ActivateAccountState;
|
|
5
|
-
declare const reducers: {
|
|
6
|
-
setActivateState: {
|
|
7
|
-
prepare: (payload: Partial<ActivateAccountState>) => {
|
|
8
|
-
payload: Partial<ActivateAccountState>;
|
|
9
|
-
};
|
|
10
|
-
reducer: (state: import("..").AuthState, { payload }: {
|
|
11
|
-
payload: Partial<ActivateAccountState>;
|
|
12
|
-
type: string;
|
|
13
|
-
}) => {
|
|
14
|
-
onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
|
|
15
|
-
/**
|
|
16
|
-
* if you see error in matcher that's mean the DispatchAction does not
|
|
17
|
-
* contains the same functions in reducers and actions
|
|
18
|
-
*/
|
|
19
|
-
error?: any;
|
|
20
|
-
isAuthenticated: boolean;
|
|
21
|
-
userIp?: string | undefined;
|
|
22
|
-
isLoading: boolean;
|
|
23
|
-
keepSessionAlive?: boolean | undefined;
|
|
24
|
-
user?: import("..").User | null | undefined;
|
|
25
|
-
isSSOAuth: boolean;
|
|
26
|
-
ssoACS?: string | undefined;
|
|
27
|
-
includeQueryParam?: boolean | undefined;
|
|
28
|
-
loginState: import("..").LoginState;
|
|
29
|
-
activateState: ActivateAccountState;
|
|
30
|
-
acceptInvitationState: import("..").AcceptInvitationState;
|
|
31
|
-
forgotPasswordState: import("..").ForgotPasswordState;
|
|
32
|
-
resetPhoneNumberState: import("..").ResetPhoneNumberState;
|
|
33
|
-
ssoState: import("..").SSOState;
|
|
34
|
-
profileState: import("..").ProfileState;
|
|
35
|
-
mfaState: import("..").MFAState;
|
|
36
|
-
teamState: import("..").TeamState;
|
|
37
|
-
groupsState: import("..").GroupsState;
|
|
38
|
-
groupsDialogsState: import("..").GroupsDialogsState;
|
|
39
|
-
socialLoginState: import("..").SocialLoginState;
|
|
40
|
-
signUpState: import("..").SignUpState;
|
|
41
|
-
apiTokensState: import("..").ApiTokensState;
|
|
42
|
-
securityPolicyState: import("..").SecurityPolicyState;
|
|
43
|
-
restrictionsState: import("..").RestrictionsState;
|
|
44
|
-
provisioningState: import("..").ProvisioningState;
|
|
45
|
-
accountSettingsState: import("..").AccountSettingsState;
|
|
46
|
-
tenantsState: import("..").TenantsState;
|
|
47
|
-
rolesState: import("..").RolesState;
|
|
48
|
-
sessionsState: import("..").SessionsState;
|
|
49
|
-
hostedLoginBox?: boolean | undefined;
|
|
50
|
-
disableSilentRefresh?: boolean | undefined;
|
|
51
|
-
sessionsPolicyState: import("..").SessionsPolicyState;
|
|
52
|
-
impersonateState?: import("..").ImpersonateState | undefined;
|
|
53
|
-
passkeysState?: import("..").PasskeysState | undefined;
|
|
54
|
-
customLoginState?: import("..").CustomLoginState | undefined;
|
|
55
|
-
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
56
|
-
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
57
|
-
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
58
|
-
routes: import("..").AuthPageRoutes;
|
|
59
|
-
header?: any;
|
|
60
|
-
loaderComponent?: any;
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
|
-
resetActivateState: (state: import("..").AuthState) => {
|
|
64
|
-
onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
|
|
65
|
-
/**
|
|
66
|
-
* if you see error in matcher that's mean the DispatchAction does not
|
|
67
|
-
* contains the same functions in reducers and actions
|
|
68
|
-
*/
|
|
69
|
-
error?: any;
|
|
70
|
-
isAuthenticated: boolean;
|
|
71
|
-
userIp?: string | undefined;
|
|
72
|
-
isLoading: boolean;
|
|
73
|
-
keepSessionAlive?: boolean | undefined;
|
|
74
|
-
user?: import("..").User | null | undefined;
|
|
75
|
-
isSSOAuth: boolean;
|
|
76
|
-
ssoACS?: string | undefined;
|
|
77
|
-
includeQueryParam?: boolean | undefined;
|
|
78
|
-
loginState: import("..").LoginState;
|
|
79
|
-
activateState: ActivateAccountState;
|
|
80
|
-
acceptInvitationState: import("..").AcceptInvitationState;
|
|
81
|
-
forgotPasswordState: import("..").ForgotPasswordState;
|
|
82
|
-
resetPhoneNumberState: import("..").ResetPhoneNumberState;
|
|
83
|
-
ssoState: import("..").SSOState;
|
|
84
|
-
profileState: import("..").ProfileState;
|
|
85
|
-
mfaState: import("..").MFAState;
|
|
86
|
-
teamState: import("..").TeamState;
|
|
87
|
-
groupsState: import("..").GroupsState;
|
|
88
|
-
groupsDialogsState: import("..").GroupsDialogsState;
|
|
89
|
-
socialLoginState: import("..").SocialLoginState;
|
|
90
|
-
signUpState: import("..").SignUpState;
|
|
91
|
-
apiTokensState: import("..").ApiTokensState;
|
|
92
|
-
securityPolicyState: import("..").SecurityPolicyState;
|
|
93
|
-
restrictionsState: import("..").RestrictionsState;
|
|
94
|
-
provisioningState: import("..").ProvisioningState;
|
|
95
|
-
accountSettingsState: import("..").AccountSettingsState;
|
|
96
|
-
tenantsState: import("..").TenantsState;
|
|
97
|
-
rolesState: import("..").RolesState;
|
|
98
|
-
sessionsState: import("..").SessionsState;
|
|
99
|
-
hostedLoginBox?: boolean | undefined;
|
|
100
|
-
disableSilentRefresh?: boolean | undefined;
|
|
101
|
-
sessionsPolicyState: import("..").SessionsPolicyState;
|
|
102
|
-
impersonateState?: import("..").ImpersonateState | undefined;
|
|
103
|
-
passkeysState?: import("..").PasskeysState | undefined;
|
|
104
|
-
customLoginState?: import("..").CustomLoginState | undefined;
|
|
105
|
-
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
106
|
-
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
107
|
-
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
108
|
-
routes: import("..").AuthPageRoutes;
|
|
109
|
-
header?: any;
|
|
110
|
-
loaderComponent?: any;
|
|
111
|
-
};
|
|
112
|
-
setActivateStrategyState: {
|
|
113
|
-
prepare: (payload: Partial<ActivateAccountStrategyState>) => {
|
|
114
|
-
payload: Partial<ActivateAccountStrategyState>;
|
|
115
|
-
};
|
|
116
|
-
reducer: (state: import("..").AuthState, { payload }: {
|
|
117
|
-
payload: Partial<ActivateAccountStrategyState>;
|
|
118
|
-
type: string;
|
|
119
|
-
}) => {
|
|
120
|
-
onRedirectTo: (path: string, opts?: import("@frontegg/rest-api").RedirectOptions | undefined) => void;
|
|
121
|
-
/**
|
|
122
|
-
* if you see error in matcher that's mean the DispatchAction does not
|
|
123
|
-
* contains the same functions in reducers and actions
|
|
124
|
-
*/
|
|
125
|
-
error?: any;
|
|
126
|
-
isAuthenticated: boolean;
|
|
127
|
-
userIp?: string | undefined;
|
|
128
|
-
isLoading: boolean;
|
|
129
|
-
keepSessionAlive?: boolean | undefined;
|
|
130
|
-
user?: import("..").User | null | undefined;
|
|
131
|
-
isSSOAuth: boolean;
|
|
132
|
-
ssoACS?: string | undefined;
|
|
133
|
-
includeQueryParam?: boolean | undefined;
|
|
134
|
-
loginState: import("..").LoginState;
|
|
135
|
-
activateState: ActivateAccountState;
|
|
136
|
-
acceptInvitationState: import("..").AcceptInvitationState;
|
|
137
|
-
forgotPasswordState: import("..").ForgotPasswordState;
|
|
138
|
-
resetPhoneNumberState: import("..").ResetPhoneNumberState;
|
|
139
|
-
ssoState: import("..").SSOState;
|
|
140
|
-
profileState: import("..").ProfileState;
|
|
141
|
-
mfaState: import("..").MFAState;
|
|
142
|
-
teamState: import("..").TeamState;
|
|
143
|
-
groupsState: import("..").GroupsState;
|
|
144
|
-
groupsDialogsState: import("..").GroupsDialogsState;
|
|
145
|
-
socialLoginState: import("..").SocialLoginState;
|
|
146
|
-
signUpState: import("..").SignUpState;
|
|
147
|
-
apiTokensState: import("..").ApiTokensState;
|
|
148
|
-
securityPolicyState: import("..").SecurityPolicyState;
|
|
149
|
-
restrictionsState: import("..").RestrictionsState;
|
|
150
|
-
provisioningState: import("..").ProvisioningState;
|
|
151
|
-
accountSettingsState: import("..").AccountSettingsState;
|
|
152
|
-
tenantsState: import("..").TenantsState;
|
|
153
|
-
rolesState: import("..").RolesState;
|
|
154
|
-
sessionsState: import("..").SessionsState;
|
|
155
|
-
hostedLoginBox?: boolean | undefined;
|
|
156
|
-
disableSilentRefresh?: boolean | undefined;
|
|
157
|
-
sessionsPolicyState: import("..").SessionsPolicyState;
|
|
158
|
-
impersonateState?: import("..").ImpersonateState | undefined;
|
|
159
|
-
passkeysState?: import("..").PasskeysState | undefined;
|
|
160
|
-
customLoginState?: import("..").CustomLoginState | undefined;
|
|
161
|
-
allAccountsState?: import("..").IAllAccountsState | undefined;
|
|
162
|
-
allAccountsDialogsState?: import("..").IAllAccountsDialogsState | undefined;
|
|
163
|
-
securityCenterState?: import("..").SecurityCenterState | undefined;
|
|
164
|
-
routes: import("..").AuthPageRoutes;
|
|
165
|
-
header?: any;
|
|
166
|
-
loaderComponent?: any;
|
|
167
|
-
};
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
declare const actions: {
|
|
171
|
-
activateAccount: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[WithCallback<IActivateAccountPayload, boolean>], WithCallback<IActivateAccountPayload, boolean>, string, never, never>;
|
|
172
|
-
preActivateAccount: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[IPreActivateAccount], IPreActivateAccount, string, never, never>;
|
|
173
|
-
getActivateAccountStrategy: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[WithCallback<IGetActivateAccountStrategy, IGetActivateAccountStrategyResponse>], WithCallback<IGetActivateAccountStrategy, IGetActivateAccountStrategyResponse>, string, never, never>;
|
|
174
|
-
resendActivationEmail: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[WithCallback<IResendActivationEmail, boolean>], WithCallback<IResendActivationEmail, boolean>, string, never, never>;
|
|
175
|
-
};
|
|
176
|
-
/**
|
|
177
|
-
* To be used for actions types after dispatch, and should contains
|
|
178
|
-
* the reducers and actions as standalone function
|
|
179
|
-
*/
|
|
180
|
-
declare type DispatchedActions = {
|
|
181
|
-
setActivateState: (state: Partial<ActivateAccountState>) => void;
|
|
182
|
-
resetActivateState: () => void;
|
|
183
|
-
setActivateStrategyState: (state: Partial<ActivateAccountStrategyState>) => void;
|
|
184
|
-
activateAccount: (payload: WithCallback<IActivateAccountPayload>) => void;
|
|
185
|
-
preActivateAccount: (payload: IPreActivateAccount) => void;
|
|
186
|
-
resendActivationEmail: (payload: WithCallback<IResendActivationEmail>) => void;
|
|
187
|
-
getActivateAccountStrategy: (payload: WithCallback<IGetActivateAccountStrategy, IGetActivateAccountStrategyResponse>) => void;
|
|
188
|
-
};
|
|
189
|
-
export declare type ActivateAccountActions = DispatchedActions;
|
|
190
|
-
export { activateState, reducers as activateAccountReducers, actions as activateAccountActions };
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { createAction } from '@reduxjs/toolkit';
|
|
2
|
-
import { resetStateByKey, typeReducerForKey, typeReducerNestedKey } from '../utils';
|
|
3
|
-
import { ActivateAccountStep } from './interfaces';
|
|
4
|
-
import { authStoreName } from '../../constants';
|
|
5
|
-
const activateState = {
|
|
6
|
-
step: ActivateAccountStep.activating,
|
|
7
|
-
loading: false,
|
|
8
|
-
resentEmail: false,
|
|
9
|
-
activationStrategy: {
|
|
10
|
-
loading: false
|
|
11
|
-
}
|
|
12
|
-
};
|
|
13
|
-
const reducers = {
|
|
14
|
-
setActivateState: typeReducerForKey('activateState'),
|
|
15
|
-
resetActivateState: resetStateByKey('activateState', {
|
|
16
|
-
activateState
|
|
17
|
-
}),
|
|
18
|
-
setActivateStrategyState: typeReducerNestedKey('activateState', 'activationStrategy')
|
|
19
|
-
};
|
|
20
|
-
const actions = {
|
|
21
|
-
activateAccount: createAction(`${authStoreName}/activateAccount`, payload => ({
|
|
22
|
-
payload
|
|
23
|
-
})),
|
|
24
|
-
preActivateAccount: createAction(`${authStoreName}/preActivateAccount`, payload => ({
|
|
25
|
-
payload
|
|
26
|
-
})),
|
|
27
|
-
getActivateAccountStrategy: createAction(`${authStoreName}/getActivateAccountStrategy`, payload => ({
|
|
28
|
-
payload
|
|
29
|
-
})),
|
|
30
|
-
resendActivationEmail: createAction(`${authStoreName}/resendActivationEmail`, payload => ({
|
|
31
|
-
payload
|
|
32
|
-
}))
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* To be used for actions types after dispatch, and should contains
|
|
37
|
-
* the reducers and actions as standalone function
|
|
38
|
-
*/
|
|
39
|
-
|
|
40
|
-
// noinspection JSUnusedLocalSymbols
|
|
41
|
-
/**
|
|
42
|
-
* if you see error in matcher that's mean the DispatchAction does not
|
|
43
|
-
* contains the same functions in reducers and actions
|
|
44
|
-
*/
|
|
45
|
-
const Matcher = {};
|
|
46
|
-
export { activateState, reducers as activateAccountReducers, actions as activateAccountActions };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function activateSagas(): Generator<import("redux-saga/effects").ForkEffect<never>, void, unknown>;
|
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
3
|
-
const _excluded = ["callback", "events"],
|
|
4
|
-
_excluded2 = ["user"],
|
|
5
|
-
_excluded3 = ["callback"],
|
|
6
|
-
_excluded4 = ["callback"];
|
|
7
|
-
import { call, delay, put, select, takeLeading } from 'redux-saga/effects';
|
|
8
|
-
import { api, ContextHolder } from '@frontegg/rest-api';
|
|
9
|
-
import { actions } from '../reducer';
|
|
10
|
-
import { afterAuthenticationStateUpdate, afterAuthNavigation } from '../LoginState/saga';
|
|
11
|
-
import { getMfaRequiredState } from '../LoginState/mfaRequiredState.saga';
|
|
12
|
-
import { UserVeirifedOriginTypes } from '../interfaces';
|
|
13
|
-
import { ActivateAccountStep } from './interfaces';
|
|
14
|
-
import { TeamStateKeys } from '../TeamState/interfaces';
|
|
15
|
-
import { GTMEventAction, errorHandler, reportGTMEvent } from '../../utils';
|
|
16
|
-
import { isMfaRequired } from '../LoginState/utils';
|
|
17
|
-
function* preActivateAccount({
|
|
18
|
-
payload: {
|
|
19
|
-
userId,
|
|
20
|
-
token
|
|
21
|
-
}
|
|
22
|
-
}) {
|
|
23
|
-
yield put(actions.setActivateState({
|
|
24
|
-
loading: true,
|
|
25
|
-
step: ActivateAccountStep.activating
|
|
26
|
-
}));
|
|
27
|
-
try {
|
|
28
|
-
const {
|
|
29
|
-
isAuthenticated
|
|
30
|
-
} = yield select(state => state.auth);
|
|
31
|
-
if (isAuthenticated) {
|
|
32
|
-
yield put(actions.silentLogout());
|
|
33
|
-
}
|
|
34
|
-
const strategy = yield call(api.auth.getActivateAccountStrategy, {
|
|
35
|
-
userId,
|
|
36
|
-
token
|
|
37
|
-
});
|
|
38
|
-
yield put(actions.setActivateStrategyState({
|
|
39
|
-
strategy,
|
|
40
|
-
loading: false,
|
|
41
|
-
error: undefined
|
|
42
|
-
}));
|
|
43
|
-
if (strategy.shouldSetPassword) {
|
|
44
|
-
yield put(actions.setActivateState({
|
|
45
|
-
loading: false,
|
|
46
|
-
step: ActivateAccountStep.activatingForm
|
|
47
|
-
}));
|
|
48
|
-
}
|
|
49
|
-
} catch (e) {
|
|
50
|
-
yield put(actions.setActivateState({
|
|
51
|
-
loading: false,
|
|
52
|
-
error: errorHandler(e)
|
|
53
|
-
}));
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
function* activateAccount(_ref) {
|
|
57
|
-
let {
|
|
58
|
-
payload: {
|
|
59
|
-
callback,
|
|
60
|
-
events
|
|
61
|
-
}
|
|
62
|
-
} = _ref,
|
|
63
|
-
payload = _objectWithoutPropertiesLoose(_ref.payload, _excluded);
|
|
64
|
-
yield put(actions.setActivateState({
|
|
65
|
-
loading: true
|
|
66
|
-
}));
|
|
67
|
-
try {
|
|
68
|
-
const onRedirectTo = ContextHolder.onRedirectTo;
|
|
69
|
-
const {
|
|
70
|
-
routes
|
|
71
|
-
} = yield select(state => state.auth);
|
|
72
|
-
const _yield$call = yield call(api.auth.activateAccountV2, payload),
|
|
73
|
-
{
|
|
74
|
-
user
|
|
75
|
-
} = _yield$call,
|
|
76
|
-
rest = _objectWithoutPropertiesLoose(_yield$call, _excluded2);
|
|
77
|
-
if (user.redirectLocation) {
|
|
78
|
-
window.location.href = user.redirectLocation;
|
|
79
|
-
return;
|
|
80
|
-
}
|
|
81
|
-
if (isMfaRequired(user)) {
|
|
82
|
-
yield put(actions.setActivateState({
|
|
83
|
-
step: ActivateAccountStep.success
|
|
84
|
-
}));
|
|
85
|
-
const mfaRequiredState = yield getMfaRequiredState(user);
|
|
86
|
-
yield put(actions.setState(mfaRequiredState));
|
|
87
|
-
yield delay(1000);
|
|
88
|
-
onRedirectTo(routes.loginUrl, {
|
|
89
|
-
preserveQueryParams: true
|
|
90
|
-
});
|
|
91
|
-
} else {
|
|
92
|
-
var _events$userVerified;
|
|
93
|
-
yield put(actions.setActivateState({
|
|
94
|
-
step: ActivateAccountStep.success
|
|
95
|
-
}));
|
|
96
|
-
const userVerifiedPayload = {
|
|
97
|
-
email: user.email,
|
|
98
|
-
origin: UserVeirifedOriginTypes.ACTIVATION_LINK,
|
|
99
|
-
id: user.id,
|
|
100
|
-
tenantId: user.tenantId,
|
|
101
|
-
name: user.name,
|
|
102
|
-
createdAt: new Date()
|
|
103
|
-
};
|
|
104
|
-
events == null ? void 0 : (_events$userVerified = events.userVerified) == null ? void 0 : _events$userVerified.call(events, userVerifiedPayload);
|
|
105
|
-
reportGTMEvent(GTMEventAction.USER_VERIFIED, userVerifiedPayload);
|
|
106
|
-
yield call(afterAuthenticationStateUpdate, _extends({
|
|
107
|
-
user
|
|
108
|
-
}, rest), {
|
|
109
|
-
isAuthenticated: true
|
|
110
|
-
});
|
|
111
|
-
yield delay(1000);
|
|
112
|
-
yield afterAuthNavigation();
|
|
113
|
-
yield put(actions.resetActivateState());
|
|
114
|
-
}
|
|
115
|
-
callback == null ? void 0 : callback(true);
|
|
116
|
-
} catch (e) {
|
|
117
|
-
yield put(actions.setActivateState({
|
|
118
|
-
loading: false,
|
|
119
|
-
error: errorHandler(e)
|
|
120
|
-
}));
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
function* getActivateAccountStrategy({
|
|
124
|
-
payload
|
|
125
|
-
}) {
|
|
126
|
-
const {
|
|
127
|
-
callback
|
|
128
|
-
} = payload,
|
|
129
|
-
params = _objectWithoutPropertiesLoose(payload, _excluded3);
|
|
130
|
-
yield put(actions.setActivateStrategyState({
|
|
131
|
-
loading: true
|
|
132
|
-
}));
|
|
133
|
-
try {
|
|
134
|
-
const strategy = yield call(api.auth.getActivateAccountStrategy, params);
|
|
135
|
-
yield put(actions.setActivateStrategyState({
|
|
136
|
-
strategy,
|
|
137
|
-
loading: false,
|
|
138
|
-
error: undefined
|
|
139
|
-
}));
|
|
140
|
-
callback == null ? void 0 : callback(strategy);
|
|
141
|
-
} catch (e) {
|
|
142
|
-
yield put(actions.setActivateStrategyState({
|
|
143
|
-
loading: false,
|
|
144
|
-
error: errorHandler(e)
|
|
145
|
-
}));
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
function* resendActivationEmailFunction({
|
|
149
|
-
payload
|
|
150
|
-
}) {
|
|
151
|
-
const {
|
|
152
|
-
callback
|
|
153
|
-
} = payload,
|
|
154
|
-
body = _objectWithoutPropertiesLoose(payload, _excluded4);
|
|
155
|
-
yield put(actions.setTeamLoader({
|
|
156
|
-
key: TeamStateKeys.RESEND_ACTIVATE_LINK,
|
|
157
|
-
value: body.email
|
|
158
|
-
}));
|
|
159
|
-
yield put(actions.setActivateState({
|
|
160
|
-
loading: true
|
|
161
|
-
}));
|
|
162
|
-
try {
|
|
163
|
-
yield call(api.auth.resendActivationEmail, body);
|
|
164
|
-
yield put(actions.setActivateState({
|
|
165
|
-
loading: false,
|
|
166
|
-
error: undefined,
|
|
167
|
-
resentEmail: true
|
|
168
|
-
}));
|
|
169
|
-
callback == null ? void 0 : callback(true);
|
|
170
|
-
} catch (e) {
|
|
171
|
-
yield put(actions.setActivateState({
|
|
172
|
-
loading: false,
|
|
173
|
-
error: errorHandler(e)
|
|
174
|
-
}));
|
|
175
|
-
yield put(actions.setTeamError({
|
|
176
|
-
key: TeamStateKeys.RESEND_ACTIVATE_LINK,
|
|
177
|
-
value: errorHandler(e)
|
|
178
|
-
}));
|
|
179
|
-
callback == null ? void 0 : callback(null, e);
|
|
180
|
-
}
|
|
181
|
-
yield put(actions.setTeamLoader({
|
|
182
|
-
key: TeamStateKeys.RESEND_ACTIVATE_LINK,
|
|
183
|
-
value: false
|
|
184
|
-
}));
|
|
185
|
-
}
|
|
186
|
-
export function* activateSagas() {
|
|
187
|
-
yield takeLeading(actions.activateAccount, activateAccount);
|
|
188
|
-
yield takeLeading(actions.preActivateAccount, preActivateAccount);
|
|
189
|
-
yield takeLeading(actions.getActivateAccountStrategy, getActivateAccountStrategy);
|
|
190
|
-
yield takeLeading(actions.resendActivationEmail, resendActivationEmailFunction);
|
|
191
|
-
}
|