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 29 lines 461 B view raw
1openapi: 3.0.4 2info: 3 title: OpenAPI 3.0.4 security api key example 4 version: '1' 5paths: 6 /foo: 7 get: 8 responses: 9 '200': 10 description: OK 11 security: 12 - foo: [] 13 /bar: 14 get: 15 responses: 16 '200': 17 description: OK 18 security: 19 - bar: [] 20components: 21 securitySchemes: 22 foo: 23 in: query 24 name: foo 25 type: apiKey 26 bar: 27 in: cookie 28 name: bar 29 type: apiKey