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
16 changes: 16 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,14 @@
],
"additionalProperties": {}
},
"secret_updated_by_user_id": {
"type": [
"string",
"null"
],
"format": "uuid",
"description": "User id of the last update to the encrypted secret value"
},
"preview_secret": {
"type": [
"string",
Expand Down Expand Up @@ -2338,6 +2346,14 @@
"format": "date-time",
"description": "Date of last update to the encrypted secret value itself"
},
"secret_updated_by_user_id": {
"type": [
"string",
"null"
],
"format": "uuid",
"description": "User id of the last update to the encrypted secret value"
},
"used": {
"type": [
"string",
Expand Down
8 changes: 8 additions & 0 deletions py/src/braintrust/_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class AISecret(TypedDict):
"""
type: NotRequired[str | None]
metadata: NotRequired[Mapping[str, Any] | None]
secret_updated_by_user_id: NotRequired[str | None]
"""
User id of the last update to the encrypted secret value
"""
preview_secret: NotRequired[str | None]


Expand Down Expand Up @@ -616,6 +620,10 @@ class EnvVar(TypedDict):
"""
Date of last update to the encrypted secret value itself
"""
secret_updated_by_user_id: NotRequired[str | None]
"""
User id of the last update to the encrypted secret value
"""
used: NotRequired[str | None]
"""
Date the environment variable was last used
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 fe93a84e058f7f2d) -- do not modify"""
"""Auto-generated file (content hash 9ac97be26c9575b6) -- do not modify"""

from ._generated_types import (
Acl,
Expand Down
Loading