@videosdk.live/react-sdk
Advanced tools
Comparing version 0.1.91 to 0.1.92
@@ -1032,3 +1032,3 @@ // Type definitions for @videosdk.live/react-sdk 0.1 | ||
text: string; | ||
timestamp: string; | ||
timestamp: number; | ||
type: 'realtime'; | ||
@@ -1035,0 +1035,0 @@ }) => void; |
@@ -164,9 +164,14 @@ export class Meeting { | ||
* | ||
* @param config Config can be used to configure the HLS stream | ||
* @param config.layout.type These represents the layout which is to used in the HLS | ||
* @param config.layout.priority These defines the priority of participants to be considered while composing HLS | ||
* @param config.layout.gridSize These defines the maximum number of participants in the grid | ||
* @param config.theme These defines the color theme of the HLS livestream | ||
* @param config.mode These defines the mode of the HLS livestream as only audio or vidoe and audio both | ||
* @param config.quality These defines the quality of the HLS livestream | ||
* @param config Config can be used to configure the Recording | ||
* @param config.layout.type This represents the layout which is to used in the Recording | ||
* @param config.layout.priority This defines the priority of participants to be considered while composing Recording | ||
* @param config.layout.gridSize This defines the maximum number of participants in the grid | ||
* @param config.theme This defines the color theme of the Recording | ||
* @param config.mode This defines the mode of the Recording as only audio or vidoe and audio both | ||
* @param config.quality This defines the quality of the Recording | ||
* | ||
* @param transcription Configuration of post-meeting transcription and summary generation. | ||
* @param transcription.enabled Enables or disables post transcription. | ||
* @param transcription.summary.enabled Enables or disables summary generation from post transcriptions. | ||
* @param transcription.summary.prompt Guides summary generation (optional). | ||
*/ | ||
@@ -185,2 +190,9 @@ startRecording( | ||
quality: 'low' | 'med' | 'high'; | ||
}, | ||
transcription?: { | ||
enabled: boolean; | ||
summary?: { | ||
enabled: boolean; | ||
prompt?: string; | ||
}; | ||
} | ||
@@ -195,9 +207,9 @@ ): void; | ||
/** | ||
* These method is used to start the meeting RTMP to provided output | ||
* @param outputs These defines the array of outputs to which the RTMP has to be broadcasted | ||
* @param config Config can be used to configure the HLS stream | ||
* @param config.layout.type These represents the layout which is to used in the HLS | ||
* @param config.layout.priority These defines the priority of participants to be considered while composing HLS | ||
* @param config.layout.gridSize These defines the maximum number of participants in the grid | ||
* @param config.theme These defines the color theme of the RTMP livestream | ||
* This method is used to start the meeting RTMP livestream to provided output | ||
* @param outputs This defines the array of outputs to which the RTMP livestream has to be broadcasted | ||
* @param config Config can be used to configure the RTMP livestream | ||
* @param config.layout.type This represents the layout which is to used in the RTMP livestream | ||
* @param config.layout.priority This defines the priority of participants to be considered while composing RTMP livestream | ||
* @param config.layout.gridSize This defines the maximum number of participants in the grid | ||
* @param config.theme This defines the color theme of the RTMP livestream | ||
*/ | ||
@@ -220,3 +232,3 @@ startLivestream( | ||
/** | ||
* @description This method is used to stop the meeting livestream | ||
* @description This method is used to stop the meeting RTMP livestream | ||
*/ | ||
@@ -226,10 +238,15 @@ stopLivestream(): void; | ||
/** | ||
* These method is used to start the meeting HLS | ||
* This method is used to start the meeting HLS | ||
* @param config Config can be used to configure the HLS stream | ||
* @param config.layout.type These represents the layout which is to used in the HLS | ||
* @param config.layout.priority These defines the priority of participants to be considered while composing HLS | ||
* @param config.layout.gridSize These defines the maximum number of participants in the grid | ||
* @param config.theme These defines the color theme of the HLS livestream | ||
* @param config.mode These defines the mode of the HLS livestream as only audio or vidoe and audio both | ||
* @param config.quality These defines the quality of the HLS livestream | ||
* @param config.layout.type This represents the layout which is to used in the HLS | ||
* @param config.layout.priority This defines the priority of participants to be considered while composing HLS | ||
* @param config.layout.gridSize This defines the maximum number of participants in the grid | ||
* @param config.theme This defines the color theme of the HLS livestream | ||
* @param config.mode This defines the mode of the HLS livestream as only audio or vidoe and audio both | ||
* @param config.quality This defines the quality of the HLS livestream | ||
* | ||
* @param transcription Configuration of post-meeting transcription and summary generation. | ||
* @param transcription.enabled Enables or disables post transcription. | ||
* @param transcription.summary.enabled Enables or disables summary generation from post transcriptions. | ||
* @param transcription.summary.prompt Guides summary generation (optional). | ||
*/ | ||
@@ -245,2 +262,9 @@ startHls(config?: { | ||
quality: 'low' | 'med' | 'high'; | ||
transcription?: { | ||
enabled: boolean; | ||
summary?: { | ||
enabled: boolean; | ||
prompt?: string; | ||
}; | ||
}; | ||
}): Promise<void>; | ||
@@ -247,0 +271,0 @@ |
{ | ||
"name": "@videosdk.live/react-sdk", | ||
"version": "0.1.91", | ||
"version": "0.1.92", | ||
"license": "ISC", | ||
@@ -10,7 +10,7 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"build": "microbundle-crl --no-compress --format modern,cjs && yarn copyTypesFolder && npm publish", | ||
"build": "microbundle-crl --no-compress --format modern,cjs && yarn copyTypesFolder", | ||
"copyTypesFolder": "cp -a ./src/types/ ./dist/types", | ||
"prettier": "prettier --write 'src/**/*.js'", | ||
"lint": "eslint 'src/**/*.js'" | ||
}, | ||
}, | ||
"peerDependencies": { | ||
@@ -77,5 +77,5 @@ "react": "^16.13.1 || ^17 || ^18" | ||
"dependencies": { | ||
"@videosdk.live/js-sdk": "0.0.87", | ||
"@videosdk.live/js-sdk": "0.0.88", | ||
"events": "^3.3.0" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
488417
5459
+ Added@videosdk.live/js-sdk@0.0.88(transitive)
- Removed@videosdk.live/js-sdk@0.0.87(transitive)
Updated@videosdk.live/js-sdk@0.0.88