Skip to content
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
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
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