@veltdev/sdk 1.0.101 → 1.0.103

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.
@@ -69,9 +69,19 @@ export declare class User {
69
69
  export declare class Options {
70
70
  /**
71
71
  * If you want to replace the contacts of the user with the contacts you are sending.
72
- * This is replace personal and group contacts of the user.
72
+ * This will replace personal and group contacts of the user.
73
73
  */
74
74
  replaceContacts?: boolean;
75
+ /**
76
+ * If you want to replace the personal contacts of the user with the contacts you are sending.
77
+ * This will replace personal contacts of the user.
78
+ */
79
+ replacePrivateContacts?: boolean;
80
+ /**
81
+ * If you want to replace the group contacts of the user with the contacts you are sending.
82
+ * This will replace group contacts of the user.
83
+ */
84
+ replaceGroupContacts?: boolean;
75
85
  /**
76
86
  * Pass the auth token of the user.
77
87
  */
@@ -514,6 +514,16 @@ export declare class CommentElement {
514
514
  * To disable hotkey.
515
515
  */
516
516
  public disableHotkey: () => void;
517
+
518
+ /**
519
+ * To enable option to show device indicator on comment pins for the pin added from different devices.
520
+ */
521
+ public enableDeviceIndicatorOnCommentPins: () => void;
522
+
523
+ /**
524
+ * To disable option to show device indicator on comment pins for the pin added from different devices.
525
+ */
526
+ public disableDeviceIndicatorOnCommentPins: () => void;
517
527
  constructor();
518
528
  /**
519
529
  * Subscribe to comments on the current document.
@@ -1021,4 +1031,14 @@ export declare class CommentElement {
1021
1031
  * To disable hotkey.
1022
1032
  */
1023
1033
  private _disableHotkey;
1034
+
1035
+ /**
1036
+ * To enable option to show device indicator on comment pins for the pin added from different devices.
1037
+ */
1038
+ private _enableDeviceIndicatorOnCommentPins;
1039
+
1040
+ /**
1041
+ * To disable option to show device indicator on comment pins for the pin added from different devices.
1042
+ */
1043
+ private _disableDeviceIndicatorOnCommentPins;
1024
1044
  }
@@ -174,6 +174,7 @@ export declare class Constants {
174
174
  VELT_COMMENT_TEXT_PORTAL: string;
175
175
  VELT_COMMENTS_SIDEBAR: string;
176
176
  VELT_COMMENT_BUBBLE: string;
177
+ VELT_COMMENT_THREAD: string;
177
178
  VELT_HIGHLIGHT_USER_TEXT: string;
178
179
  VELT_AUDIO_HUDDLE: string;
179
180
  VELT_VIDEO_HUDDLE: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "1.0.101",
3
+ "version": "1.0.103",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {