@veltdev/sdk 4.4.0-beta.5 → 4.4.0-beta.6
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.
|
@@ -38,12 +38,12 @@ export declare class LiveStateSyncElement {
|
|
|
38
38
|
* Checks if the current user is an editor. Returns an observable.
|
|
39
39
|
* @deprecated Use `isUserEditor` instead
|
|
40
40
|
*/
|
|
41
|
-
isUserEditor$: () => Observable<UserEditorAccess | null>;
|
|
41
|
+
isUserEditor$: () => Observable<UserEditorAccess | null | undefined>;
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
44
|
* Checks if the current user is an editor. Returns an observable.
|
|
45
45
|
*/
|
|
46
|
-
isUserEditor: () => Observable<UserEditorAccess | null>;
|
|
46
|
+
isUserEditor: () => Observable<UserEditorAccess | null | undefined>;
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
49
|
* To get editor
|
package/app/utils/enums.d.ts
CHANGED
|
@@ -138,7 +138,8 @@ export declare enum AnalyticsFeatures {
|
|
|
138
138
|
NOTIFICATION = "notification",
|
|
139
139
|
REACTION = "reaction",
|
|
140
140
|
AREA_COMMENT = "areaComment",
|
|
141
|
-
INLINE_COMMENT = "inlineComment"
|
|
141
|
+
INLINE_COMMENT = "inlineComment",
|
|
142
|
+
COMMENT_SIDEBAR = "commentSidebar"
|
|
142
143
|
}
|
|
143
144
|
export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread';
|
|
144
145
|
export declare enum DeviceType {
|
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.6",
|
|
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": [
|