chore: regens API reference docs (#889)

diff --git a/docs/dyn/blogger_v3.pageViews.html b/docs/dyn/blogger_v3.pageViews.html
index f9ce56a..1ba6c4c 100644
--- a/docs/dyn/blogger_v3.pageViews.html
+++ b/docs/dyn/blogger_v3.pageViews.html
@@ -72,36 +72,36 @@
 
 </style>
 
-<h1><a href="blogger_v3.html">Blogger API</a> . <a href="blogger_v3.pageViews.html">pageViews</a></h1>
+<h1><a href="blogger_v3.html">Blogger API v3</a> . <a href="blogger_v3.pageViews.html">pageViews</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
-  <code><a href="#get">get(blogId, range=None)</a></code></p>
-<p class="firstline">Retrieve pageview stats for a Blog.</p>
+  <code><a href="#get">get(blogId, range=None, x__xgafv=None)</a></code></p>
+<p class="firstline">Gets page views by blog id.</p>
 <h3>Method Details</h3>
 <div class="method">
-    <code class="details" id="get">get(blogId, range=None)</code>
-  <pre>Retrieve pageview stats for a Blog.
+    <code class="details" id="get">get(blogId, range=None, x__xgafv=None)</code>
+  <pre>Gets page views by blog id.
 
 Args:
-  blogId: string, The ID of the blog to get. (required)
+  blogId: string, A parameter (required)
   range: string, A parameter (repeated)
+  x__xgafv: string, V1 error format.
     Allowed values
-      30DAYS - Page view counts from the last thirty days.
-      7DAYS - Page view counts from the last seven days.
-      all - Total page view counts from all time.
+      1 - v1 error format
+      2 - v2 error format
 
 Returns:
   An object of the form:
 
     {
+    "kind": "A String", # The kind of this entry. Always blogger#page_views.
     "counts": [ # The container of posts in this blog.
       {
-        "count": "A String", # Count of page views for the given time range
-        "timeRange": "A String", # Time range the given count applies to
+        "count": "A String", # Count of page views for the given time range.
+        "timeRange": "A String", # Time range the given count applies to.
       },
     ],
-    "blogId": "A String", # Blog Id
-    "kind": "blogger#page_views", # The kind of this entry. Always blogger#page_views
+    "blogId": "A String", # Blog Id.
   }</pre>
 </div>