@frontegg/types 6.188.0-alpha.6 → 6.188.0-alpha.7

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.
@@ -80,6 +80,10 @@ 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;
83
87
  /**
84
88
  * Done button text
85
89
  */
@@ -132,6 +136,18 @@ export interface ProvisioningLocalization {
132
136
  * Required field text
133
137
  */
134
138
  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;
135
151
  };
136
152
  provisioning_deleteConnectionDialog: {
137
153
  /**
@@ -327,6 +327,10 @@ 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;
330
334
  /**
331
335
  * Text display in first column inside MDX key value table
332
336
  */
@@ -363,14 +367,26 @@ export interface SsoLocalization {
363
367
  * Confirmation step complete title
364
368
  */
365
369
  confirmationStepCompleteTitle: string;
370
+ /**
371
+ * Confirmation step complete title for SCIM guide
372
+ */
373
+ confirmationStepCompleteScimTitle: string;
366
374
  /**
367
375
  * Confirmation step description
368
376
  */
369
377
  confirmationStepCompleteDescription: string;
378
+ /**
379
+ * Confirmation step description for scim guide
380
+ */
381
+ confirmationStepCompleteScimDescription: string;
370
382
  /**
371
383
  * Confirmation step claim Domain button
372
384
  */
373
385
  confirmationStepCompleteButton: string;
386
+ /**
387
+ * Confirmation step finish button
388
+ */
389
+ confirmationStepScimCompleteButton: string;
374
390
  /**
375
391
  * Confirmation step failed title
376
392
  */
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.188.0-alpha.6
1
+ /** @license Frontegg v6.188.0-alpha.7
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.6
1
+ /** @license Frontegg v6.188.0-alpha.7
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.6",
3
+ "version": "6.188.0-alpha.7",
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.6",
9
+ "@frontegg/redux-store": "6.188.0-alpha.7",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },