@frontegg/types 6.81.0 → 6.82.0-alpha.1

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.
@@ -99,6 +99,10 @@ export interface UsersLocalization {
99
99
  * Externally managed value
100
100
  */
101
101
  externallyManaged: string;
102
+ /**
103
+ * Assigned by groups tooltip
104
+ */
105
+ assignedByGroups: string;
102
106
  };
103
107
  /**
104
108
  * Delete user dialog strings
@@ -137,6 +141,10 @@ export interface UsersLocalization {
137
141
  * Select roles input label
138
142
  */
139
143
  selectRolesLabel: string;
144
+ /**
145
+ * Select roles input tooltip
146
+ */
147
+ selectRolesTooltip: string;
140
148
  /**
141
149
  * Select roles input placeholder
142
150
  */
@@ -149,6 +157,18 @@ export interface UsersLocalization {
149
157
  * Update user roles dialog submit button text
150
158
  */
151
159
  update: string;
160
+ /**
161
+ * Roles from groups table label
162
+ * */
163
+ rolesFromGroupsLabel: string;
164
+ /**
165
+ * Roles from groups table roles column label
166
+ * */
167
+ rolesFromGroupsRolesColumnLabel: string;
168
+ /**
169
+ * Roles from groups table groups column label
170
+ * */
171
+ rolesFromGroupsGroupsColumnLabel: string;
152
172
  };
153
173
  /**
154
174
  * Invite new user to tenant dialog strings
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.81.0
1
+ /** @license Frontegg v6.82.0-alpha.1
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.81.0
1
+ /** @license Frontegg v6.82.0-alpha.1
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,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "6.81.0",
3
+ "version": "6.82.0-alpha.1",
4
4
  "main": "./node/index.js",
5
5
  "author": "Frontegg LTD",
6
6
  "license": "MIT",
7
7
  "dependencies": {
8
8
  "@babel/runtime": "^7.18.6",
9
- "@frontegg/redux-store": "6.81.0",
9
+ "@frontegg/redux-store": "6.82.0-alpha.1",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },