@frontegg/redux-store 5.20.1 → 5.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/auth/AcceptInvitationState/index.d.ts +2 -0
  2. package/auth/AccountSettingsState/index.d.ts +10 -0
  3. package/auth/ActivateState/index.d.ts +3 -0
  4. package/auth/ApiTokensState/index.d.ts +2 -0
  5. package/auth/ForgotPasswordState/index.d.ts +2 -0
  6. package/auth/LoginState/index.d.ts +2 -0
  7. package/auth/LoginState/interfaces.d.ts +2 -0
  8. package/auth/LoginState/saga.d.ts +2 -0
  9. package/auth/MfaState/index.d.ts +6 -6
  10. package/auth/ProfileState/index.d.ts +2 -0
  11. package/auth/ResetPhoneNumberState/index.d.ts +96 -0
  12. package/auth/ResetPhoneNumberState/interfaces.d.ts +18 -0
  13. package/auth/ResetPhoneNumberState/saga.d.ts +17 -0
  14. package/auth/RolesState/index.d.ts +2 -0
  15. package/auth/SSOState/index.d.ts +2 -0
  16. package/auth/SecurityPolicyState/index.d.ts +9 -0
  17. package/auth/SignUp/index.d.ts +2 -0
  18. package/auth/SocialLogins/index.d.ts +2 -8
  19. package/auth/TeamState/index.d.ts +2 -0
  20. package/auth/TenantsState/index.d.ts +2 -8
  21. package/auth/index.d.ts +13 -0
  22. package/auth/index.js +105 -15
  23. package/auth/interfaces.d.ts +15 -1
  24. package/auth/reducer.d.ts +13 -1
  25. package/auth/utils.d.ts +4 -0
  26. package/index.js +2 -2
  27. package/node/auth/index.js +115 -22
  28. package/node/index.js +15 -0
  29. package/node/subscriptions/index.js +182 -138
  30. package/package.json +2 -2
  31. package/subscriptions/ManagedSubscriptions/index.d.ts +10 -0
  32. package/subscriptions/ManagedSubscriptions/interfaces.d.ts +28 -0
  33. package/subscriptions/ManagedSubscriptions/saga.d.ts +1 -0
  34. package/subscriptions/index.d.ts +7 -0
  35. package/subscriptions/index.js +183 -139
  36. package/subscriptions/interfaces.d.ts +4 -0
  37. package/subscriptions/reducer.d.ts +7 -0
  38. package/toolkit/index.d.ts +1 -1
package/node/index.js CHANGED
@@ -60,6 +60,12 @@ Object.defineProperty(exports, 'MFAStep', {
60
60
  return auth_index.MFAStep;
61
61
  }
62
62
  });
63
+ Object.defineProperty(exports, 'ResetPhoneNumberStep', {
64
+ enumerable: true,
65
+ get: function () {
66
+ return auth_index.ResetPhoneNumberStep;
67
+ }
68
+ });
63
69
  Object.defineProperty(exports, 'SSOStateKeys', {
64
70
  enumerable: true,
65
71
  get: function () {
@@ -114,6 +120,9 @@ exports.mfaState = auth_index.mfaState;
114
120
  exports.profileActions = auth_index.profileActions;
115
121
  exports.profileReducers = auth_index.profileReducers;
116
122
  exports.profileState = auth_index.profileState;
123
+ exports.resetPhoneNumberActions = auth_index.resetPhoneNumberActions;
124
+ exports.resetPhoneNumberReducers = auth_index.resetPhoneNumberReducers;
125
+ exports.resetPhoneNumberState = auth_index.resetPhoneNumberState;
117
126
  exports.rolesActions = auth_index.rolesActions;
118
127
  exports.rolesReducers = auth_index.rolesReducers;
119
128
  exports.rolesState = auth_index.rolesState;
@@ -164,6 +173,12 @@ Object.defineProperty(exports, 'CheckoutStatus', {
164
173
  return subscriptions_index.CheckoutStatus;
165
174
  }
166
175
  });
176
+ Object.defineProperty(exports, 'ManagedSubscriptionStatus', {
177
+ enumerable: true,
178
+ get: function () {
179
+ return subscriptions_index.ManagedSubscriptionStatus;
180
+ }
181
+ });
167
182
  Object.defineProperty(exports, 'PaymentMethodType', {
168
183
  enumerable: true,
169
184
  get: function () {