Skip to content
Open
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
23 changes: 23 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,14 @@
],
"format": "uuid",
"description": "Unique identifier for the organization"
},
"expires_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "Date at which the API key expires. If null, the key never expires."
}
},
"required": [
Expand Down Expand Up @@ -6453,6 +6461,13 @@
],
"description": "If true, disable real-time queries for this project. This can improve query performance for high-volume logs."
},
"monitor_charts_use_metrics_start": {
"type": [
"boolean",
"null"
],
"description": "If true, use metrics.start rather than created for monitor chart time bucket dimensions."
},
"default_preprocessor": {
"$ref": "#/components/schemas/NullableSavedFunctionId"
}
Expand Down Expand Up @@ -7778,6 +7793,14 @@
],
"format": "uuid",
"description": "Unique identifier for the organization"
},
"expires_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "Date and time at which the service token expires. If null, the token never expires."
}
},
"required": [
Expand Down
12 changes: 12 additions & 0 deletions py/src/braintrust/_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ class ApiKey(TypedDict):
"""
Unique identifier for the organization
"""
expires_at: NotRequired[str | None]
"""
Date at which the API key expires. If null, the key never expires.
"""


class AsyncScoringControlAsyncScoringControl(TypedDict):
Expand Down Expand Up @@ -1916,6 +1920,10 @@ class ProjectSettings(TypedDict):
"""
If true, disable real-time queries for this project. This can improve query performance for high-volume logs.
"""
monitor_charts_use_metrics_start: NotRequired[bool | None]
"""
If true, use metrics.start rather than created for monitor chart time bucket dimensions.
"""
default_preprocessor: NotRequired[NullableSavedFunctionId | None]


Expand Down Expand Up @@ -2398,6 +2406,10 @@ class ServiceToken(TypedDict):
"""
Unique identifier for the organization
"""
expires_at: NotRequired[str | None]
"""
Date and time at which the service token expires. If null, the token never expires.
"""


class SpanIFrame(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 8edae789624e11d2) -- do not modify"""
"""Auto-generated file (content hash 82492c66a30f4091) -- do not modify"""

from ._generated_types import (
Acl,
Expand Down
Loading