htmlgraph 0.27.6__py3-none-any.whl → 0.27.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
htmlgraph/__init__.py CHANGED
@@ -90,6 +90,11 @@ from htmlgraph.reflection import ComputationalReflection, get_reflection_context
90
90
  from htmlgraph.repo_hash import RepoHash
91
91
  from htmlgraph.sdk import SDK
92
92
  from htmlgraph.server import serve
93
+ from htmlgraph.session_context import (
94
+ GitHooksInstaller,
95
+ SessionContextBuilder,
96
+ VersionChecker,
97
+ )
93
98
  from htmlgraph.session_manager import SessionManager
94
99
  from htmlgraph.session_registry import SessionRegistry
95
100
  from htmlgraph.types import (
@@ -118,7 +123,7 @@ from htmlgraph.types import (
118
123
  )
119
124
  from htmlgraph.work_type_utils import infer_work_type, infer_work_type_from_id
120
125
 
121
- __version__ = "0.27.6"
126
+ __version__ = "0.27.7"
122
127
  __all__ = [
123
128
  # Exceptions
124
129
  "HtmlGraphError",
@@ -160,6 +165,9 @@ __all__ = [
160
165
  "find_all",
161
166
  "AgentInterface",
162
167
  "SessionManager",
168
+ "SessionContextBuilder",
169
+ "VersionChecker",
170
+ "GitHooksInstaller",
163
171
  "SessionRegistry",
164
172
  "RepoHash",
165
173
  "SDK",