@myinterview/widget-react 1.0.60-experimental → 1.0.61-beta-79d0180-0aad181-e1b2d71-e40bd05-654ede1

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,6 +71,7 @@ export interface InitialState {
71
71
  error: IVideoError | null;
72
72
  failedRecordingAttempts: number;
73
73
  failedRecordingMessage: IVideoCorruptedMessagesKey;
74
+ isResumed: boolean;
74
75
  }
75
76
  export interface IWidgetMachineProps {
76
77
  widgetMachine: State<InitialState, DoneInvokeEvent<any>, any, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myinterview/widget-react",
3
- "version": "1.0.60-experimental",
3
+ "version": "1.0.61-beta-79d0180-0aad181-e1b2d71-e40bd05-654ede1",
4
4
  "description": "myInterview widget v3",
5
5
  "module": "dist/esm/index.js",
6
6
  "main": "dist/cjs/index.js",
@@ -51,13 +51,13 @@
51
51
  "xstate": "^4.33.2"
52
52
  },
53
53
  "scripts": {
54
- "start": "REACT_APP_ENV=local HTTPS=true node scripts/start.js",
55
- "start-prod": "REACT_APP_ENV=prod HTTPS=true node scripts/start.js",
56
- "start-staging": "REACT_APP_ENV=staging HTTPS=true node scripts/start.js",
54
+ "start": "REACT_APP_RELEASE=$npm_package_version REACT_APP_ENV=local HTTPS=true node scripts/start.js",
55
+ "start-prod": "REACT_APP_RELEASE=$npm_package_version REACT_APP_ENV=prod HTTPS=true node scripts/start.js",
56
+ "start-staging": "REACT_APP_RELEASE=$npm_package_version REACT_APP_ENV=staging HTTPS=true node scripts/start.js",
57
57
  "build": "node scripts/build.js",
58
- "publish-prod": "REACT_APP_ENV=prod rollup -c && npm publish",
59
- "publish-staging": "REACT_APP_ENV=staging rollup -c && npm publish --tag beta",
60
- "publish-experimental": "REACT_APP_ENV=staging rollup -c && npm publish --tag experimental",
58
+ "publish-prod": "REACT_APP_RELEASE=$npm_package_version REACT_APP_ENV=prod rollup -c && npm publish",
59
+ "publish-staging": "REACT_APP_RELEASE=$npm_package_version REACT_APP_ENV=staging rollup -c && npm publish --tag beta",
60
+ "publish-experimental": "REACT_APP_RELEASE=$npm_package_version REACT_APP_ENV=staging rollup -c && npm publish --tag experimental",
61
61
  "test": "node scripts/test.js"
62
62
  },
63
63
  "eslintConfig": {