agntcy-dir 1.3.0 → 1.4.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/README.md +1 -1
- package/dist/agntcy-dir.d.ts +156 -696
- package/dist/index.cjs +973 -11811
- package/dist/index.mjs +957 -11792
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -14
package/README.md
CHANGED
|
@@ -142,7 +142,7 @@ const client = new Client();
|
|
|
142
142
|
await client.authenticateOAuthPkce();
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
For custom transports, call `Client.createGRPCTransport(oidcConfig, { oidcTokenHolder })`
|
|
145
|
+
For custom transports, call `Client.createGRPCTransport(oidcConfig, { oidcTokenHolder: client.oauthSession.oauthHolder })` after constructing a `Client` in OIDC mode, or pass a holder from your own OIDC flow. The usual path is `new Client(oidcConfig)`, which wires the session and transport automatically.
|
|
146
146
|
|
|
147
147
|
## Getting Started
|
|
148
148
|
|