@omniloy/sofia-sdk 0.0.8 → 0.0.10
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/README.md +2 -2
- package/dist/legacy/webcomponents.d.ts +1 -1
- package/dist/legacy/webcomponents.es.js +716 -207
- package/dist/legacy/webcomponents.umd.js +716 -207
- package/dist/tailor/webcomponents.d.ts +1 -1
- package/dist/tailor/webcomponents.es.js +730 -205
- package/dist/tailor/webcomponents.umd.js +730 -205
- package/dist/webcomponents.d.ts +1 -1
- package/dist/webcomponents.es.js +725 -203
- package/dist/webcomponents.umd.js +725 -203
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,8 +87,8 @@ All properties below are mandatory for proper SDK functionality:
|
|
|
87
87
|
| **apikey** | `string` | Authentication key provided by Omniloy |
|
|
88
88
|
| **userid** | `string` | Unique identifier of the healthcare professional |
|
|
89
89
|
| **patientid** | `string` | Unique identifier of the patient for the session |
|
|
90
|
-
| **toolsargs** | `string` | JSON Schema Draft-07 defining clinical data structure - mandatory if
|
|
91
|
-
| **templateid** | `string` | The current template Id - mandatory if
|
|
90
|
+
| **toolsargs** | `string` | JSON Schema Draft-07 defining clinical data structure - mandatory if isonlychat is not "true" |
|
|
91
|
+
| **templateid** | `string` | The current template Id - mandatory if isonlychat is not "true" |
|
|
92
92
|
|
|
93
93
|
### Getting Credentials
|
|
94
94
|
|
|
@@ -28,7 +28,7 @@ export declare interface OmniscribeProps {
|
|
|
28
28
|
language?: LanguageCode;
|
|
29
29
|
isscreenloading?: boolean;
|
|
30
30
|
disableactions?: boolean;
|
|
31
|
-
|
|
31
|
+
isonlychat?: boolean;
|
|
32
32
|
disablegenerate?: boolean;
|
|
33
33
|
debug?: boolean;
|
|
34
34
|
setGetLastReport?: (fn: () => Promise<object | undefined>) => void;
|