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
12 changes: 12 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -8451,6 +8451,12 @@
"null"
]
},
"topicMapReportKey": {
"type": [
"string",
"null"
]
},
"chartHeight": {
"type": [
"number",
Expand Down Expand Up @@ -8619,6 +8625,12 @@
"spans"
]
},
"cluster": {
"type": [
"string",
"null"
]
},
"freezeColumns": {
"type": [
"boolean",
Expand Down
2 changes: 2 additions & 0 deletions py/src/braintrust/_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2626,6 +2626,7 @@ class ViewOptionsViewOptions1(TypedDict):
rowHeight: NotRequired[str | None]
tallGroupRows: NotRequired[bool | None]
layout: NotRequired[str | None]
topicMapReportKey: NotRequired[str | None]
chartHeight: NotRequired[float | None]
excludedMeasures: NotRequired[Sequence[ViewOptionsViewOptions1ExcludedMeasure] | None]
yMetric: NotRequired[ViewOptionsViewOptions1YMetric | None]
Expand All @@ -2638,6 +2639,7 @@ class ViewOptionsViewOptions1(TypedDict):
chartAnnotations: NotRequired[Sequence[ViewOptionsViewOptions1ChartAnnotation] | None]
timeRangeFilter: NotRequired[str | ViewOptionsViewOptions1TimeRangeFilter | None]
queryShape: NotRequired[Literal['traces', 'spans'] | None]
cluster: NotRequired[str | None]
freezeColumns: NotRequired[bool | None]


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 2c789f9d429f1363) -- do not modify"""
"""Auto-generated file (content hash a509e50cf535df8c) -- do not modify"""

from ._generated_types import (
Acl,
Expand Down
Loading