build: run docs regen in synth.py (#1059)

diff --git a/docs/dyn/testing_v1.applicationDetailService.html b/docs/dyn/testing_v1.applicationDetailService.html
index f7aa1ed..a58ab8f 100644
--- a/docs/dyn/testing_v1.applicationDetailService.html
+++ b/docs/dyn/testing_v1.applicationDetailService.html
@@ -109,21 +109,21 @@
     { # Response containing the details of the specified Android application APK.
     "apkDetail": { # Android application details based on application manifest and apk archive contents. # Details of the Android APK.
       "apkManifest": { # An Android app manifest. See http://developer.android.com/guide/topics/manifest/manifest-intro.html
-        "packageName": "A String", # Full Java-style package name for this application, e.g. "com.example.foo".
+        "minSdkVersion": 42, # Minimum API level required for the application to run.
+        "applicationLabel": "A String", # User-readable name for the application.
         "targetSdkVersion": 42, # Specifies the API Level on which the application is designed to run.
+        "packageName": "A String", # Full Java-style package name for this application, e.g. "com.example.foo".
         "intentFilters": [
           { # The section of an tag. https://developer.android.com/guide/topics/manifest/intent-filter-element.html
             "mimeType": "A String", # The android:mimeType value of the tag.
-            "categoryNames": [ # The android:name value of the tag.
+            "actionNames": [ # The android:name value of the tag.
               "A String",
             ],
-            "actionNames": [ # The android:name value of the tag.
+            "categoryNames": [ # The android:name value of the tag.
               "A String",
             ],
           },
         ],
-        "applicationLabel": "A String", # User-readable name for the application.
-        "minSdkVersion": 42, # Minimum API level required for the application to run.
         "maxSdkVersion": 42, # Maximum API level on which the application is designed to run.
       },
     },