17174e2cf5
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Has been skipped
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 1m52s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m57s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 3m43s
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 3m45s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 5m26s
CI/CD Pipeline / Validate - Code Quality (push) Successful in 6m44s
CI/CD Pipeline / Integration Tests (push) Successful in 2m12s
CI/CD Pipeline / Unit Tests (push) Successful in 9m0s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / CI Gate (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 12m38s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 32s
CI/CD Pipeline / ACR Image Cleanup (push) Successful in 39s
CI/CD Pipeline / Staging E2E Tests (push) Failing after 1m14s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 2m50s
CI/CD Pipeline / Canary Release to Production (push) Has been skipped
Co-authored-by: xiaoxia <dev@xiaoxiajianji.com> Co-committed-by: xiaoxia <dev@xiaoxiajianji.com>
86 lines
1.7 KiB
TypeScript
86 lines
1.7 KiB
TypeScript
/**
|
|
* 模板编辑器 API — 按模块拆分后的统一入口
|
|
* 保持与原 template-editor.ts 相同的导出结构,向后兼容
|
|
*/
|
|
|
|
// 类型
|
|
export type {
|
|
EditPlanStatus,
|
|
TitleConfig,
|
|
SubtitleConfig,
|
|
BgmConfig,
|
|
SegmentTtsConfig,
|
|
SegmentTrimConfig,
|
|
SegmentTransitionConfig,
|
|
EditPlanSegment,
|
|
EditPlanConfig,
|
|
EditPlan,
|
|
CreateEditPlanRequest,
|
|
UpdateEditPlanRequest,
|
|
EditPlanListParams,
|
|
EditPlanListResponse,
|
|
GenerateResponse,
|
|
EditPlanGeneration,
|
|
ClipStatusItem,
|
|
GenerationStatusResponse,
|
|
GeneratedVideo,
|
|
AIRecommendRequest,
|
|
AIRecommendClipItem,
|
|
AIRecommendResponse,
|
|
EditPlanClipStatus,
|
|
EditPlanClip,
|
|
CreateEditPlanClipRequest,
|
|
UpdateEditPlanClipRequest,
|
|
EditPlanClipListResponse,
|
|
EditPlanClipListParams,
|
|
ClipReorderItem,
|
|
ClipReorderResponse,
|
|
ClipBatchDeleteResponse,
|
|
ClipsFromAssetsResponse,
|
|
CopyEditPlanRequest,
|
|
TransitionEffect,
|
|
MediaAsset,
|
|
} from "./types"
|
|
|
|
// 常量
|
|
export {
|
|
TRANSITION_OPTIONS,
|
|
MATERIAL_TYPE_LABELS,
|
|
MATERIAL_TYPE_ICONS,
|
|
PLAN_STATUS_LABELS,
|
|
QUALITY_OPTIONS,
|
|
} from "./constants"
|
|
|
|
// 模板草稿 CRUD + 生成
|
|
export {
|
|
getEditPlans,
|
|
getEditPlan,
|
|
createEditPlan,
|
|
updateEditPlan,
|
|
deleteEditPlan,
|
|
generateEditPlan,
|
|
getGenerationStatus,
|
|
getEditPlanGenerations,
|
|
getGenerationTaskResults,
|
|
cancelGeneration,
|
|
copyEditPlan,
|
|
} from "./editPlans"
|
|
|
|
// 片段 CRUD + 批量操作
|
|
export {
|
|
getEditPlanClips,
|
|
getEditPlanClip,
|
|
createEditPlanClip,
|
|
updateEditPlanClip,
|
|
deleteEditPlanClip,
|
|
reorderEditPlanClips,
|
|
batchDeleteEditPlanClips,
|
|
createClipsFromAssets,
|
|
} from "./clips"
|
|
|
|
// AI 推荐
|
|
export { aiRecommendClips } from "./aiFeatures"
|
|
|
|
// 素材库
|
|
export { getMediaAssets, getMediaAsset } from "./mediaAssets"
|