mirror of
https://github.com/stablyai/orca.git
synced 2026-09-24 00:02:24 +00:00
* fix: label macOS dev Dock instances * fix: keep dev badge visible in Dock labels * chore: clean up dev identity plumbing * feat: add stable-name dev command
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
export type AppIdentity = {
|
|
name: string
|
|
isDev: boolean
|
|
devLabel: string | null
|
|
devBranch: string | null
|
|
devWorktreeName: string | null
|
|
devRepoRoot: string | null
|
|
dockBadgeLabel: string | null
|
|
}
|