Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.velt.dev/llms.txt

Use this file to discover all available pages before exploring further.

Versions

Added organizationGroups Support in Contacts and Autocomplete Feature

Within the contacts and autocomplete features we have added the support for organizationGroups.

Added Various Methods in Contact Element

We have introduced three new methods in the Contact Element: enableAtHere, disableAtHere, and updateContactListScopeForOrganizationUsers. API Methods:
const contactElement = client.getContactElement();
// To enable @here for contact list
contactElement.enableAtHere();
// To disable @here for contact list
contactElement.disableAtHere();
/**
 * Update contact list scope for organization users.
 * @param scope ContactListScopeForOrganizationUsers[]
 */
contactElement.updateContactListScopeForOrganizationUsers(['all', 'organization', 'organizationUserGroup', 'document']);