@opengeni/api-router 0.21.11 → 0.22.2
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/app.d.ts +1 -0
- package/dist/app.js +1 -1
- package/dist/{chunk-J4JS2F7L.js → chunk-HWXJW5C7.js} +1210 -173
- package/dist/chunk-HWXJW5C7.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/integrations/slack-interactions.d.ts +1 -1
- package/dist/routes/transcription-recordings.d.ts +3 -0
- package/dist/transcription/segmenter.d.ts +10 -0
- package/dist/transcription/service.d.ts +5 -0
- package/package.json +12 -12
- package/src/app.ts +36 -2
- package/src/mcp/server.ts +5 -80
- package/src/mcp/toolspace.ts +91 -69
- package/src/routes/codex.ts +138 -8
- package/src/routes/transcription-recordings.ts +722 -0
- package/src/routes/transcriptions.ts +2 -0
- package/src/transcription/providers/azure-openai.ts +4 -3
- package/src/transcription/providers/codex-subscription.ts +4 -1
- package/src/transcription/providers/openai.ts +7 -2
- package/src/transcription/segmenter.ts +260 -0
- package/src/transcription/service.ts +111 -10
- package/dist/chunk-J4JS2F7L.js.map +0 -1
package/dist/app.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare const API_MAX_REQUEST_BODY_BYTES: number;
|
|
|
9
9
|
/** Effective Hono bodyLimit — API JSON ceiling or voice multipart + multipart overhead. */
|
|
10
10
|
export declare function apiRequestBodyLimitBytes(settings: {
|
|
11
11
|
voiceInputMaxSizeBytes: number;
|
|
12
|
+
voiceInputResumableMaxChunkSizeBytes?: number;
|
|
12
13
|
}): number;
|
|
13
14
|
export declare function createApp(deps: AppDependencies): Hono;
|
|
14
15
|
export declare function createAppComposition(deps: AppDependencies): {
|