@veltdev/sdk 4.5.0-beta.49 → 4.5.0-beta.50
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.
|
@@ -23,6 +23,7 @@ export declare class CommentSidebarFilterConfig {
|
|
|
23
23
|
people?: FilterTypeConfig;
|
|
24
24
|
assigned?: FilterTypeConfig;
|
|
25
25
|
tagged?: FilterTypeConfig;
|
|
26
|
+
involved?: FilterTypeConfig;
|
|
26
27
|
priority?: FilterTypeConfig;
|
|
27
28
|
status?: FilterTypeConfig;
|
|
28
29
|
category?: FilterTypeConfig;
|
|
@@ -55,6 +56,11 @@ export declare class CommentSidebarFilters {
|
|
|
55
56
|
email?: string;
|
|
56
57
|
name?: string;
|
|
57
58
|
}[];
|
|
59
|
+
involved?: {
|
|
60
|
+
userId?: string;
|
|
61
|
+
email?: string;
|
|
62
|
+
name?: string;
|
|
63
|
+
}[];
|
|
58
64
|
priority?: string[];
|
|
59
65
|
status?: string[];
|
|
60
66
|
category?: string[];
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -261,7 +261,7 @@ export type ReactionPinType = 'timeline' | 'comment';
|
|
|
261
261
|
export type SidebarPosition = 'left' | 'right';
|
|
262
262
|
export type SidebarSortingCriteria = 'date' | 'unread' | null;
|
|
263
263
|
export type SidebarFilterCriteria = 'all' | 'read' | 'unread' | 'resolved';
|
|
264
|
-
export type SidebarFilterSearchType = 'people' | 'assigned' | 'tagged' | 'pages' | 'documents' | 'statuses' | 'priorities' | 'categories' | 'versions' | string;
|
|
264
|
+
export type SidebarFilterSearchType = 'people' | 'assigned' | 'tagged' | 'involved' | 'pages' | 'documents' | 'statuses' | 'priorities' | 'categories' | 'versions' | string;
|
|
265
265
|
export type InlineSortingCriteria = 'createdFirst' | 'createdLast' | 'updatedFirst' | 'updatedLast';
|
|
266
266
|
export type NotificationPanelMode = 'popover' | 'sidebar';
|
|
267
267
|
export type SidebarActionButtonType = 'default' | 'toggle';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.50",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|