1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-15 19:50:05 +00:00

refactor: use github.com/jinzhu/copier for MapStruct (#698)

This commit is contained in:
Alessandro (Ale) Segala
2025-06-29 06:01:10 -07:00
committed by GitHub
parent ca205a8c73
commit c290c027fb
5 changed files with 215 additions and 150 deletions

View File

@@ -149,7 +149,7 @@ type AuthorizedOidcClientDto struct {
}
type OidcClientPreviewDto struct {
IdToken map[string]interface{} `json:"idToken"`
AccessToken map[string]interface{} `json:"accessToken"`
UserInfo map[string]interface{} `json:"userInfo"`
IdToken map[string]any `json:"idToken"`
AccessToken map[string]any `json:"accessToken"`
UserInfo map[string]any `json:"userInfo"`
}