Update API specifications with fern api update (#3700)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Shuchang Zheng
2025-10-13 19:41:01 -07:00
committed by GitHub
parent 89666dba30
commit a7d18adbf6

View File

@@ -2531,6 +2531,17 @@
],
"title": "Tool Call Id"
},
"xpath": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Xpath"
},
"errors": {
"anyOf": [
{
@@ -8319,6 +8330,14 @@
"examples": [
"JBSWY3DPEHPK3PXP"
]
},
"totp_type": {
"$ref": "#/components/schemas/TotpType",
"description": "Type of 2FA method used for this credential",
"default": "none",
"examples": [
"authenticator"
]
}
},
"type": "object",
@@ -8657,6 +8676,14 @@
"examples": [
"user@example.com"
]
},
"totp_type": {
"$ref": "#/components/schemas/TotpType",
"description": "Type of 2FA method used for this credential",
"default": "none",
"examples": [
"authenticator"
]
}
},
"type": "object",
@@ -10927,6 +10954,17 @@
],
"title": "ThoughtType"
},
"TotpType": {
"type": "string",
"enum": [
"authenticator",
"email",
"text",
"none"
],
"title": "TotpType",
"description": "Type of 2FA/TOTP method used."
},
"UploadToS3Block": {
"properties": {
"label": {