@veltdev/sdk 4.4.0-beta.2 → 4.4.0-beta.4
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.
- package/app/models/data/attachment-resolver.data.model.d.ts +52 -0
- package/app/models/data/attachment.model.d.ts +10 -0
- package/app/models/data/comment-resolver.data.model.d.ts +5 -0
- package/app/models/data/live-state-data.data.model.d.ts +6 -0
- package/app/models/data/provider.data.model.d.ts +2 -0
- package/app/models/data/reaction-resolver.data.model.d.ts +1 -0
- package/app/models/data/resolver.data.model.d.ts +1 -0
- package/app/models/element/live-state-sync-element.model.d.ts +2 -2
- package/app/utils/constants.d.ts +1 -0
- package/app/utils/enums.d.ts +22 -1
- package/models.d.ts +1 -0
- package/package.json +1 -1
- package/velt.js +2 -2
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { ResolverActions } from "../../utils/enums";
|
|
2
|
+
import { ResolverConfig, ResolverResponse } from "./resolver.data.model";
|
|
3
|
+
export interface AttachmentDataProvider {
|
|
4
|
+
save: (request: SaveAttachmentResolverRequest) => Promise<ResolverResponse<SaveAttachmentResolverData>>;
|
|
5
|
+
delete: (request: DeleteAttachmentResolverRequest) => Promise<ResolverResponse<undefined>>;
|
|
6
|
+
config?: ResolverConfig;
|
|
7
|
+
}
|
|
8
|
+
export interface DeleteAttachmentResolverRequest {
|
|
9
|
+
attachmentId: number;
|
|
10
|
+
metadata?: AttachmentResolverMetadata;
|
|
11
|
+
event?: ResolverActions;
|
|
12
|
+
}
|
|
13
|
+
export interface SaveAttachmentResolverRequest {
|
|
14
|
+
attachment: ResolverAttachment;
|
|
15
|
+
metadata?: AttachmentResolverMetadata;
|
|
16
|
+
event?: ResolverActions;
|
|
17
|
+
}
|
|
18
|
+
export interface PartialAttachment {
|
|
19
|
+
url: string;
|
|
20
|
+
name: string;
|
|
21
|
+
attachmentId: number;
|
|
22
|
+
}
|
|
23
|
+
export interface ResolverAttachment {
|
|
24
|
+
attachmentId: number;
|
|
25
|
+
/**
|
|
26
|
+
* File to be uploaded
|
|
27
|
+
*/
|
|
28
|
+
file: File;
|
|
29
|
+
/**
|
|
30
|
+
* File name
|
|
31
|
+
*/
|
|
32
|
+
name?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Metadata of an attachment
|
|
35
|
+
*/
|
|
36
|
+
metadata?: AttachmentResolverMetadata;
|
|
37
|
+
/**
|
|
38
|
+
* Mime type of an attachment
|
|
39
|
+
*/
|
|
40
|
+
mimeType?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface AttachmentResolverMetadata {
|
|
43
|
+
organizationId: string | null;
|
|
44
|
+
documentId: string | null;
|
|
45
|
+
folderId?: string | null;
|
|
46
|
+
attachmentId: number | null;
|
|
47
|
+
commentAnnotationId: string | null;
|
|
48
|
+
apiKey: string | null;
|
|
49
|
+
}
|
|
50
|
+
export interface SaveAttachmentResolverData {
|
|
51
|
+
url: string;
|
|
52
|
+
}
|
|
@@ -6,6 +6,10 @@ export declare class Attachment {
|
|
|
6
6
|
* Auto generated.
|
|
7
7
|
*/
|
|
8
8
|
attachmentId: number;
|
|
9
|
+
/**
|
|
10
|
+
* To check if attachment resolver is used
|
|
11
|
+
*/
|
|
12
|
+
isAttachmentResolverUsed?: boolean;
|
|
9
13
|
/**
|
|
10
14
|
* File name
|
|
11
15
|
*/
|
|
@@ -40,3 +44,9 @@ export declare class Attachment {
|
|
|
40
44
|
*/
|
|
41
45
|
mimeType?: any;
|
|
42
46
|
}
|
|
47
|
+
export interface UploadFileOptions {
|
|
48
|
+
path: string;
|
|
49
|
+
file: File;
|
|
50
|
+
useAttachmentResolver?: boolean;
|
|
51
|
+
metadata?: any;
|
|
52
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ResolverActions } from "../../utils/enums";
|
|
2
|
+
import { PartialAttachment } from "./attachment-resolver.data.model";
|
|
2
3
|
import { BaseMetadata } from "./base-metadata.data.model";
|
|
3
4
|
import { CommentAnnotation } from "./comment-annotation.data.model";
|
|
4
5
|
import { ResolverConfig, ResolverResponse } from "./resolver.data.model";
|
|
@@ -25,12 +26,16 @@ export interface SaveCommentResolverRequest {
|
|
|
25
26
|
[key: string]: PartialCommentAnnotation;
|
|
26
27
|
};
|
|
27
28
|
event?: ResolverActions;
|
|
29
|
+
metadata?: BaseMetadata;
|
|
28
30
|
commentId?: string;
|
|
29
31
|
}
|
|
30
32
|
export interface PartialComment {
|
|
31
33
|
commentId: string | number;
|
|
32
34
|
commentHtml?: string;
|
|
33
35
|
commentText?: string;
|
|
36
|
+
attachments?: {
|
|
37
|
+
[attachmentId: number]: PartialAttachment;
|
|
38
|
+
};
|
|
34
39
|
}
|
|
35
40
|
export interface PartialCommentAnnotationResult {
|
|
36
41
|
strippedData: {
|
|
@@ -20,6 +20,12 @@ export declare class LiveStateData {
|
|
|
20
20
|
tabId?: string | null;
|
|
21
21
|
isDataStringified?: boolean;
|
|
22
22
|
}
|
|
23
|
+
export declare class SetLiveStateDataConfig {
|
|
24
|
+
/**
|
|
25
|
+
* To merge data with existing data.
|
|
26
|
+
*/
|
|
27
|
+
merge?: boolean;
|
|
28
|
+
}
|
|
23
29
|
export declare class SingleEditorLiveStateData {
|
|
24
30
|
editor?: User | null;
|
|
25
31
|
requestEditorAccess?: {
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { CommentAnnotationDataProvider } from "./comment-resolver.data.model";
|
|
2
|
+
import { AttachmentDataProvider } from "./attachment-resolver.data.model";
|
|
2
3
|
import { ReactionAnnotationDataProvider } from "./reaction-resolver.data.model";
|
|
3
4
|
import { UserDataProvider } from "./user-resolver.data.model";
|
|
4
5
|
export interface VeltDataProvider {
|
|
5
6
|
comment?: CommentAnnotationDataProvider;
|
|
6
7
|
user?: UserDataProvider;
|
|
7
8
|
reaction?: ReactionAnnotationDataProvider;
|
|
9
|
+
attachment?: AttachmentDataProvider;
|
|
8
10
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
import { SingleEditorConfig, UserEditorAccess, EditorAccessTimer, LiveStateDataConfig,
|
|
2
|
+
import { SingleEditorConfig, UserEditorAccess, EditorAccessTimer, LiveStateDataConfig, SetLiveStateDataConfig } from '../data/live-state-data.data.model';
|
|
3
3
|
import { User } from '../data/user.data.model';
|
|
4
4
|
import { ServerConnectionState } from '../../utils/enums';
|
|
5
5
|
|
|
@@ -22,7 +22,7 @@ export declare class LiveStateSyncElement {
|
|
|
22
22
|
/**
|
|
23
23
|
* Sets live state data for the provided ID and data.
|
|
24
24
|
*/
|
|
25
|
-
setLiveStateData: (liveStateDataId: string, liveStateData: any) => any;
|
|
25
|
+
setLiveStateData: (liveStateDataId: string, liveStateData: any, config?: SetLiveStateDataConfig) => any;
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
28
|
* Enables the single editor mode.
|
package/app/utils/constants.d.ts
CHANGED
package/app/utils/enums.d.ts
CHANGED
|
@@ -23,7 +23,9 @@ export declare enum ResolverActions {
|
|
|
23
23
|
COMMENT_DELETE = "comment.delete",
|
|
24
24
|
COMMENT_UPDATE = "comment.update",
|
|
25
25
|
REACTION_ADD = "reaction.add",
|
|
26
|
-
REACTION_DELETE = "reaction.delete"
|
|
26
|
+
REACTION_DELETE = "reaction.delete",
|
|
27
|
+
ATTACHMENT_ADD = "attachment.add",
|
|
28
|
+
ATTACHMENT_DELETE = "attachment.delete"
|
|
27
29
|
}
|
|
28
30
|
export declare const CommentEventTypes: {
|
|
29
31
|
readonly ADD_COMMENT_ANNOTATION: "addCommentAnnotation";
|
|
@@ -119,6 +121,25 @@ export declare enum Features {
|
|
|
119
121
|
NOTIFICATION = "notification",
|
|
120
122
|
REACTION = "reaction"
|
|
121
123
|
}
|
|
124
|
+
export declare enum AnalyticsFeatures {
|
|
125
|
+
AREA = "area",
|
|
126
|
+
ARROW = "arrow",
|
|
127
|
+
AUDIO_HUDDLE = "audioHuddle",
|
|
128
|
+
COMMENT = "comment",
|
|
129
|
+
MULTI_THREAD = "multiThread",
|
|
130
|
+
CURSOR = "cursor",
|
|
131
|
+
HUDDLE = "huddle",
|
|
132
|
+
LIVE_STATE_SYNC = "liveStateSync",
|
|
133
|
+
PRESENCE = "presence",
|
|
134
|
+
TAG = "tag",
|
|
135
|
+
RECORDER = "recorder",
|
|
136
|
+
REWRITER = "rewriter",
|
|
137
|
+
LIVE_SELECTION = "liveSelection",
|
|
138
|
+
NOTIFICATION = "notification",
|
|
139
|
+
REACTION = "reaction",
|
|
140
|
+
AREA_COMMENT = "areaComment",
|
|
141
|
+
INLINE_COMMENT = "inlineComment"
|
|
142
|
+
}
|
|
122
143
|
export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread';
|
|
123
144
|
export declare enum DeviceType {
|
|
124
145
|
DESKTOP = "Desktop",
|
package/models.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ export * from './app/models/data/views.data.model';
|
|
|
64
64
|
export * from './app/models/data/autocomplete.data.model';
|
|
65
65
|
export * from './app/models/data/reaction-annotation.data.model';
|
|
66
66
|
export * from './app/models/data/reaction-resolver.data.model';
|
|
67
|
+
export * from './app/models/data/attachment-resolver.data.model';
|
|
67
68
|
export * from './app/models/data/reaction.data.model';
|
|
68
69
|
export * from './app/models/data/organization-groups.data.model';
|
|
69
70
|
export * from './app/models/data/organization-metadata.model';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.4.0-beta.
|
|
3
|
+
"version": "4.4.0-beta.4",
|
|
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": [
|