@eka-care/ekascribe-ts-sdk 1.5.53 → 1.5.55
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 +15 -8
- package/package.json +1 -1
|
@@ -9,31 +9,37 @@ export type TGetConfigV2Response = {
|
|
|
9
9
|
supported_output_formats: number;
|
|
10
10
|
consultation_modes: number;
|
|
11
11
|
};
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
settings: TConfigSettings;
|
|
13
|
+
my_templates: [
|
|
14
|
+
{
|
|
15
|
+
id: string;
|
|
16
|
+
name: string;
|
|
17
|
+
}
|
|
18
|
+
];
|
|
16
19
|
user_details: {
|
|
20
|
+
uuid: string;
|
|
17
21
|
fn: string;
|
|
18
22
|
mn: string;
|
|
19
23
|
ln: string;
|
|
20
24
|
dob: string;
|
|
21
25
|
gen: 'F' | 'M' | 'O';
|
|
22
26
|
s: string;
|
|
27
|
+
wid: string;
|
|
28
|
+
'b-id': string;
|
|
23
29
|
is_paid_doc: boolean;
|
|
24
|
-
uuid: string;
|
|
25
30
|
};
|
|
26
|
-
|
|
31
|
+
selected_preferences?: TSelectedPreferences;
|
|
27
32
|
};
|
|
28
33
|
message?: string;
|
|
29
34
|
code?: number;
|
|
30
35
|
};
|
|
31
36
|
export type TSelectedPreferences = {
|
|
32
|
-
|
|
33
|
-
|
|
37
|
+
input_languages?: TGetConfigItem[];
|
|
38
|
+
output_format_template?: string[];
|
|
34
39
|
consultation_mode?: string;
|
|
35
40
|
use_audio_cues?: boolean;
|
|
36
41
|
auto_download?: boolean;
|
|
42
|
+
model_type?: string;
|
|
37
43
|
};
|
|
38
44
|
export type TGetConfigItem = {
|
|
39
45
|
id: string;
|
|
@@ -344,6 +350,7 @@ export type TPatchVoiceApiV2ConfigRequest = {
|
|
|
344
350
|
default_languages?: string[];
|
|
345
351
|
my_templates?: string[];
|
|
346
352
|
scribe_enabled?: boolean;
|
|
353
|
+
request_type?: string;
|
|
347
354
|
};
|
|
348
355
|
export interface TPatchVoiceApiV2ConfigResponse extends TPatchVoiceApiV2ConfigRequest {
|
|
349
356
|
msg: string;
|