@trackunit/iris-app-api 1.14.51 → 1.14.52

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,14 @@
1
+ ## 1.14.52 (2026-03-04)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - restore ACCOUNT_IRIS_APP_STORE_SECRET scope for storeSecrets functionality ([b50144f93e1](https://github.com/Trackunit/manager/commit/b50144f93e1))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Cursor @cursoragent
10
+ - kla-trackunit
11
+
1
12
  ## 1.14.51 (2026-03-03)
2
13
 
3
14
  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": "1.14.51",
3
+ "version": "1.14.52",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -42,13 +42,8 @@ export declare const siteScope: {
42
42
  readonly SITE_VIEW: "site.view";
43
43
  };
44
44
  export type SiteScope = (typeof siteScope)[keyof typeof siteScope];
45
- export declare const functionalityScope: {
46
- readonly API_IRIS_APP_SDK_PROXY_FETCH: "api.iris.app.proxy.fetch";
47
- };
48
- export type FunctionalityScope = (typeof functionalityScope)[keyof typeof functionalityScope];
49
- export type Scope = AccountScope | AssetScope | SiteScope | FunctionalityScope;
45
+ export type Scope = AccountScope | AssetScope | SiteScope;
50
46
  export declare const allScopes: {
51
- API_IRIS_APP_SDK_PROXY_FETCH: "api.iris.app.proxy.fetch";
52
47
  SITE_VIEW: "site.view";
53
48
  ASSET_VIEW: "asset.view";
54
49
  ACCOUNT_ACCESS_MANAGEMENT_MANAGE: "account.access-management.manage";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.readOnlyScopes = exports.allScopes = exports.functionalityScope = exports.siteScope = exports.assetScope = exports.accountScope = void 0;
3
+ exports.readOnlyScopes = exports.allScopes = exports.siteScope = exports.assetScope = exports.accountScope = void 0;
4
4
  exports.accountScope = {
5
5
  ACCOUNT_ACCESS_MANAGEMENT_MANAGE: "account.access-management.manage",
6
6
  ACCOUNT_ALERT_MANAGE: "account.alert.manage",
@@ -42,10 +42,7 @@ exports.assetScope = {
42
42
  exports.siteScope = {
43
43
  SITE_VIEW: "site.view",
44
44
  };
45
- exports.functionalityScope = {
46
- API_IRIS_APP_SDK_PROXY_FETCH: "api.iris.app.proxy.fetch",
47
- };
48
- exports.allScopes = { ...exports.accountScope, ...exports.assetScope, ...exports.siteScope, ...exports.functionalityScope };
45
+ exports.allScopes = { ...exports.accountScope, ...exports.assetScope, ...exports.siteScope };
49
46
  exports.readOnlyScopes = [
50
47
  exports.accountScope.ACCOUNT_ALERT_VIEW,
51
48
  exports.accountScope.ACCOUNT_AUDIT_LOG_VIEW,