diff --git a/BattlePlace/Api.hs b/BattlePlace/Api.hs
--- a/BattlePlace/Api.hs
+++ b/BattlePlace/Api.hs
@@ -10,8 +10,12 @@
 	( clientAuth
 	, clientMatch
 	, clientMatchStatus
+	, clientMatchCancel
 	, clientSessionResult
+	, clientInfoStats
 	, serverMatch
+	, serverMatchCancel
+	, serverMatchSessions
 	, serverSessionResult
 	, baseUrl
 	, module BattlePlace.Token.Types
@@ -32,9 +36,9 @@
 
 (client :<|> server) = api
 
-clientAuth :<|> (clientMatch :<|> clientMatchStatus) :<|> clientSessionResult = client
+clientAuth :<|> (clientMatch :<|> clientMatchStatus :<|> clientMatchCancel) :<|> clientSessionResult :<|> clientInfoStats = client
 
-serverMatch :<|> serverSessionResult = server
+(serverMatch :<|> serverMatchCancel :<|> serverMatchSessions) :<|> serverSessionResult = server
 
 baseUrl :: Servant.BaseUrl
 baseUrl = Servant.BaseUrl
diff --git a/battleplace-api.cabal b/battleplace-api.cabal
--- a/battleplace-api.cabal
+++ b/battleplace-api.cabal
@@ -1,5 +1,5 @@
 name:                battleplace-api
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            Public API definitions of BattlePlace.io service
 description:         Public API definitions of BattlePlace.io service
 license:             MIT
