Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- newtype CorpusExportAPI mode = CorpusExportAPI {
- corpusExportEp :: mode :- (Summary "Corpus Export" :> ("export" :> (QueryParam "listId" ListId :> (QueryParam "ngramsType" NgramsType :> Get '[JSON] (Headers '[Header "Content-Disposition" Text] Corpus)))))
- newtype AddWithForm mode = AddWithForm {
- addWithFormEp :: mode :- (Summary "Add with FormUrlEncoded to annuaire endpoint" :> ("annuaire" :> (Capture "annuaire_id" AnnuaireId :> ("add" :> ("form" :> ("async" :> AsyncJobs JobLog '[FormUrlEncoded] AnnuaireWithForm JobLog))))))
- newtype AddWithQuery mode = AddWithQuery {}
Routes types
newtype CorpusExportAPI mode #
CorpusExportAPI | |
|
Instances
Generic (CorpusExportAPI mode) # | |
Defined in Gargantext.API.Routes.Named.Corpus type Rep (CorpusExportAPI mode) :: Type -> Type # from :: CorpusExportAPI mode -> Rep (CorpusExportAPI mode) x # to :: Rep (CorpusExportAPI mode) x -> CorpusExportAPI mode # | |
type Rep (CorpusExportAPI mode) # | |
Defined in Gargantext.API.Routes.Named.Corpus |
newtype AddWithForm mode #
AddWithForm | |
|
Instances
Generic (AddWithForm mode) # | |
Defined in Gargantext.API.Routes.Named.Corpus type Rep (AddWithForm mode) :: Type -> Type # from :: AddWithForm mode -> Rep (AddWithForm mode) x # to :: Rep (AddWithForm mode) x -> AddWithForm mode # | |
type Rep (AddWithForm mode) # | |
Defined in Gargantext.API.Routes.Named.Corpus |
newtype AddWithQuery mode #
Instances
Generic (AddWithQuery mode) # | |
Defined in Gargantext.API.Routes.Named.Corpus type Rep (AddWithQuery mode) :: Type -> Type # from :: AddWithQuery mode -> Rep (AddWithQuery mode) x # to :: Rep (AddWithQuery mode) x -> AddWithQuery mode # | |
type Rep (AddWithQuery mode) # | |
Defined in Gargantext.API.Routes.Named.Corpus type Rep (AddWithQuery mode) = D1 ('MetaData "AddWithQuery" "Gargantext.API.Routes.Named.Corpus" "gargantext-0.0.7.1.5.3-inplace" 'True) (C1 ('MetaCons "AddWithQuery" 'PrefixI 'True) (S1 ('MetaSel ('Just "addWithQueryEp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (mode :- (Summary "Add with Query to corpus endpoint" :> ("corpus" :> (Capture "corpus_id" CorpusId :> ("query" :> AsyncJobs JobLog '[JSON] WithQuery JobLog)))))))) |