Sha256: 9bb5c6196941583057512c12be3bf5015b03e69f0a2f4a6b4aec47b99f3d5774
Contents?: true
Size: 962 Bytes
Versions: 14
Compression:
Stored size: 962 Bytes
Contents
openapi: 3.1.0 info: title: Bullet Train API description: | The baseline API of a new Bullet Train application. license: name: MIT url: https://opensource.org/licenses/MIT version: "<%= @version.upcase %>" servers: - url: <%= ENV["BASE_URL"] %>/api/<%= @version %> components: securitySchemes: BearerAuth: type: http scheme: bearer schemas: <%= automatic_components_for Webhooks::Outgoing::Endpoint %> <%= automatic_components_for Webhooks::Outgoing::Event %> <%# 🚅 super scaffolding will insert new components above this line. %> parameters: id: name: id in: path required: true schema: type: string security: - BearerAuth: [] paths: <%= automatic_paths_for Webhooks::Outgoing::Endpoint, Team %> <%= automatic_paths_for Webhooks::Outgoing::Event, Team, except: %i[create update delete] %> <%# 🚅 super scaffolding will insert new paths above this line. %>
Version data entries
14 entries across 14 versions & 1 rubygems