@frontegg/js 7.92.0 → 7.93.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.
@@ -1839,7 +1839,7 @@ __webpack_require__.r(__webpack_exports__);
1839
1839
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
1840
1840
  /* harmony export */ });
1841
1841
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
1842
- cdnVersion: '7.92.0'
1842
+ cdnVersion: '7.93.0'
1843
1843
  });
1844
1844
 
1845
1845
  /***/ }),
@@ -16010,6 +16010,186 @@ const _excluded = ["callback", "appIds"],
16010
16010
  return [];
16011
16011
  }
16012
16012
  };
16013
+
16014
+ /**
16015
+ * @private
16016
+ * Enriches users with roles, groups, permissions, and application data
16017
+ */
16018
+ const __enrichUsersWithRolesGroupsAndPermissions = async (users, options) => {
16019
+ const {
16020
+ shouldLoadRoles = true,
16021
+ shouldLoadApps,
16022
+ retryConfig
16023
+ } = options;
16024
+
16025
+ // Get user IDs for fetching roles and groups
16026
+ const userIds = users.map(user => user.id);
16027
+
16028
+ // Fetch roles, permissions, user roles, user groups, and all groups in parallel
16029
+ const [{
16030
+ items: userUsernames
16031
+ }, {
16032
+ items: roles
16033
+ }, permissions, userRoles, userGroups, groups] = await Promise.all([userIds.length > 0 ? api.users.getUsersUsernames({
16034
+ userIds
16035
+ }) : {
16036
+ items: []
16037
+ }, api.teams.loadAvailableRoles(), api.teams.loadAvailablePermissions(), userIds.length > 0 ? api.users.getUsersRoles({
16038
+ ids: userIds
16039
+ }) : [], userIds.length > 0 ? api.users.getUsersGroups({
16040
+ ids: userIds
16041
+ }) : [], __getGroupsForUsers(retryConfig), shouldLoadRoles ? loadRoles({
16042
+ retryConfig
16043
+ }) : undefined]);
16044
+
16045
+ // Map user roles and groups to users
16046
+ const usersWithRolesAndGroups = users.map(user => {
16047
+ var _userUsernames$find;
16048
+ // Find user's role IDs
16049
+ const userRoleData = userRoles.find(ur => ur.userId === user.id);
16050
+ const userRoleIds = (userRoleData == null ? void 0 : userRoleData.roleIds) || [];
16051
+ const userRolesFull = roles.filter(role => userRoleIds.includes(role.id));
16052
+
16053
+ // Find user's group IDs
16054
+ const userGroupData = userGroups.find(ug => ug.userId === user.id);
16055
+ const userGroupIds = (userGroupData == null ? void 0 : userGroupData.groupIds) || [];
16056
+ const userGroupsFull = groups.filter(g => userGroupIds.includes(g.id));
16057
+
16058
+ // Find user's username
16059
+ const userUsername = userUsernames == null ? void 0 : (_userUsernames$find = userUsernames.find(username => username.userId === user.id)) == null ? void 0 : _userUsernames$find.username;
16060
+ if (!user.name) {
16061
+ user.name = userUsername;
16062
+ }
16063
+
16064
+ //@ts-ignore
16065
+ return (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, user, {
16066
+ roles: userRolesFull,
16067
+ roleIds: userRoleIds,
16068
+ groups: userGroupsFull,
16069
+ permissions: userRolesFull.flatMap(role => role.permissions)
16070
+ });
16071
+ });
16072
+
16073
+ // Add application data if needed
16074
+ const enrichedUsers = await sharedActions.mapUsersWithApplicationData({
16075
+ shouldLoadApps,
16076
+ users: usersWithRolesAndGroups,
16077
+ retryConfig
16078
+ });
16079
+ return {
16080
+ enrichedUsers,
16081
+ roles,
16082
+ permissions
16083
+ };
16084
+ };
16085
+
16086
+ /**
16087
+ * @private
16088
+ * Sets team state with users data and invokes callback
16089
+ */
16090
+ const __setUsersStateAndCallback = (enrichedUsers, roles, permissions, totalPages, totalItems, callback) => {
16091
+ sharedActions.setTeamState({
16092
+ users: enrichedUsers,
16093
+ totalPages,
16094
+ totalItems,
16095
+ roles,
16096
+ permissions
16097
+ });
16098
+ actions.setTeamLoader({
16099
+ key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16100
+ value: false
16101
+ });
16102
+ callback == null ? void 0 : callback(enrichedUsers);
16103
+ };
16104
+
16105
+ /**
16106
+ * @private
16107
+ * Handles errors for user loading operations
16108
+ */
16109
+ const __handleUsersLoadError = (error, callback, errorMessage) => {
16110
+ if (errorMessage) {
16111
+ console.error(errorMessage, error);
16112
+ }
16113
+ actions.setTeamError({
16114
+ key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16115
+ value: (0,_helpers__WEBPACK_IMPORTED_MODULE_5__.errorHandler)(error)
16116
+ });
16117
+ actions.setTeamState({
16118
+ totalPages: 0,
16119
+ users: []
16120
+ });
16121
+ actions.setTeamLoader({
16122
+ key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16123
+ value: false
16124
+ });
16125
+ callback == null ? void 0 : callback(null, error);
16126
+ };
16127
+
16128
+ /**
16129
+ * @private
16130
+ * Generic function to load users by search criteria (phone number, username, email)
16131
+ */
16132
+ const __loadUsersBySearchCriteria = async (payload, fetchFunction, shouldLoadRoles = true, shouldLoadApps) => {
16133
+ var _payload$_limit, _payload$_offset, _payload$shouldShowSu;
16134
+ const {
16135
+ silentLoading,
16136
+ callback,
16137
+ retryConfig
16138
+ } = payload;
16139
+ const teamState = store.auth.teamState;
16140
+ const pageSize = (_payload$_limit = payload._limit) != null ? _payload$_limit : teamState.pageSize;
16141
+ const pageOffset = (_payload$_offset = payload._offset) != null ? _payload$_offset : teamState.pageOffset;
16142
+ const shouldIncludeSubTenants = (_payload$shouldShowSu = payload == null ? void 0 : payload.shouldShowSubTenantUsersIfReseller) != null ? _payload$shouldShowSu : teamState == null ? void 0 : teamState.shouldShowSubTenantUsersIfReseller;
16143
+ actions.setTeamLoader({
16144
+ key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16145
+ value: !silentLoading
16146
+ });
16147
+ actions.setTeamState({
16148
+ pageSize,
16149
+ pageOffset
16150
+ });
16151
+ try {
16152
+ const response = await fetchFunction(pageOffset, pageSize);
16153
+ if (!response.items || response.items.length === 0) {
16154
+ sharedActions.setTeamState({
16155
+ users: [],
16156
+ totalPages: 0,
16157
+ totalItems: 0
16158
+ });
16159
+ actions.setTeamLoader({
16160
+ key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16161
+ value: false
16162
+ });
16163
+ callback == null ? void 0 : callback([]);
16164
+ return;
16165
+ }
16166
+
16167
+ // Extract user IDs
16168
+ const userIds = response.items.map(item => item.userId);
16169
+
16170
+ // Fetch users by IDs (no pagination here - we already have the filtered IDs)
16171
+ const {
16172
+ items: users
16173
+ } = await api.users.getUsersV3({
16174
+ ids: userIds.join(','),
16175
+ _includeSubTenants: shouldIncludeSubTenants
16176
+ });
16177
+
16178
+ // Enrich users with roles, groups, permissions, and application data
16179
+ const {
16180
+ enrichedUsers,
16181
+ roles,
16182
+ permissions
16183
+ } = await __enrichUsersWithRolesGroupsAndPermissions(users, {
16184
+ shouldLoadRoles,
16185
+ shouldLoadApps,
16186
+ retryConfig
16187
+ });
16188
+ __setUsersStateAndCallback(enrichedUsers, roles, permissions, response._metadata.totalPages, response._metadata.totalItems, callback);
16189
+ } catch (e) {
16190
+ __handleUsersLoadError(e, callback, `Failed to load users by search criteria in fetch function: ${fetchFunction.name}`);
16191
+ }
16192
+ };
16013
16193
  const loadRoles = async payload => {
16014
16194
  actions.setTeamLoader({
16015
16195
  key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.ROLES_AND_PERMISSIONS,
@@ -16105,7 +16285,7 @@ const _excluded = ["callback", "appIds"],
16105
16285
 
16106
16286
  /*** @deprecated loadUsersV2 is deprecated, use loadUsersV3 instead */
16107
16287
  const loadUsersV2 = async payload => {
16108
- var _payload$pageSize2, _payload$pageOffset2, _payload$filter2, _payload$sort2, _payload$shouldShowSu;
16288
+ var _payload$pageSize2, _payload$pageOffset2, _payload$filter2, _payload$sort2, _payload$shouldShowSu2;
16109
16289
  const {
16110
16290
  silentLoading,
16111
16291
  callback,
@@ -16118,7 +16298,7 @@ const _excluded = ["callback", "appIds"],
16118
16298
  const pageOffset = (_payload$pageOffset2 = payload.pageOffset) != null ? _payload$pageOffset2 : teamState.pageOffset;
16119
16299
  const filter = (_payload$filter2 = payload.filter) != null ? _payload$filter2 : teamState.filterV2;
16120
16300
  const sort = (_payload$sort2 = payload.sort) != null ? _payload$sort2 : teamState.sortV2;
16121
- const shouldIncludeSubTenants = (_payload$shouldShowSu = payload == null ? void 0 : payload.shouldShowSubTenantUsersIfReseller) != null ? _payload$shouldShowSu : teamState == null ? void 0 : teamState.shouldShowSubTenantUsersIfReseller;
16301
+ const shouldIncludeSubTenants = (_payload$shouldShowSu2 = payload == null ? void 0 : payload.shouldShowSubTenantUsersIfReseller) != null ? _payload$shouldShowSu2 : teamState == null ? void 0 : teamState.shouldShowSubTenantUsersIfReseller;
16122
16302
  actions.setTeamLoader({
16123
16303
  key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16124
16304
  value: !silentLoading
@@ -16196,7 +16376,7 @@ const _excluded = ["callback", "appIds"],
16196
16376
  });
16197
16377
  };
16198
16378
  const loadUsersV3 = async payload => {
16199
- var _payload$pageSize3, _payload$pageOffset3, _payload$sort3, _payload$shouldShowSu2;
16379
+ var _payload$pageSize3, _payload$pageOffset3, _payload$sort3, _payload$shouldShowSu3;
16200
16380
  const {
16201
16381
  silentLoading,
16202
16382
  callback,
@@ -16208,7 +16388,7 @@ const _excluded = ["callback", "appIds"],
16208
16388
  const pageSize = (_payload$pageSize3 = payload.pageSize) != null ? _payload$pageSize3 : teamState.pageSize;
16209
16389
  const pageOffset = (_payload$pageOffset3 = payload.pageOffset) != null ? _payload$pageOffset3 : teamState.pageOffset;
16210
16390
  const sort = (_payload$sort3 = payload.sort) != null ? _payload$sort3 : teamState.sortV2;
16211
- const shouldIncludeSubTenants = (_payload$shouldShowSu2 = payload == null ? void 0 : payload.shouldShowSubTenantUsersIfReseller) != null ? _payload$shouldShowSu2 : teamState == null ? void 0 : teamState.shouldShowSubTenantUsersIfReseller;
16391
+ const shouldIncludeSubTenants = (_payload$shouldShowSu3 = payload == null ? void 0 : payload.shouldShowSubTenantUsersIfReseller) != null ? _payload$shouldShowSu3 : teamState == null ? void 0 : teamState.shouldShowSubTenantUsersIfReseller;
16212
16392
  actions.setTeamLoader({
16213
16393
  key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16214
16394
  value: !silentLoading
@@ -16235,96 +16415,42 @@ const _excluded = ["callback", "appIds"],
16235
16415
  _includeSubTenants: shouldIncludeSubTenants
16236
16416
  }, getIdentifierFilterForUsersV3(payload)));
16237
16417
 
16238
- // Get user IDs for fetching roles and groups
16239
- const userIds = users.map(user => user.id);
16240
-
16241
- // Fetch roles, permissions, user roles, user groups, and all groups in parallel
16242
- const [{
16243
- items: userUsernames
16244
- }, {
16245
- items: roles
16246
- }, permissions, userRoles, userGroups, groups] = await Promise.all([userIds.length > 0 ? api.users.getUsersUsernames({
16247
- userIds
16248
- }) : [], api.teams.loadAvailableRoles(), api.teams.loadAvailablePermissions(), userIds.length > 0 ? api.users.getUsersRoles({
16249
- ids: userIds
16250
- }) : [], userIds.length > 0 ? api.users.getUsersGroups({
16251
- ids: userIds
16252
- }) : [], __getGroupsForUsers(retryConfig), shouldLoadRoles ? loadRoles({
16253
- retryConfig
16254
- }) : undefined]);
16255
-
16256
- // Map user roles and groups to users
16257
- const usersWithRolesAndGroups = users.map(user => {
16258
- var _userUsernames$find;
16259
- // Find user's role IDs
16260
- const userRoleData = userRoles.find(ur => ur.userId === user.id);
16261
- const userRoleIds = (userRoleData == null ? void 0 : userRoleData.roleIds) || [];
16262
- const userRolesFull = roles.filter(role => userRoleIds.includes(role.id));
16263
-
16264
- // Find user's group IDs
16265
- const userGroupData = userGroups.find(ug => ug.userId === user.id);
16266
- const userGroupIds = (userGroupData == null ? void 0 : userGroupData.groupIds) || [];
16267
- const userGroupsFull = groups.filter(g => userGroupIds.includes(g.id));
16268
-
16269
- // Find user's username
16270
- const userUsername = userUsernames == null ? void 0 : (_userUsernames$find = userUsernames.find(username => username.userId === user.id)) == null ? void 0 : _userUsernames$find.username;
16271
- if (!user.name) {
16272
- user.name = userUsername;
16273
- }
16274
-
16275
- //@ts-ignore
16276
- return (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_1__["default"])({}, user, {
16277
- roles: userRolesFull,
16278
- roleIds: userRoleIds,
16279
- groups: userGroupsFull,
16280
- permissions: userRolesFull.flatMap(role => role.permissions)
16281
- });
16282
- });
16283
- const mappedUsers = await sharedActions.mapUsersWithApplicationData({
16284
- shouldLoadApps,
16285
- users: usersWithRolesAndGroups,
16286
- retryConfig
16287
- });
16288
- sharedActions.setTeamState({
16289
- users: mappedUsers,
16290
- totalPages,
16291
- totalItems,
16418
+ // Enrich users with roles, groups, permissions, and application data
16419
+ const {
16420
+ enrichedUsers,
16292
16421
  roles,
16293
16422
  permissions
16423
+ } = await __enrichUsersWithRolesGroupsAndPermissions(users, {
16424
+ shouldLoadRoles,
16425
+ shouldLoadApps,
16426
+ retryConfig
16294
16427
  });
16295
- callback == null ? void 0 : callback(usersWithRolesAndGroups);
16428
+ __setUsersStateAndCallback(enrichedUsers, roles, permissions, totalPages, totalItems, callback);
16296
16429
  } catch (e) {
16297
- console.error('Failed to load users v3', e);
16298
- actions.setTeamError({
16299
- key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16300
- value: (0,_helpers__WEBPACK_IMPORTED_MODULE_5__.errorHandler)(e)
16301
- });
16302
- actions.setTeamState({
16303
- totalPages: 0,
16304
- users: []
16305
- });
16306
- callback == null ? void 0 : callback(null, e);
16430
+ __handleUsersLoadError(e, callback, 'Failed to load users v3');
16307
16431
  }
16308
- actions.setTeamLoader({
16309
- key: _interfaces__WEBPACK_IMPORTED_MODULE_4__.TeamStateKeys.USERS,
16310
- value: false
16311
- });
16312
16432
  };
16313
16433
  const getIdentifierFilterForUsersV3 = payload => {
16314
16434
  const {
16315
16435
  identifier,
16316
16436
  identifierType,
16317
- email
16437
+ email,
16438
+ namePrefix
16318
16439
  } = payload;
16319
- if (identifierType === 'username' && identifier != null && identifier.length) {
16440
+ if (email != null && email.length) {
16320
16441
  return {
16321
- _identifier: identifier,
16322
- _identifierType: 'username'
16442
+ _email: email
16323
16443
  };
16324
16444
  }
16325
- if (email != null && email.length) {
16445
+ if (namePrefix != null && namePrefix.length) {
16326
16446
  return {
16327
- _email: email
16447
+ _namePrefix: namePrefix
16448
+ };
16449
+ }
16450
+ if (identifierType === 'username' && identifier != null && identifier.length) {
16451
+ return {
16452
+ _identifier: identifier,
16453
+ _identifierType: 'username'
16328
16454
  };
16329
16455
  }
16330
16456
  return {};
@@ -16684,11 +16810,50 @@ const _excluded = ["callback", "appIds"],
16684
16810
  });
16685
16811
  }
16686
16812
  };
16813
+ const loadUsersByGetUsersPhoneNumberV2 = async payload => {
16814
+ const {
16815
+ _phoneNumber,
16816
+ shouldLoadRoles = true,
16817
+ shouldLoadApps
16818
+ } = payload;
16819
+ return __loadUsersBySearchCriteria(payload, (pageOffset, pageSize) => api.userPhoneNumbers.getUsersPhoneNumberV2({
16820
+ _phoneNumber,
16821
+ _offset: pageOffset,
16822
+ _limit: pageSize
16823
+ }), shouldLoadRoles, shouldLoadApps);
16824
+ };
16825
+ const loadUsersByGetUsernamesV1 = async payload => {
16826
+ const {
16827
+ _usernamePrefix,
16828
+ shouldLoadRoles = true,
16829
+ shouldLoadApps
16830
+ } = payload;
16831
+ return __loadUsersBySearchCriteria(payload, (pageOffset, pageSize) => api.usernames.getUsernamesV1({
16832
+ _usernamePrefix,
16833
+ _offset: pageOffset,
16834
+ _limit: pageSize
16835
+ }), shouldLoadRoles, shouldLoadApps);
16836
+ };
16837
+ const loadUsersByGetEmailsV1 = async payload => {
16838
+ const {
16839
+ _email,
16840
+ shouldLoadRoles = true,
16841
+ shouldLoadApps
16842
+ } = payload;
16843
+ return __loadUsersBySearchCriteria(payload, (pageOffset, pageSize) => api.usersEmails.getUsersEmailsV1({
16844
+ _email,
16845
+ _offset: pageOffset,
16846
+ _limit: pageSize
16847
+ }), shouldLoadRoles, shouldLoadApps);
16848
+ };
16687
16849
  return {
16688
16850
  loadRoles,
16689
16851
  loadUsers,
16690
16852
  loadUsersV2,
16691
16853
  loadUsersV3,
16854
+ loadUsersByGetUsersPhoneNumberV2,
16855
+ loadUsersByGetUsernamesV1,
16856
+ loadUsersByGetEmailsV1,
16692
16857
  addUser,
16693
16858
  addUsersBulk,
16694
16859
  updateUser,
@@ -19581,7 +19746,7 @@ __webpack_require__.r(__webpack_exports__);
19581
19746
  /* harmony import */ var _subscriptions_interfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./subscriptions/interfaces */ "../../dist/@frontegg/redux-store/subscriptions/interfaces.js");
19582
19747
  /* harmony import */ var _vendor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./vendor */ "../../dist/@frontegg/redux-store/vendor/index.js");
19583
19748
  /* harmony import */ var _audits__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./audits */ "../../dist/@frontegg/redux-store/audits/index.js");
19584
- /** @license Frontegg v7.92.0
19749
+ /** @license Frontegg v7.93.0
19585
19750
  *
19586
19751
  * This source code is licensed under the MIT license found in the
19587
19752
  * LICENSE file in the root directory of this source tree.
@@ -29165,6 +29330,10 @@ const urls = {
29165
29330
  configuration: {
29166
29331
  v1: '/identity/resources/users/temporary/v1/configuration'
29167
29332
  }
29333
+ },
29334
+ phoneNumbers: {
29335
+ v1: '/identity/resources/users/phone-numbers/v1',
29336
+ v2: '/identity/resources/users/phone-numbers/v2'
29168
29337
  }
29169
29338
  },
29170
29339
  configurations: {
@@ -29238,6 +29407,9 @@ const urls = {
29238
29407
  phoneNumbers: {
29239
29408
  v1: '/identity/resources/users/phone-numbers/v1'
29240
29409
  },
29410
+ emails: {
29411
+ v1: '/identity/resources/users/emails/v1'
29412
+ },
29241
29413
  usernames: {
29242
29414
  v1: '/identity/resources/usernames/v1'
29243
29415
  },
@@ -29790,23 +29962,23 @@ __webpack_require__.r(__webpack_exports__);
29790
29962
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
29791
29963
  /* harmony export */ ApplicationAccessType: () => (/* reexport safe */ _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__.ApplicationAccessType),
29792
29964
  /* harmony export */ AuthStrategyEnum: () => (/* reexport safe */ _auth_enums__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum),
29793
- /* harmony export */ ContextHolder: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_44__.ContextHolder),
29965
+ /* harmony export */ ContextHolder: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_45__.ContextHolder),
29794
29966
  /* harmony export */ DirectoryApi: () => (/* reexport safe */ _directory_index__WEBPACK_IMPORTED_MODULE_11__.DirectoryApi),
