@or-sdk/users 3.8.6-beta.4275.0 → 3.9.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 +9 -0
- package/README.md +8 -0
- package/package.json +4 -3
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
|
+
## [3.9.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/users@3.8.5...@or-sdk/users@3.9.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
|
## [3.8.5](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/users@3.8.0...@or-sdk/users@3.8.5) (2026-08-04)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @or-sdk/users
|
package/README.md
CHANGED
|
@@ -92,3 +92,11 @@ All public methods below are taken from the package source. Parameter and return
|
|
|
92
92
|
## More detail
|
|
93
93
|
|
|
94
94
|
Full signatures and exported types are available in `src/` and `dist/types/`.
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
## Exported utility reference
|
|
98
|
+
|
|
99
|
+
| Function | Returns | Purpose |
|
|
100
|
+
|---|---|---|
|
|
101
|
+
| `okRes(data: JsonBodyType, status = 200)` | `unknown` | Exported utility; see its TypeScript signature for behavior. |
|
|
102
|
+
| `errorRes(errorMessage: string, status = 500)` | `unknown` | Exported utility; see its TypeScript signature for behavior. |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/users",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "OneReach SDK client for Users",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@or-sdk/base": "^0.44.7",
|
|
31
|
-
"@or-sdk/sdk-api": "^0.
|
|
31
|
+
"@or-sdk/sdk-api": "^0.30.0",
|
|
32
32
|
"validator": "^13.15.23",
|
|
33
33
|
"zod": "^3.24.4"
|
|
34
34
|
},
|
|
@@ -40,5 +40,6 @@
|
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
|
-
}
|
|
43
|
+
},
|
|
44
|
+
"gitHead": "6dc62c7c3a3a05b2dfc5a1c7c9bfd4c5e8eb0b99"
|
|
44
45
|
}
|