Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,20 @@
"additionalProperties": {
"$ref": "#/components/schemas/TriggeredFunctionState"
}
},
"last_triggered_xact_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "null"
}
],
"description": "The xact_id of the last non-score change to this row (excludes scorer score merges)"
}
},
"required": [
Expand Down
4 changes: 4 additions & 0 deletions py/src/braintrust/_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@ class AsyncScoringStateAsyncScoringState(TypedDict):
function_ids: Sequence[Any]
skip_logging: NotRequired[bool | None]
triggered_functions: NotRequired[Mapping[str, Any] | None]
last_triggered_xact_id: NotRequired[str | float | None]
"""
The xact_id of the last non-score change to this row (excludes scorer score merges)
"""


class AsyncScoringStateAsyncScoringState1(TypedDict):
Expand Down
2 changes: 1 addition & 1 deletion py/src/braintrust/generated_types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Auto-generated file (content hash ec975536334c7afc) -- do not modify"""
"""Auto-generated file (content hash 223c6db3c25381f8) -- do not modify"""

from ._generated_types import (
Acl,
Expand Down