29795
29967
  /* harmony export */ EIdentifierType: () => (/* reexport safe */ _auth_enums__WEBPACK_IMPORTED_MODULE_2__.EIdentifierType),
29796
29968
  /* harmony export */ FRONTEGG_SEPARATE_TABS_BY_TENANT: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_4__.FRONTEGG_SEPARATE_TABS_BY_TENANT),
29797
29969
  /* harmony export */ FeatureFlags: () => (/* reexport safe */ _feature_flags_index__WEBPACK_IMPORTED_MODULE_10__.FeatureFlags),
29798
29970
  /* harmony export */ FeatureFlagsApi: () => (/* reexport safe */ _feature_flags_index__WEBPACK_IMPORTED_MODULE_10__.FeatureFlagsApi),
29799
- /* harmony export */ FetchClient: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_43__.FetchClient),
29800
- /* harmony export */ FronteggApiError: () => (/* reexport safe */ _error__WEBPACK_IMPORTED_MODULE_45__.FronteggApiError),
29801
- /* harmony export */ FronteggContext: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_44__.FronteggContext),
29971
+ /* harmony export */ FetchClient: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_44__.FetchClient),
29972
+ /* harmony export */ FronteggApiError: () => (/* reexport safe */ _error__WEBPACK_IMPORTED_MODULE_46__.FronteggApiError),
29973
+ /* harmony export */ FronteggContext: () => (/* reexport safe */ _ContextHolder__WEBPACK_IMPORTED_MODULE_45__.FronteggContext),
29802
29974
  /* harmony export */ FronteggFrameworks: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.FronteggFrameworks),
