Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,5 @@ node_modules
#DS Store
.DS_Store

#Local sample files (Lauren likes to create these locally to look at effect of openapi changes)
samples/**
2 changes: 2 additions & 0 deletions api/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ paths:
description: Creates a new project within an organization. A project is a container for provider apps, integrations, and connections.
operationId: createProject
tags: ["Project"]
security: # Only bearer auth works for this endpoint
- Bearer: []
requestBody:
content:
application/json:
Expand Down
23 changes: 5 additions & 18 deletions api/generated/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1365,6 +1365,11 @@
"tags": [
"Project"
],
"security": [
{
"Bearer": []
}
],
"requestBody": {
"content": {
"application/json": {
Expand Down Expand Up @@ -36138,7 +36143,6 @@
"baseURL",
"authType",
"support",
"providerOpts",
"defaultModule"
],
"properties": {
Expand Down Expand Up @@ -36776,14 +36780,6 @@
}
}
},
"providerOpts": {
"title": "Provider Options",
"description": "Additional provider-specific metadata.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"authHealthCheck": {
"title": "Auth Health Check",
"type": "object",
Expand Down Expand Up @@ -37454,7 +37450,6 @@
"baseURL",
"authType",
"support",
"providerOpts",
"defaultModule"
],
"properties": {
Expand Down Expand Up @@ -38092,14 +38087,6 @@
}
}
},
"providerOpts": {
"title": "Provider Options",
"description": "Additional provider-specific metadata.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"authHealthCheck": {
"title": "Auth Health Check",
"type": "object",
Expand Down
10 changes: 0 additions & 10 deletions catalog/catalog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -528,13 +528,6 @@ components:
support:
$ref: '#/components/schemas/Support'

ProviderOpts:
title: Provider Options
description: Additional provider-specific metadata.
type: object
additionalProperties:
type: string

Provider:
title: Provider
type: string
Expand All @@ -548,7 +541,6 @@ components:
- baseURL
- authType
- support
- providerOpts
- defaultModule
properties:
name:
Expand All @@ -574,8 +566,6 @@ components:
$ref: '#/components/schemas/CustomAuthOpts'
support:
$ref: '#/components/schemas/Support'
providerOpts:
$ref: '#/components/schemas/ProviderOpts'
authHealthCheck:
$ref: '#/components/schemas/AuthHealthCheck'
displayName:
Expand Down
35 changes: 0 additions & 35 deletions catalog/generated/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -1561,14 +1561,6 @@
}
}
},
"ProviderOpts": {
"title": "Provider Options",
"description": "Additional provider-specific metadata.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"Provider": {
"title": "Provider",
"type": "string",
Expand All @@ -1582,7 +1574,6 @@
"baseURL",
"authType",
"support",
"providerOpts",
"defaultModule"
],
"properties": {
Expand Down Expand Up @@ -2220,14 +2211,6 @@
}
}
},
"providerOpts": {
"title": "Provider Options",
"description": "Additional provider-specific metadata.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"authHealthCheck": {
"title": "Auth Health Check",
"type": "object",
Expand Down Expand Up @@ -2695,7 +2678,6 @@
"baseURL",
"authType",
"support",
"providerOpts",
"defaultModule"
],
"properties": {
Expand Down Expand Up @@ -3333,14 +3315,6 @@
}
}
},
"providerOpts": {
"title": "Provider Options",
"description": "Additional provider-specific metadata.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"authHealthCheck": {
"title": "Auth Health Check",
"type": "object",
Expand Down Expand Up @@ -3795,7 +3769,6 @@
"baseURL",
"authType",
"support",
"providerOpts",
"defaultModule"
],
"properties": {
Expand Down Expand Up @@ -4433,14 +4406,6 @@
}
}
},
"providerOpts": {
"title": "Provider Options",
"description": "Additional provider-specific metadata.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"authHealthCheck": {
"title": "Auth Health Check",
"type": "object",
Expand Down
Loading