eddyter 1.3.54 → 1.3.55
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 +215 -211
- package/dist/api/config/endpoints.d.ts +3 -0
- package/dist/api/transcript/index.d.ts +47 -0
- package/dist/assets/style.css +1 -1
- package/dist/components/SpeechLanguageSelector/index.d.ts +9 -0
- package/dist/{html2pdf.bundle-4b5f93b6.js → html2pdf.bundle-bd00e24a.js} +1 -1
- package/dist/{html2pdf.bundle.min-01d8363a.js → html2pdf.bundle.min-4dffe6d7.js} +1 -1
- package/dist/{index-dfc07a23.js → index-4cfc35d0.js} +1 -1
- package/dist/{index-6ba9ffa3.js → index-4f0e0157.js} +9091 -8885
- package/dist/{index-0e44c579.js → index-5647e7d9.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/plugins/VoiceTranscriptPlugin.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as r, jsxs as a } from "react/jsx-runtime";
|
|
2
2
|
import { useLexicalComposerContext as v } from "@lexical/react/LexicalComposerContext";
|
|
3
3
|
import { $getNodeByKey as w } from "lexical";
|
|
4
|
-
import { q as k, r as F, F as y, s as N, u as C, v as D } from "./index-
|
|
4
|
+
import { q as k, r as F, F as y, s as N, u as C, v as D } from "./index-4f0e0157.js";
|
|
5
5
|
import "react";
|
|
6
6
|
import "axios";
|
|
7
7
|
import "react-dom";
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as z, z as B, K as G, x as I, H as J, J as L, O as M, M as O, y as j, w as q, N as D, I as F } from "./index-
|
|
1
|
+
import { G as z, z as B, K as G, x as I, H as J, J as L, O as M, M as O, y as j, w as q, N as D, I as F } from "./index-4f0e0157.js";
|
|
2
2
|
import "react/jsx-runtime";
|
|
3
3
|
import "react";
|
|
4
4
|
import "axios";
|
|
@@ -2,10 +2,13 @@ export declare const TOGGLE_VOICE_TRANSCRIPT_COMMAND: import('../../node_modules
|
|
|
2
2
|
export declare const INSERT_TRANSCRIPT_COMMAND: import('../../node_modules/lexical').LexicalCommand<{
|
|
3
3
|
text: string;
|
|
4
4
|
}>;
|
|
5
|
-
export declare const useVoiceRecording: (apiKey?: string) => {
|
|
5
|
+
export declare const useVoiceRecording: (apiKey?: string, language?: string) => {
|
|
6
6
|
isRecording: boolean;
|
|
7
7
|
isPaused: boolean;
|
|
8
8
|
isLoading: boolean;
|
|
9
|
+
isProcessing: boolean;
|
|
10
|
+
processingStatus: string;
|
|
11
|
+
isBatchMode: boolean;
|
|
9
12
|
error: string | null;
|
|
10
13
|
isConnected: boolean;
|
|
11
14
|
elapsedTime: number;
|