Documentation
¶
Overview ¶
Package upstream records the upstream monorepo domains that this fork tracks.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CoverageStatus ¶
type CoverageStatus string
CoverageStatus describes how much local evidence backs an upstream domain.
const ( CoverageStatusVectorBacked CoverageStatus = "vector-backed" CoverageStatusStructuralOnly CoverageStatus = "structural-only" CoverageStatusDeferred CoverageStatus = "deferred" )
Coverage status values used by the upstream manifest.
type Domain ¶
type Domain struct {
Name string `json:"name"`
UpstreamPath string `json:"upstream_path"`
LocalPath string `json:"local_path,omitempty"`
ReportPath string `json:"report_path,omitempty"`
CoverageStatus CoverageStatus `json:"coverage_status"`
ChecksumPath string `json:"checksum_path,omitempty"`
ChecksumSHA256 string `json:"checksum_sha256,omitempty"`
StructuralOnlyReason string `json:"structural_only_reason,omitempty"`
OfficialAppInteropClaim bool `json:"official_app_interop_claim"`
Notes string `json:"notes,omitempty"`
}
Domain records one upstream monorepo domain and the local evidence boundary.
Click to show internal directories.
Click to hide internal directories.