mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-21 02:24:09 -07:00
17 lines
420 B
TypeScript
17 lines
420 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export enum ExtensionUpdateState {
|
|
CHECKING_FOR_UPDATES = 'checking for updates',
|
|
UPDATED_NEEDS_RESTART = 'updated, needs restart',
|
|
UPDATING = 'updating',
|
|
UPDATE_AVAILABLE = 'update available',
|
|
UP_TO_DATE = 'up to date',
|
|
ERROR = 'error checking for updates',
|
|
NOT_UPDATABLE = 'not updatable',
|
|
UNKNOWN = 'unknown',
|
|
}
|