29803
29975
  /* harmony export */ GENERIC_ERROR_CODE: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_18__.GENERIC_ERROR_CODE),
29804
29976
  /* harmony export */ GENERIC_ERROR_MESSAGE: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_18__.GENERIC_ERROR_MESSAGE),
29805
29977
  /* harmony export */ GetUsersFilterPreset: () => (/* reexport safe */ _users_interfaces__WEBPACK_IMPORTED_MODULE_14__.GetUsersFilterPreset),
29806
29978
  /* harmony export */ GroupManagedByEnum: () => (/* reexport safe */ _groups_enums__WEBPACK_IMPORTED_MODULE_13__.GroupManagedByEnum),
29807
29979
  /* harmony export */ GroupRelations: () => (/* reexport safe */ _groups_enums__WEBPACK_IMPORTED_MODULE_13__.GroupRelations),
29808
- /* harmony export */ ISubscriptionCancellationPolicy: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_46__.ISubscriptionCancellationPolicy),
29809
- /* harmony export */ ISubscriptionStatus: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_46__.ISubscriptionStatus),
29980
+ /* harmony export */ ISubscriptionCancellationPolicy: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_47__.ISubscriptionCancellationPolicy),
29981
+ /* harmony export */ ISubscriptionStatus: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_47__.ISubscriptionStatus),
29810
29982
  /* harmony export */ InsightCode: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.InsightCode),
