@trackunit/iris-app 1.12.6 → 1.12.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 +25 -0
- package/package.json +3 -3
- package/src/generators/extend/files/SERVERSIDE_API_EXTENSION/extension-manifest.ts__template__ +13 -0
- package/src/generators/extend/schema.d.ts +1 -1
- package/src/generators/extend/schema.json +1 -1
- package/src/generators/extend/files/SERVERLESS_FUNCTION_EXTENSION/extension-manifest.ts__template__ +0 -13
- /package/src/generators/extend/files/{SERVERLESS_FUNCTION_EXTENSION → SERVERSIDE_API_EXTENSION}/.env.example__template__ +0 -0
- /package/src/generators/extend/files/{SERVERLESS_FUNCTION_EXTENSION → SERVERSIDE_API_EXTENSION}/package.json__template__ +0 -0
- /package/src/generators/extend/files/{SERVERLESS_FUNCTION_EXTENSION → SERVERSIDE_API_EXTENSION}/src/index.ts__template__ +0 -0
- /package/src/generators/extend/files/{SERVERLESS_FUNCTION_EXTENSION → SERVERSIDE_API_EXTENSION}/src/local-serve.ts__template__ +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## 1.12.9 (2026-03-06)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.12.63
|
|
6
|
+
- Updated iris-app-api to 1.14.57
|
|
7
|
+
- Updated react-test-setup to 1.8.55
|
|
8
|
+
- Updated shared-utils to 1.13.55
|
|
9
|
+
|
|
10
|
+
## 1.12.8 (2026-03-06)
|
|
11
|
+
|
|
12
|
+
### 🧱 Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated iris-app-build-utilities to 1.12.62
|
|
15
|
+
- Updated iris-app-api to 1.14.56
|
|
16
|
+
- Updated react-test-setup to 1.8.54
|
|
17
|
+
- Updated shared-utils to 1.13.54
|
|
18
|
+
|
|
19
|
+
## 1.12.7 (2026-03-06)
|
|
20
|
+
|
|
21
|
+
### 🧱 Updated Dependencies
|
|
22
|
+
|
|
23
|
+
- Updated iris-app-build-utilities to 1.12.61
|
|
24
|
+
- Updated iris-app-api to 1.14.55
|
|
25
|
+
|
|
1
26
|
## 1.12.6 (2026-03-05)
|
|
2
27
|
|
|
3
28
|
### 🧱 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.9",
|
|
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.55",
|
|
29
|
+
"@trackunit/iris-app-api": "1.14.57",
|
|
30
30
|
"tslib": "^2.6.2",
|
|
31
31
|
"@clack/prompts": "^1.0.0",
|
|
32
32
|
"@npm/types": "^1.0.2"
|
package/src/generators/extend/files/SERVERSIDE_API_EXTENSION/extension-manifest.ts__template__
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ServersideApiExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
|
+
|
|
3
|
+
const serversideApiExtensionManifest: ServersideApiExtensionManifest = {
|
|
4
|
+
id: "<%= projectName %>",
|
|
5
|
+
type: "SERVERSIDE_API_EXTENSION",
|
|
6
|
+
runtime: "DENO",
|
|
7
|
+
sourceRoot: "dist/<%= projectRoot %>/",
|
|
8
|
+
dependencyDefinitionFile: "dist/<%= dependencyDefinitionFile %>",
|
|
9
|
+
name: "Serverside API <%= projectName %>",
|
|
10
|
+
main: "index.js",
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export default serversideApiExtensionManifest;
|
package/src/generators/extend/files/SERVERLESS_FUNCTION_EXTENSION/extension-manifest.ts__template__
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ServerlessFunctionExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
|
-
|
|
3
|
-
const serverlessFunctionExtensionManifest: ServerlessFunctionExtensionManifest = {
|
|
4
|
-
id: "<%= projectName %>",
|
|
5
|
-
type: "SERVERLESS_FUNCTION_EXTENSION",
|
|
6
|
-
runtime: "DENO",
|
|
7
|
-
sourceRoot: "dist/<%= projectRoot %>/",
|
|
8
|
-
dependencyDefinitionFile: "dist/<%= dependencyDefinitionFile %>",
|
|
9
|
-
name: "Serverless Function <%= projectName %>",
|
|
10
|
-
main: "index.js",
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
export default serverlessFunctionExtensionManifest;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|