@eka-care/ekascribe-ts-sdk 2.0.17 → 2.0.19
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.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -222,6 +222,11 @@ declare type TGetConfigV2Response = {
|
|
|
222
222
|
is_paid_doc: boolean;
|
|
223
223
|
};
|
|
224
224
|
selected_preferences?: TSelectedPreferences;
|
|
225
|
+
clinic_name?: string;
|
|
226
|
+
specialization?: string;
|
|
227
|
+
emr?: string;
|
|
228
|
+
microphone_permission_check?: boolean;
|
|
229
|
+
consult_language?: string[];
|
|
225
230
|
};
|
|
226
231
|
message?: string;
|
|
227
232
|
code?: number;
|
|
@@ -328,7 +333,7 @@ declare type TPatchVoiceApiV2ConfigRequest = {
|
|
|
328
333
|
specialization?: string;
|
|
329
334
|
emr?: string;
|
|
330
335
|
microphone_permission_check?: boolean;
|
|
331
|
-
consult_language?: string;
|
|
336
|
+
consult_language?: string[];
|
|
332
337
|
};
|
|
333
338
|
};
|
|
334
339
|
|