Giter VIP home page Giter VIP logo

Comments (7)

maapteh avatar maapteh commented on July 17, 2024

duplicate for #510

from dtsgenerator.

maapteh avatar maapteh commented on July 17, 2024

Some debug information so far:


ln#1053 on simple_schema_test the iteration "support components property in OpenAPI v3" gives me the following feedback.

The function addParameterSchema

I do see for Parameters the correct output

 for Components.Parameters.PathParameters, namely:


{ GeographyId: { '$ref': '#/components/parameters/GeographyId' } } 



since its input is

:



[ [ 'GeographyId', { name: 'geographyId', in: 'path', description: 'unique id of geography', required: true, schema: [Object] } ] ]
 



But after that for Paths.GetGeography.Parameters i do see "incorrect" output (index number instead of name):


[ [ '0', { '$ref': '#/components/parameters/GeographyId' } ] ] 




So the addParameterSchema is not called with an item name and so follows the index number.

from dtsgenerator.

horiuchi avatar horiuchi commented on July 17, 2024

@maapteh Thank you for your bug report 👍

This seems to be the same problem as #510.
The reason for the $0 is that when parsing parameters, the following code references name and uses it as the type name. But when using $ref, this code moves before expanding the reference, so name is not found and the type name is not taken.
https://github.com/horiuchi/dtsgenerator/blob/master/src/core/jsonSchema.ts#L242
This problem is due to the fact that OpenAPI support was added later, resulting in an unreasonable implementation.

In the future, we plan to make it possible to replace the type generator with different implementations for each version of JSON Schema and each version of OpenAPI, but we have been very busy and have not been able to make progress on this.

At this time, I think it would work better if you use $ref at schema instead of using $ref immediately below parameters.

from dtsgenerator.

maapteh avatar maapteh commented on July 17, 2024

With common parameters setup i do not have the queryParams anymore per endpoint.

  export namespace FindProductsByCategory {
    export namespace Parameters {
      ...snip...
    }
    export interface QueryParameters {
      minPrice?: Parameters.MinPrice;
      maxPrice?: Parameters.MaxPrice;
      orderBy?: Parameters.OrderBy;
    }

So queryParameters are gone in total. I have not an option anymore. Will look further in what to do, what you advised me to do but i guess the retrieval of endpoints can not be done anymore since api's decided to have common parameters :)

Btw still a great library, lots of people learned about your generator when i got some feedback on my article about it!

from dtsgenerator.

horiuchi avatar horiuchi commented on July 17, 2024

Thanks for using dtsgenerator.
I hadn't done much hand-writing of OpenAPI definitions myself, so thanks to you I now know that this issue is quite important.

For this new comment, I would appreciate a detailed investigation if you would write down the actual input, the actual result, and the expected result.
However, it is probably the same cause of the problem I commented on last one.

from dtsgenerator.

kostia1st avatar kostia1st commented on July 17, 2024

Just wanted to let know that this issue is still relevant, and the fix would save the day for way more than one project.

from dtsgenerator.

maapteh avatar maapteh commented on July 17, 2024

We moved to https://orval.dev/overview which besides creating all types (following api spec) also creates the complete hooks for integration for the frontend. Maybe you can have a look as well @kostia1st

from dtsgenerator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.