完善活动运营域与联调标准化

This commit is contained in:
2026-04-03 13:11:41 +08:00
parent 0e28f70bad
commit 129ea935db
56 changed files with 11004 additions and 196 deletions

View File

@@ -45,6 +45,30 @@ export interface BackendLaunchVariantSummary {
assignmentMode?: string | null
}
export interface BackendRuntimeSummary {
runtimeBindingId?: string | null
placeId?: string | null
placeName?: string | null
mapId?: string | null
mapName?: string | null
tileReleaseId?: string | null
courseSetId?: string | null
courseVariantId?: string | null
routeCode?: string | null
}
export interface BackendPresentationSummary {
presentationId?: string | null
templateKey?: string | null
version?: string | null
}
export interface BackendContentBundleSummary {
bundleId?: string | null
bundleType?: string | null
version?: string | null
}
export interface BackendEntrySessionSummary {
id: string
status: string
@@ -55,6 +79,7 @@ export interface BackendEntrySessionSummary {
routeCode?: string | null
variantId?: string | null
variantName?: string | null
runtime?: BackendRuntimeSummary | null
launchedAt?: string | null
startedAt?: string | null
endedAt?: string | null
@@ -115,6 +140,8 @@ export interface BackendEventPlayResult {
summary?: string | null
status: string
}
currentPresentation?: BackendPresentationSummary | null
currentContentBundle?: BackendContentBundleSummary | null
release?: {
id: string
configLabel: string
@@ -159,6 +186,9 @@ export interface BackendLaunchResult {
routeCode?: string | null
}
variant?: BackendLaunchVariantSummary | null
runtime?: BackendRuntimeSummary | null
presentation?: BackendPresentationSummary | null
contentBundle?: BackendContentBundleSummary | null
}
}
@@ -179,6 +209,7 @@ export interface BackendSessionResult {
clientType: string
deviceKey: string
routeCode?: string | null
runtime?: BackendRuntimeSummary | null
sessionTokenExpiresAt: string
launchedAt: string
startedAt?: string | null