We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d0dac7d + 539313e commit ebff603Copy full SHA for ebff603
bugout/__init__.py
@@ -7,7 +7,7 @@
7
8
__email__ = "engineering@bugout.dev"
9
__license__ = "MIT"
10
-__version__ = "0.2.8"
+__version__ = "0.2.9"
11
12
__all__ = (
13
"__author__",
bugout/data.py
@@ -262,6 +262,9 @@ class BugoutSearchResult(BaseModel):
262
created_at: str
263
updated_at: str
264
score: float
265
+ context_type: Optional[str] = None
266
+ context_url: Optional[str] = None
267
+ context_id: Optional[str] = None
268
269
270
class BugoutSearchResults(BaseModel):
0 commit comments