@opengeni/react 0.32.1 → 0.34.1
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/{chunk-ZNNE2VES.js → chunk-L7R5RK6A.js} +2 -1
- package/dist/{chunk-ZNNE2VES.js.map → chunk-L7R5RK6A.js.map} +1 -1
- package/dist/{chunk-WY2QN2CX.js → chunk-MS3FBZ6A.js} +1 -1
- package/dist/{chunk-WY2QN2CX.js.map → chunk-MS3FBZ6A.js.map} +1 -1
- package/dist/components/composer-transcription-control.d.ts +1 -1
- package/dist/composer.js +1 -1
- package/dist/index.js +2 -2
- package/dist/session-ui.js +1 -1
- package/package.json +2 -2
- package/src/components/composer-transcription-control.tsx +1 -1
- package/src/timeline/turn-summary.tsx +1 -0
|
@@ -17,7 +17,7 @@ export type ComposerTranscriptionMessages = {
|
|
|
17
17
|
errorUnknown: string;
|
|
18
18
|
};
|
|
19
19
|
export type ComposerTranscriptionControlProps = {
|
|
20
|
-
client?: OpenGeniClient | null | undefined;
|
|
20
|
+
client?: Pick<OpenGeniClient, "transcribeAudio"> | null | undefined;
|
|
21
21
|
workspaceId?: string | undefined;
|
|
22
22
|
capability?: ClientVoiceInputConfig | null | undefined;
|
|
23
23
|
workspaceEnabled?: boolean | undefined;
|
package/dist/composer.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -111,7 +111,7 @@ import {
|
|
|
111
111
|
usePortalTokenStyle,
|
|
112
112
|
useThemeType,
|
|
113
113
|
v4aToGitFileDiff
|
|
114
|
-
} from "./chunk-
|
|
114
|
+
} from "./chunk-L7R5RK6A.js";
|
|
115
115
|
import {
|
|
116
116
|
buildTimeline,
|
|
117
117
|
creditExhaustedFromEvents,
|
|
@@ -159,7 +159,7 @@ import {
|
|
|
159
159
|
useSlashCommands,
|
|
160
160
|
useTranscription,
|
|
161
161
|
useVoiceInput
|
|
162
|
-
} from "./chunk-
|
|
162
|
+
} from "./chunk-MS3FBZ6A.js";
|
|
163
163
|
import {
|
|
164
164
|
FILE_ONLY_MESSAGE_TEXT,
|
|
165
165
|
composeSendInput,
|
package/dist/session-ui.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeni/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.1",
|
|
4
4
|
"description": "React hooks and styled components for OpenGeni: live session streaming, chat composer, message timeline, session status, and fleet views — token-themed (CSS variables), dark-first, built on Tailwind v4 + Radix + Motion.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@dnd-kit/utilities": "3.2.2",
|
|
71
71
|
"@fontsource-variable/noto-sans-arabic": "5.2.10",
|
|
72
72
|
"@fontsource-variable/noto-sans-jp": "5.2.10",
|
|
73
|
-
"@opengeni/sdk": "^0.
|
|
73
|
+
"@opengeni/sdk": "^0.34.1",
|
|
74
74
|
"clsx": "^2.1.1",
|
|
75
75
|
"lucide-react": "^1.8.0",
|
|
76
76
|
"motion": "^12.0.0",
|
|
@@ -48,7 +48,7 @@ const defaultMessages: ComposerTranscriptionMessages = {
|
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
export type ComposerTranscriptionControlProps = {
|
|
51
|
-
client?: OpenGeniClient | null | undefined;
|
|
51
|
+
client?: Pick<OpenGeniClient, "transcribeAudio"> | null | undefined;
|
|
52
52
|
workspaceId?: string | undefined;
|
|
53
53
|
capability?: ClientVoiceInputConfig | null | undefined;
|
|
54
54
|
workspaceEnabled?: boolean | undefined;
|