Skip to content

header property is required but headers property is used for sending headers #79

Open
@Weeb6279

Description

@Weeb6279

Environment


  • Operating System: Windows_NT
  • Node Version: v22.11.0
  • Nuxt Version: 3.14.159
  • CLI Version: 3.15.0
  • Nitro Version: 2.10.4
  • Package Manager: [email protected]
  • Builder: -
  • User Config: default
  • Runtime Modules: [email protected]
  • Build Modules: -

Reproduction

Client usage

useApiClient('/api/endpoint', {
  method: 'GET',
  header: { 'X-Header': 'value' },
  mode: 'cors',
  credentials: 'same-origin',
  server: false
})

Open API schema:

{
    "x-generator": "NSwag v14.0.7.0 (NJsonSchema v11.0.0.0 (Newtonsoft.Json v13.0.0.0))",
    "openapi": "3.0.0",
    "info": {
        "title": "Api",
        "version": "1.0.0"
    },
    "servers": [
        {
            "url": "https://localhost:5071"
        }
    ],
    "paths": {
        "/api/endpoint": {
            "get": {
                "tags": [
                    "Endpoint"
                ],
                "operationId": "Endpoint_Operation",
                "parameters": [
                    {
                        "name": "X-Header",
                        "x-originalName": "xheader",
                        "in": "header",
                        "required": true,
                        "description": "Header",
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
            }
        }
    }
}

Describe the bug

When generating the api client from an OpenAPI schema the header property is generated with the required headers. However when specifying the header option on the fetch function the header will not be send.
The correct property is headers. Specifying this property will send the header with fetch.

Generated Code:

    Endpoint_Operation: {
        parameters: {
            query?: never;
            header: {
                /** @description Header */
                "X-Header": string;
            };
            path?: never;
            cookie?: never;
        };
    };

Expected Code:

    Endpoint_Operation: {
        parameters: {
            query?: never;
            headers: {
                /** @description Header */
                "X-Header": string;
            };
            path?: never;
            cookie?: never;
        };
    };

Additional context

No response

Logs

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions