fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 47 lines 1.1 kB view raw
1openapi: 3.0.0 2info: 3 title: OpenAPI 3.0.0 binary format body example 4 version: 1 5paths: 6 /upload-zip: 7 post: 8 summary: Upload a zip file 9 operationId: uploadZip 10 requestBody: 11 required: true 12 content: 13 application/zip: 14 schema: 15 type: string 16 format: binary 17 responses: 18 '204': 19 description: Successfully uploaded 20 /upload-pdf: 21 post: 22 summary: Upload a PDF file 23 operationId: uploadPdf 24 requestBody: 25 required: true 26 content: 27 application/pdf: 28 schema: 29 type: string 30 format: binary 31 responses: 32 '204': 33 description: Successfully uploaded 34 /upload-binary: 35 post: 36 summary: Upload binary data 37 operationId: uploadBinary 38 requestBody: 39 required: true 40 content: 41 application/octet-stream: 42 schema: 43 type: string 44 format: binary 45 responses: 46 '204': 47 description: Successfully uploaded