Skip to content

Commit

Permalink
Merge pull request #41 from maestro-org/upd-submit-resp
Browse files Browse the repository at this point in the history
Incorporating txmanager submission response update
  • Loading branch information
Vardominator authored Oct 18, 2023
2 parents 0a2dcc5 + 3865f44 commit 8c5de1a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions maestro-sdk.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -84,22 +84,22 @@ library
Maestro.Types.V1.Transactions

build-depends:
aeson ^>=2.1.2.1,
aeson ^>=2.1,
base ^>=4.14.3.0 || ^>=4.16.4.0 || ^>=4.18.0.0,
bytestring ^>=0.10.12.0 || ^>=0.11.4.0,
containers ^>=0.6.5.1,
data-default-class ^>=0.1.2.0,
deriving-aeson ^>=0.2.9,
http-api-data ^>=0.6,
http-client ^>=0.7.14,
http-client-tls ^>=0.3.6.3,
http-types ^>=0.12.3,
retry ^>=0.9.3.1,
servant ^>=0.20,
servant-client ^>=0.20,
servant-client-core ^>=0.20,
text ^>=1.2.4.1 || ^>=2.0.2,
time ^>=1.9.3 || ^>=1.11.1.1 || ^>=1.12.2
bytestring ^>=0.10 || ^>=0.11,
containers ^>=0.6,
data-default-class ^>=0.1,
deriving-aeson ^>=0.2,
http-api-data ^>=0.5 || ^>=0.6,
http-client ^>=0.7,
http-client-tls ^>=0.3,
http-types ^>=0.12,
retry ^>=0.9,
servant ^>=0.19 || ^>=0.20,
servant-client ^>=0.19 || ^>=0.20,
servant-client-core ^>=0.19 || ^>=0.20,
text ^>=1.2 || ^>=2.0,
time ^>=1.9 || ^>=1.11 || ^>=1.12

hs-source-dirs: src
default-language: Haskell2010
Expand Down
4 changes: 2 additions & 2 deletions src/Maestro/API/V1/TxManager.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ data TxManagerAPI route = TxManagerAPI
{ monitoredTxSubmit ::
route
:- ReqBody' '[Required] '[CBORStream] BS.ByteString
:> PostAccepted '[JSON] T.Text
:> PostAccepted '[PlainText] T.Text
, monitoredTurboTxSubmit ::
route
:- ReqBody' '[Required] '[CBORStream] BS.ByteString
:> PostAccepted '[JSON] T.Text
:> PostAccepted '[PlainText] T.Text
}
deriving (Generic)

0 comments on commit 8c5de1a

Please sign in to comment.