feat(platform): 擴充 Tenants 全域產品資產台帳
All checks were successful
Code Review / ai-code-review (push) Successful in 14s
CD Pipeline / tests (push) Successful in 1m29s
CD Pipeline / build-and-deploy (push) Successful in 4m26s
CD Pipeline / post-deploy-checks (push) Successful in 1m37s

This commit is contained in:
Your Name
2026-06-14 15:50:57 +08:00
parent ffc5556994
commit fef94df877
5 changed files with 251 additions and 12 deletions

View File

@@ -244,6 +244,7 @@ const ownerResponseValidationTenantBoundaries = [
const ASSET_STATUS_TONES: Record<string, AssetTone> = {
verified: "steady",
read_only_visible: "steady",
read_only_candidate: "warn",
read_only_pending_smoke: "warn",
owner_response_required: "warn",
};
@@ -260,6 +261,7 @@ const ASSET_CATEGORY_KEYS: Record<string, string> = {
const ASSET_STATUS_KEYS: Record<string, string> = {
verified: "verified",
read_only_visible: "readOnlyVisible",
read_only_candidate: "readOnlyCandidate",
read_only_pending_smoke: "readOnlyPendingSmoke",
owner_response_required: "ownerResponseRequired",
};