@veltdev/sdk 1.0.67 → 1.0.69
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.
|
@@ -11,6 +11,7 @@ export declare class CommentSidebarFilterConfig {
|
|
|
11
11
|
priority?: FilterTypeConfig;
|
|
12
12
|
category?: FilterTypeConfig;
|
|
13
13
|
commentType?: FilterTypeConfig;
|
|
14
|
+
version?: FilterTypeConfig;
|
|
14
15
|
}
|
|
15
16
|
export declare class CommentSidebarGroupConfig {
|
|
16
17
|
enable?: boolean;
|
|
@@ -21,9 +22,14 @@ export declare class CommentSidebarFilters {
|
|
|
21
22
|
people?: {
|
|
22
23
|
userId?: string;
|
|
23
24
|
email?: string;
|
|
25
|
+
name?: string;
|
|
24
26
|
}[];
|
|
25
27
|
priority?: string[];
|
|
26
28
|
status?: string[];
|
|
27
29
|
category?: string[];
|
|
30
|
+
version?: {
|
|
31
|
+
id: string;
|
|
32
|
+
name?: string;
|
|
33
|
+
}[];
|
|
28
34
|
}
|
|
29
35
|
export {};
|
|
@@ -10,6 +10,16 @@ export declare class Location {
|
|
|
10
10
|
/**
|
|
11
11
|
* Version provided by the user.
|
|
12
12
|
*/
|
|
13
|
-
version?:
|
|
13
|
+
version?: Version;
|
|
14
14
|
[key: string]: any;
|
|
15
15
|
}
|
|
16
|
+
export declare class Version {
|
|
17
|
+
/**
|
|
18
|
+
* Unique identifier for the version.
|
|
19
|
+
*/
|
|
20
|
+
id: string;
|
|
21
|
+
/**
|
|
22
|
+
* Name of the version.
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
}
|
|
@@ -13,7 +13,7 @@ export declare class CommentElement {
|
|
|
13
13
|
/**
|
|
14
14
|
* To delete selected comments
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
deleteSelectedComment: () => Promise<any>;
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* To enable text comment selection
|
|
@@ -493,7 +493,7 @@ export declare class CommentElement {
|
|
|
493
493
|
/**
|
|
494
494
|
* To delete selected comments
|
|
495
495
|
*/
|
|
496
|
-
private
|
|
496
|
+
private _deleteSelectedComment;
|
|
497
497
|
|
|
498
498
|
/**
|
|
499
499
|
* To enable text comment selection
|