Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌿 ✨ [Scheduled] Update API Spec #165

Merged
merged 16 commits into from
Jan 23, 2025
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
dded13b
feat(api): add Gemini Flash 2.0 Multimodal Live API support
fern-api[bot] Jan 8, 2025
bf46e67
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 9, 2025
acaa203
feat(openapi): Add new credential types and Azure blob storage
fern-api[bot] Jan 9, 2025
f8083b0
feat(openapi): update OpenAPI spec to support multiple providers for …
fern-api[bot] Jan 11, 2025
554a319
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 12, 2025
c9712d5
feat(openapi): add new tool types and improve tool configuration
fern-api[bot] Jan 12, 2025
336612c
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 15, 2025
ff1f9c2
feat(openapi.json): added ClientInboundMessageEndCall object and EndC…
fern-api[bot] Jan 15, 2025
134157d
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 16, 2025
27e9efa
fix(openapi): remove orgId from logsQuery and logsDelete parameters a…
fern-api[bot] Jan 16, 2025
0ec07d1
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 20, 2025
67f773f
fix(openapi): update OpenAPI specification for knowledge base and wor…
fern-api[bot] Jan 20, 2025
a462605
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 22, 2025
c87f546
fix(openapi.json): update region enum and add UpdateWorkflowDTO schema
fern-api[bot] Jan 22, 2025
fa694b6
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 23, 2025
58be5cf
fix(openapi): add ToolCall schema and update transcript enum
fern-api[bot] Jan 23, 2025
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
Prev Previous commit
Next Next commit
fix(openapi.json): update region enum and add UpdateWorkflowDTO schema
  • Loading branch information
fern-api[bot] committed Jan 22, 2025
commit c87f54682b005ca9a677369158d58f531326dbd7
74 changes: 62 additions & 12 deletions fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9486,12 +9486,14 @@
"description": "This is the region of the Azure resource.",
"enum": [
"australia",
"canada",
"canadaeast",
"canadacentral",
"eastus2",
"eastus",
"france",
"india",
"japan",
"japaneast",
"japanwest",
"uaenorth",
"northcentralus",
"norway",
Expand Down Expand Up @@ -9541,12 +9543,14 @@
"type": "string",
"enum": [
"australia",
"canada",
"canadaeast",
"canadacentral",
"eastus2",
"eastus",
"france",
"india",
"japan",
"japaneast",
"japanwest",
"uaenorth",
"northcentralus",
"norway",
Expand Down Expand Up @@ -19208,12 +19212,14 @@
"description": "This is the region of the Azure resource.",
"enum": [
"australia",
"canada",
"canadaeast",
"canadacentral",
"eastus2",
"eastus",
"france",
"india",
"japan",
"japaneast",
"japanwest",
"uaenorth",
"northcentralus",
"norway",
Expand Down Expand Up @@ -19285,12 +19291,14 @@
"type": "string",
"enum": [
"australia",
"canada",
"canadaeast",
"canadacentral",
"eastus2",
"eastus",
"france",
"india",
"japan",
"japaneast",
"japanwest",
"uaenorth",
"northcentralus",
"norway",
Expand Down Expand Up @@ -21214,12 +21222,14 @@
"description": "This is the region of the Azure resource.",
"enum": [
"australia",
"canada",
"canadaeast",
"canadacentral",
"eastus2",
"eastus",
"france",
"india",
"japan",
"japaneast",
"japanwest",
"uaenorth",
"northcentralus",
"norway",
Expand Down Expand Up @@ -21259,12 +21269,14 @@
"type": "string",
"enum": [
"australia",
"canada",
"canadaeast",
"canadacentral",
"eastus2",
"eastus",
"france",
"india",
"japan",
"japaneast",
"japanwest",
"uaenorth",
"northcentralus",
"norway",
Expand Down Expand Up @@ -23371,6 +23383,44 @@
"edges"
]
},
"UpdateWorkflowDTO": {
"type": "object",
"properties": {
"nodes": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/Say",
"title": "Say"
},
{
"$ref": "#/components/schemas/Gather",
"title": "Gather"
},
{
"$ref": "#/components/schemas/Hangup",
"title": "Hangup"
},
{
"$ref": "#/components/schemas/CreateWorkflowDTO",
"title": "CreateWorkflowDTO"
}
]
}
},
"name": {
"type": "string",
"maxLength": 40
},
"edges": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Edge"
}
}
}
},
"ClientMessageConversationUpdate": {
"type": "object",
"properties": {
Expand Down
Loading