@c8y/options 1023.4.6 → 1023.5.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/options",
|
|
3
|
-
"version": "1023.
|
|
3
|
+
"version": "1023.5.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"author": "Cumulocity",
|
|
6
6
|
"description": "Cumulocity application options",
|
|
@@ -17,6 +17,6 @@
|
|
|
17
17
|
"options"
|
|
18
18
|
],
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@c8y/client": "1023.
|
|
20
|
+
"@c8y/client": "1023.5.3"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -308,6 +308,13 @@ export interface ApplicationOptions {
|
|
|
308
308
|
* This needs to be used for e.g. people who embed the application in an iframe in order to redirect to a none index.html file.
|
|
309
309
|
*/
|
|
310
310
|
loginRedirectPath?: string;
|
|
311
|
+
/**
|
|
312
|
+
* Allows to skip the Single Sign-On (SSO) redirect during the login process.
|
|
313
|
+
*
|
|
314
|
+
* Can be used to avoid the redirect to the Identity Provider, when you still want to use the built-in login instead.
|
|
315
|
+
* This is needed in scenarios like e.g. support user access.
|
|
316
|
+
*/
|
|
317
|
+
skipSSORedirect?: boolean;
|
|
311
318
|
}
|
|
312
319
|
|
|
313
320
|
export interface MapDefaultConfig {
|