@absolutejs/auth 0.56.13 → 0.56.14
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 +6 -0
- package/dist/agents/config.d.ts +5 -0
- package/dist/agents/index.d.ts +1 -0
- package/dist/agents/index.js +108 -6
- package/dist/agents/index.js.map +6 -5
- package/dist/agents/oauthGuide.d.ts +18 -0
- package/dist/agents/routes.d.ts +1 -66
- package/dist/index.d.ts +2 -20
- package/dist/index.js +139 -17
- package/dist/index.js.map +7 -6
- package/dist/server.js +136 -17
- package/dist/server.js.map +7 -6
- package/docs/AGENT-AUTH.md +7 -0
- package/package.json +1 -1
package/docs/AGENT-AUTH.md
CHANGED
|
@@ -5,6 +5,13 @@ no separate `auth-md` package and no WorkOS service dependency. `/auth.md` is a
|
|
|
5
5
|
wire-compatible, generated companion document; OAuth metadata remains the
|
|
6
6
|
authoritative machine-readable contract.
|
|
7
7
|
|
|
8
|
+
For applications that use ordinary OAuth dynamic client registration rather
|
|
9
|
+
than the claim/ID-JAG profile, `agentAuth.oauthGuide` publishes the same native
|
|
10
|
+
`/auth.md` surface from an exact list of enabled protected resources, metadata
|
|
11
|
+
URLs, and scopes. RFC 8414 discovery links it through
|
|
12
|
+
`service_documentation`. The guide never creates a second credential type or
|
|
13
|
+
changes the application's audience-bound OAuth verification.
|
|
14
|
+
|
|
8
15
|
## Interoperability contract
|
|
9
16
|
|
|
10
17
|
The implementation composes existing standards wherever they already define the
|
package/package.json
CHANGED