packages feed

haskoin-store-data 0.40.2 → 0.41.0

raw patch · 3 files changed

+3/−10 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

- Haskoin.Store.WebClient: GetXPubEvict :: !XPubKey -> !DeriveType -> GetXPubEvict
- Haskoin.Store.WebClient: data GetXPubEvict
- Haskoin.Store.WebCommon: GetXPubEvict :: !XPubKey -> !DeriveType -> GetXPubEvict
- Haskoin.Store.WebCommon: data GetXPubEvict
- Haskoin.Store.WebCommon: instance Haskoin.Store.WebCommon.ApiResource Haskoin.Store.WebCommon.GetXPubEvict (Haskoin.Store.Data.GenericResult GHC.Types.Bool)

Files

haskoin-store-data.cabal view
@@ -1,13 +1,13 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.2.+-- This file has been generated from package.yaml by hpack version 0.33.0. -- -- see: https://github.com/sol/hpack ----- hash: b7e89ff3547ccc60722bcd1c8b04b3cdd082cbf896164e3d11c262989119b326+-- hash: 8787598b7df413727491c19974d63711e10977ac5d6f324a710ddc6ea21c8490  name:           haskoin-store-data-version:        0.40.2+version:        0.41.0 synopsis:       Data for Haskoin Store description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme> category:       Bitcoin, Finance, Network
src/Haskoin/Store/WebClient.hs view
@@ -45,7 +45,6 @@ , GetXPubTxsFull(..) , GetXPubBalances(..) , GetXPubUnspent(..)-, GetXPubEvict(..) -- Network , GetPeers(..) , GetHealth(..)
src/Haskoin/Store/WebCommon.hs view
@@ -97,7 +97,6 @@ data GetXPubTxsFull = GetXPubTxsFull !XPubKey !Store.DeriveType !LimitsParam !NoCache data GetXPubBalances = GetXPubBalances !XPubKey !Store.DeriveType !NoCache data GetXPubUnspent = GetXPubUnspent !XPubKey !Store.DeriveType !LimitsParam !NoCache-data GetXPubEvict = GetXPubEvict !XPubKey !Store.DeriveType -- Network data GetPeers = GetPeers data GetHealth = GetHealth@@ -299,11 +298,6 @@         ( [ParamBox p]         , noDefBox d <> noMaybeBox l <> noDefBox o <> noMaybeBox sM <> noDefBox n         )-    captureParams _ = [ProxyBox (Proxy :: Proxy XPubKey)]--instance ApiResource GetXPubEvict (Store.GenericResult Bool) where-    resourcePath _ = "/xpub/" <+> "/evict"-    queryParams (GetXPubEvict p d) = ([ParamBox p], noDefBox d)     captureParams _ = [ProxyBox (Proxy :: Proxy XPubKey)]  -------------