Store installed release version as a part of install metadata (#9122)

This commit is contained in:
Jacob MacDonald
2025-09-22 09:42:35 -07:00
committed by GitHub
parent 57272f84b1
commit 34c14b7dd2
3 changed files with 7 additions and 18 deletions
+1
View File
@@ -124,6 +124,7 @@ export interface GeminiCLIExtension {
export interface ExtensionInstallMetadata {
source: string;
type: 'git' | 'local' | 'link' | 'github-release';
releaseTag?: string; // Only present for github-release installs.
ref?: string;
autoUpdate?: boolean;
}