@frontegg/types 7.40.0 → 7.41.0-alpha.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.
@@ -81,6 +81,10 @@ export interface FronteggAppOptions extends FronteggStoreOptions, PrivateOptions
81
81
  * Option to override the CDN url for loading Frontegg UI elements
82
82
  */
83
83
  cdnUrl?: string;
84
+ /**
85
+ * Option to override the Assets url for loading Frontegg UI elements
86
+ */
87
+ assetsUrl?: string;
84
88
  /**
85
89
  * Option to override the sso guides CDN url
86
90
  */
@@ -64,6 +64,7 @@ export interface ProfileLocalization {
64
64
  */
65
65
  removeImage: string;
66
66
  disabledEditPhoneNumberTooltip: string;
67
+ phoneNumberTooltip: string;
67
68
  /**
68
69
  * Profile page edit avatar button aria label
69
70
  */
@@ -312,6 +312,7 @@ export interface UsersLocalization {
312
312
  * Error message displayed if phone is not valid phone number
313
313
  */
314
314
  phoneIsInvalid: string;
315
+ phoneTooltip: string;
315
316
  /**
316
317
  * User roles select input label
317
318
  */
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.40.0
1
+ /** @license Frontegg v7.41.0-alpha.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 v7.40.0
1
+ /** @license Frontegg v7.41.0-alpha.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,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "7.40.0",
3
+ "version": "7.41.0-alpha.0",
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": "7.40.0",
9
+ "@frontegg/redux-store": "7.41.0-alpha.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },