build: run docs regen in synth.py (#1059)
diff --git a/docs/dyn/chat_v1.spaces.members.html b/docs/dyn/chat_v1.spaces.members.html
index 5c15a42..4fa87f5 100644
--- a/docs/dyn/chat_v1.spaces.members.html
+++ b/docs/dyn/chat_v1.spaces.members.html
@@ -107,14 +107,15 @@
An object of the form:
{ # Represents a membership relation in Hangouts Chat.
- "state": "A String", # State of the membership.
"member": { # A user in Hangouts Chat. # A User in Hangout Chat
- "type": "A String", # User type.
"domainId": "A String", # Obfuscated domain information.
- "name": "A String", # Resource name, in the format "users/*".
+ "type": "A String", # User type.
"displayName": "A String", # The user's display name.
+ "name": "A String", # Resource name, in the format "users/*".
+ "isAnonymous": True or False, # True when the user is deleted or the user's proifle is not visible.
},
"createTime": "A String", # The creation time of the membership a.k.a the time at which the member joined the space, if applicable.
+ "state": "A String", # State of the membership.
"name": "A String",
}</pre>
</div>
@@ -136,20 +137,21 @@
An object of the form:
{
- "nextPageToken": "A String", # Continuation token to retrieve the next page of results. It will be empty for the last page of results.
"memberships": [ # List of memberships in the requested (or first) page.
{ # Represents a membership relation in Hangouts Chat.
- "state": "A String", # State of the membership.
"member": { # A user in Hangouts Chat. # A User in Hangout Chat
- "type": "A String", # User type.
"domainId": "A String", # Obfuscated domain information.
- "name": "A String", # Resource name, in the format "users/*".
+ "type": "A String", # User type.
"displayName": "A String", # The user's display name.
+ "name": "A String", # Resource name, in the format "users/*".
+ "isAnonymous": True or False, # True when the user is deleted or the user's proifle is not visible.
},
"createTime": "A String", # The creation time of the membership a.k.a the time at which the member joined the space, if applicable.
+ "state": "A String", # State of the membership.
"name": "A String",
},
],
+ "nextPageToken": "A String", # Continuation token to retrieve the next page of results. It will be empty for the last page of results.
}</pre>
</div>