@frontegg/types 7.101.0-alpha.1 → 7.101.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.
- package/Components/SsoGuideDialog.d.ts +1 -2
- package/Components/index.d.ts +0 -1
- package/Components/index.js +1 -2
- package/Localizations/AdminPortalLocalizations/provisioning.d.ts +0 -4
- package/index.js +1 -1
- package/node/Components/index.js +0 -11
- package/node/index.js +1 -1
- package/package.json +2 -2
- package/Components/ScimGuideDialog.d.ts +0 -30
- package/Components/ScimGuideDialog.js +0 -1
- package/node/Components/ScimGuideDialog.js +0 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CMCComponentProps } from './base-component';
|
|
2
|
-
import { ISSOConfiguration
|
|
2
|
+
import { ISSOConfiguration } from '@frontegg/redux-store';
|
|
3
3
|
export interface SsoGuideDialogProps extends CMCComponentProps<SsoGuideDialogComponentProps> {
|
|
4
4
|
}
|
|
5
5
|
export interface SsoGuideDialogComponentProps {
|
|
@@ -13,5 +13,4 @@ export interface SsoGuideDialogResult {
|
|
|
13
13
|
finished: boolean;
|
|
14
14
|
ssoConfiguration?: ISSOConfiguration;
|
|
15
15
|
guidePath?: string;
|
|
16
|
-
domains?: ISSODomain[];
|
|
17
16
|
}
|
package/Components/index.d.ts
CHANGED
package/Components/index.js
CHANGED
|
@@ -148,10 +148,6 @@ export interface ProvisioningLocalization {
|
|
|
148
148
|
* Warning to show when SCIM guide configuration is not completed
|
|
149
149
|
*/
|
|
150
150
|
scimGuideNotCompleted: string;
|
|
151
|
-
/**
|
|
152
|
-
* Select provider guide text
|
|
153
|
-
*/
|
|
154
|
-
selectProviderGuide: string;
|
|
155
151
|
};
|
|
156
152
|
provisioning_deleteConnectionDialog: {
|
|
157
153
|
/**
|
package/index.js
CHANGED
package/node/Components/index.js
CHANGED
|
@@ -90,15 +90,4 @@ Object.keys(_SsoGuideDialog).forEach(function (key) {
|
|
|
90
90
|
return _SsoGuideDialog[key];
|
|
91
91
|
}
|
|
92
92
|
});
|
|
93
|
-
});
|
|
94
|
-
var _ScimGuideDialog = require("./ScimGuideDialog");
|
|
95
|
-
Object.keys(_ScimGuideDialog).forEach(function (key) {
|
|
96
|
-
if (key === "default" || key === "__esModule") return;
|
|
97
|
-
if (key in exports && exports[key] === _ScimGuideDialog[key]) return;
|
|
98
|
-
Object.defineProperty(exports, key, {
|
|
99
|
-
enumerable: true,
|
|
100
|
-
get: function () {
|
|
101
|
-
return _ScimGuideDialog[key];
|
|
102
|
-
}
|
|
103
|
-
});
|
|
104
93
|
});
|
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "7.101.0
|
|
3
|
+
"version": "7.101.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.101.0
|
|
9
|
+
"@frontegg/redux-store": "7.101.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { CMCComponentProps } from './base-component';
|
|
2
|
-
export interface ScimGuideDialogProps extends CMCComponentProps<ScimGuideDialogComponentProps> {
|
|
3
|
-
}
|
|
4
|
-
export interface ScimConnectionData {
|
|
5
|
-
connectionId: string;
|
|
6
|
-
provisioningUrl: string;
|
|
7
|
-
authToken: string;
|
|
8
|
-
scimConnectionName: string;
|
|
9
|
-
}
|
|
10
|
-
export type ScimProvider = 'okta' | 'azure' | 'other';
|
|
11
|
-
export interface ScimGuideDialogComponentProps {
|
|
12
|
-
id?: string;
|
|
13
|
-
initialGuidePath?: string;
|
|
14
|
-
initialConnectionData?: ScimConnectionData;
|
|
15
|
-
onClose: (result: ScimGuideDialogResult) => void;
|
|
16
|
-
onSelectGuide?: (guidePath: string) => Promise<ScimConnectionData>;
|
|
17
|
-
getConnectionName?: (provider: ScimProvider) => string;
|
|
18
|
-
showSelector?: boolean;
|
|
19
|
-
}
|
|
20
|
-
export interface ScimGuideDialogResult {
|
|
21
|
-
finished: boolean;
|
|
22
|
-
connectionData?: {
|
|
23
|
-
connectionId: string;
|
|
24
|
-
provisioningUrl: string;
|
|
25
|
-
authToken: string;
|
|
26
|
-
scimConnectionName: string;
|
|
27
|
-
guidePath?: string;
|
|
28
|
-
};
|
|
29
|
-
guidePath?: string;
|
|
30
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|