packages feed

gogol-appstate 0.3.0 → 0.4.0

raw patch · 2 files changed

+3/−3 lines, 2 filesdep ~gogol-corePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: gogol-core

API changes (from Hackage documentation)

- Network.Google.AppState: type AppStateAPI = StatesListResource :<|> (StatesGetResource :<|> (StatesClearResource :<|> (StatesDeleteResource :<|> StatesUpdateResource)))
+ Network.Google.AppState: type AppStateAPI = StatesListResource :<|> StatesGetResource :<|> StatesClearResource :<|> StatesDeleteResource :<|> StatesUpdateResource
- Network.Google.Resource.AppState.States.Clear: type StatesClearResource = "appstate" :> ("v1" :> ("states" :> (Capture "stateKey" (Textual Int32) :> ("clear" :> (QueryParam "currentDataVersion" Text :> (QueryParam "alt" AltJSON :> Post '[JSON] WriteResult))))))
+ Network.Google.Resource.AppState.States.Clear: type StatesClearResource = "appstate" :> "v1" :> "states" :> Capture "stateKey" (Textual Int32) :> "clear" :> QueryParam "currentDataVersion" Text :> QueryParam "alt" AltJSON :> Post '[JSON] WriteResult
- Network.Google.Resource.AppState.States.Delete: type StatesDeleteResource = "appstate" :> ("v1" :> ("states" :> (Capture "stateKey" (Textual Int32) :> (QueryParam "alt" AltJSON :> Delete '[JSON] ()))))
+ Network.Google.Resource.AppState.States.Delete: type StatesDeleteResource = "appstate" :> "v1" :> "states" :> Capture "stateKey" (Textual Int32) :> QueryParam "alt" AltJSON :> Delete '[JSON] ()
- Network.Google.Resource.AppState.States.Get: type StatesGetResource = "appstate" :> ("v1" :> ("states" :> (Capture "stateKey" (Textual Int32) :> (QueryParam "alt" AltJSON :> Get '[JSON] GetResponse))))
+ Network.Google.Resource.AppState.States.Get: type StatesGetResource = "appstate" :> "v1" :> "states" :> Capture "stateKey" (Textual Int32) :> QueryParam "alt" AltJSON :> Get '[JSON] GetResponse
- Network.Google.Resource.AppState.States.List: type StatesListResource = "appstate" :> ("v1" :> ("states" :> (QueryParam "includeData" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] ListResponse))))
+ Network.Google.Resource.AppState.States.List: type StatesListResource = "appstate" :> "v1" :> "states" :> QueryParam "includeData" Bool :> QueryParam "alt" AltJSON :> Get '[JSON] ListResponse
- Network.Google.Resource.AppState.States.Update: type StatesUpdateResource = "appstate" :> ("v1" :> ("states" :> (Capture "stateKey" (Textual Int32) :> (QueryParam "currentStateVersion" Text :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] UpdateRequest :> Put '[JSON] WriteResult))))))
+ Network.Google.Resource.AppState.States.Update: type StatesUpdateResource = "appstate" :> "v1" :> "states" :> Capture "stateKey" (Textual Int32) :> QueryParam "currentStateVersion" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] UpdateRequest :> Put '[JSON] WriteResult

Files

gen/Network/Google/AppState/Types/Sum.hs view
@@ -16,4 +16,4 @@ -- module Network.Google.AppState.Types.Sum where -import           Network.Google.Prelude+import           Network.Google.Prelude hiding (Bytes)
gogol-appstate.cabal view
@@ -1,5 +1,5 @@ name:                  gogol-appstate-version:               0.3.0+version:               0.4.0 synopsis:              Google App State SDK. homepage:              https://github.com/brendanhay/gogol bug-reports:           https://github.com/brendanhay/gogol/issues@@ -46,5 +46,5 @@         , Network.Google.AppState.Types.Sum      build-depends:-          gogol-core == 0.3.0.*+          gogol-core == 0.4.0.*         , base       >= 4.7 && < 5