interview-widget 3.2.21 → 3.3.0
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/dist/components/interview/proctoring/gaze-detection/hooks/use-camera-setup.d.ts +1 -0
- package/dist/components/media/video-feed.d.ts +2 -0
- package/dist/hooks/use-video-recording.d.ts +6 -0
- package/dist/services/api/interview-api.d.ts +6 -6
- package/dist/{widget.es.3.2.21.js → widget.es.3.3.0.js} +2175 -2129
- package/dist/widget.umd.3.3.0.js +179 -0
- package/package.json +9 -9
- package/dist/services/common-service.d.ts +0 -1
- package/dist/widget.umd.3.2.21.js +0 -179
- /package/dist/{widget.3.2.21.css → widget.3.3.0.css} +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare const useCameraSetup: (videoRef: React.RefObject<HTMLVideoElement | null>, isModelLoaded: boolean, renderLoop: () => void, setStatusMessage: (message: string) => void) => {
|
|
2
2
|
animationFrameRef: import('react').RefObject<number | null>;
|
|
3
|
+
stream: MediaStream | null;
|
|
3
4
|
};
|
|
@@ -31,17 +31,17 @@ declare class InterviewAPI {
|
|
|
31
31
|
*/
|
|
32
32
|
getInterviewConfig(interviewId: string): Promise<InterviewConfigResponse>;
|
|
33
33
|
/**
|
|
34
|
-
* Request a signed URL for uploading
|
|
34
|
+
* Request a signed URL for uploading an asset
|
|
35
35
|
*/
|
|
36
|
-
|
|
36
|
+
requestUploadUrl(interviewId: string, filename: string | undefined, mimeType: string, assetType: string): Promise<ScreenshotUploadRequestResponse>;
|
|
37
37
|
/**
|
|
38
|
-
* Upload
|
|
38
|
+
* Upload asset to the provided signed URL
|
|
39
39
|
*/
|
|
40
|
-
|
|
40
|
+
uploadAsset(uploadUrl: string, blob: Blob, mimeType: string): Promise<void>;
|
|
41
41
|
/**
|
|
42
|
-
* Confirm
|
|
42
|
+
* Confirm asset upload
|
|
43
43
|
*/
|
|
44
|
-
|
|
44
|
+
confirmAssetUpload(assetId: string): Promise<void>;
|
|
45
45
|
/**
|
|
46
46
|
* Get interview transcription
|
|
47
47
|
*/
|