@frontegg/redux-store 5.21.0 → 5.24.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.
- package/auth/AcceptInvitationState/index.d.ts +2 -0
- package/auth/AccountSettingsState/index.d.ts +10 -0
- package/auth/ActivateState/index.d.ts +3 -0
- package/auth/ApiTokensState/index.d.ts +2 -0
- package/auth/ForgotPasswordState/index.d.ts +2 -0
- package/auth/LoginState/index.d.ts +2 -0
- package/auth/LoginState/interfaces.d.ts +2 -0
- package/auth/LoginState/saga.d.ts +2 -0
- package/auth/MfaState/index.d.ts +6 -6
- package/auth/ProfileState/index.d.ts +2 -0
- package/auth/ResetPhoneNumberState/index.d.ts +96 -0
- package/auth/ResetPhoneNumberState/interfaces.d.ts +18 -0
- package/auth/ResetPhoneNumberState/saga.d.ts +17 -0
- package/auth/RolesState/index.d.ts +2 -0
- package/auth/SSOState/index.d.ts +2 -0
- package/auth/SecurityPolicyState/index.d.ts +9 -0
- package/auth/SignUp/index.d.ts +2 -0
- package/auth/SocialLogins/index.d.ts +2 -8
- package/auth/TeamState/index.d.ts +2 -0
- package/auth/TenantsState/index.d.ts +2 -8
- package/auth/index.d.ts +13 -0
- package/auth/index.js +105 -15
- package/auth/interfaces.d.ts +15 -1
- package/auth/reducer.d.ts +13 -1
- package/auth/utils.d.ts +4 -0
- package/index.js +2 -2
- package/node/auth/index.js +115 -22
- package/node/index.js +15 -0
- package/node/subscriptions/index.js +187 -151
- package/package.json +2 -2
- package/subscriptions/ManagedSubscriptions/index.d.ts +10 -0
- package/subscriptions/ManagedSubscriptions/interfaces.d.ts +28 -0
- package/subscriptions/ManagedSubscriptions/saga.d.ts +1 -0
- package/subscriptions/index.d.ts +7 -0
- package/subscriptions/index.js +188 -152
- package/subscriptions/interfaces.d.ts +4 -0
- package/subscriptions/reducer.d.ts +7 -0
- 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 () {
|