@or-sdk/authorizer 0.25.11-beta.3817.0 → 0.25.11
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 +0 -1
- package/package.json +3 -24
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
|
+
## [0.25.11](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/authorizer@0.25.10...@or-sdk/authorizer@0.25.11) (2025-09-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **authorizer:** build authorizer ([b86f596](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/b86f5964df4a55c746cfba29db50f5c43f39ae09))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [0.25.10](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/authorizer@0.25.9...@or-sdk/authorizer@0.25.10) (2025-09-04)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @or-sdk/authorizer
|
package/README.md
CHANGED
|
@@ -37,5 +37,4 @@ const oAuthCollectionInstance = new OAuthCollection({
|
|
|
37
37
|
keyValueCollection: 'custom-collection-name', // Pass this if you using custom name for key-value collection that differs from serviceName
|
|
38
38
|
accountId: 'my-account-ID' // Optional, for Super-Admins only
|
|
39
39
|
});
|
|
40
|
-
|
|
41
40
|
```
|
package/package.json
CHANGED
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/authorizer",
|
|
3
|
-
"version": "0.25.11
|
|
3
|
+
"version": "0.25.11",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
-
"exports": {
|
|
6
|
-
".": {
|
|
7
|
-
"import": "./dist/esm/index.js",
|
|
8
|
-
"require": "./dist/cjs/index.js"
|
|
9
|
-
},
|
|
10
|
-
"./Basic": {
|
|
11
|
-
"import": "./dist/esm/Basic/index.js",
|
|
12
|
-
"require": "./dist/cjs/Basic/index.js"
|
|
13
|
-
},
|
|
14
|
-
"./OAuth": {
|
|
15
|
-
"import": "./dist/esm/OAuth/index.js",
|
|
16
|
-
"require": "./dist/cjs/OAuth/index.js"
|
|
17
|
-
},
|
|
18
|
-
"./Token": {
|
|
19
|
-
"import": "./dist/esm/Token/index.js",
|
|
20
|
-
"require": "./dist/cjs/Token/index.js"
|
|
21
|
-
},
|
|
22
|
-
"./OAuthCollection": {
|
|
23
|
-
"import": "./dist/esm/OAuthCollection/index.js",
|
|
24
|
-
"require": "./dist/cjs/OAuthCollection/index.js"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
5
|
"main": "dist/cjs/index.js",
|
|
28
6
|
"module": "dist/esm/index.js",
|
|
29
7
|
"types": "dist/types/index.d.ts",
|
|
@@ -67,5 +45,6 @@
|
|
|
67
45
|
},
|
|
68
46
|
"publishConfig": {
|
|
69
47
|
"access": "public"
|
|
70
|
-
}
|
|
48
|
+
},
|
|
49
|
+
"gitHead": "d024e7265b6b5832440fe013256318d5ec226a52"
|
|
71
50
|
}
|