[haskell-http-client] handle Alias models + refactoring. (#6712)

* handle Alias models with newtypes

* add inlineConsumesContentTypes cli option

* generate swagger.yaml instead of swagger.json

* check for/validate unhandled authMethods

* refactoring
This commit is contained in:
Jon Schoning
2017-10-17 21:47:56 -05:00
committed by wing328
parent 1ac04ae13a
commit 5219035b3a
77 changed files with 7058 additions and 7204 deletions

View File

@@ -14,17 +14,19 @@ Module : SwaggerPetstore
-}
module SwaggerPetstore
( module SwaggerPetstore.Client
, module SwaggerPetstore.API
, module SwaggerPetstore.Model
, module SwaggerPetstore.MimeTypes
, module SwaggerPetstore.Lens
( module SwaggerPetstore.API
, module SwaggerPetstore.Client
, module SwaggerPetstore.Core
, module SwaggerPetstore.Logging
, module SwaggerPetstore.MimeTypes
, module SwaggerPetstore.Model
, module SwaggerPetstore.ModelLens
) where
import SwaggerPetstore.API
import SwaggerPetstore.Client
import SwaggerPetstore.Model
import SwaggerPetstore.MimeTypes
import SwaggerPetstore.Lens
import SwaggerPetstore.Core
import SwaggerPetstore.Logging
import SwaggerPetstore.MimeTypes
import SwaggerPetstore.Model
import SwaggerPetstore.ModelLens