Clean and regen docs (#401)

diff --git a/docs/dyn/partners_v2.v2.html b/docs/dyn/partners_v2.v2.html
index 662f523..344f461 100644
--- a/docs/dyn/partners_v2.v2.html
+++ b/docs/dyn/partners_v2.v2.html
@@ -132,7 +132,7 @@
 
 { # A company resource in the Google Partners API. Once certified, it qualifies
     # for being searched by advertisers.
-  "industries": [ # Industries the company can help with.
+  "companyTypes": [ # Company type labels listed on the company's profile.
     "A String",
   ],
   "originalMinMonthlyBudget": { # Represents an amount of money with its currency type. # The unconverted minimum monthly budget that the company accepts for partner
@@ -147,31 +147,24 @@
         # For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
     "currencyCode": "A String", # The 3-letter currency code defined in ISO 4217.
   },
-  "publicProfile": { # Basic information from a public profile. # Basic information from the company's public profile.
-    "url": "A String", # The URL of the public profile.
-    "profileImage": "A String", # The URL to the main profile image of the public profile.
-    "displayImageUrl": "A String", # The URL to the main display image of the public profile. Being deprecated.
-    "displayName": "A String", # The display name of the public profile.
-    "id": "A String", # The ID which can be used to retrieve more details about the public profile.
-  },
-  "name": "A String", # The name of the company.
-  "badgeTier": "A String", # Partner badge tier
-  "localizedInfos": [ # The list of localized info for the company.
-    { # The localized company information.
-      "countryCodes": [ # List of country codes for the localized company info.
-        "A String",
-      ],
-      "languageCode": "A String", # Language code of the localized company info, as defined by
-          # <a href="https://tools.ietf.org/html/bcp47">BCP 47</a>
-          # (IETF BCP 47, "Tags for Identifying Languages").
-      "displayName": "A String", # Localized display name.
-      "overview": "A String", # Localized brief description that the company uses to advertise themselves.
-    },
-  ],
   "autoApprovalEmailDomains": [ # Email domains that allow users with a matching email address to get
       # auto-approved for associating with this company.
     "A String",
   ],
+  "specializationStatus": [ # The list of Google Partners specialization statuses for the company.
+    { # Agency specialization status
+      "badgeSpecialization": "A String", # The specialization this status is for.
+      "badgeSpecializationState": "A String", # State of agency specialization.
+    },
+  ],
+  "ranks": [ # Information related to the ranking of the company within the list of
+      # companies.
+    { # Information related to ranking of results.
+      "type": "A String", # The type of rank.
+      "value": 3.14, # The numerical value of the rank.
+    },
+  ],
+  "primaryAdwordsManagerAccountId": "A String", # The Primary AdWords Manager Account id.
   "locations": [ # The list of all company locations.
       # If set, must include the
       # primary_location
@@ -183,7 +176,8 @@
           # address.
         "A String",
       ],
-      "locality": "A String", # Generally refers to the city/town portion of an address.
+      "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+          # neighborhoods or boroughs in other locations.
       "sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
           # classification code for sorting mail.
       "latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
@@ -225,21 +219,30 @@
           #     assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
           #     assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
           #     assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
-          #
-          # The code in logs/storage/validator/logs_validator_traits.cc treats this type
-          # as if it were annotated as ST_LOCATION.
         "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
         "longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
       },
-      "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
-          # neighborhoods or boroughs in other locations.
+      "locality": "A String", # Generally refers to the city/town portion of an address.
       "regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
       "administrativeArea": "A String", # Top-level administrative subdivision of this country.
       "address": "A String", # The single string version of the address.
       "postalCode": "A String", # Values are frequently alphanumeric.
     },
   ],
-  "websiteUrl": "A String", # URL of the company's website.
+  "id": "A String", # The ID of the company.
+  "badgeTier": "A String", # Partner badge tier
+  "services": [ # Services the company can help with.
+    "A String",
+  ],
+  "additionalWebsites": [ # URL of the company's additional websites used to verify the dynamic badges.
+      # These are stored as full URLs as entered by the user, but only the TLD will
+      # be used for the actual verification.
+    "A String",
+  ],
+  "profileStatus": "A String", # The public viewability status of the company's profile.
+  "industries": [ # Industries the company can help with.
+    "A String",
+  ],
   "primaryLocation": { # A location with address and geographic coordinates. May optionally contain a # The primary location of the company.
       # detailed (multi-field) version of the address.
     "languageCode": "A String", # Language code of the address. Should be in BCP 47 format.
@@ -247,7 +250,8 @@
         # address.
       "A String",
     ],
