zitadel-oidc/example/server/storage
Tim Möhlmann 85bd99873d refactor: use struct types for claim related types
BREAKING change.
The following types are changed from interface to struct type:

- AccessTokenClaims
- IDTokenClaims
- IntrospectionResponse
- UserInfo and related types.

The following methods of OPStorage now take a pointer to a struct type,
instead of an interface:

- SetUserinfoFromScopes
- SetUserinfoFromToken
- SetIntrospectionFromToken

The following functions are now generic, so that type-safe extension
of Claims is now possible:

- op.VerifyIDTokenHint
- op.VerifyAccessToken
- rp.VerifyTokens
- rp.VerifyIDToken
2023-03-02 16:46:04 +02:00
..
client.go feat: Token Exchange (RFC 8693) (#255) 2023-02-19 15:57:46 +02:00
oidc.go feat: Token Exchange (RFC 8693) (#255) 2023-02-19 15:57:46 +02:00
storage.go refactor: use struct types for claim related types 2023-03-02 16:46:04 +02:00
storage_dynamic.go refactor: use struct types for claim related types 2023-03-02 16:46:04 +02:00
token.go chore: Make example/server usable for tests (#205) 2022-09-30 07:44:10 +02:00
user.go feat: Token Exchange (RFC 8693) (#255) 2023-02-19 15:57:46 +02:00