@myinterview/widget-react 1.1.22-development-2bfa0c3 → 1.1.23-beta-df99642
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/cjs/components/DeviceSelector.d.ts +2 -1
- package/dist/cjs/components/Setup.d.ts +1 -0
- package/dist/cjs/components/SetupChecks.d.ts +1 -0
- package/dist/cjs/components/VideoCamera.d.ts +1 -0
- package/dist/cjs/index.js +861 -386
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/configInterface.d.ts +1 -0
- package/dist/cjs/interfaces/recorderInterface.d.ts +4 -1
- package/dist/cjs/interfaces/widgetInterface.d.ts +2 -0
- package/dist/cjs/utils/debug.utils.d.ts +1 -0
- package/dist/cjs/utils/messages.utils.d.ts +1 -0
- package/dist/esm/components/DeviceSelector.d.ts +2 -1
- package/dist/esm/components/Setup.d.ts +1 -0
- package/dist/esm/components/SetupChecks.d.ts +1 -0
- package/dist/esm/components/VideoCamera.d.ts +1 -0
- package/dist/esm/index.js +861 -386
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/configInterface.d.ts +1 -0
- package/dist/esm/interfaces/recorderInterface.d.ts +4 -1
- package/dist/esm/interfaces/widgetInterface.d.ts +2 -0
- package/dist/esm/utils/debug.utils.d.ts +1 -0
- package/dist/esm/utils/messages.utils.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
|
@@ -21,6 +21,7 @@ interface FacingMode {
|
|
|
21
21
|
exact: string;
|
|
22
22
|
}
|
|
23
23
|
export interface RecorderInterface {
|
|
24
|
+
recordWithoutVideo?: boolean;
|
|
24
25
|
facingMode: FacingMode;
|
|
25
26
|
microphoneRef: ActorRef<DoneInvokeEvent<any>> | null;
|
|
26
27
|
countDownRef: ActorRef<DoneInvokeEvent<any>> | null;
|
|
@@ -43,6 +44,7 @@ export interface RecorderInterface {
|
|
|
43
44
|
recordingTime: number;
|
|
44
45
|
durations: number;
|
|
45
46
|
isMicError: boolean;
|
|
47
|
+
isActivelyStopped: boolean;
|
|
46
48
|
}
|
|
47
49
|
export declare const enum MIME_TYPES {
|
|
48
50
|
WEBM = "video/webm",
|
|
@@ -94,7 +96,8 @@ export declare const enum ACTIONS {
|
|
|
94
96
|
UPDATE_MACHINE_FOR_NEW_QUESTION = "UPDATE_MACHINE_FOR_NEW_QUESTION",
|
|
95
97
|
SET_MEDIA_RECORDER = "SET_MEDIA_RECORDER",
|
|
96
98
|
SET_MIC_ERROR = "SET_MIC_ERROR",
|
|
97
|
-
SET_PERMISSION_LISTENER = "SET_PERMISSION_LISTENER"
|
|
99
|
+
SET_PERMISSION_LISTENER = "SET_PERMISSION_LISTENER",
|
|
100
|
+
SET_ACTIVELY_STOPPED = "SET_ACTIVELY_STOPPED"
|
|
98
101
|
}
|
|
99
102
|
export declare const enum EVENTS {
|
|
100
103
|
SET_MIC_SPEED_DETECTION = "SET_MIC_SPEED_DETECTION",
|
|
@@ -97,6 +97,7 @@ 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",
|
|
100
101
|
SETUP__TEST__MICROPHONE = "testMicrophone",
|
|
101
102
|
SETUP__TEST__MICROPHONE__WAITING = "testMicrophoneWaiting",
|
|
102
103
|
SETUP__TEST__MICROPHONE__ERROR = "testMicrophoneError",
|
|
@@ -202,6 +203,7 @@ export declare const enum SERVICES {
|
|
|
202
203
|
UPDATE_VIDEO_PART_CALL = "updateVideoPartCall"
|
|
203
204
|
}
|
|
204
205
|
export declare const enum GUARDS {
|
|
206
|
+
IS_VIDEO_RECORDING_SKIP = "isVideoRecordingSkip",
|
|
205
207
|
NO_STORAGE = "noStorage",
|
|
206
208
|
NO_RECORDER = "noRecorder",
|
|
207
209
|
IS_THINKING_TIME = "isThinkingTime",
|
|
@@ -5,6 +5,7 @@ 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",
|
|
8
9
|
MEDIA_DEVICE_ERROR = "Media device error",
|
|
9
10
|
NO_SOUND_DETECTED = "No sound detected",
|
|
10
11
|
DEVICE_CHANGED = "Device changed",
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myinterview/widget-react",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.23-beta-df99642",
|
|
4
4
|
"description": "myInterview widget v3",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"semver": "^7.3.5",
|
|
49
49
|
"web-vitals": "^2.1.4",
|
|
50
50
|
"workbox-webpack-plugin": "^6.4.1",
|
|
51
|
-
"xstate": "4.37.
|
|
51
|
+
"xstate": "4.37.2"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"start": "REACT_APP_RELEASE=$npm_package_version REACT_APP_ENV=local HTTPS=true node scripts/start.js",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
91
91
|
"@rollup/plugin-replace": "^5.0.2",
|
|
92
92
|
"@rollup/plugin-typescript": "^8.3.3",
|
|
93
|
-
"@svgr/webpack": "^
|
|
93
|
+
"@svgr/webpack": "^8.0.1",
|
|
94
94
|
"@testing-library/jest-dom": "^5.16.4",
|
|
95
95
|
"@testing-library/react": "^12.1.5 || ^13.4.0",
|
|
96
96
|
"@testing-library/user-event": "^13.5.0",
|