@trackunit/iris-app-api 2.6.4-alpha-12adfed37e0.0 → 2.6.4

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.6.4 (2026-09-17)
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.6.3 (2026-09-17)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-api",
3
- "version": "2.6.4-alpha-12adfed37e0.0",
3
+ "version": "2.6.4",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -104,5 +104,19 @@ export interface MarketplaceOneZero {
104
104
  */
105
105
  blueprintUrl?: string;
106
106
  }
107
+ /**
108
+ * Tag strings that Trackunit Manager gives special treatment — a badge, a different call to
109
+ * action, or an extra section on the app page.
110
+ *
111
+ * `tags` is a free-form string array, so a misspelling is a silent no-op with no build or runtime
112
+ * error. Import these rather than retyping the literal.
113
+ */
114
+ export declare const MARKETPLACE_TAG: {
115
+ readonly EARLY_ACCESS: "Early Access";
116
+ readonly OEM_PARTNER_DETAILS: "OEM Partner Details";
117
+ readonly PAY_AS_YOU_GO: "Pay as you go";
118
+ readonly IRIS_X: "IrisX";
119
+ readonly WORKS_WITH_PREFIX: "WorksWith::";
120
+ };
107
121
  export declare const CategoryValues: readonly ["AI_AND_AGENTS", "ASSET_MANAGEMENT", "BLUEPRINTS", "COMPLIANCE", "CONSULTANTS", "DATA_FEEDS", "DOCUMENTATION", "EFFECTIVE_OPERATIONS", "EQUIPMENT_PROTECTION", "OEM_PARTNER_SOLUTIONS", "OPTIMIZE_BUSINESS", "RENTAL_MANAGEMENT", "SERVICE_AND_MAINTENANCE", "SUSTAINABILITY"];
108
122
  export declare type Category = (typeof CategoryValues)[number];
@@ -1,6 +1,20 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CategoryValues = void 0;
3
+ exports.CategoryValues = exports.MARKETPLACE_TAG = void 0;
4
+ /**
5
+ * Tag strings that Trackunit Manager gives special treatment — a badge, a different call to
6
+ * action, or an extra section on the app page.
7
+ *
8
+ * `tags` is a free-form string array, so a misspelling is a silent no-op with no build or runtime
9
+ * error. Import these rather than retyping the literal.
10
+ */
11
+ exports.MARKETPLACE_TAG = {
12
+ EARLY_ACCESS: "Early Access",
13
+ OEM_PARTNER_DETAILS: "OEM Partner Details",
14
+ PAY_AS_YOU_GO: "Pay as you go",
15
+ IRIS_X: "IrisX",
16
+ WORKS_WITH_PREFIX: "WorksWith::",
17
+ };
4
18
  exports.CategoryValues = [
5
19
  "AI_AND_AGENTS",
6
20
  "ASSET_MANAGEMENT",