@veltdev/sdk-staging 4.5.0-beta.90 → 4.5.0-beta.91
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.
|
@@ -62,12 +62,14 @@ export interface DeleteCommentAnnotationRequest {
|
|
|
62
62
|
options?: RequestOptions;
|
|
63
63
|
}
|
|
64
64
|
export interface CommentRequestQuery {
|
|
65
|
+
organizationId?: string;
|
|
65
66
|
documentIds?: string[];
|
|
66
67
|
locationIds?: string[];
|
|
67
68
|
statusIds?: string[];
|
|
68
69
|
folderId?: string;
|
|
69
70
|
allDocuments?: boolean;
|
|
70
71
|
locationId?: string;
|
|
72
|
+
aggregateDocuments?: boolean;
|
|
71
73
|
filterGhostComments?: boolean;
|
|
72
74
|
}
|
|
73
75
|
export interface SubscribeCommentAnnotationRequest {
|
|
@@ -9,6 +9,7 @@ import { PageInfo } from "./page-info.model";
|
|
|
9
9
|
import { TargetElement } from "./target-element.data.model";
|
|
10
10
|
import { TargetTextRange } from "./target-text-range.data.model";
|
|
11
11
|
import { User } from "./user.data.model";
|
|
12
|
+
import { CommentAnnotationViews } from "./views.data.model";
|
|
12
13
|
export declare class CommentAnnotation {
|
|
13
14
|
/**
|
|
14
15
|
* Unique identifier for the comment pin annotation.
|
|
@@ -180,6 +181,8 @@ export declare class CommentAnnotation {
|
|
|
180
181
|
multiThreadAnnotationId?: string;
|
|
181
182
|
isDraft?: boolean;
|
|
182
183
|
sourceId?: string;
|
|
184
|
+
views?: CommentAnnotationViews;
|
|
185
|
+
viewedByUserIds?: string[];
|
|
183
186
|
}
|
|
184
187
|
export declare class GhostComment {
|
|
185
188
|
targetElement?: TargetElement | null;
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -48,7 +48,6 @@ export declare class Constants {
|
|
|
48
48
|
static FIREBASE_PARTIAL_PATH_REACTION: string;
|
|
49
49
|
static FIREBASE_PARTIAL_PATH_CRDT: string;
|
|
50
50
|
static FIREBASE_PARTIAL_PATH_VIEWS: string;
|
|
51
|
-
static FIREBASE_PARTIAL_PATH_COMMENT_VIEWS: string;
|
|
52
51
|
static FIREBASE_PARTIAL_PATH_NOTIFICATION_VIEWS: string;
|
|
53
52
|
static FIREBASE_PARTIAL_PATH_DOCUMENT_VIEWS: string;
|
|
54
53
|
static FIREBASE_PARTIAL_PATH_LOCATION_VIEWS: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk-staging",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.91",
|
|
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": [
|