Skip to content
Merged
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
159 changes: 159 additions & 0 deletions fern/apis/fai/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2067,6 +2067,16 @@
"type": "string",
"title": "Org Name"
}
},
{
"name": "preview",
"in": "query",
"required": false,
"schema": {
"type": "boolean",
"default": false,
"title": "Preview"
}
}
],
"responses": {
Expand Down Expand Up @@ -2202,6 +2212,45 @@
]
}
},
"/settings/reindex-preview-callback": {
"post": {
"tags": ["Settings"],
"summary": "Reindex Preview Callback",
"description": "Handle callback from Upstash QStash when preview reindex completes.",
"operationId": "reindex_preview_callback",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpstashCallbackRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
},
"x-fern-audiences": ["internal"]
}
},
"/slack/integrations": {
"post": {
"tags": ["Slack"],
Expand Down Expand Up @@ -3880,6 +3929,116 @@
"required": ["guidance"],
"title": "UpdateGuidanceResponse"
},
"UpstashCallbackRequest": {
"properties": {
"status": {
"type": "integer",
"title": "Status"
},
"sourceMessageId": {
"type": "string",
"title": "Sourcemessageid"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Url"
},
"method": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Method"
},
"sourceHeader": {
"anyOf": [
{
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"type": "object"
},
{
"type": "null"
}
],
"title": "Sourceheader"
},
"sourceBody": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sourcebody"
},
"notBefore": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Notbefore"
},
"createdAt": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Createdat"
},
"scheduleId": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Scheduleid"
},
"callerIP": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Callerip"
}
},
"type": "object",
"required": ["status", "sourceMessageId"],
"title": "UpstashCallbackRequest",
"description": "Callback payload from Upstash QStash when a queued job completes."
},
"ValidationError": {
"properties": {
"loc": {
Expand Down