@clickcns/vmedic-react 0.0.18 → 0.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.
@@ -1,6 +1,6 @@
1
1
  import { UserDto } from './auth';
2
2
  import { DiarizationMessage, LlmRoom, MedicalSummaryResponse } from './llm';
3
- import { AudioFile, Patient } from './speech';
3
+ import { AudioFile, Patient, PromptResult } from './speech';
4
4
  export interface RecordsResponse {
5
5
  id: string;
6
6
  chart: string;
@@ -13,6 +13,7 @@ export interface RecordsResponse {
13
13
  llmRooms?: LlmRoom[];
14
14
  audioFiles?: AudioFile[];
15
15
  recordData?: Partial<RecordData> | null;
16
+ promptResults?: PromptResult[];
16
17
  }
17
18
  export interface RecordData {
18
19
  id: string;
@@ -1,6 +1,6 @@
1
1
  import { UserDto } from './auth';
2
2
  import { DiarizationMessage, LlmRoom, MedicalSummaryResponse } from './llm';
3
- import { AudioFile, Patient } from './speech';
3
+ import { AudioFile, Patient, PromptResult } from './speech';
4
4
  export interface RecordsResponse {
5
5
  id: string;
6
6
  chart: string;
@@ -13,6 +13,7 @@ export interface RecordsResponse {
13
13
  llmRooms?: LlmRoom[];
14
14
  audioFiles?: AudioFile[];
15
15
  recordData?: Partial<RecordData> | null;
16
+ promptResults?: PromptResult[];
16
17
  }
17
18
  export interface RecordData {
18
19
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickcns/vmedic-react",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "A collection of powerful utilities and components built with React and Vite",
5
5
  "author": "clickcns",
6
6
  "license": "MIT",