docs: update generated docs (#981)

diff --git a/docs/dyn/civicinfo_v2.divisions.html b/docs/dyn/civicinfo_v2.divisions.html
index f937ee8..b13213f 100644
--- a/docs/dyn/civicinfo_v2.divisions.html
+++ b/docs/dyn/civicinfo_v2.divisions.html
@@ -75,30 +75,34 @@
 <h1><a href="civicinfo_v2.html">Google Civic Information API</a> . <a href="civicinfo_v2.divisions.html">divisions</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
-  <code><a href="#search">search(query=None)</a></code></p>
+  <code><a href="#search">search(query=None, x__xgafv=None)</a></code></p>
 <p class="firstline">Searches for political divisions by their natural name or OCD ID.</p>
 <h3>Method Details</h3>
 <div class="method">
-    <code class="details" id="search">search(query=None)</code>
+    <code class="details" id="search">search(query=None, x__xgafv=None)</code>
   <pre>Searches for political divisions by their natural name or OCD ID.
 
 Args:
   query: string, The search query. Queries can cover any parts of a OCD ID or a human readable division name. All words given in the query are treated as required patterns. In addition to that, most query operators of the Apache Lucene library are supported. See http://lucene.apache.org/core/2_9_4/queryparsersyntax.html
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
 
 Returns:
   An object of the form:
 
     { # The result of a division search query.
-    &quot;kind&quot;: &quot;civicinfo#divisionSearchResponse&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;civicinfo#divisionSearchResponse&quot;.
     &quot;results&quot;: [
       { # Represents a political geographic division that matches the requested query.
+        &quot;name&quot;: &quot;A String&quot;, # The name of the division.
+        &quot;ocdId&quot;: &quot;A String&quot;, # The unique Open Civic Data identifier for this division
         &quot;aliases&quot;: [ # Other Open Civic Data identifiers that refer to the same division -- for example, those that refer to other political divisions whose boundaries are defined to be coterminous with this one. For example, ocd-division/country:us/state:wy will include an alias of ocd-division/country:us/state:wy/cd:1, since Wyoming has only one Congressional district.
           &quot;A String&quot;,
         ],
-        &quot;name&quot;: &quot;A String&quot;, # The name of the division.
-        &quot;ocdId&quot;: &quot;A String&quot;, # The unique Open Civic Data identifier for this division.
       },
     ],
+    &quot;kind&quot;: &quot;civicinfo#divisionSearchResponse&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;civicinfo#divisionSearchResponse&quot;.
   }</pre>
 </div>