@trackunit/iris-app-oem-api 0.0.30 → 0.0.32

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,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.0.32](https://github.com/Trackunit/manager/compare/iris-app-oem-api/0.0.31...iris-app-oem-api/0.0.32) (2023-08-04)
6
+
7
+ ## [0.0.31](https://github.com/Trackunit/manager/compare/iris-app-oem-api/0.0.30...iris-app-oem-api/0.0.31) (2023-08-03)
8
+
5
9
  ## [0.0.30](https://github.com/Trackunit/manager/compare/iris-app-oem-api/0.0.29...iris-app-oem-api/0.0.30) (2023-08-01)
6
10
 
7
11
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-oem-api",
3
- "version": "0.0.30",
3
+ "version": "0.0.32",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -18,9 +18,9 @@ export interface Branding {
18
18
  */
19
19
  brand: string;
20
20
  /**
21
- * CAN Profiles takes an array of CAN profile names.
21
+ * Indicates if the asset is licensed by OEM
22
22
  */
23
- canProfiles?: string[];
23
+ oemLicensedOnly?: boolean;
24
24
  };
25
25
  /**
26
26
  * Path to an image in the assets folder of the app.
@@ -1 +1 @@
1
- {"version":3,"file":"irisAppOemManifest.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-oem-api/src/types/irisAppOemManifest.ts"],"names":[],"mappings":"","sourcesContent":["import { IrisAppManifest } from \"@trackunit/iris-app-api\";\n\nexport interface IrisAppOemManifest extends IrisAppManifest {\n /**\n * OEM Branding, where logos and color will be added for branding.\n */\n oemBranding?: Branding;\n}\n\nexport interface Branding {\n /**\n * Conditions for the OEM app to be shown.\n */\n conditions: {\n /**\n * It is case insensitive so does not matter how you write the brand.\n * brand: \"trackunit\" and brand: \"Trackunit\" will be the same.\n *\n * Brand used/filled out then the asset needs to match the filled out property.\n */\n brand: string;\n /**\n * CAN Profiles takes an array of CAN profile names.\n */\n canProfiles?: string[];\n };\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown as brand logo.\n * The image will be shown as fleet list logo of an OEM asset.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n logoPath?: string;\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown as banner of an OEM asset.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n assetBannerPath?: string;\n /**\n * Color will be applied to banner and also will used as brand theme color.\n * It will be a hex code. eg: '#FF0000'.\n */\n color?: string;\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown in the Events and Insights tab in Asset home.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n platformLogoPath?: string;\n /**\n * List of model images.\n * Key will be the model name.\n * Value will be path to an image in the assets folder of the app.\n * The image will be shown as the model image in Asset home.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n modelImages?: { [key: string]: string };\n}\n\nexport type PublicIrisAppOemManifest = Omit<IrisAppOemManifest, \"dependencies\" | \"devDependencies\" | \"installation\">;\n"]}
1
+ {"version":3,"file":"irisAppOemManifest.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-oem-api/src/types/irisAppOemManifest.ts"],"names":[],"mappings":"","sourcesContent":["import { IrisAppManifest } from \"@trackunit/iris-app-api\";\n\nexport interface IrisAppOemManifest extends IrisAppManifest {\n /**\n * OEM Branding, where logos and color will be added for branding.\n */\n oemBranding?: Branding;\n}\n\nexport interface Branding {\n /**\n * Conditions for the OEM app to be shown.\n */\n conditions: {\n /**\n * It is case insensitive so does not matter how you write the brand.\n * brand: \"trackunit\" and brand: \"Trackunit\" will be the same.\n *\n * Brand used/filled out then the asset needs to match the filled out property.\n */\n brand: string;\n /**\n * Indicates if the asset is licensed by OEM\n */\n oemLicensedOnly?: boolean;\n };\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown as brand logo.\n * The image will be shown as fleet list logo of an OEM asset.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n logoPath?: string;\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown as banner of an OEM asset.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n assetBannerPath?: string;\n /**\n * Color will be applied to banner and also will used as brand theme color.\n * It will be a hex code. eg: '#FF0000'.\n */\n color?: string;\n /**\n * Path to an image in the assets folder of the app.\n * The image will be shown in the Events and Insights tab in Asset home.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n platformLogoPath?: string;\n /**\n * List of model images.\n * Key will be the model name.\n * Value will be path to an image in the assets folder of the app.\n * The image will be shown as the model image in Asset home.\n * Example: typing \"MyImage.png\" here, will show the file \"apps/my-app/assets/MyImage.png\"\n */\n modelImages?: { [key: string]: string };\n}\n\nexport type PublicIrisAppOemManifest = Omit<IrisAppOemManifest, \"dependencies\" | \"devDependencies\" | \"installation\">;\n"]}