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

Version Path
bullet_train-outgoing_webhooks-1.2.23 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.22 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.21 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.20 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.19 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.18 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.17 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.16 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.15 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.14 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.13 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.12 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.11 app/views/api/v1/open_api/index.yaml.erb
bullet_train-outgoing_webhooks-1.2.10 app/views/api/v1/open_api/index.yaml.erb