Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • O openapi-generator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 3,476
    • Issues 3,476
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 402
    • Merge requests 402
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • OpenAPI Tools
  • openapi-generator
  • Issues
  • #13188
Closed
Open
Issue created Aug 15, 2022 by Administrator@rootContributor5 of 6 checklist items completed5/6 checklist items

[BUG] [TypeScript Axios] Generator claims to support Date/DateTime but doesn't

Created by: tibbe

Bug Report Checklist

  • Have you provided a full/minimal spec to reproduce the issue?
  • Have you validated the input using an OpenAPI validator (example)?
  • Have you tested with the latest master to confirm the issue still exists?
  • Have you searched for related issues/PRs?
  • What's the actual output vs expected output?
  • [Optional] Sponsorship to speed up the bug fix or feature request (example)
Description

I used the TypeScript Axios generator, which claims to support Date/DateTime. Looking at the generated code it's clearly it does not. It does no transformation of the data returned from the server over what Axios does so date time string don't get converted to Date objects.

openapi-generator version

6.0.1. Doesn't seem to be a regression.

OpenAPI declaration file content or url

Propertriatary but here's a sample of a date time field:

      "Channel": {
        "description": "A channel with project data.",
        "properties": {
          "created_at": {
            "format": "date-time",
            "title": "Created At",
            "type": "string"
          },
          "id": {
            "title": "Id",
            "type": "string"
          },
        },
        "required": [
          "created_at",
          "id",
        ],
        "title": "Channel",
        "type": "object"
      },
Generation Details
openapi-generator-cli generate -i ../backend/openapi.json -g typescript-axios -o ./generated/axios -c openapi-typescript-axios.config.json

The config just contains:

{
    "modelPropertyNaming": "original"
}
Steps to reproduce

Use the generator with a date-time field.

Related issues/PRs
Suggest a fix

Add the right transformations to the data returned by Axios.

Assignee
Assign to
Time tracking