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": {