@c8y/options 1023.43.3 → 1023.47.1
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.47.1",
|
|
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.47.1"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -323,6 +323,14 @@ export interface ApplicationOptions {
|
|
|
323
323
|
* This is needed in scenarios like e.g. support user access.
|
|
324
324
|
*/
|
|
325
325
|
skipSSORedirect?: boolean;
|
|
326
|
+
/**
|
|
327
|
+
* Represents a list of AI Agents defined for the application.
|
|
328
|
+
* These agents can be utilized for various AI-driven functionalities within the application.
|
|
329
|
+
*
|
|
330
|
+
* The Agent are stored as JSON in files generated during the build process ending with `agent.c8y.ts`. Usually
|
|
331
|
+
* this option does not need to be aligned manual.
|
|
332
|
+
*/
|
|
333
|
+
agents?: { [name: string]: string };
|
|
326
334
|
}
|
|
327
335
|
|
|
328
336
|
export interface MapDefaultConfig {
|