@trackunit/iris-app-oem-api 1.11.51 → 1.12.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
@@ -1,3 +1,20 @@
1
+ ## 1.12.1 (2026-03-04)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated iris-app-api to 1.14.52
6
+
7
+ ## 1.12.0 (2026-03-03)
8
+
9
+ ### 🚀 Features
10
+
11
+ - new target formats for fault enrichment ([#22050](https://github.com/Trackunit/manager/pull/22050))
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Gonzalo Esteban Ramos Zuniga
16
+ - Kieran Prince @kpr-trackunit
17
+
1
18
  ## 1.11.51 (2026-03-03)
2
19
 
3
20
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-oem-api",
3
- "version": "1.11.51",
3
+ "version": "1.12.1",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
7
7
  "node": ">=24.x"
8
8
  },
9
9
  "dependencies": {
10
- "@trackunit/iris-app-api": "1.14.51",
10
+ "@trackunit/iris-app-api": "1.14.52",
11
11
  "tslib": "^2.6.2"
12
12
  },
13
13
  "types": "./src/index.d.ts",
@@ -107,7 +107,7 @@ export interface TargetData {
107
107
  export interface TargetDataAttributes {
108
108
  targetName: string;
109
109
  targetType: "String" | "Number" | "Array" | "Object";
110
- targetFormat?: "EpochMs" | "EpochS" | "Iso8601";
110
+ targetFormat?: "EpochMs" | "EpochS" | "Iso8601" | "Empty" | "LowerCase" | "Null" | "UpperCase";
111
111
  fallbackSourceName?: string;
112
112
  data?: TargetData;
113
113
  }