@vunexa/lixa 0.1.1 → 0.1.2
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/README.md +3 -3
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ A flexible, provider-agnostic OAuth 2.0 and OpenID Connect (OIDC) client library
|
|
|
28
28
|
|
|
29
29
|
## Architecture Overview
|
|
30
30
|
|
|
31
|
-

|
|
31
|
+

|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
@@ -112,7 +112,7 @@ Lixa supports automatic identity merging for users signing in with different SSO
|
|
|
112
112
|
|
|
113
113
|
### Account Linking Sequence Diagram
|
|
114
114
|
|
|
115
|
-

|
|
115
|
+

|
|
116
116
|
|
|
117
117
|
### Account Linking Configuration Modes
|
|
118
118
|
|
|
@@ -154,7 +154,7 @@ Primary authentication is strictly limited to identity scopes. To request third-
|
|
|
154
154
|
|
|
155
155
|
### Resource Connection Sequence Diagram
|
|
156
156
|
|
|
157
|
-

|
|
157
|
+

|
|
158
158
|
|
|
159
159
|
### Resource Connection Usage Example
|
|
160
160
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vunexa/lixa",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Lixa is a flexible, provider-agnostic OAuth and OpenID Connect (OIDC) client library that simplifies multi-provider authentication flows. It supports seamless integration with providers like Google and GitHub, offers extensible session management, and enables dynamic provider resolution based on callback URLs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oauth",
|
|
@@ -8,6 +8,15 @@
|
|
|
8
8
|
],
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"author": "vamsi",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/vunexa/lixa.git",
|
|
14
|
+
"directory": "lixa"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/vunexa/lixa/tree/master/lixa#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/vunexa/lixa/issues"
|
|
19
|
+
},
|
|
11
20
|
"type": "module",
|
|
12
21
|
"main": "./dist/index.cjs",
|
|
13
22
|
"module": "./dist/index.js",
|