| 1234567891011121314151617181920 | 
							- /**
 -  * The command type for updating a participant's avatar ID.
 -  *
 -  * @type {string}
 -  */
 - export const AVATAR_ID_COMMAND = 'avatar-id';
 - 
 - /**
 -  * The command type for updating a participant's avatar URL.
 -  *
 -  * @type {string}
 -  */
 - export const AVATAR_URL_COMMAND = 'avatar-url';
 - 
 - /**
 -  * The command type for updating a participant's e-mail address.
 -  *
 -  * @type {string}
 -  */
 - export const EMAIL_COMMAND = 'email';
 
 
  |