@whereby.com/core 0.34.0 → 0.35.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/index.cjs +3 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.mjs +3 -2
- package/dist/legacy-esm.js +3 -2
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -75,7 +75,7 @@ const createReactor = (selectors, callback) => {
|
|
|
75
75
|
});
|
|
76
76
|
};
|
|
77
77
|
|
|
78
|
-
const coreVersion = "0.
|
|
78
|
+
const coreVersion = "0.35.0";
|
|
79
79
|
|
|
80
80
|
const initialState = {
|
|
81
81
|
isNodeSdk: false,
|
|
@@ -1915,7 +1915,8 @@ const doConnectRtc = createAppThunk(() => (dispatch, getState) => {
|
|
|
1915
1915
|
sfuServerOverrideHost: undefined,
|
|
1916
1916
|
turnServerOverrideHost: undefined,
|
|
1917
1917
|
useOnlyTURN: undefined,
|
|
1918
|
-
|
|
1918
|
+
p2pVp9On: true,
|
|
1919
|
+
sfuVp9On: false,
|
|
1919
1920
|
h264On: false,
|
|
1920
1921
|
simulcastScreenshareOn: false,
|
|
1921
1922
|
},
|
package/dist/index.d.cts
CHANGED
|
@@ -1815,7 +1815,7 @@ declare const doSwitchLocalStream: _reduxjs_toolkit.AsyncThunk<{
|
|
|
1815
1815
|
declare const doStartLocalMedia: _reduxjs_toolkit.AsyncThunk<{
|
|
1816
1816
|
stream: MediaStream;
|
|
1817
1817
|
onDeviceChange: DebouncedFunction;
|
|
1818
|
-
},
|
|
1818
|
+
}, MediaStream | LocalMediaOptions, ThunkConfig>;
|
|
1819
1819
|
declare const doStopLocalMedia: (args: void) => AppThunk;
|
|
1820
1820
|
declare const selectBusyDeviceIds: (state: RootState) => string[];
|
|
1821
1821
|
declare const selectCameraDeviceError: (state: RootState) => unknown;
|
package/dist/index.mjs
CHANGED
|
@@ -73,7 +73,7 @@ const createReactor = (selectors, callback) => {
|
|
|
73
73
|
});
|
|
74
74
|
};
|
|
75
75
|
|
|
76
|
-
const coreVersion = "0.
|
|
76
|
+
const coreVersion = "0.35.0";
|
|
77
77
|
|
|
78
78
|
const initialState = {
|
|
79
79
|
isNodeSdk: false,
|
|
@@ -1913,7 +1913,8 @@ const doConnectRtc = createAppThunk(() => (dispatch, getState) => {
|
|
|
1913
1913
|
sfuServerOverrideHost: undefined,
|
|
1914
1914
|
turnServerOverrideHost: undefined,
|
|
1915
1915
|
useOnlyTURN: undefined,
|
|
1916
|
-
|
|
1916
|
+
p2pVp9On: true,
|
|
1917
|
+
sfuVp9On: false,
|
|
1917
1918
|
h264On: false,
|
|
1918
1919
|
simulcastScreenshareOn: false,
|
|
1919
1920
|
},
|
package/dist/legacy-esm.js
CHANGED
|
@@ -73,7 +73,7 @@ const createReactor = (selectors, callback) => {
|
|
|
73
73
|
});
|
|
74
74
|
};
|
|
75
75
|
|
|
76
|
-
const coreVersion = "0.
|
|
76
|
+
const coreVersion = "0.35.0";
|
|
77
77
|
|
|
78
78
|
const initialState = {
|
|
79
79
|
isNodeSdk: false,
|
|
@@ -1913,7 +1913,8 @@ const doConnectRtc = createAppThunk(() => (dispatch, getState) => {
|
|
|
1913
1913
|
sfuServerOverrideHost: undefined,
|
|
1914
1914
|
turnServerOverrideHost: undefined,
|
|
1915
1915
|
useOnlyTURN: undefined,
|
|
1916
|
-
|
|
1916
|
+
p2pVp9On: true,
|
|
1917
|
+
sfuVp9On: false,
|
|
1917
1918
|
h264On: false,
|
|
1918
1919
|
simulcastScreenshareOn: false,
|
|
1919
1920
|
},
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@whereby.com/core",
|
|
3
3
|
"description": "Core library for whereby.com sdk",
|
|
4
4
|
"author": "Whereby AS",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.35.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"@whereby.com/eslint-config": "0.1.0",
|
|
46
46
|
"@whereby.com/jest-config": "0.1.0",
|
|
47
47
|
"@whereby.com/prettier-config": "0.1.0",
|
|
48
|
-
"@whereby.com/
|
|
49
|
-
"@whereby.com/
|
|
48
|
+
"@whereby.com/rollup-config": "0.1.0",
|
|
49
|
+
"@whereby.com/tsconfig": "0.1.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@reduxjs/toolkit": "^2.2.3",
|
|
53
|
-
"@whereby.com/media": "1.
|
|
53
|
+
"@whereby.com/media": "1.31.0",
|
|
54
54
|
"axios": "^1.2.3",
|
|
55
55
|
"btoa": "^1.2.1",
|
|
56
56
|
"events": "^3.3.0"
|