Update API specifications with fern api update (#4319)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Shuchang Zheng
2025-12-18 06:00:06 +08:00
committed by GitHub
parent 7540496289
commit 7bc1cba2e8

View File

@@ -1233,7 +1233,9 @@
"description": "Successful Response", "description": "Successful Response",
"content": { "content": {
"application/json": { "application/json": {
"schema": {} "schema": {
"$ref": "#/components/schemas/UploadFileResponse"
}
} }
} }
}, },
@@ -14053,6 +14055,26 @@
"title": "UploadFileAction", "title": "UploadFileAction",
"description": "Upload file action parameters." "description": "Upload file action parameters."
}, },
"UploadFileResponse": {
"properties": {
"s3_uri": {
"type": "string",
"title": "S3 Uri",
"description": "S3 URI where the file was uploaded"
},
"presigned_url": {
"type": "string",
"title": "Presigned Url",
"description": "Presigned URL to access the uploaded file"
}
},
"type": "object",
"required": [
"s3_uri",
"presigned_url"
],
"title": "UploadFileResponse"
},
"UploadToS3Block": { "UploadToS3Block": {
"properties": { "properties": {
"label": { "label": {