@trackunit/iris-app-oem-api 1.0.0 → 1.0.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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.1](https://github.com/Trackunit/manager/compare/iris-app-oem-api/1.0.0...iris-app-oem-api/1.0.1) (2025-01-15)
6
+
5
7
  ## [1.0.0](https://github.com/Trackunit/manager/compare/iris-app-oem-api/0.0.131...iris-app-oem-api/1.0.0) (2025-01-15)
6
8
 
7
9
  ## [0.0.131](https://github.com/Trackunit/manager/compare/iris-app-oem-api/0.0.130...iris-app-oem-api/0.0.131) (2025-01-14)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-oem-api",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -41,16 +41,6 @@ export interface AssetBranding {
41
41
  * Example: typing "MyImage.png" here, will show the file "apps/my-app/assets/MyImage.png"
42
42
  */
43
43
  platformLogoPath?: string;
44
- /**
45
- * List of model images.
46
- * Key will be the model name.
47
- * Value will be path to an image in the assets folder of the app.
48
- * The image will be shown as the model image in Asset home.
49
- * Example: typing "MyImage.png" here, will show the file "apps/my-app/assets/MyImage.png"
50
- */
51
- modelImages?: {
52
- [key: string]: string;
53
- };
54
44
  }
55
45
  export interface EngineBranding {
56
46
  /**
@@ -67,6 +57,5 @@ export interface EngineBranding {
67
57
  assetBannerPath?: never;
68
58
  platformLogoPath?: never;
69
59
  color?: never;
70
- modelImages?: never;
71
60
  oemLicensedOnly?: never;
72
61
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Branding.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-oem-api/src/types/Branding.ts"],"names":[],"mappings":"","sourcesContent":["export interface AssetBranding {\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 * @deprecated Use oem.name instead.\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. e.g.: '#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 interface EngineBranding {\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 * Additional properties are not allowed in EngineBranding.\n */\n conditions?: never;\n assetBannerPath?: never;\n platformLogoPath?: never;\n color?: never;\n modelImages?: never;\n oemLicensedOnly?: never;\n}\n"]}
1
+ {"version":3,"file":"Branding.js","sourceRoot":"","sources":["../../../../../../libs/iris-app-sdk/iris-app-oem-api/src/types/Branding.ts"],"names":[],"mappings":"","sourcesContent":["export interface AssetBranding {\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 * @deprecated Use oem.name instead.\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. e.g.: '#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\nexport interface EngineBranding {\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 * Additional properties are not allowed in EngineBranding.\n */\n conditions?: never;\n assetBannerPath?: never;\n platformLogoPath?: never;\n color?: never;\n oemLicensedOnly?: never;\n}\n"]}