@frontegg/types 6.85.0 → 6.87.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,4 +81,8 @@ 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 sso guides CDN url
86
+ */
87
+ guidesCdnUrl?: string;
84
88
  }
@@ -57,6 +57,10 @@ export interface SsoLocalization {
57
57
  * SSO Provider (SAML/OIDC) provider is disabled alert text
58
58
  */
59
59
  switchProviderAlert: string;
60
+ /**
61
+ * Choose SSO Provider title in dialog
62
+ */
63
+ dialogTitle: string;
60
64
  };
61
65
  /**
62
66
  * Claim Domain Dialog strings
@@ -130,6 +134,7 @@ export interface SsoLocalization {
130
134
  sso_Header: {
131
135
  title: string;
132
136
  addNew: string;
137
+ setupSsoConnection: string;
133
138
  };
134
139
  sso_Table: {
135
140
  editSSOConfig: string;
@@ -192,6 +197,14 @@ export interface SsoLocalization {
192
197
  * Error message displayed if metadataFile has wrong type
193
198
  */
194
199
  metadataFileTypeErrorMessage: string;
200
+ /**
201
+ * Error message displayed if metadataUrl is empty
202
+ */
203
+ metadataUrlIsRequired: string;
204
+ /**
205
+ * Error message displayed if metadataUrl is invalid url
206
+ */
207
+ metadataUrlIsInvalid: string;
195
208
  /**
196
209
  * Select input label for selecting IDP type
197
210
  */
@@ -296,6 +309,10 @@ export interface SsoLocalization {
296
309
  * Close button text when closing after successfully save
297
310
  */
298
311
  close: string;
312
+ /**
313
+ * Back button text when going to previous sso configuration dialog
314
+ */
315
+ back: string;
299
316
  /**
300
317
  * Submit button text when going to next sso configuration dialog
301
318
  */
@@ -308,6 +325,70 @@ export interface SsoLocalization {
308
325
  * Cancel button in dialogs
309
326
  */
310
327
  cancel: string;
328
+ /**
329
+ * Back button text to close sso configuration dialog
330
+ */
331
+ backToSSO: string;
332
+ /**
333
+ * Text display in first column inside MDX key value table
334
+ */
335
+ columnName: string;
336
+ /**
337
+ * Text display in first column inside MDX key value table
338
+ */
339
+ columnValue: string;
340
+ /**
341
+ * Automatic SAML form metadata url's input label
342
+ */
343
+ idpUrlLabel: string;
344
+ /**
345
+ * Saml form button text for automatically configure
346
+ */
347
+ configureAutomatically: string;
348
+ /**
349
+ * Saml form button text for manually configure
350
+ */
351
+ configureManually: string;
352
+ /**
353
+ * Info message displayed in choose sso type when adding configuring new sso
354
+ */
355
+ chooseIdpGuide: string;
356
+ /**
357
+ * Warning message displayed in choose sso type when sso not completed
358
+ */
359
+ chooseIdpGuideNotCompleted: string;
360
+ /**
361
+ * Confirmation step title
362
+ */
363
+ confirmationStep: string;
364
+ /**
365
+ * Confirmation step complete title
366
+ */
367
+ confirmationStepCompleteTitle: string;
368
+ /**
369
+ * Confirmation step description
370
+ */
371
+ confirmationStepCompleteDescription: string;
372
+ /**
373
+ * Confirmation step claim Domain button
374
+ */
375
+ confirmationStepCompleteButton: string;
376
+ /**
377
+ * Confirmation step failed title
378
+ */
379
+ confirmationStepFailedTitle: string;
380
+ /**
381
+ * Confirmation step failed description
382
+ */
383
+ confirmationStepFailedDescription: string;
384
+ /**
385
+ * Retry button text
386
+ */
387
+ retry: string;
388
+ /**
389
+ * Try again button text
390
+ */
391
+ tryAgain: string;
311
392
  };
312
393
  sso_ManageAuthorization: {
313
394
  /**
@@ -27,4 +27,9 @@ export interface PrivateOptions {
27
27
  * default: false
28
28
  */
29
29
  lazyLoadAdminPortal?: boolean;
30
+ /**
31
+ * Option to override specific featureFlags for debug purposes
32
+ * default: undefined
33
+ */
34
+ overrideFeatureFlags?: Record<string, 'on' | 'off'>;
30
35
  }
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.85.0
1
+ /** @license Frontegg v6.87.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.85.0
1
+ /** @license Frontegg v6.87.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": "6.85.0",
3
+ "version": "6.87.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": "6.85.0",
9
+ "@frontegg/redux-store": "6.87.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },