@veltdev/sdk 1.0.168 → 1.0.170
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
|
+
targetInlineCommentElementId?: string;
|
|
161
162
|
inlineCommentSectionConfig?: InlineCommentSectionConfig;
|
|
162
163
|
}
|
|
163
164
|
export declare class GhostComment {
|
|
@@ -126,4 +126,12 @@ export declare class Notification {
|
|
|
126
126
|
* Is notification for you
|
|
127
127
|
*/
|
|
128
128
|
forYou?: boolean;
|
|
129
|
+
/**
|
|
130
|
+
* Notification annotation target
|
|
131
|
+
*/
|
|
132
|
+
targetAnnotationId?: string;
|
|
133
|
+
/**
|
|
134
|
+
* Notification annotation data
|
|
135
|
+
*/
|
|
136
|
+
notificationSourceData?: any;
|
|
129
137
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -226,6 +226,7 @@ export declare class Constants {
|
|
|
226
226
|
VELT_COMMENT_DISABLED: string;
|
|
227
227
|
VELT_COMMENT_PIN_ACTIVE: string;
|
|
228
228
|
VELT_INLINE_COMMENT_SECTION_CONFIG: string;
|
|
229
|
+
VELT_TARGET_INLINE_COMMENT_ELEMENT_ID: string;
|
|
229
230
|
VELT_TAG_PIN_HOST: string;
|
|
230
231
|
VELT_TAG_PIN_HOST_STATIC: string;
|
|
231
232
|
VELT_TAG_DISABLED: string;
|