-    "locality": "A String", # Generally refers to the city/town portion of an address.
+    "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+        # neighborhoods or boroughs in other locations.
     "sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
         # classification code for sorting mail.
     "latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
@@ -289,36 +293,16 @@
         #     assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
         #     assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
         #     assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
-        #
-        # The code in logs/storage/validator/logs_validator_traits.cc treats this type
-        # as if it were annotated as ST_LOCATION.
       "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
       "longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
     },
-    "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
-        # neighborhoods or boroughs in other locations.
+    "locality": "A String", # Generally refers to the city/town portion of an address.
     "regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
     "administrativeArea": "A String", # Top-level administrative subdivision of this country.
     "address": "A String", # The single string version of the address.
     "postalCode": "A String", # Values are frequently alphanumeric.
   },
-  "additionalWebsites": [ # URL of the company's additional websites used to verify the dynamic badges.
-      # These are stored as full URLs as entered by the user, but only the TLD will
-      # be used for the actual verification.
-    "A String",
-  ],
-  "profileStatus": "A String", # The public viewability status of the company's profile.
-  "ranks": [ # Information related to the ranking of the company within the list of
-      # companies.
-    { # Information related to ranking of results.
-      "type": "A String", # The type of rank.
-      "value": 3.14, # The numerical value of the rank.
-    },
-  ],
-  "primaryAdwordsManagerAccountId": "A String", # The Primary AdWords Manager Account id.
-  "services": [ # Services the company can help with.
-    "A String",
-  ],
+  "websiteUrl": "A String", # URL of the company's website.
   "certificationStatuses": [ # The list of Google Partners certification statuses for the company.
     { # Google Partners certification status.
       "isCertified": True or False, # Whether certification is passing.
@@ -332,8 +316,24 @@
       ],
     },
   ],
-  "companyTypes": [ # Company type labels listed on the company's profile.
-    "A String",
+  "publicProfile": { # Basic information from a public profile. # Basic information from the company's public profile.
+    "url": "A String", # The URL of the public profile.
+    "profileImage": "A String", # The URL to the main profile image of the public profile.
+    "displayImageUrl": "A String", # The URL to the main display image of the public profile. Being deprecated.
+    "displayName": "A String", # The display name of the public profile.
+    "id": "A String", # The ID which can be used to retrieve more details about the public profile.
+  },
+  "localizedInfos": [ # The list of localized info for the company.
+    { # The localized company information.
+      "countryCodes": [ # List of country codes for the localized company info.
+        "A String",
+      ],
+      "languageCode": "A String", # Language code of the localized company info, as defined by
+          # <a href="https://tools.ietf.org/html/bcp47">BCP 47</a>
+          # (IETF BCP 47, "Tags for Identifying Languages").
+      "displayName": "A String", # Localized display name.
+      "overview": "A String", # Localized brief description that the company uses to advertise themselves.
+    },
   ],
   "convertedMinMonthlyBudget": { # Represents an amount of money with its currency type. # The minimum monthly budget that the company accepts for partner business,
       # converted to the requested currency code.
@@ -347,16 +347,10 @@
         # For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
     "currencyCode": "A String", # The 3-letter currency code defined in ISO 4217.
   },
-  "id": "A String", # The ID of the company.
   "primaryLanguageCode": "A String", # The primary language code of the company, as defined by
       # <a href="https://tools.ietf.org/html/bcp47">BCP 47</a>
       # (IETF BCP 47, "Tags for Identifying Languages").
-  "specializationStatus": [ # The list of Google Partners specialization statuses for the company.
-    { # Agency specialization status
-      "badgeSpecialization": "A String", # The specialization this status is for.
-      "badgeSpecializationState": "A String", # State of agency specialization.
-    },
-  ],
+  "name": "A String", # The name of the company.
 }
 
   requestMetadata_userOverrides_ipAddress: string, IP address to use instead of the user's geo-located IP address.
