@trackunit/iris-app 1.12.19 → 1.12.21
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 +18 -0
- package/package.json +3 -3
- package/src/generators/extend/files/SERVERSIDE_API_EXTENSION/.env.example__template__ +1 -1
- package/src/generators/extend/files/SERVERSIDE_API_EXTENSION/src/local-serve.ts__template__ +1 -1
- package/src/generators/preset/files/.agents/skills/irisx-app-sdk/SKILL.md +1 -1
- package/src/generators/preset/root-files/AGENTS.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 1.12.21 (2026-03-12)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.12.74
|
|
6
|
+
- Updated iris-app-api to 1.14.68
|
|
7
|
+
- Updated react-test-setup to 1.8.65
|
|
8
|
+
- Updated shared-utils to 1.13.65
|
|
9
|
+
|
|
10
|
+
## 1.12.20 (2026-03-12)
|
|
11
|
+
|
|
12
|
+
### 🧱 Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated iris-app-build-utilities to 1.12.73
|
|
15
|
+
- Updated iris-app-api to 1.14.67
|
|
16
|
+
- Updated react-test-setup to 1.8.64
|
|
17
|
+
- Updated shared-utils to 1.13.64
|
|
18
|
+
|
|
1
19
|
## 1.12.19 (2026-03-11)
|
|
2
20
|
|
|
3
21
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.21",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"nx": "22.4.4",
|
|
26
26
|
"@npmcli/arborist": "^9.1.9",
|
|
27
27
|
"win-ca": "^3.5.1",
|
|
28
|
-
"@trackunit/shared-utils": "1.13.
|
|
29
|
-
"@trackunit/iris-app-api": "1.14.
|
|
28
|
+
"@trackunit/shared-utils": "1.13.65",
|
|
29
|
+
"@trackunit/iris-app-api": "1.14.68",
|
|
30
30
|
"tslib": "^2.6.2",
|
|
31
31
|
"@clack/prompts": "^1.0.0",
|
|
32
32
|
"@npm/types": "^1.0.2"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Environment variables for local development
|
|
2
2
|
# Copy this file to .env and fill in your values
|
|
3
3
|
#
|
|
4
|
-
# These variables are read by getSecret() from @trackunit/
|
|
4
|
+
# These variables are read by getSecret() from @trackunit/serverside-utils
|
|
5
5
|
# The env var name must match the secretKey parameter exactly
|
|
6
6
|
#
|
|
7
7
|
# Example:
|
|
@@ -34,7 +34,7 @@ Extensions are React applications that integrate into specific points in Trackun
|
|
|
34
34
|
| `CUSTOMER_HOME_EXTENSION` | UI within Customer Home |
|
|
35
35
|
| `ASSET_EVENTS_ACTIONS_EXTENSION` | UI in Asset Home Events |
|
|
36
36
|
| `LIFECYCLE_EXTENSION` | Handles app install/uninstall events |
|
|
37
|
-
| `
|
|
37
|
+
| `SERVERSIDE_API_EXTENSION` | Serverside backend functions |
|
|
38
38
|
|
|
39
39
|
## Commands
|
|
40
40
|
|
|
@@ -36,7 +36,7 @@ Available extension types:
|
|
|
36
36
|
- `CUSTOMER_HOME_EXTENSION` - UI within Customer Home
|
|
37
37
|
- `ASSET_EVENTS_ACTIONS_EXTENSION` - UI in Asset Home Events
|
|
38
38
|
- `LIFECYCLE_EXTENSION` - Handles app install/uninstall events
|
|
39
|
-
- `
|
|
39
|
+
- `SERVERSIDE_API_EXTENSION` - Serverside backend functions
|
|
40
40
|
|
|
41
41
|
## Quality Assurance
|
|
42
42
|
|