@trackunit/iris-app-api 2.6.4 → 2.6.6
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,18 @@
|
|
|
1
|
+
## 2.6.6 (2026-09-21)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **administration:** make Administration > Organization the organization readiness report ([#25689](https://github.com/Trackunit/manager/pull/25689), [#1779](https://github.com/Trackunit/manager/issues/1779), [#1791](https://github.com/Trackunit/manager/issues/1791), [#1786](https://github.com/Trackunit/manager/issues/1786), [#1788](https://github.com/Trackunit/manager/issues/1788))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Claude Fable 5.1
|
|
10
|
+
- Roland Wolf @rwo-trackunit
|
|
11
|
+
|
|
12
|
+
## 2.6.5 (2026-09-17)
|
|
13
|
+
|
|
14
|
+
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
|
15
|
+
|
|
1
16
|
## 2.6.4 (2026-09-17)
|
|
2
17
|
|
|
3
18
|
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/types/scopes.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export declare const accountScope: {
|
|
|
61
61
|
readonly PARTNER_MANAGE: "partner.manage";
|
|
62
62
|
readonly CONNECTION_VIEW: "connection.view";
|
|
63
63
|
readonly CONNECTION_MANAGE: "connection.manage";
|
|
64
|
+
readonly ORGANIZATION_VIEW: "organization.view";
|
|
64
65
|
};
|
|
65
66
|
export type AccountScope = (typeof accountScope)[keyof typeof accountScope];
|
|
66
67
|
export declare const assetScope: {
|
|
@@ -137,4 +138,5 @@ export declare const allScopes: {
|
|
|
137
138
|
PARTNER_MANAGE: "partner.manage";
|
|
138
139
|
CONNECTION_VIEW: "connection.view";
|
|
139
140
|
CONNECTION_MANAGE: "connection.manage";
|
|
141
|
+
ORGANIZATION_VIEW: "organization.view";
|
|
140
142
|
};
|
package/src/types/scopes.js
CHANGED