| 141 | export type PublishTargetStatus = 'pending' | 'success' | 'failed' | 'skipped'; |
| 142 | |
| 143 | export interface PublishTargetState { |
| 144 | status: PublishTargetStatus; |
| 145 | publishedAt?: string; |
| 146 | error?: string; |
| 147 | lastAttempt?: string; |
| 148 | reason?: string; |
| 149 | supersededBy?: string; |
| 150 | url?: string; |
| 151 | /** Human-readable label, e.g. "GitHub Packages" for npm targets on a GHP registry. Falls back to the target key. */ |
| 152 | label?: string; |
| 153 | } |
| 154 | |
| 155 | export interface ReleaseMetadata { |
| 156 | version: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…