@veltdev/sdk 4.3.0-beta.1 → 4.3.0-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.
|
@@ -142,6 +142,12 @@ export declare class RecorderAnnotation {
|
|
|
142
142
|
recordingEditVersions?: {
|
|
143
143
|
[key: number]: RecorderAnnotationEditVersion;
|
|
144
144
|
};
|
|
145
|
+
/**
|
|
146
|
+
* URLs for individual uploaded chunks
|
|
147
|
+
*/
|
|
148
|
+
chunkUrls?: {
|
|
149
|
+
[key: number]: string;
|
|
150
|
+
};
|
|
145
151
|
}
|
|
146
152
|
export interface RecorderAnnotationEditVersion {
|
|
147
153
|
from?: User;
|
|
@@ -56,6 +56,12 @@ export declare class RecordedRawData {
|
|
|
56
56
|
duration?: number;
|
|
57
57
|
display?: string;
|
|
58
58
|
} | null;
|
|
59
|
+
/**
|
|
60
|
+
* Array of URLs for individual uploaded chunks
|
|
61
|
+
*/
|
|
62
|
+
chunkUrls?: {
|
|
63
|
+
[key: number]: string;
|
|
64
|
+
};
|
|
59
65
|
}
|
|
60
66
|
export declare class RecordedData {
|
|
61
67
|
/**
|
|
@@ -78,5 +84,11 @@ export declare class RecordedData {
|
|
|
78
84
|
* URL of the hosted website to open video in new tab
|
|
79
85
|
*/
|
|
80
86
|
videoPlayerUrl?: string;
|
|
87
|
+
/**
|
|
88
|
+
* URLs for individual uploaded chunks
|
|
89
|
+
*/
|
|
90
|
+
chunkUrls?: {
|
|
91
|
+
[key: number]: string;
|
|
92
|
+
};
|
|
81
93
|
getThumbnailTag: (url?: string) => string;
|
|
82
94
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.3.0-beta.
|
|
3
|
+
"version": "4.3.0-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": [
|