合并客户端真机预览链路
需求:将待审 Release 扫码验收与项目级真机入口并入登录、发布集成候选。 实现:合并 Main-owned 精确预览与提交映射能力,保留现有登录和一键发布边界。
This commit is contained in:
13
shared/device-preview.ts
Normal file
13
shared/device-preview.ts
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user