@frontegg/redux-store 6.53.0 → 6.54.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.
@@ -166,6 +166,7 @@ export interface CustomEventsOptions {
166
166
  signUpComplete?: (payload: ISignUpCompletePayload) => void;
167
167
  inviteMemberClicked?: (payload: IInviteMemberClickedPayload) => void;
168
168
  inviteMemberSubmit?: (payload: IInviteMemberSubmitPayload) => void;
169
+ inviteMembersSubmit?: (payload: IInviteMembersSubmitPayload) => void;
169
170
  adminBoxMenuClicked?: (payload: IAdminBoxMenuClicked) => void;
170
171
  }
171
172
  export interface IUserVerifiedPayload {
@@ -182,11 +183,16 @@ export interface IInviteMemberClickedPayload {
182
183
  }
183
184
  export interface IInviteMemberSubmitPayload {
184
185
  email: string;
185
- invitedUserFullName: string;
186
+ invitedUserFullName?: string;
186
187
  invitedUserEmail: string;
187
188
  invitedUserPhoneNumber?: string;
188
189
  invitedUserRoles?: string[];
189
190
  }
191
+ export interface IInviteMembersSubmitPayload {
192
+ email: string;
193
+ invitedUserEmails: string[];
194
+ invitedUsersRoles?: string[];
195
+ }
190
196
  export interface ISignUpCompletePayload {
191
197
  name?: string;
192
198
  companyName?: string;
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.53.0
1
+ /** @license Frontegg v6.54.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.53.0
1
+ /** @license Frontegg v6.54.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/redux-store",
3
- "version": "6.53.0",
3
+ "version": "6.54.0",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "author": "Frontegg LTD",