From 0d7bddeaa9aba90aaed5a0450847c3faae27d554 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Mon, 13 Oct 2025 20:32:16 +0200 Subject: [PATCH] Forgot to include security into the GET /oauth/identity endpoint on the OpenAPI specification document in the library target. --- Sources/DiscogsService/openapi.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/DiscogsService/openapi.yaml b/Sources/DiscogsService/openapi.yaml index 92ca0500f..1b9724420 100644 --- a/Sources/DiscogsService/openapi.yaml +++ b/Sources/DiscogsService/openapi.yaml @@ -345,6 +345,10 @@ paths: For further details about this process, please refer to the [OAuth flow](https://www.discogs.com/developers#page:authentication,header:authentication-oauth-flow) section in the [Discogs API authentication](https://www.discogs.com/developers#page:authentication) documentation. operationId: getUserIdentity + security: + - Token: [] + - KeySecret: [] + - OAuth: [] responses: '200': description: Successfully retrieved information about an authenticated user.