@or-sdk/permissions-cli 1.4.6-beta.4276.0 → 1.5.1-beta.4282.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 CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.5.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/permissions-cli@1.4.5...@or-sdk/permissions-cli@1.5.0) (2026-08-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * **packages:** add package descriptions and published files metadata ([801f823](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/801f823034717ef8b961405a73d51ebc2ec07649))
12
+
13
+
14
+
6
15
  ## [1.4.5](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/permissions-cli@1.4.0...@or-sdk/permissions-cli@1.4.5) (2026-08-04)
7
16
 
8
17
  **Note:** Version bump only for package @or-sdk/permissions-cli
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/permissions-cli",
3
- "version": "1.4.6-beta.4276.0",
3
+ "version": "1.5.1-beta.4282.0",
4
4
  "description": "OneReach SDK client for Permissions Cli",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
@@ -12,22 +12,22 @@
12
12
  "README.md",
13
13
  "CHANGELOG.md"
14
14
  ],
15
- "scripts": {
16
- "build": "pnpm clean && tsc --project tsconfig.json",
17
- "build:watch": "tsc --project tsconfig.json -w",
18
- "clean": "rm -rf ./dist",
19
- "dev": "pnpm build:watch"
20
- },
21
15
  "dependencies": {
22
- "@or-sdk/permissions": "^2.8.6-beta.4276.0",
23
16
  "commander": "13.0.0",
24
- "yaml": "2.9.0"
17
+ "yaml": "2.9.0",
18
+ "@or-sdk/permissions": "^2.9.1-beta.4282.0"
25
19
  },
26
20
  "devDependencies": {
27
- "concurrently": "9.0.1",
28
- "typescript": "5.6.2"
21
+ "concurrently": "^9.2.0",
22
+ "typescript": "^5.6.2"
29
23
  },
30
24
  "publishConfig": {
31
25
  "access": "public"
26
+ },
27
+ "scripts": {
28
+ "build": "tsc --project tsconfig.json",
29
+ "build:watch": "tsc --project tsconfig.json -w",
30
+ "clean": "rm -rf ./dist",
31
+ "dev": "pnpm build:watch"
32
32
  }
33
- }
33
+ }