openapitools.json 674 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
  3. "spaces": 2,
  4. "generator-cli": {
  5. "version": "5.3.0",
  6. "generators": {
  7. "fetch": {
  8. "generatorName": "typescript-fetch",
  9. "output": "src/generated-sources",
  10. "glob": "../kafka-ui-contract/src/main/resources/swagger/kafka-ui-api.yaml",
  11. "additionalProperties": {
  12. "enumPropertyNaming": "UPPERCASE",
  13. "typescriptThreePlus": true,
  14. "supportsES6": true,
  15. "nullSafeAdditionalProps": true,
  16. "withInterfaces": true
  17. },
  18. "typeMappings": {
  19. "object": "any"
  20. }
  21. }
  22. }
  23. }
  24. }