packages feed

gogol-blogger 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.Blogger: type BloggerAPI = PostUserInfosListResource :<|> (PostUserInfosGetResource :<|> (UsersGetResource :<|> (PageViewsGetResource :<|> (BlogsListByUserResource :<|> (BlogsGetResource :<|> (BlogsGetByURLResource :<|> (PagesInsertResource :<|> (PagesListResource :<|> (PagesPatchResource :<|> (PagesGetResource :<|> (PagesRevertResource :<|> (PagesDeleteResource :<|> (PagesUpdateResource :<|> (PagesPublishResource :<|> (BlogUserInfosGetResource :<|> (CommentsListResource :<|> (CommentsGetResource :<|> (CommentsListByBlogResource :<|> (CommentsRemoveContentResource :<|> (CommentsApproveResource :<|> (CommentsMarkAsSpamResource :<|> (CommentsDeleteResource :<|> (PostsInsertResource :<|> (PostsListResource :<|> (PostsPatchResource :<|> (PostsGetResource :<|> (PostsRevertResource :<|> (PostsGetByPathResource :<|> (PostsSearchResource :<|> (PostsDeleteResource :<|> (PostsUpdateResource :<|> PostsPublishResource)))))))))))))))))))))))))))))))
+ Network.Google.Blogger: type BloggerAPI = PostUserInfosListResource :<|> PostUserInfosGetResource :<|> UsersGetResource :<|> PageViewsGetResource :<|> BlogsListByUserResource :<|> BlogsGetResource :<|> BlogsGetByURLResource :<|> PagesInsertResource :<|> PagesListResource :<|> PagesPatchResource :<|> PagesGetResource :<|> PagesRevertResource :<|> PagesDeleteResource :<|> PagesUpdateResource :<|> PagesPublishResource :<|> BlogUserInfosGetResource :<|> CommentsListResource :<|> CommentsGetResource :<|> CommentsListByBlogResource :<|> CommentsRemoveContentResource :<|> CommentsApproveResource :<|> CommentsMarkAsSpamResource :<|> CommentsDeleteResource :<|> PostsInsertResource :<|> PostsListResource :<|> PostsPatchResource :<|> PostsGetResource :<|> PostsRevertResource :<|> PostsGetByPathResource :<|> PostsSearchResource :<|> PostsDeleteResource :<|> PostsUpdateResource :<|> PostsPublishResource
- Network.Google.Resource.Blogger.BlogUserInfos.Get: type BlogUserInfosGetResource = "blogger" :> ("v3" :> ("users" :> (Capture "userId" Text :> ("blogs" :> (Capture "blogId" Text :> (QueryParam "maxPosts" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] BlogUserInfo)))))))
+ Network.Google.Resource.Blogger.BlogUserInfos.Get: type BlogUserInfosGetResource = "blogger" :> "v3" :> "users" :> Capture "userId" Text :> "blogs" :> Capture "blogId" Text :> QueryParam "maxPosts" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] BlogUserInfo
- Network.Google.Resource.Blogger.Blogs.Get: type BlogsGetResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> (QueryParam "maxPosts" (Textual Word32) :> (QueryParam "view" BlogsGetView :> (QueryParam "alt" AltJSON :> Get '[JSON] Blog))))))
+ Network.Google.Resource.Blogger.Blogs.Get: type BlogsGetResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> QueryParam "maxPosts" (Textual Word32) :> QueryParam "view" BlogsGetView :> QueryParam "alt" AltJSON :> Get '[JSON] Blog
- Network.Google.Resource.Blogger.Blogs.GetByURL: type BlogsGetByURLResource = "blogger" :> ("v3" :> ("blogs" :> ("byurl" :> (QueryParam "url" Text :> (QueryParam "view" BlogsGetByURLView :> (QueryParam "alt" AltJSON :> Get '[JSON] Blog))))))
+ Network.Google.Resource.Blogger.Blogs.GetByURL: type BlogsGetByURLResource = "blogger" :> "v3" :> "blogs" :> "byurl" :> QueryParam "url" Text :> QueryParam "view" BlogsGetByURLView :> QueryParam "alt" AltJSON :> Get '[JSON] Blog
- Network.Google.Resource.Blogger.Blogs.ListByUser: type BlogsListByUserResource = "blogger" :> ("v3" :> ("users" :> (Capture "userId" Text :> ("blogs" :> (QueryParams "status" BlogsListByUserStatus :> (QueryParam "fetchUserInfo" Bool :> (QueryParams "role" BlogsListByUserRole :> (QueryParam "view" BlogsListByUserView :> (QueryParam "alt" AltJSON :> Get '[JSON] BlogList)))))))))
+ Network.Google.Resource.Blogger.Blogs.ListByUser: type BlogsListByUserResource = "blogger" :> "v3" :> "users" :> Capture "userId" Text :> "blogs" :> QueryParams "status" BlogsListByUserStatus :> QueryParam "fetchUserInfo" Bool :> QueryParams "role" BlogsListByUserRole :> QueryParam "view" BlogsListByUserView :> QueryParam "alt" AltJSON :> Get '[JSON] BlogList
- Network.Google.Resource.Blogger.Comments.Approve: type CommentsApproveResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("comments" :> (Capture "commentId" Text :> ("approve" :> (QueryParam "alt" AltJSON :> Post '[JSON] Comment)))))))))
+ Network.Google.Resource.Blogger.Comments.Approve: type CommentsApproveResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "comments" :> Capture "commentId" Text :> "approve" :> QueryParam "alt" AltJSON :> Post '[JSON] Comment
- Network.Google.Resource.Blogger.Comments.Delete: type CommentsDeleteResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("comments" :> (Capture "commentId" Text :> (QueryParam "alt" AltJSON :> Delete '[JSON] ()))))))))
+ Network.Google.Resource.Blogger.Comments.Delete: type CommentsDeleteResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "comments" :> Capture "commentId" Text :> QueryParam "alt" AltJSON :> Delete '[JSON] ()
- Network.Google.Resource.Blogger.Comments.Get: type CommentsGetResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("comments" :> (Capture "commentId" Text :> (QueryParam "view" CommentsGetView :> (QueryParam "alt" AltJSON :> Get '[JSON] Comment)))))))))
+ Network.Google.Resource.Blogger.Comments.Get: type CommentsGetResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "comments" :> Capture "commentId" Text :> QueryParam "view" CommentsGetView :> QueryParam "alt" AltJSON :> Get '[JSON] Comment
- Network.Google.Resource.Blogger.Comments.List: type CommentsListResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("comments" :> (QueryParams "status" CommentsListStatus :> (QueryParam "endDate" DateTime' :> (QueryParam "startDate" DateTime' :> (QueryParam "fetchBodies" Bool :> (QueryParam "view" CommentsListView :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] CommentList))))))))))))))
+ Network.Google.Resource.Blogger.Comments.List: type CommentsListResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "comments" :> QueryParams "status" CommentsListStatus :> QueryParam "endDate" DateTime' :> QueryParam "startDate" DateTime' :> QueryParam "fetchBodies" Bool :> QueryParam "view" CommentsListView :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] CommentList
- Network.Google.Resource.Blogger.Comments.ListByBlog: type CommentsListByBlogResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("comments" :> (QueryParams "status" CommentsListByBlogStatus :> (QueryParam "endDate" DateTime' :> (QueryParam "startDate" DateTime' :> (QueryParam "fetchBodies" Bool :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] CommentList)))))))))))
+ Network.Google.Resource.Blogger.Comments.ListByBlog: type CommentsListByBlogResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "comments" :> QueryParams "status" CommentsListByBlogStatus :> QueryParam "endDate" DateTime' :> QueryParam "startDate" DateTime' :> QueryParam "fetchBodies" Bool :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] CommentList
- Network.Google.Resource.Blogger.Comments.MarkAsSpam: type CommentsMarkAsSpamResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("comments" :> (Capture "commentId" Text :> ("spam" :> (QueryParam "alt" AltJSON :> Post '[JSON] Comment)))))))))
+ Network.Google.Resource.Blogger.Comments.MarkAsSpam: type CommentsMarkAsSpamResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "comments" :> Capture "commentId" Text :> "spam" :> QueryParam "alt" AltJSON :> Post '[JSON] Comment
- Network.Google.Resource.Blogger.Comments.RemoveContent: type CommentsRemoveContentResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("comments" :> (Capture "commentId" Text :> ("removecontent" :> (QueryParam "alt" AltJSON :> Post '[JSON] Comment)))))))))
+ Network.Google.Resource.Blogger.Comments.RemoveContent: type CommentsRemoveContentResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "comments" :> Capture "commentId" Text :> "removecontent" :> QueryParam "alt" AltJSON :> Post '[JSON] Comment
- Network.Google.Resource.Blogger.PageViews.Get: type PageViewsGetResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pageviews" :> (QueryParams "range" PageViewsGetRange :> (QueryParam "alt" AltJSON :> Get '[JSON] Pageviews))))))
+ Network.Google.Resource.Blogger.PageViews.Get: type PageViewsGetResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pageviews" :> QueryParams "range" PageViewsGetRange :> QueryParam "alt" AltJSON :> Get '[JSON] Pageviews
- Network.Google.Resource.Blogger.Pages.Delete: type PagesDeleteResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (Capture "pageId" Text :> (QueryParam "alt" AltJSON :> Delete '[JSON] ()))))))
+ Network.Google.Resource.Blogger.Pages.Delete: type PagesDeleteResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> Capture "pageId" Text :> QueryParam "alt" AltJSON :> Delete '[JSON] ()
- Network.Google.Resource.Blogger.Pages.Get: type PagesGetResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (Capture "pageId" Text :> (QueryParam "view" PagesGetView :> (QueryParam "alt" AltJSON :> Get '[JSON] Page)))))))
+ Network.Google.Resource.Blogger.Pages.Get: type PagesGetResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> Capture "pageId" Text :> QueryParam "view" PagesGetView :> QueryParam "alt" AltJSON :> Get '[JSON] Page
- Network.Google.Resource.Blogger.Pages.Insert: type PagesInsertResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (QueryParam "isDraft" Bool :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Page :> Post '[JSON] Page)))))))
+ Network.Google.Resource.Blogger.Pages.Insert: type PagesInsertResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> QueryParam "isDraft" Bool :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Page :> Post '[JSON] Page
- Network.Google.Resource.Blogger.Pages.List: type PagesListResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (QueryParams "status" PagesListStatus :> (QueryParam "fetchBodies" Bool :> (QueryParam "view" PagesListView :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] PageList))))))))))
+ Network.Google.Resource.Blogger.Pages.List: type PagesListResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> QueryParams "status" PagesListStatus :> QueryParam "fetchBodies" Bool :> QueryParam "view" PagesListView :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] PageList
- Network.Google.Resource.Blogger.Pages.Patch: type PagesPatchResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (Capture "pageId" Text :> (QueryParam "revert" Bool :> (QueryParam "publish" Bool :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Page :> Patch '[JSON] Page)))))))))
+ Network.Google.Resource.Blogger.Pages.Patch: type PagesPatchResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> Capture "pageId" Text :> QueryParam "revert" Bool :> QueryParam "publish" Bool :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Page :> Patch '[JSON] Page
- Network.Google.Resource.Blogger.Pages.Publish: type PagesPublishResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (Capture "pageId" Text :> ("publish" :> (QueryParam "alt" AltJSON :> Post '[JSON] Page)))))))
+ Network.Google.Resource.Blogger.Pages.Publish: type PagesPublishResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> Capture "pageId" Text :> "publish" :> QueryParam "alt" AltJSON :> Post '[JSON] Page
- Network.Google.Resource.Blogger.Pages.Revert: type PagesRevertResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (Capture "pageId" Text :> ("revert" :> (QueryParam "alt" AltJSON :> Post '[JSON] Page)))))))
+ Network.Google.Resource.Blogger.Pages.Revert: type PagesRevertResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> Capture "pageId" Text :> "revert" :> QueryParam "alt" AltJSON :> Post '[JSON] Page
- Network.Google.Resource.Blogger.Pages.Update: type PagesUpdateResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("pages" :> (Capture "pageId" Text :> (QueryParam "revert" Bool :> (QueryParam "publish" Bool :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Page :> Put '[JSON] Page)))))))))
+ Network.Google.Resource.Blogger.Pages.Update: type PagesUpdateResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "pages" :> Capture "pageId" Text :> QueryParam "revert" Bool :> QueryParam "publish" Bool :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Page :> Put '[JSON] Page
- Network.Google.Resource.Blogger.PostUserInfos.Get: type PostUserInfosGetResource = "blogger" :> ("v3" :> ("users" :> (Capture "userId" Text :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> (QueryParam "maxComments" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] PostUserInfo)))))))))
+ Network.Google.Resource.Blogger.PostUserInfos.Get: type PostUserInfosGetResource = "blogger" :> "v3" :> "users" :> Capture "userId" Text :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> QueryParam "maxComments" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] PostUserInfo
- Network.Google.Resource.Blogger.PostUserInfos.List: type PostUserInfosListResource = "blogger" :> ("v3" :> ("users" :> (Capture "userId" Text :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (QueryParams "status" PostUserInfosListStatus :> (QueryParam "orderBy" PostUserInfosListOrderBy :> (QueryParam "endDate" DateTime' :> (QueryParam "startDate" DateTime' :> (QueryParam "fetchBodies" Bool :> (QueryParam "view" PostUserInfosListView :> (QueryParam "labels" Text :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] PostUserInfosList))))))))))))))))
+ Network.Google.Resource.Blogger.PostUserInfos.List: type PostUserInfosListResource = "blogger" :> "v3" :> "users" :> Capture "userId" Text :> "blogs" :> Capture "blogId" Text :> "posts" :> QueryParams "status" PostUserInfosListStatus :> QueryParam "orderBy" PostUserInfosListOrderBy :> QueryParam "endDate" DateTime' :> QueryParam "startDate" DateTime' :> QueryParam "fetchBodies" Bool :> QueryParam "view" PostUserInfosListView :> QueryParam "labels" Text :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] PostUserInfosList
- Network.Google.Resource.Blogger.Posts.Delete: type PostsDeleteResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> (QueryParam "alt" AltJSON :> Delete '[JSON] ()))))))
+ Network.Google.Resource.Blogger.Posts.Delete: type PostsDeleteResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> QueryParam "alt" AltJSON :> Delete '[JSON] ()
- Network.Google.Resource.Blogger.Posts.Get: type PostsGetResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> (QueryParam "fetchBody" Bool :> (QueryParam "fetchImages" Bool :> (QueryParam "maxComments" (Textual Word32) :> (QueryParam "view" PostsGetView :> (QueryParam "alt" AltJSON :> Get '[JSON] Post'))))))))))
+ Network.Google.Resource.Blogger.Posts.Get: type PostsGetResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> QueryParam "fetchBody" Bool :> QueryParam "fetchImages" Bool :> QueryParam "maxComments" (Textual Word32) :> QueryParam "view" PostsGetView :> QueryParam "alt" AltJSON :> Get '[JSON] Post'
- Network.Google.Resource.Blogger.Posts.GetByPath: type PostsGetByPathResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> ("bypath" :> (QueryParam "path" Text :> (QueryParam "maxComments" (Textual Word32) :> (QueryParam "view" PostsGetByPathView :> (QueryParam "alt" AltJSON :> Get '[JSON] Post')))))))))
+ Network.Google.Resource.Blogger.Posts.GetByPath: type PostsGetByPathResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> "bypath" :> QueryParam "path" Text :> QueryParam "maxComments" (Textual Word32) :> QueryParam "view" PostsGetByPathView :> QueryParam "alt" AltJSON :> Get '[JSON] Post'
- Network.Google.Resource.Blogger.Posts.Insert: type PostsInsertResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (QueryParam "fetchBody" Bool :> (QueryParam "isDraft" Bool :> (QueryParam "fetchImages" Bool :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Post' :> Post '[JSON] Post')))))))))
+ Network.Google.Resource.Blogger.Posts.Insert: type PostsInsertResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> QueryParam "fetchBody" Bool :> QueryParam "isDraft" Bool :> QueryParam "fetchImages" Bool :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Post' :> Post '[JSON] Post'
- Network.Google.Resource.Blogger.Posts.List: type PostsListResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (QueryParams "status" PostsListStatus :> (QueryParam "orderBy" PostsListOrderBy :> (QueryParam "fetchImages" Bool :> (QueryParam "endDate" DateTime' :> (QueryParam "startDate" DateTime' :> (QueryParam "fetchBodies" Bool :> (QueryParam "view" PostsListView :> (QueryParam "labels" Text :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "alt" AltJSON :> Get '[JSON] PostList)))))))))))))))
+ Network.Google.Resource.Blogger.Posts.List: type PostsListResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> QueryParams "status" PostsListStatus :> QueryParam "orderBy" PostsListOrderBy :> QueryParam "fetchImages" Bool :> QueryParam "endDate" DateTime' :> QueryParam "startDate" DateTime' :> QueryParam "fetchBodies" Bool :> QueryParam "view" PostsListView :> QueryParam "labels" Text :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] PostList
- Network.Google.Resource.Blogger.Posts.Patch: type PostsPatchResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> (QueryParam "fetchBody" Bool :> (QueryParam "fetchImages" Bool :> (QueryParam "maxComments" (Textual Word32) :> (QueryParam "revert" Bool :> (QueryParam "publish" Bool :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Post' :> Patch '[JSON] Post'))))))))))))
+ Network.Google.Resource.Blogger.Posts.Patch: type PostsPatchResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> QueryParam "fetchBody" Bool :> QueryParam "fetchImages" Bool :> QueryParam "maxComments" (Textual Word32) :> QueryParam "revert" Bool :> QueryParam "publish" Bool :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Post' :> Patch '[JSON] Post'
- Network.Google.Resource.Blogger.Posts.Publish: type PostsPublishResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("publish" :> (QueryParam "publishDate" DateTime' :> (QueryParam "alt" AltJSON :> Post '[JSON] Post'))))))))
+ Network.Google.Resource.Blogger.Posts.Publish: type PostsPublishResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "publish" :> QueryParam "publishDate" DateTime' :> QueryParam "alt" AltJSON :> Post '[JSON] Post'
- Network.Google.Resource.Blogger.Posts.Revert: type PostsRevertResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("revert" :> (QueryParam "alt" AltJSON :> Post '[JSON] Post')))))))
+ Network.Google.Resource.Blogger.Posts.Revert: type PostsRevertResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> "revert" :> QueryParam "alt" AltJSON :> Post '[JSON] Post'
- Network.Google.Resource.Blogger.Posts.Search: type PostsSearchResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> ("search" :> (QueryParam "q" Text :> (QueryParam "orderBy" PostsSearchOrderBy :> (QueryParam "fetchBodies" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] PostList)))))))))
+ Network.Google.Resource.Blogger.Posts.Search: type PostsSearchResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> "search" :> QueryParam "q" Text :> QueryParam "orderBy" PostsSearchOrderBy :> QueryParam "fetchBodies" Bool :> QueryParam "alt" AltJSON :> Get '[JSON] PostList
- Network.Google.Resource.Blogger.Posts.Update: type PostsUpdateResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> (QueryParam "fetchBody" Bool :> (QueryParam "fetchImages" Bool :> (QueryParam "maxComments" (Textual Word32) :> (QueryParam "revert" Bool :> (QueryParam "publish" Bool :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Post' :> Put '[JSON] Post'))))))))))))
+ Network.Google.Resource.Blogger.Posts.Update: type PostsUpdateResource = "blogger" :> "v3" :> "blogs" :> Capture "blogId" Text :> "posts" :> Capture "postId" Text :> QueryParam "fetchBody" Bool :> QueryParam "fetchImages" Bool :> QueryParam "maxComments" (Textual Word32) :> QueryParam "revert" Bool :> QueryParam "publish" Bool :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Post' :> Put '[JSON] Post'
- Network.Google.Resource.Blogger.Users.Get: type UsersGetResource = "blogger" :> ("v3" :> ("users" :> (Capture "userId" Text :> (QueryParam "alt" AltJSON :> Get '[JSON] User))))
+ Network.Google.Resource.Blogger.Users.Get: type UsersGetResource = "blogger" :> "v3" :> "users" :> Capture "userId" Text :> QueryParam "alt" AltJSON :> Get '[JSON] User

Files

gen/Network/Google/Blogger/Types/Sum.hs view
@@ -16,7 +16,7 @@ -- module Network.Google.Blogger.Types.Sum where -import           Network.Google.Prelude+import           Network.Google.Prelude hiding (Bytes)  -- | Sort search results data PostsListOrderBy
gogol-blogger.cabal view
@@ -1,5 +1,5 @@ name:                  gogol-blogger-version:               0.3.0+version:               0.4.0 synopsis:              Google Blogger SDK. homepage:              https://github.com/brendanhay/gogol bug-reports:           https://github.com/brendanhay/gogol/issues@@ -78,5 +78,5 @@         , Network.Google.Blogger.Types.Sum      build-depends:-          gogol-core == 0.3.0.*+          gogol-core == 0.4.0.*         , base       >= 4.7 && < 5