Skip to content

Commit

Permalink
Update openapi.json
Browse files Browse the repository at this point in the history
  • Loading branch information
leggetter authored May 14, 2024
1 parent 6b186d8 commit 4659d21
Showing 1 changed file with 107 additions and 2 deletions.
109 changes: 107 additions & 2 deletions fern/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,9 @@
"TELNYX",
"TOKENIO",
"FISERV",
"BONDSMITH"
"BONDSMITH",
"VERCEL_LOG_DRAINS",
"VERCEL"
]
},
"IntegrationFeature": {
Expand Down Expand Up @@ -1741,6 +1743,22 @@
],
"additionalProperties": false
},
"VercelLogDrainsIntegrationConfigs": {
"type": "object",
"properties": {
"webhook_secret_key": {
"type": "string",
"nullable": true
},
"vercel_log_drains_secret": {
"type": "string"
}
},
"required": [
"vercel_log_drains_secret"
],
"additionalProperties": false
},
"Integration": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1788,6 +1806,9 @@
{
"$ref": "#/components/schemas/ShopifyIntegrationConfigs"
},
{
"$ref": "#/components/schemas/VercelLogDrainsIntegrationConfigs"
},
{
"type": "object",
"properties": {},
Expand Down Expand Up @@ -4595,6 +4616,78 @@
"additionalProperties": false,
"x-docs-type": "Bondsmith"
},
"VerificationVercelLogDrainsConfigs": {
"type": "object",
"properties": {
"webhook_secret_key": {
"type": "string",
"nullable": true
},
"vercel_log_drains_secret": {
"type": "string"
}
},
"required": [
"vercel_log_drains_secret"
],
"additionalProperties": false,
"description": "The verification configs for Vercel Log Drains. Only included if the ?include=verification.configs query param is present",
"x-docs-type": "VercelLogDrainsConfigs"
},
"VerificationVercelLogDrains": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"vercel_log_drains",
"VERCEL_LOG_DRAINS"
]
},
"configs": {
"$ref": "#/components/schemas/VerificationVercelLogDrainsConfigs"
}
},
"required": [
"type"
],
"additionalProperties": false,
"x-docs-type": "Vercel Log Drains"
},
"VerificationVercelConfigs": {
"type": "object",
"properties": {
"webhook_secret_key": {
"type": "string"
}
},
"required": [
"webhook_secret_key"
],
"additionalProperties": false,
"description": "The verification configs for Vercel. Only included if the ?include=verification.configs query param is present",
"x-docs-type": "VercelConfigs"
},
"VerificationVercel": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"vercel",
"VERCEL"
]
},
"configs": {
"$ref": "#/components/schemas/VerificationVercelConfigs"
}
},
"required": [
"type"
],
"additionalProperties": false,
"x-docs-type": "Vercel"
},
"VerificationConfig": {
"oneOf": [
{
Expand Down Expand Up @@ -4752,6 +4845,12 @@
},
{
"$ref": "#/components/schemas/VerificationBondsmith"
},
{
"$ref": "#/components/schemas/VerificationVercelLogDrains"
},
{
"$ref": "#/components/schemas/VerificationVercel"
}
],
"description": "The verification configs for the specified verification type"
Expand Down Expand Up @@ -11657,6 +11756,9 @@
{
"$ref": "#/components/schemas/ShopifyIntegrationConfigs"
},
{
"$ref": "#/components/schemas/VercelLogDrainsIntegrationConfigs"
},
{
"type": "object",
"properties": {},
Expand Down Expand Up @@ -11822,6 +11924,9 @@
{
"$ref": "#/components/schemas/ShopifyIntegrationConfigs"
},
{
"$ref": "#/components/schemas/VercelLogDrainsIntegrationConfigs"
},
{
"type": "object",
"properties": {},
Expand Down Expand Up @@ -19364,4 +19469,4 @@
}
}
}
}
}

0 comments on commit 4659d21

Please sign in to comment.