From 7bc1cba2e86b441b09d195b21964181fea3f5cd2 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 18 Dec 2025 06:00:06 +0800 Subject: [PATCH] Update API specifications with fern api update (#4319) Co-authored-by: github-actions --- fern/openapi/skyvern_openapi.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/fern/openapi/skyvern_openapi.json b/fern/openapi/skyvern_openapi.json index d1ccceed..b179e3ec 100644 --- a/fern/openapi/skyvern_openapi.json +++ b/fern/openapi/skyvern_openapi.json @@ -1233,7 +1233,9 @@ "description": "Successful Response", "content": { "application/json": { - "schema": {} + "schema": { + "$ref": "#/components/schemas/UploadFileResponse" + } } } }, @@ -14053,6 +14055,26 @@ "title": "UploadFileAction", "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": { "properties": { "label": {