Clean and regen docs (#401)

diff --git a/docs/dyn/content_v2.accounts.html b/docs/dyn/content_v2.accounts.html
index b9cb347..26ac978 100644
--- a/docs/dyn/content_v2.accounts.html
+++ b/docs/dyn/content_v2.accounts.html
@@ -78,6 +78,9 @@
   <code><a href="#authinfo">authinfo()</a></code></p>
 <p class="firstline">Returns information about the authenticated user.</p>
 <p class="toc_element">
+  <code><a href="#claimwebsite">claimwebsite(merchantId, accountId, overwrite=None)</a></code></p>
+<p class="firstline">Claims the website of a Merchant Center sub-account. This method can only be called for multi-client accounts.</p>
+<p class="toc_element">
   <code><a href="#custombatch">custombatch(body, dryRun=None)</a></code></p>
 <p class="firstline">Retrieves, inserts, updates, and deletes multiple Merchant Center (sub-)accounts in a single request.</p>
 <p class="toc_element">
@@ -126,6 +129,23 @@
 </div>
 
 <div class="method">
+    <code class="details" id="claimwebsite">claimwebsite(merchantId, accountId, overwrite=None)</code>
+  <pre>Claims the website of a Merchant Center sub-account. This method can only be called for multi-client accounts.
+
+Args:
+  merchantId: string, The ID of the managing account. (required)
+  accountId: string, The ID of the account whose website is claimed. (required)
+  overwrite: boolean, Flag to remove any existing claim on the requested website by another account and replace it with a claim from this account.
+
+Returns:
+  An object of the form:
+
+    {
+    "kind": "content#accountsClaimWebsiteResponse", # Identifies what kind of resource this is. Value: the fixed string "content#accountsClaimWebsiteResponse".
+  }</pre>
+</div>
+
+<div class="method">
     <code class="details" id="custombatch">custombatch(body, dryRun=None)</code>
   <pre>Retrieves, inserts, updates, and deletes multiple Merchant Center (sub-)accounts in a single request.
 
@@ -136,8 +156,6 @@
 {
     "entries": [ # The request entries to be processed in the batch.
       { # A batch entry encoding a single non-batch accounts request.
-        "batchId": 42, # An entry ID, unique within the batch request.
-        "method": "A String",
         "account": { # Account data. # The account to create or update. Only defined if the method is insert or update.
             "reviewsUrl": "A String", # URL for individual seller reviews, i.e., reviews for each child account.
             "kind": "content#account", # Identifies what kind of resource this is. Value: the fixed string "content#account".
@@ -160,7 +178,10 @@
             ],
           },
         "merchantId": "A String", # The ID of the managing account.
-        "accountId": "A String", # The ID of the account to get or delete. Only defined if the method is get or delete.
+        "batchId": 42, # An entry ID, unique within the batch request.
+        "method": "A String",
+        "overwrite": True or False, # Only applicable if the method is claimwebsite. Indicates whether or not to take the claim from another account in case there is a conflict.
+        "accountId": "A String", # The ID of the targeted account. Only defined if the method is get, delete or claimwebsite.
       },
     ],
   }
@@ -175,7 +196,7 @@
     "entries": [ # The result of the execution of the batch requests.
       { # A batch entry encoding a single non-batch accounts response.
         "batchId": 42, # The ID of the request entry this entry responds to.
-        "account": { # Account data. # The retrieved, created, or updated account. Not defined if the method was delete.
+        "account": { # Account data. # The retrieved, created, or updated account. Not defined if the method was delete or claimwebsite.
             "reviewsUrl": "A String", # URL for individual seller reviews, i.e., reviews for each child account.
             "kind": "content#account", # Identifies what kind of resource this is. Value: the fixed string "content#account".
             "name": "A String", # Display name for the account.