feat: add official game audio generation client

This commit is contained in:
2026-09-21 12:17:32 +08:00
parent d222d17500
commit 09e0ce5cf3
28 changed files with 1835 additions and 31 deletions

View File

@@ -48,6 +48,7 @@ import type {
import type { MarketplaceLibrarySnapshot } from '../coding-plugins/account-plugin-cache';
import type { EffectivePluginResolver } from '../coding-plugins/effective-resolver';
import type { DevicePackageManager } from '../coding-packages/device-package-manager';
import type { GameAudioDeliveryCoordinator } from '../services/game-audio-delivery';
export interface ActiveCodingProject {
id: string;
@@ -65,6 +66,7 @@ export interface CodingProductHost {
}
export interface CodingProductComposition {
gameAudio?: Pick<GameAudioDeliveryCoordinator, 'readSavedOutput'>;
attachments: CodingAttachmentStore;
dataService: DataServiceOperations;
devicePackages: DevicePackageManager;