@veltdev/sdk 1.0.46 → 1.0.47
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.
|
@@ -62,18 +62,5 @@ export declare class Comment {
|
|
|
62
62
|
* List of recorded data.
|
|
63
63
|
*/
|
|
64
64
|
recorders: RecordedData[];
|
|
65
|
-
|
|
66
|
-
* Map of user ID to another map of emoji to count.
|
|
67
|
-
*/
|
|
68
|
-
reactions: {
|
|
69
|
-
[key: string]: {
|
|
70
|
-
[key: string]: number;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
73
|
-
/**
|
|
74
|
-
* Map of emoji to count to display.
|
|
75
|
-
*/
|
|
76
|
-
reactionCountMap: {
|
|
77
|
-
[key: string]: number;
|
|
78
|
-
};
|
|
65
|
+
reactionAnnotationIds: string[];
|
|
79
66
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare class Constants {
|
|
|
27
27
|
static FIREBASE_PARTIAL_PATH_SYNC_VIDEO_PLAYER: string;
|
|
28
28
|
static FIREBASE_PARTIAL_PATH_LIVE_STATE: string;
|
|
29
29
|
static FIREBASE_PARTIAL_PATH_IAM: string;
|
|
30
|
+
static FIREBASE_PARTIAL_PATH_REACTION: string;
|
|
30
31
|
static FIREBASE_PARTIAL_PATH_USERS: string;
|
|
31
32
|
static FIREBASE_PARTIAL_PATH_USER_REQUESTS: string;
|
|
32
33
|
static FIREBASE_PARTIAL_PATH_FEEDBACK: string;
|
|
@@ -197,7 +198,9 @@ export declare class Constants {
|
|
|
197
198
|
VELT_AREA_TOOL: string;
|
|
198
199
|
VELT_AREAS: string;
|
|
199
200
|
VELT_INLINE_COMMENT: string;
|
|
201
|
+
VELT_VIDEO_PLAYER: string;
|
|
200
202
|
VELT_VIDEO_COMMENTS_TIMELINE: string;
|
|
203
|
+
VELT_REACTION_TOOL: string;
|
|
201
204
|
};
|
|
202
205
|
static ATTRIBUTES: {
|
|
203
206
|
VELT_ID: string;
|
|
@@ -241,6 +244,7 @@ export declare class Constants {
|
|
|
241
244
|
VELT_SYNC_ACCESS_DISABLED: string;
|
|
242
245
|
VELT_SINGLE_EDITOR_MODE_CONTAINER: string;
|
|
243
246
|
VELT_IFRAME_CONTAINER: string;
|
|
247
|
+
VELT_IFRAME_CONTAINER_STATIC: string;
|
|
244
248
|
};
|
|
245
249
|
static INJECTION_STYLE_PROPS: {
|
|
246
250
|
/**
|