@veltdev/sdk 1.0.39 → 1.0.41

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.
@@ -57,6 +57,10 @@ export declare class User {
57
57
  * Anonymous user can only view the comments
58
58
  */
59
59
  isAnonymous?: boolean;
60
+ /**
61
+ * Guest user
62
+ */
63
+ isGuest?: boolean;
60
64
  }
61
65
  export declare class UserOptions {
62
66
  /**
@@ -516,6 +516,21 @@ export declare class CommentElement {
516
516
  * To disable navigation when comment is clicked in sidebar.
517
517
  */
518
518
  public disableSidebarUrlNavigation: () => void;
519
+
520
+ /**
521
+ * To enable sidebar button on comment dialog.
522
+ */
523
+ public enableSidebarButtonOnCommentDialog: () => void;
524
+
525
+ /**
526
+ * To disable sidebar button on comment dialog.
527
+ */
528
+ public disableSidebarButtonOnCommentDialog: () => void;
529
+
530
+ /**
531
+ * To detect click on sidebar button on comment dialog.
532
+ */
533
+ public onSidebarButtonOnCommentDialogClick: () => Observable<any>;
519
534
  constructor();
520
535
  /**
521
536
  * Subscribe to comments on the current document.
@@ -1025,4 +1040,19 @@ export declare class CommentElement {
1025
1040
  * To disable navigation when comment is clicked in sidebar.
1026
1041
  */
1027
1042
  private _disableSidebarUrlNavigation;
1043
+
1044
+ /**
1045
+ * To enable sidebar button on comment dialog.
1046
+ */
1047
+ private _enableSidebarButtonOnCommentDialog;
1048
+
1049
+ /**
1050
+ * To disable sidebar button on comment dialog.
1051
+ */
1052
+ private _disableSidebarButtonOnCommentDialog;
1053
+
1054
+ /**
1055
+ * To detect click on sidebar button on comment dialog.
1056
+ */
1057
+ private _onSidebarButtonOnCommentDialogClick;
1028
1058
  }
@@ -269,6 +269,7 @@ export declare class Constants {
269
269
  SNIPPYLY_COMMENT_DIALOG_AUTO_POPULATE_TEXT: string;
270
270
  SNIPPYLY_HUDDLE_DATA: string;
271
271
  VELT_TAB_ID: string;
272
+ VELT_COMMENT_SIDEBAR_FILTERS_RESET: string;
272
273
  };
273
274
  static LOCAL_STORAGE: {
274
275
  SNIPPYLY_DEFAULT_MEDIA_SOURCE_OPTIONS: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {