fix(contracts): regenerate gateway contract for hermes_not_connected enum

This commit is contained in:
Brooklyn Nicholson
2026-09-24 22:19:11 -05:00
committed by brooklyn!
parent f5fad3cedb
commit 0f15d80a02
2 changed files with 2 additions and 1 deletions

View File

@@ -4094,7 +4094,7 @@ export interface PluginServerRow {
state: PluginServerState
sentence: string
}
export type PluginServerState = 'connected' | 'app_not_running' | 'endpoint_unavailable' | 'no_interactive_session' | 'version_too_old' | 'missing_app' | 'unknown'
export type PluginServerState = 'connected' | 'app_not_running' | 'hermes_not_connected' | 'endpoint_unavailable' | 'no_interactive_session' | 'version_too_old' | 'missing_app' | 'unknown'
/** One ``config_schema`` key of a plugin manifest, rendered by the Plugins hub (``hermes_cli.plugins_settings.plugin_settings_fields``). ``secret`` fields carry no value: ``env`` names the ``.env`` variable and ``has_value`` whether it is set. */
export interface PluginSettingField {
key: string

View File

@@ -21178,6 +21178,7 @@
"enum": [
"connected",
"app_not_running",
"hermes_not_connected",
"endpoint_unavailable",
"no_interactive_session",
"version_too_old",