@eka-care/ekascribe-ts-sdk 1.4.29 → 1.4.31
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.
|
@@ -13,6 +13,14 @@ export type TGetConfigV2Response = {
|
|
|
13
13
|
settings?: TConfigSettings;
|
|
14
14
|
model?: string;
|
|
15
15
|
my_templates?: string[];
|
|
16
|
+
user_details: {
|
|
17
|
+
fn: string;
|
|
18
|
+
mn: string;
|
|
19
|
+
ln: string;
|
|
20
|
+
dob: string;
|
|
21
|
+
gen: 'F' | 'M' | 'O';
|
|
22
|
+
s: string;
|
|
23
|
+
};
|
|
16
24
|
wid: string;
|
|
17
25
|
};
|
|
18
26
|
message?: string;
|
|
@@ -14,7 +14,7 @@ const startVoiceRecording = async () => {
|
|
|
14
14
|
message: 'Microphone access is required to start recording. Please recheck access.',
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
-
await vadInstance?.initVad();
|
|
17
|
+
// await vadInstance?.initVad();
|
|
18
18
|
console.log(vadInstance, 'vad in start recording');
|
|
19
19
|
const micVad = vadInstance?.getMicVad();
|
|
20
20
|
console.log(micVad, 'mic vad in start recording');
|