@veltdev/sdk-staging 4.5.2-beta.18 → 4.5.2-beta.2
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/client/snippyly.model.d.ts +1 -6
- package/app/models/data/autocomplete.data.model.d.ts +0 -6
- package/app/models/data/comment-events.data.model.d.ts +0 -8
- package/app/models/data/live-state-data.data.model.d.ts +0 -18
- package/app/models/data/user-iam.data.model.d.ts +0 -3
- package/app/models/data/user-resolver.data.model.d.ts +0 -42
- package/app/models/element/comment-element.model.d.ts +1 -21
- package/app/models/element/live-state-sync-element.model.d.ts +3 -13
- package/app/models/element/recorder-element.model.d.ts +0 -60
- package/app/utils/constants.d.ts +0 -1
- package/app/utils/enums.d.ts +0 -1
- package/package.json +1 -1
- package/velt.js +89 -180
|
@@ -29,7 +29,7 @@ import { VeltEventMetadata } from "../models/data/event-metadata.data.model";
|
|
|
29
29
|
import { CoreEventTypesMap } from "../models/data/core-events.data.model";
|
|
30
30
|
import { Document, SetDocumentsRequestOptions, FetchDocumentsRequest, FetchFoldersRequest, UpdateDocumentsRequest, UpdateLocationsRequest } from "../models/data/document.data.model";
|
|
31
31
|
import { FetchDocumentsResponse, FetchFoldersResponse } from "../models/data/document-events.data.model";
|
|
32
|
-
import { UserDataProvider
|
|
32
|
+
import { UserDataProvider } from "../models/data/user-resolver.data.model";
|
|
33
33
|
import { VeltDataProvider } from "../models/data/provider.data.model";
|
|
34
34
|
import { VeltEncryptionProvider } from "../models/data/encryption-provider.data.model";
|
|
35
35
|
import { VeltResetButtonStateConfig } from "../models/data/button.data.model";
|
|
@@ -277,11 +277,6 @@ export declare class Snippyly {
|
|
|
277
277
|
*/
|
|
278
278
|
getUserRole$: () => Observable<string | null>;
|
|
279
279
|
|
|
280
|
-
/**
|
|
281
|
-
* To get user permissions.
|
|
282
|
-
*/
|
|
283
|
-
getUserPermissions: (request?: GetUserPermissionsRequest) => Promise<GetUserPermissionsResponse>;
|
|
284
|
-
|
|
285
280
|
/**
|
|
286
281
|
* To check if plan is expired or not.
|
|
287
282
|
*/
|
|
@@ -8,7 +8,6 @@ export declare class AutocompleteData {
|
|
|
8
8
|
description?: string;
|
|
9
9
|
type: 'custom' | 'contact' | 'group';
|
|
10
10
|
data: AutocompleteItem[];
|
|
11
|
-
groups?: AutocompleteGroup[];
|
|
12
11
|
}
|
|
13
12
|
export declare class AutocompleteItem {
|
|
14
13
|
id: string;
|
|
@@ -19,7 +18,6 @@ export declare class AutocompleteItem {
|
|
|
19
18
|
svg?: string;
|
|
20
19
|
};
|
|
21
20
|
link?: string;
|
|
22
|
-
groupId?: string;
|
|
23
21
|
}
|
|
24
22
|
export declare class AutocompleteReplaceData {
|
|
25
23
|
text: string;
|
|
@@ -36,10 +34,6 @@ export declare class AutocompleteUserContactReplaceData {
|
|
|
36
34
|
userId: string;
|
|
37
35
|
contact?: UserContact;
|
|
38
36
|
}
|
|
39
|
-
export declare class AutocompleteGroup {
|
|
40
|
-
id: string;
|
|
41
|
-
name: string;
|
|
42
|
-
}
|
|
43
37
|
export declare class AutocompleteChipData extends AutocompleteItem {
|
|
44
38
|
type: 'contact' | 'custom';
|
|
45
39
|
}
|
|
@@ -79,7 +79,6 @@ export type CommentEventTypesMap = {
|
|
|
79
79
|
[CommentEventTypes.COMMENT_SIDEBAR_DATA_UPDATE]: CommentSidebarDataUpdateEvent;
|
|
80
80
|
[CommentEventTypes.AUTOCOMPLETE_SEARCH]: AutocompleteSearchEvent;
|
|
81
81
|
[CommentEventTypes.COMPOSER_CLICKED]: ComposerClickedEvent;
|
|
82
|
-
[CommentEventTypes.LINK_CLICKED]: LinkClickedEvent;
|
|
83
82
|
};
|
|
84
83
|
export interface AddAttachmentEvent {
|
|
85
84
|
annotationId: string;
|
|
@@ -251,10 +250,3 @@ export interface ComposerClickedEvent {
|
|
|
251
250
|
commentAnnotation?: CommentAnnotation;
|
|
252
251
|
metadata?: VeltEventMetadata;
|
|
253
252
|
}
|
|
254
|
-
export interface LinkClickedEvent {
|
|
255
|
-
text: string;
|
|
256
|
-
link: string;
|
|
257
|
-
commentAnnotation: CommentAnnotation;
|
|
258
|
-
commentId: Number;
|
|
259
|
-
metadata?: VeltEventMetadata;
|
|
260
|
-
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { SingleEditorState, SingleEditorStatus } from "../../utils/enums";
|
|
2
|
-
import { ErrorEvent } from "./core-events.data.model";
|
|
3
2
|
import { User } from "./user.data.model";
|
|
4
3
|
export declare class LiveStateData {
|
|
5
4
|
/**
|
|
@@ -73,20 +72,3 @@ export declare class EditorAccessTimer {
|
|
|
73
72
|
export declare class LiveStateDataConfig {
|
|
74
73
|
listenToNewChangesOnly?: boolean;
|
|
75
74
|
}
|
|
76
|
-
export interface SetUserAsEditorResponse {
|
|
77
|
-
error?: ErrorEvent;
|
|
78
|
-
}
|
|
79
|
-
export interface LiveStateSingleEditorExternalUserPresence {
|
|
80
|
-
/**
|
|
81
|
-
* True if the same user is present on different tab.
|
|
82
|
-
*/
|
|
83
|
-
sameUserPresentOnTab?: boolean;
|
|
84
|
-
/**
|
|
85
|
-
* True if the different user is present on different tab.
|
|
86
|
-
*/
|
|
87
|
-
differentUserPresentOnTab?: boolean;
|
|
88
|
-
/**
|
|
89
|
-
* User ids of the users present on different tab.
|
|
90
|
-
*/
|
|
91
|
-
userIds?: string[];
|
|
92
|
-
}
|
|
@@ -12,11 +12,8 @@ export declare class UserIAM {
|
|
|
12
12
|
*/
|
|
13
13
|
user: UserContact;
|
|
14
14
|
documentIds?: string[];
|
|
15
|
-
viewerDocumentIds?: string[];
|
|
16
15
|
folderIds?: string[];
|
|
17
|
-
viewerFolderIds?: string[];
|
|
18
16
|
organizationIds?: string[];
|
|
19
|
-
viewerOrganizationIds?: string[];
|
|
20
17
|
documentIdsCount?: number;
|
|
21
18
|
folderIdsCount?: number;
|
|
22
19
|
organizationIdsCount?: number;
|
|
@@ -5,45 +5,3 @@ export interface UserDataProvider {
|
|
|
5
5
|
config?: ResolverConfig;
|
|
6
6
|
resolveTimeout?: number;
|
|
7
7
|
}
|
|
8
|
-
export interface GetUserPermissionsRequest {
|
|
9
|
-
organizationId?: string;
|
|
10
|
-
folderIds?: string[];
|
|
11
|
-
documentIds?: string[];
|
|
12
|
-
}
|
|
13
|
-
export interface GetUserPermissionsResponse {
|
|
14
|
-
[userId: string]: {
|
|
15
|
-
folders?: {
|
|
16
|
-
[folderId: string]: {
|
|
17
|
-
accessRole?: UserPermissionAccessRole;
|
|
18
|
-
expiresAt?: number;
|
|
19
|
-
error?: string;
|
|
20
|
-
errorCode?: UserPermissionAccessRoleResult;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
organization?: {
|
|
24
|
-
[organizationId: string]: {
|
|
25
|
-
accessRole?: UserPermissionAccessRole;
|
|
26
|
-
expiresAt?: number;
|
|
27
|
-
error?: string;
|
|
28
|
-
errorCode?: UserPermissionAccessRoleResult;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
documents?: {
|
|
32
|
-
[documentId: string]: {
|
|
33
|
-
accessRole?: UserPermissionAccessRole;
|
|
34
|
-
expiresAt?: number;
|
|
35
|
-
error?: string;
|
|
36
|
-
errorCode?: UserPermissionAccessRoleResult;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
export declare enum UserPermissionAccessRole {
|
|
42
|
-
EDITOR = "editor",
|
|
43
|
-
VIEWER = "viewer"
|
|
44
|
-
}
|
|
45
|
-
export declare enum UserPermissionAccessRoleResult {
|
|
46
|
-
DOES_NOT_EXIST = "does_not_exist",
|
|
47
|
-
PERMISSION_DENIED = "permission_denied",
|
|
48
|
-
SOMETHING_WENT_WRONG = "something_went_wrong"
|
|
49
|
-
}
|
|
@@ -1203,16 +1203,6 @@ export declare class CommentElement {
|
|
|
1203
1203
|
*/
|
|
1204
1204
|
public disableFilterGhostCommentsInSidebar: () => void;
|
|
1205
1205
|
|
|
1206
|
-
/**
|
|
1207
|
-
* To enable link callback
|
|
1208
|
-
*/
|
|
1209
|
-
public enableLinkCallback: () => void;
|
|
1210
|
-
|
|
1211
|
-
/**
|
|
1212
|
-
* To disable link callback
|
|
1213
|
-
*/
|
|
1214
|
-
public disableLinkCallback: () => void;
|
|
1215
|
-
|
|
1216
1206
|
constructor();
|
|
1217
1207
|
/**
|
|
1218
1208
|
* Subscribe to comments on the current document.
|
|
@@ -2395,14 +2385,4 @@ export declare class CommentElement {
|
|
|
2395
2385
|
* To disable filter ghost comments in sidebar
|
|
2396
2386
|
*/
|
|
2397
2387
|
private _disableFilterGhostCommentsInSidebar;
|
|
2398
|
-
|
|
2399
|
-
/**
|
|
2400
|
-
* To enable link callback
|
|
2401
|
-
*/
|
|
2402
|
-
private _enableLinkCallback;
|
|
2403
|
-
|
|
2404
|
-
/**
|
|
2405
|
-
* To disable link callback
|
|
2406
|
-
*/
|
|
2407
|
-
private _disableLinkCallback;
|
|
2408
|
-
}
|
|
2388
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import { SingleEditorConfig, UserEditorAccess, EditorAccessTimer, LiveStateDataConfig, SetLiveStateDataConfig } from '../data/live-state-data.data.model';
|
|
3
|
+
import { User } from '../data/user.data.model';
|
|
2
4
|
import { ServerConnectionState } from '../../utils/enums';
|
|
3
|
-
import { EditorAccessTimer, LiveStateDataConfig, LiveStateSingleEditorExternalUserPresence, SetLiveStateDataConfig, SetUserAsEditorResponse, SingleEditorConfig, UserEditorAccess } from '../data/live-state-data.data.model';
|
|
4
5
|
import { LiveStateEventTypesMap } from '../data/live-state-events.data.model';
|
|
5
|
-
import { User } from '../data/user.data.model';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents the synchronization element for live state.
|
|
@@ -54,7 +54,7 @@ export declare class LiveStateSyncElement {
|
|
|
54
54
|
/**
|
|
55
55
|
* Sets the current user as an editor.
|
|
56
56
|
*/
|
|
57
|
-
setUserAsEditor: () =>
|
|
57
|
+
setUserAsEditor: () => void;
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
60
|
* Resets the user access.
|
|
@@ -142,11 +142,6 @@ export declare class LiveStateSyncElement {
|
|
|
142
142
|
*/
|
|
143
143
|
onServerConnectionStateChange: () => Observable<ServerConnectionState>;
|
|
144
144
|
|
|
145
|
-
/**
|
|
146
|
-
* To update user presence for single editor mode
|
|
147
|
-
*/
|
|
148
|
-
updateUserPresence: (userPresence: LiveStateSingleEditorExternalUserPresence) => void;
|
|
149
|
-
|
|
150
145
|
/**
|
|
151
146
|
* Subscribe to live state events
|
|
152
147
|
*/
|
|
@@ -290,11 +285,6 @@ export declare class LiveStateSyncElement {
|
|
|
290
285
|
*/
|
|
291
286
|
private _onServerConnectionStateChange;
|
|
292
287
|
|
|
293
|
-
/**
|
|
294
|
-
* To update user presence for single editor mode
|
|
295
|
-
*/
|
|
296
|
-
private _updateUserPresence;
|
|
297
|
-
|
|
298
288
|
/**
|
|
299
289
|
* Subscribe to live state events
|
|
300
290
|
*/
|
|
@@ -124,36 +124,6 @@ export declare class RecorderElement {
|
|
|
124
124
|
*/
|
|
125
125
|
askDevicePermission: (options: RecorderDevicePermissionOptions) => void;
|
|
126
126
|
|
|
127
|
-
/**
|
|
128
|
-
* To set max length
|
|
129
|
-
*/
|
|
130
|
-
setMaxLength: (seconds: number) => void;
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* To open picture in picture
|
|
134
|
-
*/
|
|
135
|
-
openPictureInPicture: () => Promise<void>;
|
|
136
|
-
|
|
137
|
-
/**
|
|
138
|
-
* To exit picture in picture
|
|
139
|
-
*/
|
|
140
|
-
exitPictureInPicture: () => Promise<void>;
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* To request screen permission
|
|
144
|
-
*/
|
|
145
|
-
requestScreenPermission: () => Promise<MediaStream | null>;
|
|
146
|
-
|
|
147
|
-
/**
|
|
148
|
-
* To enable picture in picture
|
|
149
|
-
*/
|
|
150
|
-
enablePictureInPicture: () => void;
|
|
151
|
-
|
|
152
|
-
/**
|
|
153
|
-
* To disable picture in picture
|
|
154
|
-
*/
|
|
155
|
-
disablePictureInPicture: () => void;
|
|
156
|
-
|
|
157
127
|
constructor();
|
|
158
128
|
|
|
159
129
|
private _initRecording;
|
|
@@ -273,34 +243,4 @@ export declare class RecorderElement {
|
|
|
273
243
|
* To ask device permission
|
|
274
244
|
*/
|
|
275
245
|
private _askDevicePermission;
|
|
276
|
-
|
|
277
|
-
/**
|
|
278
|
-
* To set max length
|
|
279
|
-
*/
|
|
280
|
-
private _setMaxLength;
|
|
281
|
-
|
|
282
|
-
/**
|
|
283
|
-
* To open picture in picture
|
|
284
|
-
*/
|
|
285
|
-
private _openPictureInPicture;
|
|
286
|
-
|
|
287
|
-
/**
|
|
288
|
-
* To exit picture in picture
|
|
289
|
-
*/
|
|
290
|
-
private _exitPictureInPicture;
|
|
291
|
-
|
|
292
|
-
/**
|
|
293
|
-
* To request screen permission
|
|
294
|
-
*/
|
|
295
|
-
private _requestScreenPermission;
|
|
296
|
-
|
|
297
|
-
/**
|
|
298
|
-
* To enable picture in picture
|
|
299
|
-
*/
|
|
300
|
-
private _enablePictureInPicture;
|
|
301
|
-
|
|
302
|
-
/**
|
|
303
|
-
* To disable picture in picture
|
|
304
|
-
*/
|
|
305
|
-
private _disablePictureInPicture;
|
|
306
246
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -72,7 +72,6 @@ export declare class Constants {
|
|
|
72
72
|
static DEFAULT_ANNOTATION_COLOR: string;
|
|
73
73
|
static REGEX_EMAIL: RegExp;
|
|
74
74
|
static REGEX_URL: RegExp;
|
|
75
|
-
static readonly REGEX_URL_FOR_USER_NAME: RegExp;
|
|
76
75
|
static REGEX_SPECIAL_CHARS: RegExp;
|
|
77
76
|
static SNIPPYLY_HIGHLIGHT: string;
|
|
78
77
|
static SNIPPYLY_HIGHLIGHT_PREVIEW: string;
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -54,7 +54,6 @@ export declare const CommentEventTypes: {
|
|
|
54
54
|
readonly COMMENT_SIDEBAR_DATA_UPDATE: "commentSidebarDataUpdate";
|
|
55
55
|
readonly AUTOCOMPLETE_SEARCH: "autocompleteSearch";
|
|
56
56
|
readonly COMPOSER_CLICKED: "composerClicked";
|
|
57
|
-
readonly LINK_CLICKED: "linkClicked";
|
|
58
57
|
};
|
|
59
58
|
export declare const RecorderEventTypes: {
|
|
60
59
|
readonly TRANSCRIPTION_DONE: "transcriptionDone";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk-staging",
|
|
3
|
-
"version": "4.5.2-beta.
|
|
3
|
+
"version": "4.5.2-beta.2",
|
|
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": [
|