Merge pull request #44 from valueonag/feat/demo-system-readieness
Some checks failed
Deploy Nyla Frontend to Integration / build-and-deploy (push) Has been cancelled

fix build
This commit is contained in:
Patrick Motsch 2026-04-19 01:38:06 +02:00 committed by GitHub
commit 2a09579f45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,5 @@
import api from '../api'; import api from '../api';
import type { VoiceOption } from './voiceCatalogApi';
// ============================================================================ // ============================================================================
// TYPES & INTERFACES // TYPES & INTERFACES
@ -102,10 +103,11 @@ export interface ConfigUpdateRequest {
debugMode?: boolean; debugMode?: boolean;
} }
// Voice option type re-exported from the central voice catalog API. // Voice option type re-exported from the central voice catalog API
// (imported above so it's also in scope for local signatures below).
// The legacy teamsbot-specific {code,name} language type is gone — consumers // The legacy teamsbot-specific {code,name} language type is gone — consumers
// should use VoiceLanguage from voiceCatalogApi (catalog SSOT). // should use VoiceLanguage from voiceCatalogApi (catalog SSOT).
export type { VoiceOption } from './voiceCatalogApi'; export type { VoiceOption };
// Auth Detection Test Types // Auth Detection Test Types
export interface StepScreenshot { export interface StepScreenshot {