@veltdev/sdk-staging 4.5.6-beta.20 → 4.5.6-beta.3
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 -4
- package/app/models/data/comment-annotation.data.model.d.ts +0 -1
- package/app/models/data/comment.data.model.d.ts +0 -2
- package/app/models/data/live-state-data.data.model.d.ts +0 -6
- package/app/models/data/resolver.data.model.d.ts +0 -1
- package/app/models/data/target-element.data.model.d.ts +0 -5
- package/app/models/data/target-text-range.data.model.d.ts +0 -5
- package/app/models/data/user.data.model.d.ts +0 -22
- package/app/models/element/comment-element.model.d.ts +0 -20
- package/app/models/element/live-state-sync-element.model.d.ts +1 -11
- package/models.d.ts +0 -1
- package/package.json +1 -1
- package/velt.js +92 -92
- package/app/models/data/anchor-record.data.model.d.ts +0 -109
|
@@ -3,7 +3,7 @@ import { Observable } from "rxjs";
|
|
|
3
3
|
import { Config, DisableLogsConfig } from "../models/data/config.data.model";
|
|
4
4
|
import { DocumentUser } from "../models/data/document-user.data.model";
|
|
5
5
|
import { Location } from "../models/data/location.model";
|
|
6
|
-
import { User, UserOptions, VeltAuthProvider
|
|
6
|
+
import { User, UserOptions, VeltAuthProvider } from "../models/data/user.data.model";
|
|
7
7
|
import { CustomCss } from "../models/data/custom-css.data.model";
|
|
8
8
|
import { AreaElement } from "../models/element/area-element.model";
|
|
9
9
|
import { ArrowElement } from "../models/element/arrow-element.model";
|
|
@@ -100,9 +100,6 @@ export declare class Snippyly {
|
|
|
100
100
|
* To set the data provider.
|
|
101
101
|
*/
|
|
102
102
|
setDataProviders: (dataProvider: VeltDataProvider) => void;
|
|
103
|
-
|
|
104
|
-
setPermissionProvider: (permissionProvider: VeltPermissionProvider) => void;
|
|
105
|
-
|
|
106
103
|
/**
|
|
107
104
|
* To set the encryption provider.
|
|
108
105
|
*/
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Attachment } from "./attachment.model";
|
|
2
2
|
import { AutocompleteGroupReplaceData, AutocompleteReplaceData, AutocompleteUserContactReplaceData } from "./autocomplete.data.model";
|
|
3
|
-
import { ReactionAnnotation } from "./reaction-annotation.data.model";
|
|
4
3
|
import { RecordedData } from "./recorder.model";
|
|
5
4
|
import { User } from "./user.data.model";
|
|
6
5
|
export declare class Comment {
|
|
@@ -87,5 +86,4 @@ export declare class Comment {
|
|
|
87
86
|
*
|
|
88
87
|
*/
|
|
89
88
|
isEdited?: boolean;
|
|
90
|
-
reactionAnnotations?: ReactionAnnotation[];
|
|
91
89
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AnchorRecord } from './anchor-record.data.model';
|
|
2
1
|
export declare class TargetElement {
|
|
3
2
|
/**
|
|
4
3
|
* Xpath of target element
|
|
@@ -20,8 +19,4 @@ export declare class TargetElement {
|
|
|
20
19
|
* Relative left position of cursor on target element
|
|
21
20
|
*/
|
|
22
21
|
leftPercentage: number;
|
|
23
|
-
/**
|
|
24
|
-
* Robust anchor descriptor for the element
|
|
25
|
-
*/
|
|
26
|
-
anchor?: AnchorRecord | null;
|
|
27
22
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AnchorRecord } from "./anchor-record.data.model";
|
|
2
1
|
export declare class TargetTextRange {
|
|
3
2
|
/**
|
|
4
3
|
* Xpath of common Ancestor Container
|
|
@@ -12,10 +11,6 @@ export declare class TargetTextRange {
|
|
|
12
11
|
* Full xpath of common Ancestor Container with class names
|
|
13
12
|
*/
|
|
14
13
|
commonAncestorContainerCFXpath?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Anchor of common Ancestor Container
|
|
17
|
-
*/
|
|
18
|
-
commonAncestorContainerAnchor?: AnchorRecord;
|
|
19
14
|
/**
|
|
20
15
|
* Selected text
|
|
21
16
|
*/
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { ResolverResponse } from "./resolver.data.model";
|
|
2
1
|
import { UserContact } from "./user-contact.data.model";
|
|
3
|
-
import { UserPermissionAccessRole } from "./user-resolver.data.model";
|
|
4
2
|
export declare class User {
|
|
5
3
|
/**
|
|
6
4
|
* Unique user identifier that you use to identify your user.
|
|
@@ -111,23 +109,3 @@ export interface VeltAuthProvider {
|
|
|
111
109
|
retryConfig?: AuthRetryConfig;
|
|
112
110
|
generateToken?: () => Promise<string>;
|
|
113
111
|
}
|
|
114
|
-
export interface VeltPermissionProvider {
|
|
115
|
-
onResourceAccessRequired: (requests: Array<PermissionQuery>) => Promise<ResolverResponse<PermissionResult[]>>;
|
|
116
|
-
retryConfig?: AuthRetryConfig;
|
|
117
|
-
forceRefresh?: boolean;
|
|
118
|
-
}
|
|
119
|
-
export interface PermissionQuery {
|
|
120
|
-
userId: string;
|
|
121
|
-
resource: {
|
|
122
|
-
id: string;
|
|
123
|
-
type: 'folder' | 'document' | 'organization';
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
export interface PermissionResult {
|
|
127
|
-
userId: string;
|
|
128
|
-
resourceId: string;
|
|
129
|
-
type: 'folder' | 'document' | 'organization';
|
|
130
|
-
accessRole?: UserPermissionAccessRole;
|
|
131
|
-
expiresAt?: number;
|
|
132
|
-
hasAccess: boolean;
|
|
133
|
-
}
|
|
@@ -1244,16 +1244,6 @@ export declare class CommentElement {
|
|
|
1244
1244
|
*/
|
|
1245
1245
|
public disableForceCloseAllOnEsc: () => void;
|
|
1246
1246
|
|
|
1247
|
-
/**
|
|
1248
|
-
* To mark comment annotation as read
|
|
1249
|
-
*/
|
|
1250
|
-
public markAsRead: (annotationId: string) => Promise<void>;
|
|
1251
|
-
|
|
1252
|
-
/**
|
|
1253
|
-
* To mark comment annotation as unread
|
|
1254
|
-
*/
|
|
1255
|
-
public markAsUnread: (annotationId: string) => Promise<void>;
|
|
1256
|
-
|
|
1257
1247
|
constructor();
|
|
1258
1248
|
/**
|
|
1259
1249
|
* Subscribe to comments on the current document.
|
|
@@ -2476,14 +2466,4 @@ export declare class CommentElement {
|
|
|
2476
2466
|
* To disable force close all on esc
|
|
2477
2467
|
*/
|
|
2478
2468
|
private _disableForceCloseAllOnEsc;
|
|
2479
|
-
|
|
2480
|
-
/**
|
|
2481
|
-
* To mark comment annotation as read
|
|
2482
|
-
*/
|
|
2483
|
-
private _markAsRead;
|
|
2484
|
-
|
|
2485
|
-
/**
|
|
2486
|
-
* To mark comment annotation as unread
|
|
2487
|
-
*/
|
|
2488
|
-
private _markAsUnread;
|
|
2489
2469
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import { ServerConnectionState } from '../../utils/enums';
|
|
3
|
-
import { EditorAccessTimer,
|
|
3
|
+
import { EditorAccessTimer, LiveStateDataConfig, LiveStateSingleEditorExternalUserPresence, SetLiveStateDataConfig, SetUserAsEditorResponse, SingleEditorConfig, UserEditorAccess } from '../data/live-state-data.data.model';
|
|
4
4
|
import { LiveStateEventTypesMap } from '../data/live-state-events.data.model';
|
|
5
5
|
import { User } from '../data/user.data.model';
|
|
6
6
|
|
|
@@ -20,11 +20,6 @@ export declare class LiveStateSyncElement {
|
|
|
20
20
|
*/
|
|
21
21
|
getLiveStateData$: <T = unknown>(liveStateDataId?: string, liveStateDataConfig?: LiveStateDataConfig) => Observable<T>;
|
|
22
22
|
|
|
23
|
-
/**
|
|
24
|
-
* Fetches live state data.
|
|
25
|
-
*/
|
|
26
|
-
fetchLiveStateData: <T = unknown>(request?: FetchLiveStateDataRequest) => Promise<T>;
|
|
27
|
-
|
|
28
23
|
/**
|
|
29
24
|
* Sets live state data for the provided ID and data.
|
|
30
25
|
*/
|
|
@@ -183,11 +178,6 @@ export declare class LiveStateSyncElement {
|
|
|
183
178
|
*/
|
|
184
179
|
private _getLiveStateData$;
|
|
185
180
|
|
|
186
|
-
/**
|
|
187
|
-
* Private method for fetching live state data.
|
|
188
|
-
*/
|
|
189
|
-
private _fetchLiveStateData;
|
|
190
|
-
|
|
191
181
|
/**
|
|
192
182
|
* Private method for setting live state data.
|
|
193
183
|
*/
|
package/models.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export * from './app/utils/enums';
|
|
2
|
-
export * from './app/models/data/anchor-record.data.model';
|
|
3
2
|
export * from './app/models/data/attachment.model';
|
|
4
3
|
export * from './app/models/data/area-annotation.data.model';
|
|
5
4
|
export * from './app/models/data/arrow-annotation.data.model';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk-staging",
|
|
3
|
-
"version": "4.5.6-beta.
|
|
3
|
+
"version": "4.5.6-beta.3",
|
|
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": [
|