@veltdev/sdk 1.0.165 → 1.0.167

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.
@@ -158,6 +158,7 @@ export declare class CommentAnnotation {
158
158
  context?: any;
159
159
  iam: CommentIAMConfig;
160
160
  isPageAnnotation?: boolean;
161
+ inlineCommentSectionConfig?: InlineCommentSectionConfig;
161
162
  }
162
163
  export declare class GhostComment {
163
164
  targetElement?: TargetElement | null;
@@ -195,3 +196,7 @@ export declare class CommentSelectionChangeData {
195
196
  selected: boolean;
196
197
  annotation: CommentAnnotation;
197
198
  }
199
+ export declare class InlineCommentSectionConfig {
200
+ id: string;
201
+ name?: string;
202
+ }
@@ -173,6 +173,7 @@ export declare class Constants {
173
173
  VELT_COMMENT_BUBBLE: string;
174
174
  VELT_COMMENT_THREAD: string;
175
175
  VELT_CHART_COMMENT: string;
176
+ VELT_INLINE_COMMENTS_SECTION: string;
176
177
  VELT_HIGHLIGHT_USER_TEXT: string;
177
178
  VELT_AUDIO_HUDDLE: string;
178
179
  VELT_VIDEO_HUDDLE: string;
@@ -224,6 +225,7 @@ export declare class Constants {
224
225
  VELT_COMMENT_PIN_HOST_STATIC: string;
225
226
  VELT_COMMENT_DISABLED: string;
226
227
  VELT_COMMENT_PIN_ACTIVE: string;
228
+ VELT_INLINE_COMMENT_SECTION_CONFIG: string;
227
229
  VELT_TAG_PIN_HOST: string;
228
230
  VELT_TAG_PIN_HOST_STATIC: string;
229
231
  VELT_TAG_DISABLED: string;
@@ -102,6 +102,10 @@ export declare enum UnreadIndicatorMode {
102
102
  MINIMAL = "minimal",
103
103
  VERBOSE = "verbose"
104
104
  }
105
+ export declare enum ComposerMode {
106
+ DEFAULT = "default",
107
+ EXPANDED = "expanded"
108
+ }
105
109
  export declare enum ServerConnectionState {
106
110
  ONLINE = "online",
107
111
  OFFLINE = "offline",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "1.0.165",
3
+ "version": "1.0.167",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {