@eka-care/ekascribe-ts-sdk 1.5.57 → 1.5.58
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/constants/types.d.ts +10 -5
- package/package.json +1 -1
|
@@ -346,11 +346,16 @@ export interface TGetV1TemplateSectionsResponse {
|
|
|
346
346
|
};
|
|
347
347
|
}
|
|
348
348
|
export type TPatchVoiceApiV2ConfigRequest = {
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
349
|
+
request_type: string;
|
|
350
|
+
data: {
|
|
351
|
+
auto_download?: boolean;
|
|
352
|
+
input_languages?: TGetConfigItem[];
|
|
353
|
+
consultation_mode?: string;
|
|
354
|
+
model_type?: string;
|
|
355
|
+
output_format_template?: TGetConfigItem[];
|
|
356
|
+
my_templates?: string[];
|
|
357
|
+
scribe_enabled?: boolean;
|
|
358
|
+
};
|
|
354
359
|
};
|
|
355
360
|
export interface TPatchVoiceApiV2ConfigResponse extends TPatchVoiceApiV2ConfigRequest {
|
|
356
361
|
msg: string;
|