Skip to content

Commit 3d75833

Browse files
chore: generated SDK types (#397)
Automated regeneration of SDK types. Co-authored-by: braintrust-bot[bot] <215900051+braintrust-bot[bot]@users.noreply.github.com>
1 parent c9efe39 commit 3d75833

3 files changed

Lines changed: 25 additions & 1 deletion

File tree

generated_types.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,14 @@
168168
],
169169
"additionalProperties": {}
170170
},
171+
"secret_updated_by_user_id": {
172+
"type": [
173+
"string",
174+
"null"
175+
],
176+
"format": "uuid",
177+
"description": "User id of the last update to the encrypted secret value"
178+
},
171179
"preview_secret": {
172180
"type": [
173181
"string",
@@ -2338,6 +2346,14 @@
23382346
"format": "date-time",
23392347
"description": "Date of last update to the encrypted secret value itself"
23402348
},
2349+
"secret_updated_by_user_id": {
2350+
"type": [
2351+
"string",
2352+
"null"
2353+
],
2354+
"format": "uuid",
2355+
"description": "User id of the last update to the encrypted secret value"
2356+
},
23412357
"used": {
23422358
"type": [
23432359
"string",

py/src/braintrust/_generated_types.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ class AISecret(TypedDict):
5757
"""
5858
type: NotRequired[str | None]
5959
metadata: NotRequired[Mapping[str, Any] | None]
60+
secret_updated_by_user_id: NotRequired[str | None]
61+
"""
62+
User id of the last update to the encrypted secret value
63+
"""
6064
preview_secret: NotRequired[str | None]
6165

6266

@@ -616,6 +620,10 @@ class EnvVar(TypedDict):
616620
"""
617621
Date of last update to the encrypted secret value itself
618622
"""
623+
secret_updated_by_user_id: NotRequired[str | None]
624+
"""
625+
User id of the last update to the encrypted secret value
626+
"""
619627
used: NotRequired[str | None]
620628
"""
621629
Date the environment variable was last used

py/src/braintrust/generated_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Auto-generated file (content hash fe93a84e058f7f2d) -- do not modify"""
1+
"""Auto-generated file (content hash 9ac97be26c9575b6) -- do not modify"""
22

33
from ._generated_types import (
44
Acl,

0 commit comments

Comments
 (0)