chore: regens API reference docs (#889)

diff --git a/docs/dyn/bigquery_v2.tabledata.html b/docs/dyn/bigquery_v2.tabledata.html
index ff0a8ac..da9535e 100644
--- a/docs/dyn/bigquery_v2.tabledata.html
+++ b/docs/dyn/bigquery_v2.tabledata.html
@@ -75,7 +75,7 @@
 <h1><a href="bigquery_v2.html">BigQuery API</a> . <a href="bigquery_v2.tabledata.html">tabledata</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
-  <code><a href="#insertAll">insertAll(projectId, datasetId, tableId, body)</a></code></p>
+  <code><a href="#insertAll">insertAll(projectId, datasetId, tableId, body=None)</a></code></p>
 <p class="firstline">Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.</p>
 <p class="toc_element">
   <code><a href="#list">list(projectId, datasetId, tableId, selectedFields=None, pageToken=None, maxResults=None, startIndex=None)</a></code></p>
@@ -85,14 +85,14 @@
 <p class="firstline">Retrieves the next page of results.</p>
 <h3>Method Details</h3>
 <div class="method">
-    <code class="details" id="insertAll">insertAll(projectId, datasetId, tableId, body)</code>
+    <code class="details" id="insertAll">insertAll(projectId, datasetId, tableId, body=None)</code>
   <pre>Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.
 
 Args:
   projectId: string, Project ID of the destination table. (required)
   datasetId: string, Dataset ID of the destination table. (required)
   tableId: string, Table ID of the destination table. (required)
-  body: object, The request body. (required)
+  body: object, The request body.
     The object takes the form of:
 
 {
@@ -122,8 +122,8 @@
         "errors": [ # Error information for the row indicated by the index property.
           {
             "debugInfo": "A String", # Debugging information. This property is internal to Google and should not be used.
-            "message": "A String", # A human-readable description of the error.
             "reason": "A String", # A short error code that summarizes the error.
+            "message": "A String", # A human-readable description of the error.
             "location": "A String", # Specifies where the error occurred, if present.
           },
         ],
@@ -149,8 +149,6 @@
   An object of the form:
 
     {
-    "pageToken": "A String", # A token used for paging results. Providing this token instead of the startIndex parameter can help you retrieve stable results when an underlying table is changing.
-    "kind": "bigquery#tableDataList", # The resource type of the response.
     "rows": [ # Rows of results.
       {
         "f": [ # Represents a single row in the result set, consisting of one or more fields.
@@ -160,8 +158,10 @@
         ],
       },
     ],
-    "totalRows": "A String", # The total number of rows in the complete table.
+    "kind": "bigquery#tableDataList", # The resource type of the response.
     "etag": "A String", # A hash of this page of results.
+    "totalRows": "A String", # The total number of rows in the complete table.
+    "pageToken": "A String", # A token used for paging results. Providing this token instead of the startIndex parameter can help you retrieve stable results when an underlying table is changing.
   }</pre>
 </div>