@eka-care/ekascribe-ts-sdk 2.0.50 → 2.0.52
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/README.md +4 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +5144 -5119
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -180,7 +180,10 @@ Initialize a transaction before starting recording. This sets up the session wit
|
|
|
180
180
|
const response = await ekascribe.initTransaction({
|
|
181
181
|
mode: 'consultation',
|
|
182
182
|
input_language: ['en-IN'],
|
|
183
|
-
output_format_template: [{
|
|
183
|
+
output_format_template: [{
|
|
184
|
+
template_id: 'your_template_id',
|
|
185
|
+
codification_needed?: true // optional
|
|
186
|
+
}],
|
|
184
187
|
txn_id: 'unique-transaction-id',
|
|
185
188
|
transfer: 'vaded' | 'non-vaded',
|
|
186
189
|
model_type: 'pro' | 'lite',
|
package/dist/index.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ declare class EkaScribe {
|
|
|
32
32
|
access_token: string;
|
|
33
33
|
}): void;
|
|
34
34
|
initTransaction(request: TPostTransactionInitRequest, sharedWorkerUrl?: string): Promise<TStartRecordingResponse>;
|
|
35
|
-
startRecording(): Promise<TStartRecordingResponse>;
|
|
35
|
+
startRecording(microphoneID?: string): Promise<TStartRecordingResponse>;
|
|
36
36
|
reinitializeVad(): void;
|
|
37
37
|
destroyVad(): void;
|
|
38
38
|
pauseVad(): void;
|