@omniloy/sofia-sdk 1.0.5 → 1.0.6
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/legacy/webcomponents.d.ts +14 -2
- package/dist/legacy/webcomponents.es.js +2528 -985
- package/dist/legacy/webcomponents.umd.js +2528 -985
- package/dist/react/index.d.ts +14 -2
- package/dist/react/index.es.js +3185 -1241
- package/dist/webcomponents.d.ts +14 -2
- package/dist/webcomponents.es.js +3017 -1151
- package/dist/webcomponents.umd.js +3017 -1151
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
|
@@ -57,9 +57,19 @@ export declare interface OmniscribeProps {
|
|
|
57
57
|
wssurl: string;
|
|
58
58
|
/** API key for authentication */
|
|
59
59
|
apikey: string;
|
|
60
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* Unique identifier of the healthcare professional.
|
|
62
|
+
* SECURITY: Must be an INTERNAL system / surrogate id, never an MRN,
|
|
63
|
+
* national id, or other directly-identifying value. It is sent to the
|
|
64
|
+
* backend (and used as LLM context) without anonymization.
|
|
65
|
+
*/
|
|
61
66
|
userid: string;
|
|
62
|
-
/**
|
|
67
|
+
/**
|
|
68
|
+
* Unique identifier of the patient.
|
|
69
|
+
* SECURITY: Must be an INTERNAL system / surrogate id, never an MRN,
|
|
70
|
+
* national id, or other directly-identifying value. It is sent to the
|
|
71
|
+
* backend (and used as LLM context) without anonymization.
|
|
72
|
+
*/
|
|
63
73
|
patientid: string;
|
|
64
74
|
/** Template ID - enables report generation when provided with template */
|
|
65
75
|
templateid?: string;
|
|
@@ -124,6 +134,8 @@ export declare interface OmniscribeProps {
|
|
|
124
134
|
disablegenerate?: boolean;
|
|
125
135
|
/** Enable debug logging */
|
|
126
136
|
debug?: boolean;
|
|
137
|
+
/** Doctor's medical specialty at the time of the event. Optional. When provided, it is attached to every tracked event for analytics segmentation. */
|
|
138
|
+
userMedicalSpecialty?: string;
|
|
127
139
|
/** Expose function to get last generated report */
|
|
128
140
|
setGetLastReport?: (fn: () => Promise<object | undefined>) => void;
|
|
129
141
|
}
|