@eka-care/ekascribe-ts-sdk 3.0.7 → 3.0.9

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +9 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -362,6 +362,12 @@ declare type TDoctorHeaderFooterInfo = {
362
362
  show_signature: boolean | null;
363
363
  };
364
364
 
365
+ export declare type TDocumentError = {
366
+ type: null | string;
367
+ code: string;
368
+ msg: string;
369
+ };
370
+
365
371
  export declare enum TEMPLATE_ID {
366
372
  EKA_EMR_TEMPLATE = "eka_emr_template",
367
373
  CLINICAL_NOTE_TEMPLATE = "clinical_notes_template",
@@ -947,13 +953,14 @@ export declare type TSessionDocument = {
947
953
  document_type: 'notes' | 'context' | 'transcript' | 'integration';
948
954
  type: string;
949
955
  status: string;
950
- errors: unknown[];
951
- warnings: unknown[];
956
+ errors: TDocumentError[];
957
+ warnings: TDocumentError[];
952
958
  publish: Record<string, unknown>;
953
959
  created_at: number;
954
960
  presigned_url: string | null;
955
961
  presigned_url_expires_at: number | null;
956
962
  vault_doc_id: string | null;
963
+ lang?: string;
957
964
  };
958
965
 
959
966
  export declare type TSessionHistoryData = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eka-care/ekascribe-ts-sdk",
3
- "version": "3.0.7",
3
+ "version": "3.0.9",
4
4
  "description": "EkaScribe TypeScript SDK - Modern ES2020 build",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",
@@ -37,7 +37,7 @@
37
37
  "README.md"
38
38
  ],
39
39
  "dependencies": {
40
- "med-scribe-alliance-ts-sdk": "2.0.15"
40
+ "med-scribe-alliance-ts-sdk": "2.0.16"
41
41
  },
42
42
  "devDependencies": {
43
43
  "vite-bundle-analyzer": "^1.3.6"