@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/auth/index.js
CHANGED
|
@@ -1,75 +1,213 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
import { initialState } from './initialState';
|
|
5
|
-
|
|
6
|
-
// export types
|
|
7
|
-
export * from './interfaces';
|
|
8
|
-
export * from './LoginState/interfaces';
|
|
9
|
-
export * from './LoginState';
|
|
10
|
-
export * from './ActivateState/interfaces';
|
|
11
|
-
export * from './ActivateState';
|
|
12
|
-
export * from './ImpersonationState/interfaces';
|
|
13
|
-
export * from './ImpersonationState';
|
|
1
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
+
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
3
|
+
const _excluded = ["routes"];
|
|
14
4
|
export * from './AcceptInvitationState/interfaces';
|
|
15
|
-
export * from './
|
|
5
|
+
export * from './AccountSettingsState/interfaces';
|
|
6
|
+
export * from './ActivateAccountState/interfaces';
|
|
7
|
+
export * from './ApiTokensState/interfaces';
|
|
8
|
+
export * from './ApplicationsState/interfaces';
|
|
9
|
+
export * from './CustomLoginState/interfaces';
|
|
10
|
+
export * from './Entitlements/interfaces';
|
|
11
|
+
export * from './Entitlements/helpers';
|
|
16
12
|
export * from './ForgotPasswordState/interfaces';
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './SSOState';
|
|
13
|
+
export * from './GroupsState/interfaces';
|
|
14
|
+
export * from './GroupsDialogsState/interfaces';
|
|
15
|
+
export * from './ImpersonateState/interfaces';
|
|
16
|
+
export * from './LoginState/interfaces';
|
|
22
17
|
export * from './MfaState/interfaces';
|
|
23
|
-
export * from './
|
|
18
|
+
export * from './MSP/interfaces';
|
|
19
|
+
export * from './PasskeysState/interfaces';
|
|
24
20
|
export * from './ProfileState/interfaces';
|
|
25
|
-
export * from './
|
|
26
|
-
export * from './
|
|
27
|
-
export * from './TeamState';
|
|
28
|
-
export * from './GroupsState/interfaces';
|
|
29
|
-
export * from './GroupsState';
|
|
30
|
-
export * from './GroupsState/groupsDialogsState';
|
|
31
|
-
export * from './SocialLogins/interfaces';
|
|
32
|
-
export * from './SocialLogins';
|
|
33
|
-
export * from './SignUp/interfaces';
|
|
34
|
-
export * from './SignUp';
|
|
35
|
-
export * from './ApiTokensState/interfaces';
|
|
36
|
-
export * from './ApiTokensState';
|
|
37
|
-
export * from './Security/SecurityPolicyState/interfaces';
|
|
38
|
-
export * from './Security/SecurityPolicyState';
|
|
39
|
-
export * from './AccountSettingsState/interfaces';
|
|
40
|
-
export * from './AccountSettingsState';
|
|
41
|
-
export * from './TenantsState/interfaces';
|
|
42
|
-
export * from './TenantsState';
|
|
21
|
+
export * from './ProvisioningState/interfaces';
|
|
22
|
+
export * from './ResetPhoneNumberState/interfaces';
|
|
43
23
|
export * from './RolesState/interfaces';
|
|
44
|
-
export * from './RolesState';
|
|
45
|
-
export * from './SessionsState';
|
|
46
|
-
export * from './SessionsState/interfaces';
|
|
47
|
-
export * from './Security/SessionsPolicyState';
|
|
48
|
-
export * from './Security/SessionsPolicyState/interfaces';
|
|
49
|
-
export * from './Security/RestrictionsState';
|
|
50
24
|
export * from './Security/RestrictionsState/interfaces';
|
|
51
|
-
export * from './Provisioning';
|
|
52
|
-
export * from './Provisioning/interfaces';
|
|
53
|
-
export * from './Entitlements';
|
|
54
|
-
export * from './Entitlements/interfaces';
|
|
55
|
-
export * from './PasskeysState';
|
|
56
|
-
export * from './PasskeysState/interfaces';
|
|
57
|
-
export * from './Security/SecurityCenterState';
|
|
58
25
|
export * from './Security/SecurityCenterState/interfaces';
|
|
59
|
-
export * from './Security/
|
|
60
|
-
export * from './
|
|
61
|
-
export * from './
|
|
62
|
-
export * from './
|
|
63
|
-
export * from './
|
|
64
|
-
export * from './
|
|
65
|
-
export * from './
|
|
66
|
-
export
|
|
67
|
-
|
|
68
|
-
export
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
26
|
+
export * from './Security/SecurityPolicyState/interfaces';
|
|
27
|
+
export * from './Security/SessionsPolicyState/interfaces';
|
|
28
|
+
export * from './SessionsState/interfaces';
|
|
29
|
+
export * from './SignUpState/interfaces';
|
|
30
|
+
export * from './SmsState/interfaces';
|
|
31
|
+
export * from './SocialLoginState/interfaces';
|
|
32
|
+
export * from './SSOState/interfaces';
|
|
33
|
+
export * from './StepUpState/interfaces';
|
|
34
|
+
export * from './TeamState/interfaces';
|
|
35
|
+
export * from './TenantsState/interfaces';
|
|
36
|
+
export * from './interfaces';
|
|
37
|
+
import { createAcceptInvitationState, buildAcceptInvitationActions } from './AcceptInvitationState';
|
|
38
|
+
import { createAccountSettingsState, buildAccountSettingsActions } from './AccountSettingsState';
|
|
39
|
+
import { createActivateAccountState, buildActivateAccountActions } from './ActivateAccountState';
|
|
40
|
+
import { createApiTokensState, buildApiTokensActions } from './ApiTokensState';
|
|
41
|
+
import { createApplicationsState, buildApplicationsActions } from './ApplicationsState';
|
|
42
|
+
import { createCustomLoginState, buildCustomLoginActions } from './CustomLoginState';
|
|
43
|
+
import { buildForgotPasswordActions, createForgotPasswordState } from './ForgotPasswordState';
|
|
44
|
+
import { createGroupsState, buildGroupsActions } from './GroupsState';
|
|
45
|
+
import { createGroupsDialogsState, buildGroupsDialogsActions } from './GroupsDialogsState';
|
|
46
|
+
import { createImpersonateState, buildImpersonateActions } from './ImpersonateState';
|
|
47
|
+
import { createLoginState, buildLoginActions } from './LoginState';
|
|
48
|
+
import { createMfaState, buildMfaActions } from './MfaState';
|
|
49
|
+
import { createAllAccountsState, buildAllAccountsActions } from './MSP';
|
|
50
|
+
import { createAllAccountsDialogState, buildAllAccountsDialogActions } from './MSP';
|
|
51
|
+
import { createPasskeysState, buildPasskeysActions } from './PasskeysState';
|
|
52
|
+
import { createProfileState, buildProfileActions } from './ProfileState';
|
|
53
|
+
import { createProvisioningState, buildProvisioningActions } from './ProvisioningState';
|
|
54
|
+
import { createResetPhoneNumberState, buildResetPhoneNumberActions } from './ResetPhoneNumberState';
|
|
55
|
+
import { createRolesState, buildRolesActions } from './RolesState';
|
|
56
|
+
import { createRestrictionsState, buildRestrictionsActions } from './Security/RestrictionsState';
|
|
57
|
+
import { createSecurityCenterState, buildSecurityCenterActions } from './Security/SecurityCenterState';
|
|
58
|
+
import { createSecurityPolicyState, buildSecurityPolicyActions } from './Security/SecurityPolicyState';
|
|
59
|
+
import { createSessionsPolicyState, buildSessionsPolicyActions } from './Security/SessionsPolicyState';
|
|
60
|
+
import { createSessionsState, buildSessionsActions } from './SessionsState';
|
|
61
|
+
import { createSignUpState, buildSignUpActions } from './SignUpState';
|
|
62
|
+
import { createSmsState, buildSmsActions } from './SmsState';
|
|
63
|
+
import { createSocialLoginState, buildSocialLoginActions } from './SocialLoginState';
|
|
64
|
+
import { createSSOState, buildSSOActions } from './SSOState';
|
|
65
|
+
import { createStepUpState, buildStepUpActions } from './StepUpState';
|
|
66
|
+
import { createTeamState, buildTeamActions } from './TeamState';
|
|
67
|
+
import { createTenantsState, buildTenantsActions } from './TenantsState';
|
|
68
|
+
import { defaultFronteggRoutes } from './LoginState/consts';
|
|
69
|
+
import { isProxy } from '../helpers';
|
|
70
|
+
import { buildEntitlementsActions } from './Entitlements';
|
|
71
|
+
import { createProxy } from '../toolkit/proxy';
|
|
72
|
+
export const createAuthState = _overrideState => {
|
|
73
|
+
const _ref = _overrideState != null ? _overrideState : {},
|
|
74
|
+
{
|
|
75
|
+
routes
|
|
76
|
+
} = _ref,
|
|
77
|
+
overrideState = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
78
|
+
return createProxy(_extends({
|
|
79
|
+
routes: _extends({}, defaultFronteggRoutes, routes),
|
|
80
|
+
onRedirectTo: () => void 0,
|
|
81
|
+
isAuthenticated: false,
|
|
82
|
+
isLoading: true,
|
|
83
|
+
isSSOAuth: false,
|
|
84
|
+
user: null,
|
|
85
|
+
error: undefined,
|
|
86
|
+
userIp: undefined
|
|
87
|
+
}, overrideState, {
|
|
88
|
+
// nested states
|
|
89
|
+
acceptInvitationState: createAcceptInvitationState(overrideState == null ? void 0 : overrideState.acceptInvitationState),
|
|
90
|
+
accountSettingsState: createAccountSettingsState(overrideState == null ? void 0 : overrideState.accountSettingsState),
|
|
91
|
+
activateAccountState: createActivateAccountState(overrideState == null ? void 0 : overrideState.activateAccountState),
|
|
92
|
+
apiTokensState: createApiTokensState(overrideState == null ? void 0 : overrideState.apiTokensState),
|
|
93
|
+
applicationsState: createApplicationsState(overrideState == null ? void 0 : overrideState.applicationsState),
|
|
94
|
+
customLoginState: createCustomLoginState(overrideState == null ? void 0 : overrideState.customLoginState),
|
|
95
|
+
forgotPasswordState: createForgotPasswordState(overrideState == null ? void 0 : overrideState.forgotPasswordState),
|
|
96
|
+
groupsState: createGroupsState(overrideState == null ? void 0 : overrideState.groupsState),
|
|
97
|
+
groupsDialogsState: createGroupsDialogsState(overrideState == null ? void 0 : overrideState.groupsDialogsState),
|
|
98
|
+
impersonateState: createImpersonateState(overrideState == null ? void 0 : overrideState.impersonateState),
|
|
99
|
+
loginState: createLoginState(overrideState == null ? void 0 : overrideState.loginState),
|
|
100
|
+
mfaState: createMfaState(overrideState == null ? void 0 : overrideState.mfaState),
|
|
101
|
+
allAccountsState: createAllAccountsState(overrideState == null ? void 0 : overrideState.allAccountsState),
|
|
102
|
+
allAccountsDialogsState: createAllAccountsDialogState(overrideState == null ? void 0 : overrideState.allAccountsDialogsState),
|
|
103
|
+
passkeysState: createPasskeysState(overrideState == null ? void 0 : overrideState.passkeysState),
|
|
104
|
+
profileState: createProfileState(overrideState == null ? void 0 : overrideState.profileState),
|
|
105
|
+
provisioningState: createProvisioningState(overrideState == null ? void 0 : overrideState.provisioningState),
|
|
106
|
+
resetPhoneNumberState: createResetPhoneNumberState(overrideState == null ? void 0 : overrideState.resetPhoneNumberState),
|
|
107
|
+
rolesState: createRolesState(overrideState == null ? void 0 : overrideState.rolesState),
|
|
108
|
+
restrictionsState: createRestrictionsState(overrideState == null ? void 0 : overrideState.restrictionsState),
|
|
109
|
+
securityCenterState: createSecurityCenterState(overrideState == null ? void 0 : overrideState.securityCenterState),
|
|
110
|
+
securityPolicyState: createSecurityPolicyState(overrideState == null ? void 0 : overrideState.securityPolicyState),
|
|
111
|
+
sessionsPolicyState: createSessionsPolicyState(overrideState == null ? void 0 : overrideState.sessionsPolicyState),
|
|
112
|
+
sessionsState: createSessionsState(overrideState == null ? void 0 : overrideState.sessionsState),
|
|
113
|
+
signUpState: createSignUpState(overrideState == null ? void 0 : overrideState.signUpState),
|
|
114
|
+
smsState: createSmsState(overrideState == null ? void 0 : overrideState.smsState),
|
|
115
|
+
socialLoginState: createSocialLoginState(overrideState == null ? void 0 : overrideState.socialLoginState),
|
|
116
|
+
ssoState: createSSOState(overrideState == null ? void 0 : overrideState.ssoState),
|
|
117
|
+
stepUpState: createStepUpState(overrideState == null ? void 0 : overrideState.stepUpState),
|
|
118
|
+
teamState: createTeamState(overrideState == null ? void 0 : overrideState.teamState),
|
|
119
|
+
tenantsState: createTenantsState(overrideState == null ? void 0 : overrideState.tenantsState)
|
|
120
|
+
}));
|
|
121
|
+
};
|
|
122
|
+
export const buildAuthActions = (store, api, actions, snapshotAuthState) => {
|
|
123
|
+
const setAuthState = state => {
|
|
124
|
+
Object.keys(state).forEach(key => {
|
|
125
|
+
if (isProxy(store.auth[key])) {
|
|
126
|
+
Object.assign(store.auth[key], state[key]);
|
|
127
|
+
} else {
|
|
128
|
+
store.auth[key] = state[key];
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
};
|
|
132
|
+
const resetAuthState = () => {
|
|
133
|
+
setAuthState(snapshotAuthState);
|
|
134
|
+
};
|
|
135
|
+
const setUser = user => {
|
|
136
|
+
setAuthState({
|
|
137
|
+
user
|
|
138
|
+
});
|
|
139
|
+
};
|
|
140
|
+
const acceptInvitationActions = buildAcceptInvitationActions(store, api, actions);
|
|
141
|
+
const accountSettingsActions = buildAccountSettingsActions(store, api, actions);
|
|
142
|
+
const activateAccountActions = buildActivateAccountActions(store, api, actions);
|
|
143
|
+
const apiTokensActions = buildApiTokensActions(store, api, actions);
|
|
144
|
+
const applicationsActions = buildApplicationsActions(store, api, actions);
|
|
145
|
+
const customLoginActions = buildCustomLoginActions(store, api, actions);
|
|
146
|
+
const entitlementsActions = buildEntitlementsActions(store, api, actions);
|
|
147
|
+
const forgotPasswordActions = buildForgotPasswordActions(store, api, actions);
|
|
148
|
+
const groupsActions = buildGroupsActions(store, api, actions);
|
|
149
|
+
const groupsDialogsActions = buildGroupsDialogsActions(store, api, actions);
|
|
150
|
+
const impersonateActions = buildImpersonateActions(store, api, actions);
|
|
151
|
+
const loginActions = buildLoginActions(store, api, actions);
|
|
152
|
+
const mfaActions = buildMfaActions(store, api, actions);
|
|
153
|
+
const allAccountsActions = buildAllAccountsActions(store, api, actions);
|
|
154
|
+
const allAccountsDialogActions = buildAllAccountsDialogActions(store, api, actions);
|
|
155
|
+
const passkeysActions = buildPasskeysActions(store, api, actions);
|
|
156
|
+
const profileActions = buildProfileActions(store, api, actions);
|
|
157
|
+
const provisioningActions = buildProvisioningActions(store, api, actions);
|
|
158
|
+
const resetPhoneNumberActions = buildResetPhoneNumberActions(store, api, actions);
|
|
159
|
+
const rolesActions = buildRolesActions(store, api, actions);
|
|
160
|
+
const restrictionsActions = buildRestrictionsActions(store, api, actions);
|
|
161
|
+
const securityCenterActions = buildSecurityCenterActions(store, api, actions);
|
|
162
|
+
const securityPolicyActions = buildSecurityPolicyActions(store, api, actions);
|
|
163
|
+
const sessionsPolicyActions = buildSessionsPolicyActions(store, api, actions);
|
|
164
|
+
const sessionsActions = buildSessionsActions(store, api, actions);
|
|
165
|
+
const signUpActions = buildSignUpActions(store, api, actions);
|
|
166
|
+
const smsActions = buildSmsActions(store, api, actions);
|
|
167
|
+
const socialLoginActions = buildSocialLoginActions(store, api, actions);
|
|
168
|
+
const ssoActions = buildSSOActions(store, api, actions);
|
|
169
|
+
const stepUpActions = buildStepUpActions(store, api, actions);
|
|
170
|
+
const teamActions = buildTeamActions(store, api, actions);
|
|
171
|
+
const tenantsActions = buildTenantsActions(store, api, actions);
|
|
172
|
+
const stateActions = {
|
|
173
|
+
acceptInvitationActions,
|
|
174
|
+
accountSettingsActions,
|
|
175
|
+
activateAccountActions,
|
|
176
|
+
apiTokensActions,
|
|
177
|
+
applicationsActions,
|
|
178
|
+
customLoginActions,
|
|
179
|
+
entitlementsActions,
|
|
180
|
+
forgotPasswordActions,
|
|
181
|
+
groupsActions,
|
|
182
|
+
groupsDialogsActions,
|
|
183
|
+
impersonateActions,
|
|
184
|
+
loginActions,
|
|
185
|
+
mfaActions,
|
|
186
|
+
allAccountsActions,
|
|
187
|
+
allAccountsDialogActions,
|
|
188
|
+
passkeysActions,
|
|
189
|
+
profileActions,
|
|
190
|
+
provisioningActions,
|
|
191
|
+
resetPhoneNumberActions,
|
|
192
|
+
rolesActions,
|
|
193
|
+
restrictionsActions,
|
|
194
|
+
securityCenterActions,
|
|
195
|
+
securityPolicyActions,
|
|
196
|
+
sessionsPolicyActions,
|
|
197
|
+
sessionsActions,
|
|
198
|
+
signUpActions,
|
|
199
|
+
smsActions,
|
|
200
|
+
socialLoginActions,
|
|
201
|
+
ssoActions,
|
|
202
|
+
stepUpActions,
|
|
203
|
+
teamActions,
|
|
204
|
+
tenantsActions
|
|
205
|
+
};
|
|
206
|
+
return [_extends({
|
|
207
|
+
setAuthState,
|
|
208
|
+
/** @deprecated use setAuthState instead */
|
|
209
|
+
setState: setAuthState,
|
|
210
|
+
resetAuthState,
|
|
211
|
+
setUser
|
|
212
|
+
}, Object.values(stateActions).reduce((acc, actions) => _extends({}, acc, actions), {})), stateActions];
|
|
75
213
|
};
|
package/auth/interfaces.d.ts
CHANGED
|
@@ -1,49 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { ActivateAccountState } from './
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
accessToken: string;
|
|
33
|
-
refreshToken?: string;
|
|
34
|
-
expiresIn: number;
|
|
35
|
-
expires: string;
|
|
36
|
-
sid?: string;
|
|
37
|
-
act?: Actor;
|
|
38
|
-
subAccountAccessAllowed?: boolean;
|
|
39
|
-
}
|
|
40
|
-
export interface Routes {
|
|
41
|
-
routes: AuthPageRoutes;
|
|
42
|
-
}
|
|
43
|
-
interface PluginOptions {
|
|
44
|
-
header?: any;
|
|
45
|
-
loaderComponent?: any;
|
|
46
|
-
}
|
|
1
|
+
import type { AcceptInvitationState } from './AcceptInvitationState/interfaces';
|
|
2
|
+
import type { AccountSettingsState } from './AccountSettingsState/interfaces';
|
|
3
|
+
import type { ActivateAccountState } from './ActivateAccountState/interfaces';
|
|
4
|
+
import type { ApiTokensState } from './ApiTokensState/interfaces';
|
|
5
|
+
import type { CustomLoginState } from './CustomLoginState/interfaces';
|
|
6
|
+
import type { ForgotPasswordState } from './ForgotPasswordState/interfaces';
|
|
7
|
+
import type { GroupsState } from './GroupsState/interfaces';
|
|
8
|
+
import type { GroupsDialogsState } from './GroupsDialogsState/interfaces';
|
|
9
|
+
import type { ImpersonateState } from './ImpersonateState/interfaces';
|
|
10
|
+
import type { LoginState } from './LoginState/interfaces';
|
|
11
|
+
import type { MFAState } from './MfaState/interfaces';
|
|
12
|
+
import type { PasskeysState } from './PasskeysState/interfaces';
|
|
13
|
+
import type { IUserProfile, RedirectOptions, SocialLoginProviders } from '@frontegg/rest-api';
|
|
14
|
+
import type { ProfileState } from './ProfileState/interfaces';
|
|
15
|
+
import type { ProvisioningState } from './ProvisioningState/interfaces';
|
|
16
|
+
import type { ResetPhoneNumberState } from './ResetPhoneNumberState/interfaces';
|
|
17
|
+
import type { RolesState } from './RolesState/interfaces';
|
|
18
|
+
import type { SessionsPolicyState } from './Security/SessionsPolicyState/interfaces';
|
|
19
|
+
import type { SecurityPolicyState } from './Security/SecurityPolicyState/interfaces';
|
|
20
|
+
import type { SecurityCenterState } from './Security/SecurityCenterState/interfaces';
|
|
21
|
+
import type { RestrictionsState } from './Security/RestrictionsState/interfaces';
|
|
22
|
+
import type { SessionsState } from './SessionsState/interfaces';
|
|
23
|
+
import type { SignUpState } from './SignUpState/interfaces';
|
|
24
|
+
import type { SmsState } from './SmsState/interfaces';
|
|
25
|
+
import type { SocialLoginState } from './SocialLoginState/interfaces';
|
|
26
|
+
import type { SSOState } from './SSOState/interfaces';
|
|
27
|
+
import type { StepUpState } from './StepUpState/interfaces';
|
|
28
|
+
import type { TeamState } from './TeamState/interfaces';
|
|
29
|
+
import type { TenantsState } from './TenantsState/interfaces';
|
|
30
|
+
import type { IAllAccountsDialogsState, IAllAccountsState } from './MSP/interfaces';
|
|
31
|
+
import { ApplicationsState } from './ApplicationsState/interfaces';
|
|
47
32
|
export interface AuthState extends Routes, PluginOptions {
|
|
48
33
|
onRedirectTo: (path: string, opts?: RedirectOptions) => void;
|
|
49
34
|
error?: any;
|
|
@@ -51,40 +36,74 @@ export interface AuthState extends Routes, PluginOptions {
|
|
|
51
36
|
userIp?: string;
|
|
52
37
|
isLoading: boolean;
|
|
53
38
|
keepSessionAlive?: boolean;
|
|
39
|
+
socialLoginOptions?: {
|
|
40
|
+
promptConsent?: boolean;
|
|
41
|
+
};
|
|
54
42
|
user?: User | null;
|
|
55
43
|
isSSOAuth: boolean;
|
|
56
44
|
ssoACS?: string;
|
|
57
45
|
includeQueryParam?: boolean;
|
|
58
|
-
|
|
59
|
-
|
|
46
|
+
hostedLoginBox?: boolean;
|
|
47
|
+
disableSilentRefresh?: boolean;
|
|
48
|
+
enforceRedirectToSameSite?: boolean;
|
|
49
|
+
allowedRedirectOrigins?: string[];
|
|
60
50
|
acceptInvitationState: AcceptInvitationState;
|
|
51
|
+
accountSettingsState: AccountSettingsState;
|
|
52
|
+
activateAccountState: ActivateAccountState;
|
|
53
|
+
apiTokensState: ApiTokensState;
|
|
54
|
+
customLoginState: CustomLoginState;
|
|
61
55
|
forgotPasswordState: ForgotPasswordState;
|
|
62
|
-
resetPhoneNumberState: ResetPhoneNumberState;
|
|
63
|
-
ssoState: SSOState;
|
|
64
|
-
profileState: ProfileState;
|
|
65
|
-
mfaState: MFAState;
|
|
66
|
-
teamState: TeamState;
|
|
67
56
|
groupsState: GroupsState;
|
|
68
57
|
groupsDialogsState: GroupsDialogsState;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
58
|
+
impersonateState: ImpersonateState;
|
|
59
|
+
loginState: LoginState;
|
|
60
|
+
mfaState: MFAState;
|
|
61
|
+
allAccountsState: IAllAccountsState;
|
|
62
|
+
allAccountsDialogsState: IAllAccountsDialogsState;
|
|
63
|
+
passkeysState: PasskeysState;
|
|
64
|
+
profileState: ProfileState;
|
|
74
65
|
provisioningState: ProvisioningState;
|
|
75
|
-
|
|
76
|
-
tenantsState: TenantsState;
|
|
66
|
+
resetPhoneNumberState: ResetPhoneNumberState;
|
|
77
67
|
rolesState: RolesState;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
68
|
+
restrictionsState: RestrictionsState;
|
|
69
|
+
securityCenterState: SecurityCenterState;
|
|
70
|
+
securityPolicyState: SecurityPolicyState;
|
|
81
71
|
sessionsPolicyState: SessionsPolicyState;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
72
|
+
sessionsState: SessionsState;
|
|
73
|
+
signUpState: SignUpState;
|
|
74
|
+
smsState: SmsState;
|
|
75
|
+
socialLoginState: SocialLoginState;
|
|
76
|
+
ssoState: SSOState;
|
|
77
|
+
stepUpState: StepUpState;
|
|
78
|
+
teamState: TeamState;
|
|
79
|
+
tenantsState: TenantsState;
|
|
80
|
+
applicationsState: ApplicationsState;
|
|
81
|
+
}
|
|
82
|
+
interface Actor {
|
|
83
|
+
sub?: string;
|
|
84
|
+
}
|
|
85
|
+
export interface User extends IUserProfile {
|
|
86
|
+
accessToken: string;
|
|
87
|
+
refreshToken?: string;
|
|
88
|
+
expiresIn: number;
|
|
89
|
+
/**
|
|
90
|
+
* @deprecated use exp instead
|
|
91
|
+
*/
|
|
92
|
+
expires: string;
|
|
93
|
+
exp: number;
|
|
94
|
+
sid?: string;
|
|
95
|
+
act?: Actor;
|
|
96
|
+
subAccountAccessAllowed?: boolean;
|
|
97
|
+
amr?: string[];
|
|
98
|
+
acr?: string;
|
|
99
|
+
auth_time?: number;
|
|
100
|
+
}
|
|
101
|
+
export interface Routes {
|
|
102
|
+
routes: AuthPageRoutes;
|
|
103
|
+
}
|
|
104
|
+
interface PluginOptions {
|
|
105
|
+
header?: any;
|
|
106
|
+
loaderComponent?: any;
|
|
88
107
|
}
|
|
89
108
|
export declare type AuthPageRoutes = {
|
|
90
109
|
/**
|
|
@@ -97,7 +116,11 @@ export declare type AuthPageRoutes = {
|
|
|
97
116
|
*/
|
|
98
117
|
loginUrl: string;
|
|
99
118
|
/**
|
|
100
|
-
*
|
|
119
|
+
* the page whether you need to redirect in the case when a customer ask to step up and the user doesn't stepped up already
|
|
120
|
+
*/
|
|
121
|
+
stepUpUrl: string;
|
|
122
|
+
/**
|
|
123
|
+
* navigating to this url, AuthProvider will log out and remove cookies
|
|
101
124
|
*/
|
|
102
125
|
logoutUrl: string;
|
|
103
126
|
/**
|
|
@@ -109,7 +132,7 @@ export declare type AuthPageRoutes = {
|
|
|
109
132
|
*/
|
|
110
133
|
impersonationUrl: string;
|
|
111
134
|
/**
|
|
112
|
-
* the page whether need to redirect in the case when a user want to accept invite to
|
|
135
|
+
* the page whether you need to redirect in the case when a user want to accept invite to tenant
|
|
113
136
|
*/
|
|
114
137
|
acceptInvitationUrl: string;
|
|
115
138
|
/**
|
|
@@ -168,6 +191,10 @@ export declare type AuthPageRoutes = {
|
|
|
168
191
|
* custom login Authenticated url
|
|
169
192
|
*/
|
|
170
193
|
customLoginAuthenticatedUrl?: string;
|
|
194
|
+
/**
|
|
195
|
+
* open app url used for redirecting to app after login
|
|
196
|
+
*/
|
|
197
|
+
openAppUrl?: string;
|
|
171
198
|
};
|
|
172
199
|
export declare enum UserVeirifedOriginTypes {
|
|
173
200
|
SOCIAL_LOGIN = "SOCIAL_LOGIN",
|
|
@@ -221,15 +248,18 @@ export interface IInviteMemberSubmitPayload {
|
|
|
221
248
|
invitedUserEmail: string;
|
|
222
249
|
invitedUserPhoneNumber?: string;
|
|
223
250
|
invitedUserRoles?: string[];
|
|
251
|
+
expirationInSeconds?: number;
|
|
224
252
|
}
|
|
225
253
|
export interface IInviteMembersSubmitPayload {
|
|
226
254
|
email: string;
|
|
227
255
|
invitedUserEmails: string[];
|
|
228
256
|
invitedUsersRoles?: string[];
|
|
257
|
+
expirationInSeconds?: number;
|
|
229
258
|
}
|
|
230
259
|
export interface ISignUpCompletePayload {
|
|
231
260
|
name?: string;
|
|
232
261
|
companyName?: string;
|
|
262
|
+
phoneNumber?: string;
|
|
233
263
|
email: string;
|
|
234
264
|
id?: string;
|
|
235
265
|
createdAt?: Date;
|
package/auth/interfaces.js
CHANGED
|
@@ -10,6 +10,8 @@ export let AuthenticationTypes;
|
|
|
10
10
|
AuthenticationTypes["PASSWORD"] = "PASSWORD";
|
|
11
11
|
})(AuthenticationTypes || (AuthenticationTypes = {}));
|
|
12
12
|
export let AdminPortalPagesForEvents;
|
|
13
|
+
|
|
14
|
+
// noinspection JSUnusedGlobalSymbols
|
|
13
15
|
(function (AdminPortalPagesForEvents) {
|
|
14
16
|
AdminPortalPagesForEvents["profile"] = "profile";
|
|
15
17
|
AdminPortalPagesForEvents["privacy"] = "privacy";
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { FronteggState, RestApi, SharedActions, WithCallback } from '../interfaces';
|
|
2
|
+
import { ConnectivityState, TPlatform, TPostData } from './interfaces';
|
|
3
|
+
import { IWebhookTest } from '@frontegg/rest-api';
|
|
4
|
+
declare const _default: (store: FronteggState, api: RestApi, sharedActions: SharedActions) => {
|
|
5
|
+
setConnectivityState: (state: Partial<ConnectivityState>) => void;
|
|
6
|
+
initData: () => void;
|
|
7
|
+
resetConnectivityState: () => void;
|
|
8
|
+
loadSlackActions: () => Promise<void>;
|
|
9
|
+
loadSlackChannels: () => Promise<void>;
|
|
10
|
+
loadDataAction: (_payload?: TPlatform[] | undefined) => Promise<void>;
|
|
11
|
+
loadConnectivityChannels: (_payload?: TPlatform[] | undefined) => Promise<void>;
|
|
12
|
+
postDataAction: (payload: WithCallback<TPostData>) => Promise<void>;
|
|
13
|
+
postChannelData: (payload: WithCallback<TPostData>) => Promise<void>;
|
|
14
|
+
postCodeAction: (payload: string) => Promise<void>;
|
|
15
|
+
postSlackCode: (payload: string) => Promise<void>;
|
|
16
|
+
loadScope: () => Promise<void>;
|
|
17
|
+
loadSlackPermissions: () => Promise<void>;
|
|
18
|
+
deleteWebhookConfigAction: (payload: WithCallback<{
|
|
19
|
+
webhookId: string;
|
|
20
|
+
}>) => Promise<void>;
|
|
21
|
+
deleteWebhookConfig: (payload: WithCallback<{
|
|
22
|
+
webhookId: string;
|
|
23
|
+
}>) => Promise<void>;
|
|
24
|
+
postWebhookTestAction: (payload: IWebhookTest) => Promise<void>;
|
|
25
|
+
postWebhookTest: (payload: IWebhookTest) => Promise<void>;
|
|
26
|
+
postWebhookRetryAction: (payload: string) => Promise<void>;
|
|
27
|
+
postWebhookRetry: (payload: string) => Promise<void>;
|
|
28
|
+
loadWebhookLogsAction: (payload: {
|
|
29
|
+
id: string;
|
|
30
|
+
offset: number;
|
|
31
|
+
limit: number;
|
|
32
|
+
}) => Promise<void>;
|
|
33
|
+
loadWebhookLogs: (payload: {
|
|
34
|
+
id: string;
|
|
35
|
+
offset: number;
|
|
36
|
+
limit: number;
|
|
37
|
+
}) => Promise<void>;
|
|
38
|
+
cleanWebhookTestData: () => void;
|
|
39
|
+
cleanWebhookLogsData: () => Promise<void>;
|
|
40
|
+
cleanWebhookTestMessage: (state: ConnectivityState) => Promise<void>;
|
|
41
|
+
cleanError: () => Promise<void>;
|
|
42
|
+
cleanSlackData: () => Promise<void>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|