合并客户端真机预览链路

需求:将待审 Release 扫码验收与项目级真机入口并入登录、发布集成候选。

实现:合并 Main-owned 精确预览与提交映射能力,保留现有登录和一键发布边界。
This commit is contained in:
2026-08-08 17:59:42 +08:00
20 changed files with 1890 additions and 12 deletions

13
shared/device-preview.ts Normal file
View File

@@ -0,0 +1,13 @@
export type DevicePreviewState = 'not_deployed' | 'building' | 'ready' | 'unavailable';
export type DevicePreviewSnapshot = {
state: DevicePreviewState;
projectId: string;
message: string;
appId?: string;
versionId?: string;
versionName?: string;
reviewStatus?: string;
launchUrl?: string;
updatedAt?: string;
};