@trackunit/iris-app-api 2.1.24 → 2.2.0
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 +15 -0
- package/package.json +1 -1
- package/src/types/scopes.d.ts +4 -0
- package/src/types/scopes.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## 2.2.0 (2026-08-03)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add equipment pooling scopes to the Manager scope registry ([f331721a2ea](https://github.com/Trackunit/manager/commit/f331721a2ea))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Cursor @cursoragent
|
|
10
|
+
- ssi
|
|
11
|
+
|
|
12
|
+
## 2.1.25 (2026-08-03)
|
|
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.1.24 (2026-07-31)
|
|
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
|
@@ -8,6 +8,8 @@ export declare const accountScope: {
|
|
|
8
8
|
readonly ACCOUNT_BILLING_MANAGE: "account.billing.manage";
|
|
9
9
|
readonly ACCOUNT_CUSTOM_FIELDS_MANAGE: "account.custom-fields.manage";
|
|
10
10
|
readonly ACCOUNT_DELETE: "account.delete";
|
|
11
|
+
readonly ACCOUNT_EQUIPMENT_POOLING_MANAGE: "account.equipment-pooling.manage";
|
|
12
|
+
readonly ACCOUNT_EQUIPMENT_POOLING_VIEW: "account.equipment-pooling.view";
|
|
11
13
|
readonly ACCOUNT_EVENT_MANAGE: "account.event.manage";
|
|
12
14
|
readonly ACCOUNT_EVENT_REPORT_ISSUE: "account.event.report-issue";
|
|
13
15
|
readonly ACCOUNT_GROUP_MANAGE: "account.group.manage";
|
|
@@ -74,6 +76,8 @@ export declare const allScopes: {
|
|
|
74
76
|
ACCOUNT_BILLING_MANAGE: "account.billing.manage";
|
|
75
77
|
ACCOUNT_CUSTOM_FIELDS_MANAGE: "account.custom-fields.manage";
|
|
76
78
|
ACCOUNT_DELETE: "account.delete";
|
|
79
|
+
ACCOUNT_EQUIPMENT_POOLING_MANAGE: "account.equipment-pooling.manage";
|
|
80
|
+
ACCOUNT_EQUIPMENT_POOLING_VIEW: "account.equipment-pooling.view";
|
|
77
81
|
ACCOUNT_EVENT_MANAGE: "account.event.manage";
|
|
78
82
|
ACCOUNT_EVENT_REPORT_ISSUE: "account.event.report-issue";
|
|
79
83
|
ACCOUNT_GROUP_MANAGE: "account.group.manage";
|
package/src/types/scopes.js
CHANGED
|
@@ -25,6 +25,8 @@ exports.accountScope = {
|
|
|
25
25
|
ACCOUNT_BILLING_MANAGE: "account.billing.manage",
|
|
26
26
|
ACCOUNT_CUSTOM_FIELDS_MANAGE: "account.custom-fields.manage",
|
|
27
27
|
ACCOUNT_DELETE: "account.delete",
|
|
28
|
+
ACCOUNT_EQUIPMENT_POOLING_MANAGE: "account.equipment-pooling.manage",
|
|
29
|
+
ACCOUNT_EQUIPMENT_POOLING_VIEW: "account.equipment-pooling.view",
|
|
28
30
|
ACCOUNT_EVENT_MANAGE: "account.event.manage",
|
|
29
31
|
ACCOUNT_EVENT_REPORT_ISSUE: "account.event.report-issue",
|
|
30
32
|
ACCOUNT_GROUP_MANAGE: "account.group.manage",
|