acacode / acacode/swagger-typescript-api

Inherited/discriminated types are missing type information

Aperta
#565 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub
Lingua principale
TypeScript
Stelle
4.1k
Fork
436
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

Command: `swagger-typescript-api --extract-enums --no-client --path https://raw.githubusercontent.com/europace/baufismart-kundenangaben-api/master/kundenangaben-openapi.yaml --name kundenangaben-api.model.ts`

This generates the following output:

```
/** Mögliche Typen: ArbeitserlaubnisVorhanden, KeineArbeitserlaubnis */
interface BaseArbeitserlaubnis {
"@type": string;
}

type BaseArbeitserlaubnisTypeMapping = {
"@type": Key;
} & Type;

/** Mögliche Typen: ArbeitserlaubnisVorhanden, KeineArbeitserlaubnis */
export type Arbeitserlaubnis = BaseArbeitserlaubnis &
(
| BaseArbeitserlaubnisTypeMapping<"ARBEITSERLAUBNIS_VORHANDEN", ArbeitserlaubnisVorhanden>
| BaseArbeitserlaubnisTypeMapping<"KEINE_ARBEITSERLAUBNIS", KeineArbeitserlaubnis>
);

export type ArbeitserlaubnisVorhanden = BaseArbeitserlaubnis & {
/**
* Die Befristung der Arbeitserlaubnis muss in der Zukunft liegen.
* @format date
*/
befristetBis?: string;
};

export type KeineArbeitserlaubnis = BaseArbeitserlaubnis;
```

The type `ArbeitserlaubnisVorhanden` is missing the information, that `@type` has to be `ARBEITSERLAUBNIS_VORHANDEN`, even though it is available in the discrimated type `Arbeitserlaubnis`.

```
const x: ArbeitserlaubnisVorhanden = { '@type': 'KEINE_ARBEITSERLAUBNIS' }; // should error
```

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.