29811
29983
  /* harmony export */ LOAD_AUTHORIZATION_FF: () => (/* reexport safe */ _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__.LOAD_AUTHORIZATION_FF),
29812
29984
  /* harmony export */ MFAStrategyEnum: () => (/* reexport safe */ _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__.MFAStrategyEnum),
@@ -29814,9 +29986,9 @@ __webpack_require__.r(__webpack_exports__);
29814
29986
  /* harmony export */ NotEntitledJustification: () => (/* reexport safe */ _entitlements_interfaces__WEBPACK_IMPORTED_MODULE_15__.NotEntitledJustification),
29815
29987
  /* harmony export */ PaginationOrderEnum: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.PaginationOrderEnum),
29816
29988
  /* harmony export */ PasswordRecoveryStrategyEnum: () => (/* reexport safe */ _auth_enums__WEBPACK_IMPORTED_MODULE_2__.PasswordRecoveryStrategyEnum),
29817
- /* harmony export */ PaymentMethodType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_46__.PaymentMethodType),
29989
+ /* harmony export */ PaymentMethodType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_47__.PaymentMethodType),
29818
29990
  /* harmony export */ PermissionAssignmentTypeEnum: () => (/* reexport safe */ _roles_interfaces__WEBPACK_IMPORTED_MODULE_7__.PermissionAssignmentTypeEnum),
