@veltdev/sdk 1.0.16 → 1.0.17
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.
|
@@ -71,4 +71,13 @@ export declare class RecordedData {
|
|
|
71
71
|
* Type of recorded data, possible values are 'audio', 'video' and 'screen'
|
|
72
72
|
*/
|
|
73
73
|
type: string;
|
|
74
|
+
thumbnailUrl?: string;
|
|
75
|
+
thumbnailWithPlayIconUrl?: string;
|
|
76
|
+
videoUrl?: string;
|
|
77
|
+
audioUrl?: string;
|
|
78
|
+
/**
|
|
79
|
+
* URL of the hosted website to open video in new tab
|
|
80
|
+
*/
|
|
81
|
+
videoPlayerUrl?: string;
|
|
82
|
+
getThumbnailTag: (url?: string) => string;
|
|
74
83
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -224,6 +224,8 @@ export declare class Constants {
|
|
|
224
224
|
VELT_AREA_PIN_HOST: string;
|
|
225
225
|
VELT_AREA_PIN_HOST_STATIC: string;
|
|
226
226
|
VELT_AREA_DISABLED: string;
|
|
227
|
+
VELT_ONGOING_RECORDING: string;
|
|
228
|
+
VELT_COMMENT_RECORDING: string;
|
|
227
229
|
};
|
|
228
230
|
static INJECTION_STYLE_PROPS: {
|
|
229
231
|
/**
|