@myinterview/widget-react 1.1.23-binary-010 → 1.1.23-bli-chupchik

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.
@@ -32,7 +32,6 @@ interface IConfig {
32
32
  disablePractice?: boolean;
33
33
  event_id?: string;
34
34
  accessibility_id?: string;
35
- recordWithoutVideo?: boolean;
36
35
  }
37
36
  export type IClientConfig = Omit<IConfig, 'practiceQuestions'> & {
38
37
  practiceQuestions?: IClientQuestion[];
@@ -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",
@@ -76,7 +76,6 @@ export interface IVideo {
76
76
  reminder: number;
77
77
  source: number;
78
78
  };
79
- region?: 'us' | 'eu' | 'au' | 'london';
80
79
  }
81
80
  export declare const enum VIDEO_STATUS {
82
81
  INCOMPLETED = 0,
@@ -78,7 +78,6 @@ export interface InitialState {
78
78
  failedRecordingMessage: IVideoCorruptedMessagesKey;
79
79
  isResumed: boolean;
80
80
  videoDimensions: IVideoDimensions;
81
- confirmUploadedFalseCount: number;
82
81
  }
83
82
  export interface IWidgetMachineProps {
84
83
  widgetMachine: State<InitialState, DoneInvokeEvent<any>, any, {
@@ -98,7 +97,6 @@ export declare const enum STATES {
98
97
  SETUP__TEST__CAMERA__WAITING = "testCameraWaiting",
99
98
  SETUP__TEST__CAMERA__ERROR = "testCameraError",
100
99
  SETUP__TEST__CAMERA__SUCCESS = "testCameraSuccess",
101
- SETUP__TEST__CAMERA__SKIP = "testCameraSkip",
102
100
  SETUP__TEST__MICROPHONE = "testMicrophone",
103
101
  SETUP__TEST__MICROPHONE__WAITING = "testMicrophoneWaiting",
104
102
  SETUP__TEST__MICROPHONE__ERROR = "testMicrophoneError",
@@ -123,7 +121,6 @@ export declare const enum STATES {
123
121
  RE_INIT_RECORDER__NEXT_QUESTION = "reInitRecorderNextQuestion",
124
122
  UPLOADING = "uploading",
125
123
  CONFIRM = "confirm",
126
- CONFIRM_WATING = "confirmWaiting",
127
124
  FINISHED = "finished",
128
125
  ERROR = "error"
129
126
  }
@@ -175,8 +172,7 @@ export declare const enum ACTIONS {
175
172
  INCREASE_FAILED_RECORDING_ATTEMPTS = "increaseFailedRecordingAttempts",
176
173
  RESET_FAILED_RECORDING_ATTEMPTS = "resetFailedRecordingAttempts",
177
174
  CLEAR_VIDEO_ERROR = "clearVideoError",
178
- UPDATE_VIDEO_DIMENSIONS = "updateVideoDimensions",
179
- UPDATE_UPLOADED_FALSE_COUNT = "updateUploadedFalseCount"
175
+ UPDATE_VIDEO_DIMENSIONS = "updateVideoDimensions"
180
176
  }
181
177
  export declare const enum EVENTS {
182
178
  SPAWN_UPLOADER = "SPAWN_UPLOADER",
@@ -206,7 +202,6 @@ export declare const enum SERVICES {
206
202
  UPDATE_VIDEO_PART_CALL = "updateVideoPartCall"
207
203
  }
208
204
  export declare const enum GUARDS {
209
- IS_VIDEO_RECORDING_SKIP = "isVideoRecordingSkip",
210
205
  NO_STORAGE = "noStorage",
211
206
  NO_RECORDER = "noRecorder",
212
207
  IS_THINKING_TIME = "isThinkingTime",
@@ -228,8 +223,7 @@ export declare const enum GUARDS {
228
223
  THERE_ARE_NO_VIDEO_QUESTIONS_TYPE = "thereAreNoVideoQuestionType",
229
224
  IS_RECORDER_READY = "isRecorderReady",
230
225
  IS_ASSESSMENT_QUESTION = "isAssessmentQuestion",
231
- IS_TIMES_UP = "isTimesUp",
232
- SHOULD_TRY_TO_CONFIRM = "shouldTryToConfirm"
226
+ IS_TIMES_UP = "isTimesUp"
233
227
  }
234
228
  export declare const enum TAGS {
235
229
  SETUP = "setup",
@@ -238,7 +232,6 @@ export declare const enum TAGS {
238
232
  DISPLAY_OUTER_VIEW = "displayOuterView",
239
233
  DISPLAY_QUESTION = "displayQuestion",
240
234
  DISPLAY_QUESTIONS_LIST = "displayQuestionsList",
241
- DISPLAY_UPLOAD = "displayUpload",
242
235
  LOADING = "loading"
243
236
  }
244
237
  export {};
@@ -43,12 +43,7 @@ export declare const enum EVENT_TYPES {
43
43
  MICROPHONE_CHANGED = "microphoneChanged",
44
44
  SOUND_RESTORED = "soundRestored",
45
45
  TIMES_UP = "timesUp",
46
- COMPLETED_INTERVIEW = "completedInterview",
47
- RECONNECTED = "reconnected",
48
- CONFIRM_UPLOADED_FAILED = "confirmUploadedFailed",
49
- FINISHED = "finished",
50
- ON_FINISH_SUCCEED = "onFinishSucceed",
51
- ON_FINISH_FAILED = "onFinishFailed"
46
+ COMPLETED_INTERVIEW = "completedInterview"
52
47
  }
53
48
  export type IEventType = `${EVENT_TYPES}`;
54
49
  export interface ITrackEvent {
@@ -17,7 +17,6 @@ export declare const DEFAULT_VIDEO_DIMENSIONS: {
17
17
  width: number;
18
18
  height: number;
19
19
  };
20
- export declare const MAX_CONFIRM_ATTEMPTS = 5;
21
20
  export declare const FONT_URL = "https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap";
22
21
  export declare enum RETAKE_SPEED {
23
22
  FAST = 300,
@@ -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",
@@ -2,7 +2,6 @@ export declare const CAMERA_STATES_MESSAGES: {
2
2
  WAITING: string;
3
3
  ERROR: string;
4
4
  READY: string;
5
- SKIP: string;
6
5
  };
7
6
  export declare const MICROPHONE_STATES_MESSAGES: {
8
7
  WAITING: string;
@@ -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, recordWithoutVideo, }: IDeviceSelectorProps) => JSX.Element;
11
+ export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef, }: IDeviceSelectorProps) => 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 {};
@@ -9,7 +9,6 @@ interface IProps {
9
9
  };
10
10
  canRetrySpeedTest: boolean;
11
11
  onRetry: () => void;
12
- recordWithoutVideo?: boolean;
13
12
  }
14
13
  export declare const SetupChecks: React.FC<IProps>;
15
14
  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 {};