29819
- /* harmony export */ ProviderType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_46__.ProviderType),
29991
+ /* harmony export */ ProviderType: () => (/* reexport safe */ _subscriptions__WEBPACK_IMPORTED_MODULE_47__.ProviderType),
29820
29992
  /* harmony export */ RecommendationActionKey: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationActionKey),
29821
29993
  /* harmony export */ RecommendationCode: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationCode),
29822
29994
  /* harmony export */ RecommendationSeverity: () => (/* reexport safe */ _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__.RecommendationSeverity),
@@ -29836,7 +30008,7 @@ __webpack_require__.r(__webpack_exports__);
29836
30008
  /* harmony export */ api: () => (/* binding */ api),
29837
30009
  /* harmony export */ createApiClient: () => (/* binding */ createApiClient),
29838
30010
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
29839
- /* harmony export */ fetch: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_43__["default"]),
30011
+ /* harmony export */ fetch: () => (/* reexport safe */ _FetchClient__WEBPACK_IMPORTED_MODULE_44__["default"]),
29840
30012
  /* harmony export */ fronteggAuthApiRoutesRegex: () => (/* reexport safe */ _routers__WEBPACK_IMPORTED_MODULE_9__.fronteggAuthApiRoutesRegex),
29841
30013
  /* harmony export */ fronteggEntitlementsV2Url: () => (/* reexport safe */ _routers__WEBPACK_IMPORTED_MODULE_9__.fronteggEntitlementsV2Url),