@@ -382,7 +376,7 @@
 
     { # A company resource in the Google Partners API. Once certified, it qualifies
       # for being searched by advertisers.
-    "industries": [ # Industries the company can help with.
+    "companyTypes": [ # Company type labels listed on the company's profile.
       "A String",
     ],
     "originalMinMonthlyBudget": { # Represents an amount of money with its currency type. # The unconverted minimum monthly budget that the company accepts for partner
@@ -397,31 +391,24 @@
           # For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
       "currencyCode": "A String", # The 3-letter currency code defined in ISO 4217.
     },
-    "publicProfile": { # Basic information from a public profile. # Basic information from the company's public profile.
-      "url": "A String", # The URL of the public profile.
-      "profileImage": "A String", # The URL to the main profile image of the public profile.
-      "displayImageUrl": "A String", # The URL to the main display image of the public profile. Being deprecated.
-      "displayName": "A String", # The display name of the public profile.
-      "id": "A String", # The ID which can be used to retrieve more details about the public profile.
-    },
-    "name": "A String", # The name of the company.
-    "badgeTier": "A String", # Partner badge tier
-    "localizedInfos": [ # The list of localized info for the company.
-      { # The localized company information.
-        "countryCodes": [ # List of country codes for the localized company info.
-          "A String",
-        ],
-        "languageCode": "A String", # Language code of the localized company info, as defined by
-            # <a href="https://tools.ietf.org/html/bcp47">BCP 47</a>
-            # (IETF BCP 47, "Tags for Identifying Languages").
-        "displayName": "A String", # Localized display name.
-        "overview": "A String", # Localized brief description that the company uses to advertise themselves.
-      },
-    ],
     "autoApprovalEmailDomains": [ # Email domains that allow users with a matching email address to get
         # auto-approved for associating with this company.
       "A String",
     ],
+    "specializationStatus": [ # The list of Google Partners specialization statuses for the company.
+      { # Agency specialization status
+        "badgeSpecialization": "A String", # The specialization this status is for.
+        "badgeSpecializationState": "A String", # State of agency specialization.
+      },
+    ],
+    "ranks": [ # Information related to the ranking of the company within the list of
+        # companies.
+      { # Information related to ranking of results.
+        "type": "A String", # The type of rank.
+        "value": 3.14, # The numerical value of the rank.
+      },
+    ],
+    "primaryAdwordsManagerAccountId": "A String", # The Primary AdWords Manager Account id.
     "locations": [ # The list of all company locations.
         # If set, must include the
         # primary_location
@@ -433,7 +420,8 @@
             # address.
           "A String",
         ],
-        "locality": "A String", # Generally refers to the city/town portion of an address.
+        "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+            # neighborhoods or boroughs in other locations.
         "sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
             # classification code for sorting mail.
         "latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
@@ -475,21 +463,30 @@
             #     assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
             #     assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
             #     assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
-            #
-            # The code in logs/storage/validator/logs_validator_traits.cc treats this type
-            # as if it were annotated as ST_LOCATION.
           "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
           "longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
         },
-        "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
-            # neighborhoods or boroughs in other locations.
+        "locality": "A String", # Generally refers to the city/town portion of an address.
         "regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
         "administrativeArea": "A String", # Top-level administrative subdivision of this country.
         "address": "A String", # The single string version of the address.
         "postalCode": "A String", # Values are frequently alphanumeric.
       },
     ],
-    "websiteUrl": "A String", # URL of the company's website.
+    "id": "A String", # The ID of the company.
+    "badgeTier": "A String", # Partner badge tier
+    "services": [ # Services the company can help with.
+      "A String",
+    ],
+    "additionalWebsites": [ # URL of the company's additional websites used to verify the dynamic badges.
+        # These are stored as full URLs as entered by the user, but only the TLD will
+        # be used for the actual verification.
+      "A String",
+    ],
+    "profileStatus": "A String", # The public viewability status of the company's profile.
+    "industries": [ # Industries the company can help with.
+      "A String",
+    ],
     "primaryLocation": { # A location with address and geographic coordinates. May optionally contain a # The primary location of the company.
         # detailed (multi-field) version of the address.
       "languageCode": "A String", # Language code of the address. Should be in BCP 47 format.
@@ -497,7 +494,8 @@
           # address.
         "A String",
       ],
-      "locality": "A String", # Generally refers to the city/town portion of an address.
+      "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+          # neighborhoods or boroughs in other locations.
       "sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
           # classification code for sorting mail.
       "latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
@@ -539,36 +537,16 @@
           #     assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
           #     assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
           #     assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
-          #
-          # The code in logs/storage/validator/logs_validator_traits.cc treats this type
-          # as if it were annotated as ST_LOCATION.
         "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
         "longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
       },
-      "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
-          # neighborhoods or boroughs in other locations.
+      "locality": "A String", # Generally refers to the city/town portion of an address.
       "regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
       "administrativeArea": "A String", # Top-level administrative subdivision of this country.
       "address": "A String", # The single string version of the address.
       "postalCode": "A String", # Values are frequently alphanumeric.
     },
