@veltdev/sdk 2.0.13 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -21,6 +21,7 @@ import { NotificationElement } from "../models/element/notification-element.mode
|
|
|
21
21
|
import { AutocompleteElement } from "../models/element/autocomplete-element.model";
|
|
22
22
|
import { TagElement } from "../models/element/tag-element.model";
|
|
23
23
|
import { FeatureType } from "../utils/enums";
|
|
24
|
+
import { UserContact } from "../models/data/user-contact.data.model";
|
|
24
25
|
export declare class Snippyly {
|
|
25
26
|
constructor();
|
|
26
27
|
initConfig: (apiKey: string, config?: Config) => void;
|
|
@@ -235,4 +236,9 @@ export declare class Snippyly {
|
|
|
235
236
|
* To disable auto translation.
|
|
236
237
|
*/
|
|
237
238
|
disableAutoTranslation: () => void;
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* To update user contact list.
|
|
242
|
+
*/
|
|
243
|
+
updateContactList: (userContacts: UserContact[], config?: {merge: boolean}) => void;
|
|
238
244
|
}
|