@trackunit/iris-app-api 2.4.8 → 2.4.9
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,7 @@
|
|
|
1
|
+
## 2.4.9 (2026-08-20)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
1
5
|
## 2.4.8 (2026-08-20)
|
|
2
6
|
|
|
3
7
|
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * from "./types/extensions/assetHomeExtensionManifest";
|
|
|
6
6
|
export * from "./types/extensions/customerHomeExtensionManifest";
|
|
7
7
|
export * from "./types/extensions/fleetExtensionManifest";
|
|
8
8
|
export * from "./types/extensions/irisAppSettingsExtensionManifest";
|
|
9
|
+
export * from "./types/extensions/legacyContentSpaceExtension";
|
|
9
10
|
export * from "./types/extensions/lifecycleExtensionManifest";
|
|
10
11
|
export * from "./types/extensions/reportExtensionManifest";
|
|
11
12
|
export * from "./types/extensions/serversideApiExtensionManifest";
|
package/src/index.js
CHANGED
|
@@ -9,6 +9,7 @@ tslib_1.__exportStar(require("./types/extensions/assetHomeExtensionManifest"), e
|
|
|
9
9
|
tslib_1.__exportStar(require("./types/extensions/customerHomeExtensionManifest"), exports);
|
|
10
10
|
tslib_1.__exportStar(require("./types/extensions/fleetExtensionManifest"), exports);
|
|
11
11
|
tslib_1.__exportStar(require("./types/extensions/irisAppSettingsExtensionManifest"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./types/extensions/legacyContentSpaceExtension"), exports);
|
|
12
13
|
tslib_1.__exportStar(require("./types/extensions/lifecycleExtensionManifest"), exports);
|
|
13
14
|
tslib_1.__exportStar(require("./types/extensions/reportExtensionManifest"), exports);
|
|
14
15
|
tslib_1.__exportStar(require("./types/extensions/serversideApiExtensionManifest"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AdminExtensionManifest } from "./adminExtensionManifest";
|
|
2
|
+
import { AssetHomeExtensionManifest } from "./assetHomeExtensionManifest";
|
|
3
|
+
import { SiteHomeExtensionManifest } from "./siteHomeExtensionManifest";
|
|
4
|
+
/**
|
|
5
|
+
* The three extension frames that historically received host content-space padding
|
|
6
|
+
* (Asset Home, Site Home, Admin). Used to constrain call sites such as the legacy-inset
|
|
7
|
+
* telemetry hook so Fleet / Customer Home / widget frames cannot be wired by mistake
|
|
8
|
+
* (GLU-1638). The transitional manifest flag itself was removed in GLU-1666;
|
|
9
|
+
* inset behaviour is now version/sunset-based only.
|
|
10
|
+
*/
|
|
11
|
+
export type LegacyContentSpaceExtension = AssetHomeExtensionManifest | SiteHomeExtensionManifest | AdminExtensionManifest;
|
|
@@ -26,6 +26,13 @@ export interface IrisAppManifest extends Omit<IrisAppManifestVersionOneZero, "sp
|
|
|
26
26
|
* If not set, it is assumed to be "cjs".
|
|
27
27
|
*/
|
|
28
28
|
moduleFormat?: "esm" | "cjs";
|
|
29
|
+
/**
|
|
30
|
+
* The resolved `@trackunit/iris-app` version installed when the app was built.
|
|
31
|
+
* Stamped onto the emitted `manifest.json` by the Vite build executor — not set by
|
|
32
|
+
* app authors. The host uses this to decide whether to apply the transitional
|
|
33
|
+
* legacy content-space inset (GLU-1664). Absent or below the cutoff means legacy.
|
|
34
|
+
*/
|
|
35
|
+
sdkVersion?: string;
|
|
29
36
|
/**
|
|
30
37
|
* Configuration for the installation of the app.
|
|
31
38
|
*
|