@omniloy/sofia-sdk 1.0.6 → 1.0.7
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 +6 -2
- package/dist/legacy/webcomponents.es.js +249 -63
- package/dist/legacy/webcomponents.umd.js +249 -63
- package/dist/react/index.css +17 -1
- package/dist/react/index.d.ts +6 -2
- package/dist/react/index.es.js +319 -76
- package/dist/webcomponents.d.ts +6 -2
- package/dist/webcomponents.es.js +241 -47
- package/dist/webcomponents.umd.js +241 -47
- package/package.json +1 -1
|
@@ -19,8 +19,12 @@ declare enum LanguageCode {
|
|
|
19
19
|
export declare interface OmniscribeProps {
|
|
20
20
|
/** API base URL for backend communication */
|
|
21
21
|
baseurl: string;
|
|
22
|
-
/**
|
|
23
|
-
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This prop has no effect. The transcriber WebSocket URL is
|
|
24
|
+
* resolved from the settings API (GET /profiles/settings → transcriberUrl).
|
|
25
|
+
* This prop will be removed in v2.0.
|
|
26
|
+
*/
|
|
27
|
+
wssurl?: string;
|
|
24
28
|
/** API key for authentication */
|
|
25
29
|
apikey: string;
|
|
26
30
|
/**
|