@100mslive/hms-video-store 0.10.13-alpha.0 → 0.10.13

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.10.13-alpha.0",
2
+ "version": "0.10.13",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.js",
@@ -41,7 +41,7 @@
41
41
  "author": "100ms",
42
42
  "sideEffects": false,
43
43
  "dependencies": {
44
- "@100mslive/hms-video": "0.9.13-alpha.0",
44
+ "@100mslive/hms-video": "0.9.13",
45
45
  "eventemitter2": "^6.4.7",
46
46
  "immer": "^9.0.6",
47
47
  "reselect": "4.0.0",
@@ -66,5 +66,5 @@
66
66
  "url": "https://github.com/100mslive/hms-video-store/issues"
67
67
  },
68
68
  "homepage": "https://github.com/100mslive/hms-video-store#readme",
69
- "gitHead": "149d1cf9dd51d27800097d81057207e52a046797"
69
+ "gitHead": "a545bf04356bdc9c665e184e2b3413a3d14c2f6c"
70
70
  }
@@ -44,6 +44,7 @@ export interface HMSStore<T extends HMSGenericTypes = { sessionStore: Record<str
44
44
  errors: HMSException[]; // for the convenience of debugging and seeing any error in devtools
45
45
  sessionStore: T['sessionStore'];
46
46
  polls: Record<string, HMSPoll>;
47
+ /** @internal */
47
48
  hideLocalPeer: boolean;
48
49
  }
49
50