29842
30014
  /* harmony export */ fronteggHeaders: () => (/* reexport safe */ _interfaces__WEBPACK_IMPORTED_MODULE_0__.fronteggHeaders),
@@ -29852,10 +30024,10 @@ __webpack_require__.r(__webpack_exports__);
29852
30024
  /* harmony export */ setTabTenantInSessionStorage: () => (/* reexport safe */ _auth__WEBPACK_IMPORTED_MODULE_3__.setTabTenantInSessionStorage)
29853
30025
  /* harmony export */ });
29854
30026
  /* harmony import */ var _auth_enums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./auth/enums */ "../../dist/@frontegg/rest-api/auth/enums.js");
29855
- /* harmony import */ var _subscriptions__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./subscriptions */ "../../dist/@frontegg/rest-api/subscriptions/enums.js");
29856
- /* harmony import */ var _error__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./error */ "../../dist/@frontegg/rest-api/error.js");
29857
- /* harmony import */ var _FetchClient__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./FetchClient */ "../../dist/@frontegg/rest-api/FetchClient.js");
29858
- /* harmony import */ var _ContextHolder__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./ContextHolder */ "../../dist/@frontegg/rest-api/ContextHolder/index.js");
30027
+ /* harmony import */ var _subscriptions__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./subscriptions */ "../../dist/@frontegg/rest-api/subscriptions/enums.js");
30028
+ /* harmony import */ var _error__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./error */ "../../dist/@frontegg/rest-api/error.js");
30029
+ /* harmony import */ var _FetchClient__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./FetchClient */ "../../dist/@frontegg/rest-api/FetchClient.js");
30030
+ /* harmony import */ var _ContextHolder__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./ContextHolder */ "../../dist/@frontegg/rest-api/ContextHolder/index.js");
29859
30031
  /* harmony import */ var _auth__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./auth */ "../../dist/@frontegg/rest-api/auth/index.js");
29860
30032
  /* harmony import */ var _auth_secutiry_poilicy__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./auth/secutiry-poilicy */ "../../dist/@frontegg/rest-api/auth/secutiry-poilicy/index.js");
29861
30033
  /* harmony import */ var _users__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./users */ "../../dist/@frontegg/rest-api/users/index.js");
@@ -29878,10 +30050,11 @@ __webpack_require__.r(__webpack_exports__);
29878
30050
  /* harmony import */ var _entitlements__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./entitlements */ "../../dist/@frontegg/rest-api/entitlements/index.js");
29879
30051
  /* harmony import */ var _security_center__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./security-center */ "../../dist/@frontegg/rest-api/security-center/index.js");
29880
30052
  /* harmony import */ var _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./user-phone-numbers */ "../../dist/@frontegg/rest-api/user-phone-numbers/index.js");
29881
- /* harmony import */ var _applications__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./applications */ "../../dist/@frontegg/rest-api/applications/index.js");
29882
- /* harmony import */ var _velo__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./velo */ "../../dist/@frontegg/rest-api/velo/index.js");
29883
- /* harmony import */ var _usernames__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./usernames */ "../../dist/@frontegg/rest-api/usernames/index.js");
29884
- /* harmony import */ var _users_emails_policy__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./users-emails-policy */ "../../dist/@frontegg/rest-api/users-emails-policy/index.js");
30053
+ /* harmony import */ var _users_emails__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./users-emails */ "../../dist/@frontegg/rest-api/users-emails/index.js");
30054
+ /* harmony import */ var _applications__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./applications */ "../../dist/@frontegg/rest-api/applications/index.js");
30055
+ /* harmony import */ var _velo__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./velo */ "../../dist/@frontegg/rest-api/velo/index.js");
30056
+ /* harmony import */ var _usernames__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./usernames */ "../../dist/@frontegg/rest-api/usernames/index.js");
30057
+ /* harmony import */ var _users_emails_policy__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./users-emails-policy */ "../../dist/@frontegg/rest-api/users-emails-policy/index.js");
29885
30058
  /* harmony import */ var _interfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interfaces */ "../../dist/@frontegg/rest-api/interfaces.js");
29886
30059
  /* harmony import */ var _auth_interfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./auth/interfaces */ "../../dist/@frontegg/rest-api/auth/interfaces.js");
29887
30060
  /* harmony import */ var _auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./auth */ "../../dist/@frontegg/rest-api/auth/utils.js");
@@ -29898,7 +30071,7 @@ __webpack_require__.r(__webpack_exports__);
29898
30071
  /* harmony import */ var _security_center_interfaces__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./security-center/interfaces */ "../../dist/@frontegg/rest-api/security-center/interfaces.js");
