@trackunit/iris-app 0.0.571 → 0.0.572

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.0.572](https://github.com/Trackunit/manager/compare/iris-app/0.0.571...iris-app/0.0.572) (2024-04-25)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `iris-app-build-utilities` updated to version `0.0.571`
10
+ * `iris-app-api` updated to version `0.0.571`
11
+ * `iris-app-webpack-plugin` updated to version `0.0.571`
5
12
  ## [0.0.571](https://github.com/Trackunit/manager/compare/iris-app/0.0.570...iris-app/0.0.571) (2024-04-25)
6
13
 
7
14
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app",
3
- "version": "0.0.571",
3
+ "version": "0.0.572",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "main": "./src/index.js",
6
6
  "generators": "./generators.json",
@@ -0,0 +1,13 @@
1
+ import { CustomerHomeExtensionManifest } from '@trackunit/iris-app-api';
2
+
3
+ const customerHomeExtensionManifest: CustomerHomeExtensionManifest = {
4
+ id: "<%= projectName %>",
5
+ type: "CUSTOMER_HOME_EXTENSION",
6
+ sourceRoot: "<%= sourceRoot %>",
7
+
8
+ menuItem: {
9
+ name: "<%= projectName %>"
10
+ }
11
+ };
12
+
13
+ export default customerHomeExtensionManifest;
@@ -10,6 +10,7 @@ export interface IrisAppExtensionGeneratorSchema {
10
10
  | "FLEET_EXTENSION"
11
11
  | "ADMIN_EXTENSION"
12
12
  | "SITE_HOME_EXTENSION"
13
+ | "CUSTOMER_HOME_EXTENSION"
13
14
  | "ASSET_HOME_EXTENSION"
14
15
  | "ASSET_EVENTS_ACTIONS_EXTENSION";
15
16
  }
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "type": {
42
42
  "type": "string",
43
- "description": "The type of this extension: ['ASSET_HOME_EXTENSION', 'FLEET_EXTENSION', 'WIDGET_EXTENSION', 'REPORT_EXTENSION', 'ADMIN_EXTENSION', 'SITE_HOME_EXTENSION', 'IRIS_APP_SETTINGS_EXTENSION']",
43
+ "description": "The type of this extension: ['ASSET_HOME_EXTENSION', 'FLEET_EXTENSION', 'WIDGET_EXTENSION', 'REPORT_EXTENSION', 'ADMIN_EXTENSION', 'CUSTOMER_HOME_EXTENSION', 'SITE_HOME_EXTENSION', 'IRIS_APP_SETTINGS_EXTENSION']",
44
44
  "x-prompt": {
45
45
  "message": "Which Iris App extension should be generated?",
46
46
  "type": "list",
@@ -52,6 +52,7 @@
52
52
  "WIDGET_EXTENSION",
53
53
  "REPORT_EXTENSION",
54
54
  "ADMIN_EXTENSION",
55
+ "CUSTOMER_HOME_EXTENSION",
55
56
  "SITE_HOME_EXTENSION",
56
57
  "IRIS_APP_SETTINGS_EXTENSION"
57
58
  ]