@veltdev/sdk-staging 4.5.6-beta.18 → 4.5.6-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 -4
- 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/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,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
|
-
}
|
|
@@ -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.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": [
|