packages feed

speechmatics 0.1.0.0 → 0.1.1.0

raw patch · 5 files changed

+10/−12 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Speechmatics.Client: ParseError :: String -> Error
+ Speechmatics.Client: UnkownResponse :: Error
+ Speechmatics.Client: data Error

Files

README.md view
@@ -1,9 +1,5 @@ # speechmatics -a client for the [speechmatics](https://app.speechmatics.com/api-details) api .+a client api for speechmatics.  with input an audio file and blocking untill we get a json transcription.---Developed by [Daisee](https://www.daisee.com/), pull requests are accepted:-https://bitbucket.org/daisee/speechmatics-api-client
speechmatics.cabal view
@@ -2,17 +2,16 @@ -- -- see: https://github.com/sol/hpack ----- hash: 4bc71e263d2002b605c0009ece685cd69f43493ceabe7ba3da924eaaf3e2cb69+-- hash: f064c70f8805662cb580ac9295e710e5488d0a00043850d0d7ff19a5727489cf  name:           speechmatics-version:        0.1.0.0-synopsis:       Upload audio files to speechmatics to get a transcription-description:    Please see the README on bitbucket <https://bitbucket.org/daisee/speechmatics-api-client/src/master/>+version:        0.1.1.0+synopsis:       Speechmatics api client+description:    Upload audio files to speechmatics to get a transcription category:       API-homepage:       https://bitbucket.org/daisee/speechmatics-api-client/ author:         Jappie Klooster maintainer:     jappie.klooster@daisee.com-copyright:      Daisee Pty Ltd+copyright:      Daisee license:        BSD3 license-file:   LICENSE build-type:     Simple
src/Speechmatics/Client.hs view
@@ -7,7 +7,8 @@   AuthToken,   UserID,   ModelName,-  LazyByteFile(..)+  LazyByteFile(..),+  Error(..) ) where  import           Control.Concurrent         (threadDelay)
src/Speechmatics/JSON/PeekJob.hs view
@@ -5,6 +5,7 @@ {-# LANGUAGE TypeOperators       #-} {-# LANGUAGE DeriveGeneric       #-} +-- | Generated from json response, now it's type safe, see the tests module Speechmatics.JSON.PeekJob where  import           System.Exit        (exitFailure, exitSuccess)
src/Speechmatics/JSON/PostJob.hs view
@@ -5,6 +5,7 @@ {-# LANGUAGE TypeOperators       #-} {-# LANGUAGE DeriveGeneric       #-} +-- | Generated from json response, now it's type safe, see the tests module Speechmatics.JSON.PostJob where  import           System.Exit        (exitFailure, exitSuccess)