29899
30072
  /* harmony import */ var _applications_interfaces__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./applications/interfaces */ "../../dist/@frontegg/rest-api/applications/interfaces.js");
29900
30073
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./constants */ "../../dist/@frontegg/rest-api/constants.js");
29901
- /** @license Frontegg v7.92.0
30074
+ /** @license Frontegg v7.93.0
29902
30075
  *
29903
30076
  * This source code is licensed under the MIT license found in the
29904
30077
  * LICENSE file in the root directory of this source tree.
@@ -29964,6 +30137,7 @@ __webpack_require__.r(__webpack_exports__);
29964
30137
 
29965
30138
 
29966
30139
 
30140
+
29967
30141
 
29968
30142
 
29969
30143
  /**
@@ -29994,10 +30168,11 @@ const api = {
29994
30168
  entitlements: _entitlements__WEBPACK_IMPORTED_MODULE_36__["default"],
29995
30169
  securityCenter: _security_center__WEBPACK_IMPORTED_MODULE_37__["default"],
29996
30170
  userPhoneNumbers: _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__["default"],
29997
- applications: _applications__WEBPACK_IMPORTED_MODULE_39__["default"],
29998
- velo: _velo__WEBPACK_IMPORTED_MODULE_40__["default"],
29999
- usernames: _usernames__WEBPACK_IMPORTED_MODULE_41__["default"],
30000
- userEmailPolicy: _users_emails_policy__WEBPACK_IMPORTED_MODULE_42__["default"]
30171
+ usersEmails: _users_emails__WEBPACK_IMPORTED_MODULE_39__["default"],
30172
+ applications: _applications__WEBPACK_IMPORTED_MODULE_40__["default"],
30173
+ velo: _velo__WEBPACK_IMPORTED_MODULE_41__["default"],
30174
+ usernames: _usernames__WEBPACK_IMPORTED_MODULE_42__["default"],
30175
+ userEmailPolicy: _users_emails_policy__WEBPACK_IMPORTED_MODULE_43__["default"]
30001
30176
  };
30002
30177
  const createApiClient = appName => ({
30003
30178
  auth: new _auth__WEBPACK_IMPORTED_MODULE_19__.AuthenticationApi(appName),
@@ -30022,27 +30197,28 @@ const createApiClient = appName => ({
30022
30197
  entitlements: new _entitlements__WEBPACK_IMPORTED_MODULE_36__.EntitlementsApi(appName),
30023
30198
  securityCenter: new _security_center__WEBPACK_IMPORTED_MODULE_37__.SecurityCenterApi(appName),
30024
30199
  userPhoneNumbers: new _user_phone_numbers__WEBPACK_IMPORTED_MODULE_38__.PhoneNumbersApi(appName),
30025
- applications: new _applications__WEBPACK_IMPORTED_MODULE_39__.ApplicationsApi(appName),
30026
- velo: new _velo__WEBPACK_IMPORTED_MODULE_40__.VeloApi(appName),
30027
- usernames: new _usernames__WEBPACK_IMPORTED_MODULE_41__.UsernamesApi(appName),
30028
- userEmailPolicy: new _users_emails_policy__WEBPACK_IMPORTED_MODULE_42__.UserEmailPolicyApi(appName)
30200
+ usersEmails: new _users_emails__WEBPACK_IMPORTED_MODULE_39__.UsersEmailsApi(appName),
30201
+ applications: new _applications__WEBPACK_IMPORTED_MODULE_40__.ApplicationsApi(appName),
30202
+ velo: new _velo__WEBPACK_IMPORTED_MODULE_41__.VeloApi(appName),
30203
+ usernames: new _usernames__WEBPACK_IMPORTED_MODULE_42__.UsernamesApi(appName),
30204
+ userEmailPolicy: new _users_emails_policy__WEBPACK_IMPORTED_MODULE_43__.UserEmailPolicyApi(appName)
30029
30205
  });
30030
30206
 
30031
30207
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
30032
- fetch: _FetchClient__WEBPACK_IMPORTED_MODULE_43__["default"],
30033
- FetchClient: _FetchClient__WEBPACK_IMPORTED_MODULE_43__.FetchClient,
30034
- ContextHolder: _ContextHolder__WEBPACK_IMPORTED_MODULE_44__.ContextHolder,
30035
- FronteggContext: _ContextHolder__WEBPACK_IMPORTED_MODULE_44__.FronteggContext,
30208
+ fetch: _FetchClient__WEBPACK_IMPORTED_MODULE_44__["default"],
30209
+ FetchClient: _FetchClient__WEBPACK_IMPORTED_MODULE_44__.FetchClient,
30210
+ ContextHolder: _ContextHolder__WEBPACK_IMPORTED_MODULE_45__.ContextHolder,
30211
+ FronteggContext: _ContextHolder__WEBPACK_IMPORTED_MODULE_45__.FronteggContext,
30036
30212
  api,
30037
30213
  createApiClient,
30038
- FronteggApiError: _error__WEBPACK_IMPORTED_MODULE_45__.FronteggApiError,
30214
+ FronteggApiError: _error__WEBPACK_IMPORTED_MODULE_46__.FronteggApiError,
30039
30215
  AuthStrategyEnum: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.AuthStrategyEnum,
30040
30216
  MachineToMachineAuthStrategy: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.MachineToMachineAuthStrategy,
30041
30217
  SocialLoginProviders: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.SocialLoginProviders,
30042
- ISubscriptionCancellationPolicy: _subscriptions__WEBPACK_IMPORTED_MODULE_46__.ISubscriptionCancellationPolicy,
30043
- ISubscriptionStatus: _subscriptions__WEBPACK_IMPORTED_MODULE_46__.ISubscriptionStatus,
30044
- PaymentMethodType: _subscriptions__WEBPACK_IMPORTED_MODULE_46__.PaymentMethodType,
30045
- ProviderType: _subscriptions__WEBPACK_IMPORTED_MODULE_46__.ProviderType,
30218
+ ISubscriptionCancellationPolicy: _subscriptions__WEBPACK_IMPORTED_MODULE_47__.ISubscriptionCancellationPolicy,
30219
+ ISubscriptionStatus: _subscriptions__WEBPACK_IMPORTED_MODULE_47__.ISubscriptionStatus,
30220
+ PaymentMethodType: _subscriptions__WEBPACK_IMPORTED_MODULE_47__.PaymentMethodType,
30221
+ ProviderType: _subscriptions__WEBPACK_IMPORTED_MODULE_47__.ProviderType,
30046
30222
  EIdentifierType: _auth_enums__WEBPACK_IMPORTED_MODULE_2__.EIdentifierType
30047
30223
  });
30048
30224
 
@@ -31607,6 +31783,11 @@ class PhoneNumbersApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseAp
31607
31783
  this.verifyDeletePhoneNumber = async (phoneId, body) => {
31608
31784
  return this.post(`${_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.phoneNumbers.v1}/${phoneId}/delete/verify`, body);
31609
31785
  };
31786
+ this.getUsersPhoneNumberV2 = async (queryParams, options) => {
31787
+ return this.get(_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.users.phoneNumbers.v2, queryParams, {
31788
+ headers: this.extractHeadersFromOptions(options)
31789
+ });
31790
+ };
31610
31791
  }
31611
31792
 
31612
31793
  /**
@@ -31637,6 +31818,11 @@ __webpack_require__.r(__webpack_exports__);
31637
31818
  class UsernamesApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseApiClient {
31638
31819
  constructor(appName) {
31639
31820
  super(appName);
31821
+ this.getUsernamesV1 = async (queryParams, options) => {
31822
+ return this.get(`${_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.usernames.v1}`, queryParams, {
31823
+ headers: this.extractHeadersFromOptions(options)
31824
+ });
31825
+ };
31640
31826
  this.getUserOwnUsername = async () => {
31641
31827
  return this.get(`${_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.usernames.v1}/me`);
31642
31828
  };
@@ -31647,12 +31833,7 @@ class UsernamesApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseApiCl
31647
31833
  return this.delete(`${_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.usernames.v1}/${username}`);
31648
31834
  };
31649
31835
  }
31650
-
31651
- /**
31652
- * Get own username of user
31653
- */
31654
31836
  }
