openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
74 lines (73 loc) • 2.88 kB
JavaScript
//#region src/state/openclaw-state-db-contract.ts
const OPENCLAW_STATE_SCHEMA_VERSION = 15;
const OPENCLAW_STATE_STRICT_SCHEMA_VERSION = 3;
const FIRST_USE_STATE_TABLES = [
"update_runs",
"skill_library_entries",
"skill_library_revisions",
"skill_library_events",
"skill_library_uploads",
"github_personal_publication_requests",
"cron_job_runtime_authorities",
"execution_identity_contexts",
"mcp_oauth_pending_authorizations",
"node_worker_launch_containers",
"node_worker_launches",
"node_worker_turns",
"operator_approval_execution_identities",
"operator_approval_standing_grants",
"web_push_approval_deliveries",
"execution_decision_facts",
"execution_owner_lifecycle_bindings",
"outbound_message_execution_bindings",
"outbound_message_progress"
];
const FIRST_USE_STATE_INDEXES = [
"idx_update_runs_created",
"idx_update_runs_active",
"idx_github_personal_publication_owner_session",
"idx_github_personal_publication_pending",
"idx_node_worker_launches_terminal_completed",
"idx_node_worker_turns_terminal_completed",
"idx_node_worker_turns_active_owner",
"idx_operator_approval_standing_grants_binding",
"idx_web_push_approval_deliveries_subscription",
"execution_identity_contexts_run_created_idx",
"execution_decision_facts_context_occurred_idx",
"execution_decision_facts_run_occurred_idx",
"outbound_message_execution_bindings_execution_event_idx",
"outbound_message_progress_occurred_idx",
"outbound_message_progress_run_occurred_idx"
];
const LAZY_ADDITIVE_STATE_TABLES = [
...FIRST_USE_STATE_TABLES,
"agent_provenance",
"cron_run_receipts",
"config_revision_keys",
"secret_store_entries",
"projects",
"user_preferences",
"device_pair_setup_completions",
"github_publication_requests",
"device_pairing_join_codes",
"skill_workshop_proposal_events",
"skill_workshop_collection_reviews",
"skill_workshop_proposal_rollbacks",
"skill_workshop_proposals",
"worker_environment_ssh_fallback_ports",
"worker_session_placement_moves"
];
const LAZY_ADDITIVE_STATE_INDEXES = [
...FIRST_USE_STATE_INDEXES,
"idx_cron_run_receipts_active_job",
"idx_cron_run_receipts_job_history",
"idx_github_publication_requests_pending",
"idx_skill_workshop_collection_reviews_workspace_time",
"secret_store_entries_live_idx"
];
/** Maximum time one synchronous SQLite call may wait for a lock. */
const OPENCLAW_SQLITE_BUSY_TIMEOUT_MS = 5e3;
/** User-facing guide for schema refusals; lives here so error sites avoid import cycles. */
const OPENCLAW_DATABASE_SCHEMA_DOCS_URL = "https://docs.openclaw.ai/reference/database-schemas";
//#endregion
export { OPENCLAW_DATABASE_SCHEMA_DOCS_URL as a, OPENCLAW_STATE_STRICT_SCHEMA_VERSION as c, LAZY_ADDITIVE_STATE_TABLES as i, FIRST_USE_STATE_TABLES as n, OPENCLAW_SQLITE_BUSY_TIMEOUT_MS as o, LAZY_ADDITIVE_STATE_INDEXES as r, OPENCLAW_STATE_SCHEMA_VERSION as s, FIRST_USE_STATE_INDEXES as t };