@tellescope/video-chat 0.0.21 → 0.0.25
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/lib/cjs/video.js +1 -1
- package/lib/cjs/video.js.map +1 -1
- package/lib/cjs/video.native.js +1 -1
- package/lib/cjs/video.native.js.map +1 -1
- package/lib/esm/video.js +1 -1
- package/lib/esm/video.js.map +1 -1
- package/lib/esm/video.native.js +1 -1
- package/lib/esm/video.native.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/video.native.tsx +1 -1
- package/src/video.tsx +1 -1
- package/lib/esm/shared.d.ts +0 -1
- package/lib/esm/shared.d.ts.map +0 -1
- package/lib/esm/shared.js +0 -2
- package/lib/esm/shared.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tellescope/video-chat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.25",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/cjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"@fontsource/roboto": "^4.5.1",
|
|
34
34
|
"@mui/icons-material": "^5.0.1",
|
|
35
35
|
"@mui/material": "^5.0.2",
|
|
36
|
-
"@tellescope/constants": "^0.0.
|
|
37
|
-
"@tellescope/react-components": "^0.0.
|
|
38
|
-
"@tellescope/sdk": "^0.0.
|
|
39
|
-
"@tellescope/types-client": "^0.0.
|
|
40
|
-
"@tellescope/types-models": "^0.0.
|
|
41
|
-
"@tellescope/types-utilities": "^0.0.
|
|
42
|
-
"@tellescope/utilities": "^0.0.
|
|
36
|
+
"@tellescope/constants": "^0.0.25",
|
|
37
|
+
"@tellescope/react-components": "^0.0.25",
|
|
38
|
+
"@tellescope/sdk": "^0.0.25",
|
|
39
|
+
"@tellescope/types-client": "^0.0.25",
|
|
40
|
+
"@tellescope/types-models": "^0.0.25",
|
|
41
|
+
"@tellescope/types-utilities": "^0.0.25",
|
|
42
|
+
"@tellescope/utilities": "^0.0.25",
|
|
43
43
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
44
44
|
"@typescript-eslint/parser": "^4.33.0",
|
|
45
45
|
"amazon-chime-sdk-component-library-react": "^2.12.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"react": "^17.0.2",
|
|
55
55
|
"react-dom": "^17.0.2"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "79b392c815e70c22e96ab329f5e877bb140a7e90",
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
}
|
package/src/video.native.tsx
CHANGED
|
@@ -197,7 +197,7 @@ export const useStartVideoCall = (): StartVideoCallReturnType => {
|
|
|
197
197
|
session.api.meetings.add_attendees_to_meeting({ id: meeting.Meeting.ExternalMeetingId, attendees: initialAttendees })
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
-
NativeFunction.startMeeting(meeting.Meeting, host.Attendee)
|
|
200
|
+
NativeFunction.startMeeting(meeting.Meeting, host.info.Attendee)
|
|
201
201
|
|
|
202
202
|
setMeeting(meeting.Meeting)
|
|
203
203
|
setIsHost(true)
|
package/src/video.tsx
CHANGED
|
@@ -101,7 +101,7 @@ export const useStartVideoCall = () => {
|
|
|
101
101
|
try {
|
|
102
102
|
const { meeting, host } = await session.api.meetings.start_meeting()
|
|
103
103
|
|
|
104
|
-
await meetingManager.join({ meetingInfo: meeting, attendeeInfo: host }); // Use the join API to create a meeting session
|
|
104
|
+
await meetingManager.join({ meetingInfo: meeting, attendeeInfo: host.info }); // Use the join API to create a meeting session
|
|
105
105
|
await meetingManager.start(); // At this point you can let users setup their devices, or start the session immediately
|
|
106
106
|
|
|
107
107
|
if (initialAttendees) {
|
package/lib/esm/shared.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=shared.d.ts.map
|
package/lib/esm/shared.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../src/shared.ts"],"names":[],"mappings":""}
|
package/lib/esm/shared.js
DELETED
package/lib/esm/shared.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shared.js","sourceRoot":"","sources":["../../src/shared.ts"],"names":[],"mappings":""}
|