@100mslive/hms-video-store 0.2.87-alpha.2 → 0.2.87

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.
@@ -39,7 +39,7 @@ export declare const selectLocalMediaSettings: (store: HMSStore) => import("../s
39
39
  * }
40
40
  * ```
41
41
  */
42
- export declare const selectDevices: (store: HMSStore) => import("../../../../hms-video-web/dist/interfaces/HMSDeviceManager").DeviceMap;
42
+ export declare const selectDevices: (store: HMSStore) => import("@100mslive/hms-video/dist/interfaces/HMSDeviceManager").DeviceMap;
43
43
  export declare const selectSpeakers: (store: HMSStore) => Record<string, import("../schema").HMSSpeaker>;
44
44
  /**
45
45
  * Select a boolean flag denoting whether you've joined a room.
@@ -181,8 +181,8 @@ export declare const selectPermissions: import("reselect").OutputSelector<HMSSto
181
181
  rtmp: boolean;
182
182
  recording: boolean;
183
183
  } | undefined>;
184
- export declare const selectRecordingState: import("reselect").OutputSelector<HMSStore, import("../../../../hms-video-web/dist/interfaces/room").HMSRecording, (res: HMSRoom) => import("../../../../hms-video-web/dist/interfaces/room").HMSRecording>;
185
- export declare const selectRTMPState: import("reselect").OutputSelector<HMSStore, import("../../../../hms-video-web/dist/interfaces/room").HMSRTMP, (res: HMSRoom) => import("../../../../hms-video-web/dist/interfaces/room").HMSRTMP>;
186
- export declare const selectHLSState: import("reselect").OutputSelector<HMSStore, import("../../../../hms-video-web/dist/interfaces/room").HMSHLS, (res: HMSRoom) => import("../../../../hms-video-web/dist/interfaces/room").HMSHLS>;
184
+ export declare const selectRecordingState: import("reselect").OutputSelector<HMSStore, import("@100mslive/hms-video/dist/interfaces/room").HMSRecording, (res: HMSRoom) => import("@100mslive/hms-video/dist/interfaces/room").HMSRecording>;
185
+ export declare const selectRTMPState: import("reselect").OutputSelector<HMSStore, import("@100mslive/hms-video/dist/interfaces/room").HMSRTMP, (res: HMSRoom) => import("@100mslive/hms-video/dist/interfaces/room").HMSRTMP>;
186
+ export declare const selectHLSState: import("reselect").OutputSelector<HMSStore, import("@100mslive/hms-video/dist/interfaces/room").HMSHLS, (res: HMSRoom) => import("@100mslive/hms-video/dist/interfaces/room").HMSHLS>;
187
187
  export declare const selectSessionId: import("reselect").OutputSelector<HMSStore, string, (res: HMSRoom) => string>;
188
188
  export declare const selectRoomStartTime: import("reselect").OutputSelector<HMSStore, Date | undefined, (res: HMSRoom) => Date | undefined>;
@@ -100,7 +100,7 @@ export declare const selectScreenshareAudioVolumeByPeerID: (id?: string | undefi
100
100
  /**
101
101
  * Select the current simulcast layer of a track given a track ID.
102
102
  */
103
- export declare const selectSimulcastLayerByTrack: (id?: string | undefined) => import("./common").StoreSelector<HMSStore, import("../../../../hms-video-web/dist").HMSSimulcastLayer | undefined>;
103
+ export declare const selectSimulcastLayerByTrack: (id?: string | undefined) => import("./common").StoreSelector<HMSStore, import("@100mslive/hms-video").HMSSimulcastLayer | undefined>;
104
104
  export declare const selectBroadcastMessages: import("reselect").OutputSelector<HMSStore, import("../schema").HMSMessage[], (res: import("../schema").HMSMessage[]) => import("../schema").HMSMessage[]>;
105
105
  export declare const selectBroadcastMessagesUnreadCount: import("reselect").OutputSelector<HMSStore, number, (res: import("../schema").HMSMessage[]) => number>;
106
106
  export declare const selectMessagesByPeerID: (id?: string | undefined) => import("./common").StoreSelector<HMSStore, import("../schema").HMSMessage[] | undefined>;
@@ -1,3 +1,3 @@
1
- export declare const selectRoleByRoleName: (roleName: string) => import("reselect").OutputSelector<import("../schema").HMSStore, import("../../../../hms-video-web/dist/interfaces/role").HMSRole, (res: Record<string, import("../../../../hms-video-web/dist/interfaces/role").HMSRole>) => import("../../../../hms-video-web/dist/interfaces/role").HMSRole>;
1
+ export declare const selectRoleByRoleName: (roleName: string) => import("reselect").OutputSelector<import("../schema").HMSStore, import("@100mslive/hms-video/dist/interfaces/role").HMSRole, (res: Record<string, import("@100mslive/hms-video/dist/interfaces/role").HMSRole>) => import("@100mslive/hms-video/dist/interfaces/role").HMSRole>;
2
2
  export declare const selectIsLocalVideoPluginPresent: (pluginName: string) => import("reselect").OutputSelector<import("../schema").HMSStore, boolean, (res: string[]) => boolean>;
3
3
  export declare const selectIsLocalAudioPluginPresent: (pluginName: string) => import("reselect").OutputSelector<import("../schema").HMSStore, boolean, (res: string[]) => boolean>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.87-alpha.2",
2
+ "version": "0.2.87",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.js",
@@ -17,7 +17,7 @@
17
17
  "build:only": "node ../../scripts/build",
18
18
  "build": "yarn build:only && yarn types:build",
19
19
  "types": "tsc -w",
20
- "types:build": "tsc -p tsconfig.build.json && tsconfig-replace-paths -p tsconfig.build.json",
20
+ "types:build": "tsc -p tsconfig.build.json",
21
21
  "format": "prettier --write src/**/*.ts",
22
22
  "test": "jest --maxWorkers=1",
23
23
  "test:watch": "jest --watch",
@@ -33,7 +33,7 @@
33
33
  "author": "100ms",
34
34
  "sideEffects": false,
35
35
  "dependencies": {
36
- "@100mslive/hms-video": "0.1.41-alpha.1",
36
+ "@100mslive/hms-video": "0.1.41",
37
37
  "eventemitter2": "^6.4.5",
38
38
  "immer": "^9.0.6",
39
39
  "reselect": "4.0.0",
@@ -41,7 +41,6 @@
41
41
  },
42
42
  "devDependencies": {
43
43
  "ts-node": "^10.4.0",
44
- "tsconfig-replace-paths": "^0.0.11",
45
44
  "tslib": "^2.2.0"
46
45
  },
47
46
  "description": "This is an addon to the core sdk provided by 100ms. It abstracts away the intricacies of data management and provides a flux based reactive data store where data flows in only one direction.",
@@ -59,5 +58,5 @@
59
58
  "url": "https://github.com/100mslive/hms-video-store/issues"
60
59
  },
61
60
  "homepage": "https://github.com/100mslive/hms-video-store#readme",
62
- "gitHead": "29b9edb15692b1d6e4123c9572927bd7dfdf97e7"
61
+ "gitHead": "31dfb42dc97333578be23472614d3aa142a7ab3b"
63
62
  }