@videosdk.live/react-sdk 0.1.89 → 0.1.90
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.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/types/index.d.ts +14 -2
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -1033,12 +1033,24 @@ export function useTranscription({
|
|
|
1033
1033
|
type: 'realtime';
|
|
1034
1034
|
}) => void;
|
|
1035
1035
|
}): {
|
|
1036
|
+
/**
|
|
1037
|
+
* @description This method is used to start the meeting transcription
|
|
1038
|
+
* @param config.webhookUrl? Webhook URL which will be called by VideoSDK when the transcription state gets changed
|
|
1039
|
+
* @param config.modelConfig? modelConfig if any, which will be used while doing transcription
|
|
1040
|
+
* @param config.summary.enabled Enables or disables summary generation from realtime transcriptions.
|
|
1041
|
+
* @param config.summary.prompt Guides summary generation (optional).
|
|
1042
|
+
*/
|
|
1036
1043
|
startTranscription: ({
|
|
1037
1044
|
webhookUrl,
|
|
1038
|
-
modelConfig
|
|
1045
|
+
modelConfig,
|
|
1046
|
+
summary
|
|
1039
1047
|
}: {
|
|
1040
1048
|
webhookUrl?: string;
|
|
1041
|
-
modelConfig?:
|
|
1049
|
+
modelConfig?: object;
|
|
1050
|
+
summary?: {
|
|
1051
|
+
enabled: boolean;
|
|
1052
|
+
prompt?: string;
|
|
1053
|
+
};
|
|
1042
1054
|
}) => void;
|
|
1043
1055
|
stopTranscription: () => void;
|
|
1044
1056
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@videosdk.live/react-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.90",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.modern.js",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@videosdk.live/js-sdk": "0.0.
|
|
76
|
+
"@videosdk.live/js-sdk": "0.0.86",
|
|
77
77
|
"events": "^3.3.0"
|
|
78
78
|
}
|
|
79
79
|
}
|