Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type is lost when extending model properties without specifying it's type #970

Open
vyobukhov opened this issue Feb 15, 2022 · 0 comments
Open
Assignees

Comments

@vyobukhov
Copy link
Contributor

Minimal schema example:

openapi: 3.0.1
info:
  title: Schema Example
  version: 1.0.0
components:
  schemas:
    Common:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
    ExtendedSchema:
      allOf:
        - $ref: '#/components/schemas/Common'
        - type: object
          properties:
            noTypeFoo:
              description: "It should be any, that is correct"
            id:
              description: "It should be integer but we get any instead"

Expected type for ExtendedSchema model:

import type { Common } from './Common';

export type ExtendedSchema = (Common & {
    noTypeFoo?: any;
    id?: number;
});

Actual generated ExtendedSchema model:

import type { Common } from './Common';

export type ExtendedSchema = (Common & {
    noTypeFoo?: any;
    id?: any;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants