diff --git a/packages/testing/src/openapi.yaml b/packages/testing/src/openapi.yaml index cbc349c3..9fc31b3b 100644 --- a/packages/testing/src/openapi.yaml +++ b/packages/testing/src/openapi.yaml @@ -11257,8 +11257,13 @@ paths: $ref: '#/components/schemas/LoginOptions' required: false responses: - '204': + '200': description: Successful response. + content: + application/jwt: + schema: + type: string + example: eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE0NzYxMTkxMzYsImlzcyI6Ik1lbmRlciIsInN1YiI6Ijg1NGIzMTA5LTQ4NjItNGEyNS1hMWZiLWYxMTE2MWNlN2E4NCIsInNjcCI6WyJtZW5kZXIuKiJdfQ.X7Ief4PhPLlR6mA2wh3G3K0Z2tud0rK1QJesxu52NfICSeARmlujczs-_1YZxMwI0s-HgpXHbXIjaSVK80BjxjAM1rqpRGvgqSqG-dU5KmglDpAaTr4VaJci3VFPlVUVTRpI7bfqNMnKZtjmOUAGwjvroDUwX1RwayEmms-efGI '401': description: | The user is not authorized. diff --git a/packages/types/src/types.gen.ts b/packages/types/src/types.gen.ts index a4fda7f5..c4254932 100644 --- a/packages/types/src/types.gen.ts +++ b/packages/types/src/types.gen.ts @@ -15786,7 +15786,7 @@ export type LinkOAuth20Responses = { /** * Successful response. */ - 204: void; + 200: string; }; export type LinkOAuth20Response = LinkOAuth20Responses[keyof LinkOAuth20Responses];