@c8y/options 1023.26.1 → 1023.30.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/options",
|
|
3
|
-
"version": "1023.
|
|
3
|
+
"version": "1023.30.0",
|
|
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.30.0"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -182,6 +182,14 @@ export interface ApplicationOptions {
|
|
|
182
182
|
* Defines what is contained in the package.
|
|
183
183
|
*/
|
|
184
184
|
package?: 'plugin' | 'blueprint';
|
|
185
|
+
/**
|
|
186
|
+
* Allows to override the attributes of the deployed bluprint application in order to have better user readable ones.
|
|
187
|
+
*/
|
|
188
|
+
blueprintDeploymentOptions?: {
|
|
189
|
+
name?: string;
|
|
190
|
+
contextPath?: string;
|
|
191
|
+
key?: string;
|
|
192
|
+
};
|
|
185
193
|
/** The package source a application origins from as IApplication or simply the id of the source */
|
|
186
194
|
source?: string | number | IApplication;
|
|
187
195
|
/**
|