-    "additionalWebsites": [ # URL of the company's additional websites used to verify the dynamic badges.
-        # These are stored as full URLs as entered by the user, but only the TLD will
-        # be used for the actual verification.
-      "A String",
-    ],
-    "profileStatus": "A String", # The public viewability status of the company's profile.
-    "ranks": [ # Information related to the ranking of the company within the list of
-        # companies.
-      { # Information related to ranking of results.
-        "type": "A String", # The type of rank.
-        "value": 3.14, # The numerical value of the rank.
-      },
-    ],
-    "primaryAdwordsManagerAccountId": "A String", # The Primary AdWords Manager Account id.
-    "services": [ # Services the company can help with.
-      "A String",
-    ],
+    "websiteUrl": "A String", # URL of the company's website.
     "certificationStatuses": [ # The list of Google Partners certification statuses for the company.
       { # Google Partners certification status.
         "isCertified": True or False, # Whether certification is passing.
@@ -582,8 +560,24 @@
         ],
       },
     ],
-    "companyTypes": [ # Company type labels listed on the company's profile.
-      "A String",
+    "publicProfile": { # Basic information from a public profile. # Basic information from the company's public profile.
+      "url": "A String", # The URL of the public profile.
+      "profileImage": "A String", # The URL to the main profile image of the public profile.
+      "displayImageUrl": "A String", # The URL to the main display image of the public profile. Being deprecated.
+      "displayName": "A String", # The display name of the public profile.
+      "id": "A String", # The ID which can be used to retrieve more details about the public profile.
+    },
+    "localizedInfos": [ # The list of localized info for the company.
+      { # The localized company information.
+        "countryCodes": [ # List of country codes for the localized company info.
+          "A String",
+        ],
+        "languageCode": "A String", # Language code of the localized company info, as defined by
+            # <a href="https://tools.ietf.org/html/bcp47">BCP 47</a>
+            # (IETF BCP 47, "Tags for Identifying Languages").
+        "displayName": "A String", # Localized display name.
+        "overview": "A String", # Localized brief description that the company uses to advertise themselves.
+      },
     ],
     "convertedMinMonthlyBudget": { # Represents an amount of money with its currency type. # The minimum monthly budget that the company accepts for partner business,
         # converted to the requested currency code.
@@ -597,16 +591,10 @@
           # For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
       "currencyCode": "A String", # The 3-letter currency code defined in ISO 4217.
     },
-    "id": "A String", # The ID of the company.
     "primaryLanguageCode": "A String", # The primary language code of the company, as defined by
         # <a href="https://tools.ietf.org/html/bcp47">BCP 47</a>
         # (IETF BCP 47, "Tags for Identifying Languages").
-    "specializationStatus": [ # The list of Google Partners specialization statuses for the company.
-      { # Agency specialization status
-        "badgeSpecialization": "A String", # The specialization this status is for.
-        "badgeSpecializationState": "A String", # State of agency specialization.
-      },
-    ],
+    "name": "A String", # The name of the company.
   }</pre>
 </div>
 
@@ -638,17 +626,17 @@
     "currencyCode": "A String", # The 3-letter currency code defined in ISO 4217.
   },
   "comments": "A String", # Comments lead source gave.
-  "email": "A String", # Email address of lead source.
+  "createTime": "A String", # Timestamp of when this lead was created.
   "websiteUrl": "A String", # Website URL of lead source.
+  "email": "A String", # Email address of lead source.
   "state": "A String", # The lead's state in relation to the company.
   "phoneNumber": "A String", # Phone number of lead source.
   "gpsMotivations": [ # List of reasons for using Google Partner Search and creating a lead.
     "A String",
   ],
-  "id": "A String", # ID of the lead.
   "givenName": "A String", # First name of lead source.
   "adwordsCustomerId": "A String", # The AdWords Customer ID of the lead.
-  "createTime": "A String", # Timestamp of when this lead was created.
+  "id": "A String", # ID of the lead.
 }
 
   requestMetadata_userOverrides_ipAddress: string, IP address to use instead of the user's geo-located IP address.
@@ -693,17 +681,17 @@
       "currencyCode": "A String", # The 3-letter currency code defined in ISO 4217.
     },
     "comments": "A String", # Comments lead source gave.
-    "email": "A String", # Email address of lead source.
+    "createTime": "A String", # Timestamp of when this lead was created.
     "websiteUrl": "A String", # Website URL of lead source.
+    "email": "A String", # Email address of lead source.
     "state": "A String", # The lead's state in relation to the company.
     "phoneNumber": "A String", # Phone number of lead source.
     "gpsMotivations": [ # List of reasons for using Google Partner Search and creating a lead.
       "A String",
     ],
-    "id": "A String", # ID of the lead.
     "givenName": "A String", # First name of lead source.
     "adwordsCustomerId": "A String", # The AdWords Customer ID of the lead.
-    "createTime": "A String", # Timestamp of when this lead was created.
+    "id": "A String", # ID of the lead.
   }</pre>
 </div>