31655
-
31656
31837
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (new UsernamesApi('default'));
31657
31838
 
31658
31839
  /***/ }),
@@ -31688,6 +31869,36 @@ class UserEmailPolicyApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.Bas
31688
31869
 
31689
31870
  /***/ }),
31690
31871
 
31872
+ /***/ "../../dist/@frontegg/rest-api/users-emails/index.js":
31873
+ /*!***********************************************************!*\
31874
+ !*** ../../dist/@frontegg/rest-api/users-emails/index.js ***!
31875
+ \***********************************************************/
31876
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31877
+
31878
+ "use strict";
31879
+ __webpack_require__.r(__webpack_exports__);
31880
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
31881
+ /* harmony export */ UsersEmailsApi: () => (/* binding */ UsersEmailsApi),
31882
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
31883
+ /* harmony export */ });
31884
+ /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../constants */ "../../dist/@frontegg/rest-api/constants.js");
31885
+ /* harmony import */ var _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../BaseApiClient */ "../../dist/@frontegg/rest-api/BaseApiClient.js");
31886
+
31887
+
31888
+ class UsersEmailsApi extends _BaseApiClient__WEBPACK_IMPORTED_MODULE_0__.BaseApiClient {
31889
+ constructor(appName) {
31890
+ super(appName);
31891
+ this.getUsersEmailsV1 = async (queryParams, options) => {
31892
+ return this.get(_constants__WEBPACK_IMPORTED_MODULE_1__.urls.identity.emails.v1, queryParams, {
31893
+ headers: this.extractHeadersFromOptions(options)
31894
+ });
31895
+ };
31896
+ }
31897
+ }
31898
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (new UsersEmailsApi('default'));
31899
+
31900
+ /***/ }),
31901
+
31691
31902
  /***/ "../../dist/@frontegg/rest-api/users/index.js":
31692
31903
  /*!****************************************************!*\
31693
31904
  !*** ../../dist/@frontegg/rest-api/users/index.js ***!
@@ -32647,7 +32858,7 @@ __webpack_require__.r(__webpack_exports__);
32647
32858
  /* harmony export */ });
32648
32859
  /* harmony import */ var _ThemeOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ThemeOptions */ "../../dist/@frontegg/types/ThemeOptions/index.js");
32649
32860
  /* harmony import */ var _Metadata__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Metadata */ "../../dist/@frontegg/types/Metadata/index.js");
32650
- /** @license Frontegg v7.92.0
32861
+ /** @license Frontegg v7.93.0
32651
32862
  *
32652
32863
  * This source code is licensed under the MIT license found in the
32653
32864
  * LICENSE file in the root directory of this source tree.