@frontegg/types 6.188.0-alpha.8 → 6.188.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.
@@ -8,6 +8,10 @@ export interface ContextOptions {
8
8
  * Frontegg clientId. Identifier from your Frontegg workspace account.
9
9
  */
10
10
  clientId?: string;
11
+ /**
12
+ * Will be used to identify the application, use only for multi applications
13
+ */
14
+ appId?: string;
11
15
  /**
12
16
  * Whether or not to send Fetch request with Credentials to the Backend
13
17
  * default: 'include'
@@ -80,10 +80,6 @@ export interface ProvisioningLocalization {
80
80
  * Add connection dialog title
81
81
  */
82
82
  dialogTitle: string;
83
- /**
84
- * Add connection dialog body
85
- */
86
- dialogBody: string;
87
83
  /**
88
84
  * Done button text
89
85
  */
@@ -136,18 +132,6 @@ export interface ProvisioningLocalization {
136
132
  * Required field text
137
133
  */
138
134
  validation_requiredField: string;
139
- /**
140
- * Connection name required field
141
- */
142
- connectionNameIsRequired: string;
143
- /**
144
- * Connection name invalid length message
145
- */
146
- invalidConnectionNameLength: string;
147
- /**
148
- * Warning to show when SCIM guide configuration is not completed
149
- */
150
- scimGuideNotCompleted: string;
151
135
  };
152
136
  provisioning_deleteConnectionDialog: {
153
137
  /**
@@ -327,10 +327,6 @@ export interface SsoLocalization {
327
327
  * Back button text to close sso configuration dialog
328
328
  */
329
329
  backToSSO: string;
330
- /**
331
- * Back button text to close scim configuration dialog
332
- */
333
- backToScim: string;
334
330
  /**
335
331
  * Text display in first column inside MDX key value table
336
332
  */
@@ -367,26 +363,14 @@ export interface SsoLocalization {
367
363
  * Confirmation step complete title
368
364
  */
369
365
  confirmationStepCompleteTitle: string;
370
- /**
371
- * Confirmation step complete title for SCIM guide
372
- */
373
- confirmationStepCompleteScimTitle: string;
374
366
  /**
375
367
  * Confirmation step description
376
368
  */
377
369
  confirmationStepCompleteDescription: string;
378
- /**
379
- * Confirmation step description for scim guide
380
- */
381
- confirmationStepCompleteScimDescription: string;
382
370
  /**
383
371
  * Confirmation step claim Domain button
384
372
  */
385
373
  confirmationStepCompleteButton: string;
386
- /**
387
- * Confirmation step finish button
388
- */
389
- confirmationStepScimCompleteButton: string;
390
374
  /**
391
375
  * Confirmation step failed title
392
376
  */
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.188.0-alpha.8
1
+ /** @license Frontegg v6.188.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.188.0-alpha.8
1
+ /** @license Frontegg v6.188.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.188.0-alpha.8",
3
+ "version": "6.188.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.188.0-alpha.8",
9
+ "@frontegg/redux-store": "6.188.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },