@myinterview/widget-react 1.1.23-svg-check → 1.1.23-that-was-21
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/README.md +7 -3
- package/dist/cjs/components/DeviceSelector.d.ts +1 -2
- package/dist/cjs/components/Setup.d.ts +0 -1
- package/dist/cjs/components/SetupChecks.d.ts +0 -1
- package/dist/cjs/components/VideoCamera.d.ts +0 -1
- package/dist/cjs/index.js +26184 -26435
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/configInterface.d.ts +0 -1
- package/dist/cjs/interfaces/recorderInterface.d.ts +1 -4
- package/dist/cjs/interfaces/widgetInterface.d.ts +0 -2
- package/dist/cjs/utils/debug.utils.d.ts +0 -1
- package/dist/cjs/utils/device.utils.d.ts +0 -2
- package/dist/cjs/utils/messages.utils.d.ts +0 -1
- package/dist/cjs/utils/sentry.utils.d.ts +2 -1
- package/dist/esm/components/DeviceSelector.d.ts +1 -2
- package/dist/esm/components/Setup.d.ts +0 -1
- package/dist/esm/components/SetupChecks.d.ts +0 -1
- package/dist/esm/components/VideoCamera.d.ts +0 -1
- package/dist/esm/index.js +26173 -26424
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/configInterface.d.ts +0 -1
- package/dist/esm/interfaces/recorderInterface.d.ts +1 -4
- package/dist/esm/interfaces/widgetInterface.d.ts +0 -2
- package/dist/esm/utils/debug.utils.d.ts +0 -1
- package/dist/esm/utils/device.utils.d.ts +0 -2
- package/dist/esm/utils/messages.utils.d.ts +0 -1
- package/dist/esm/utils/sentry.utils.d.ts +2 -1
- package/dist/index.d.ts +0 -1
- package/package.json +8 -8
|
@@ -21,7 +21,6 @@ interface FacingMode {
|
|
|
21
21
|
exact: string;
|
|
22
22
|
}
|
|
23
23
|
export interface RecorderInterface {
|
|
24
|
-
recordWithoutVideo?: boolean;
|
|
25
24
|
facingMode: FacingMode;
|
|
26
25
|
microphoneRef: ActorRef<DoneInvokeEvent<any>> | null;
|
|
27
26
|
countDownRef: ActorRef<DoneInvokeEvent<any>> | null;
|
|
@@ -44,7 +43,6 @@ export interface RecorderInterface {
|
|
|
44
43
|
recordingTime: number;
|
|
45
44
|
durations: number;
|
|
46
45
|
isMicError: boolean;
|
|
47
|
-
isActivelyStopped: boolean;
|
|
48
46
|
}
|
|
49
47
|
export declare const enum MIME_TYPES {
|
|
50
48
|
WEBM = "video/webm",
|
|
@@ -96,8 +94,7 @@ export declare const enum ACTIONS {
|
|
|
96
94
|
UPDATE_MACHINE_FOR_NEW_QUESTION = "UPDATE_MACHINE_FOR_NEW_QUESTION",
|
|
97
95
|
SET_MEDIA_RECORDER = "SET_MEDIA_RECORDER",
|
|
98
96
|
SET_MIC_ERROR = "SET_MIC_ERROR",
|
|
99
|
-
SET_PERMISSION_LISTENER = "SET_PERMISSION_LISTENER"
|
|
100
|
-
SET_ACTIVELY_STOPPED = "SET_ACTIVELY_STOPPED"
|
|
97
|
+
SET_PERMISSION_LISTENER = "SET_PERMISSION_LISTENER"
|
|
101
98
|
}
|
|
102
99
|
export declare const enum EVENTS {
|
|
103
100
|
SET_MIC_SPEED_DETECTION = "SET_MIC_SPEED_DETECTION",
|
|
@@ -97,7 +97,6 @@ export declare const enum STATES {
|
|
|
97
97
|
SETUP__TEST__CAMERA__WAITING = "testCameraWaiting",
|
|
98
98
|
SETUP__TEST__CAMERA__ERROR = "testCameraError",
|
|
99
99
|
SETUP__TEST__CAMERA__SUCCESS = "testCameraSuccess",
|
|
100
|
-
SETUP__TEST__CAMERA__SKIP = "testCameraSkip",
|
|
101
100
|
SETUP__TEST__MICROPHONE = "testMicrophone",
|
|
102
101
|
SETUP__TEST__MICROPHONE__WAITING = "testMicrophoneWaiting",
|
|
103
102
|
SETUP__TEST__MICROPHONE__ERROR = "testMicrophoneError",
|
|
@@ -203,7 +202,6 @@ export declare const enum SERVICES {
|
|
|
203
202
|
UPDATE_VIDEO_PART_CALL = "updateVideoPartCall"
|
|
204
203
|
}
|
|
205
204
|
export declare const enum GUARDS {
|
|
206
|
-
IS_VIDEO_RECORDING_SKIP = "isVideoRecordingSkip",
|
|
207
205
|
NO_STORAGE = "noStorage",
|
|
208
206
|
NO_RECORDER = "noRecorder",
|
|
209
207
|
IS_THINKING_TIME = "isThinkingTime",
|
|
@@ -5,7 +5,6 @@ export declare const enum DEBUG {
|
|
|
5
5
|
WELCOME_PAGE_STAGE = "In welcome page stage",
|
|
6
6
|
SETUP_STAGE = "In setup stage",
|
|
7
7
|
MEIDA_DEVICE_SUCCESS = "Media device available",
|
|
8
|
-
MEDIA_DEVICE_SWITCH_OFF = "Media device is off",
|
|
9
8
|
MEDIA_DEVICE_ERROR = "Media device error",
|
|
10
9
|
NO_SOUND_DETECTED = "No sound detected",
|
|
11
10
|
DEVICE_CHANGED = "Device changed",
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare const isMobile: boolean;
|
|
2
2
|
export declare const isAndroid: boolean;
|
|
3
|
-
export declare const isIphone: boolean;
|
|
4
3
|
export declare const isFireFox: boolean;
|
|
5
4
|
export declare const isSupportedIosDevice: boolean;
|
|
6
5
|
export declare const isSupportedDevice: boolean;
|
|
@@ -11,5 +10,4 @@ type DEVICE_TYPE = {
|
|
|
11
10
|
BROWSER: typeof BROWSERS_OPTIONS[number];
|
|
12
11
|
};
|
|
13
12
|
export declare const DEVICE: DEVICE_TYPE;
|
|
14
|
-
export declare const getIPhoneModel: () => string;
|
|
15
13
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import * as Sentry from '@sentry/browser';
|
|
1
2
|
import { DoneInvokeEvent } from 'xstate';
|
|
2
3
|
import { Breadcrumb } from '@sentry/types';
|
|
3
|
-
export declare const
|
|
4
|
+
export declare const SentryHub: Sentry.Hub;
|
|
4
5
|
export declare const SentryTrackingFn: (event: DoneInvokeEvent<any>, context: any, name: string, level: 'fatal' | 'error' | 'warning' | 'log' | 'info' | 'debug') => void;
|
|
5
6
|
export declare const SentryBreadcrumb: ({ type, level, event_id, category, message, data }: Breadcrumb) => void;
|
|
@@ -7,6 +7,5 @@ export interface IDeviceSelectorProps {
|
|
|
7
7
|
selectedAudioDevice?: MediaDeviceInfo;
|
|
8
8
|
selectedVideoDevice?: MediaDeviceInfo;
|
|
9
9
|
myinterviewRef: React.RefObject<HTMLDivElement>;
|
|
10
|
-
recordWithoutVideo?: boolean;
|
|
11
10
|
}
|
|
12
|
-
export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef,
|
|
11
|
+
export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef, }: IDeviceSelectorProps) => React.JSX.Element;
|
|
@@ -2,7 +2,6 @@ import React from 'react';
|
|
|
2
2
|
import { IWidgetMachineProps } from '../interfaces/widgetInterface';
|
|
3
3
|
interface IProps extends IWidgetMachineProps {
|
|
4
4
|
isPracticeDisabled: boolean;
|
|
5
|
-
recordWithoutVideo?: boolean;
|
|
6
5
|
}
|
|
7
6
|
export declare const Setup: React.FC<IProps>;
|
|
8
7
|
export {};
|
|
@@ -26,7 +26,6 @@ interface IProps extends IDeviceSelectorProps {
|
|
|
26
26
|
isQuestionDisplayed: boolean;
|
|
27
27
|
myinterviewRef: React.RefObject<HTMLDivElement>;
|
|
28
28
|
isAssessment: boolean;
|
|
29
|
-
recordWithoutVideo?: boolean;
|
|
30
29
|
}
|
|
31
30
|
export declare const VideoCamera: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLVideoElement>>;
|
|
32
31
|
export {};
|