Skip to content

Commit c87f546

Browse files
committed
fix(openapi.json): update region enum and add UpdateWorkflowDTO schema
1 parent a462605 commit c87f546

File tree

1 file changed

+62
-12
lines changed

1 file changed

+62
-12
lines changed

fern/apis/api/openapi.json

Lines changed: 62 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9486,12 +9486,14 @@
94869486
"description": "This is the region of the Azure resource.",
94879487
"enum": [
94889488
"australia",
9489-
"canada",
9489+
"canadaeast",
9490+
"canadacentral",
94909491
"eastus2",
94919492
"eastus",
94929493
"france",
94939494
"india",
9494-
"japan",
9495+
"japaneast",
9496+
"japanwest",
94959497
"uaenorth",
94969498
"northcentralus",
94979499
"norway",
@@ -9541,12 +9543,14 @@
95419543
"type": "string",
95429544
"enum": [
95439545
"australia",
9544-
"canada",
9546+
"canadaeast",
9547+
"canadacentral",
95459548
"eastus2",
95469549
"eastus",
95479550
"france",
95489551
"india",
9549-
"japan",
9552+
"japaneast",
9553+
"japanwest",
95509554
"uaenorth",
95519555
"northcentralus",
95529556
"norway",
@@ -19208,12 +19212,14 @@
1920819212
"description": "This is the region of the Azure resource.",
1920919213
"enum": [
1921019214
"australia",
19211-
"canada",
19215+
"canadaeast",
19216+
"canadacentral",
1921219217
"eastus2",
1921319218
"eastus",
1921419219
"france",
1921519220
"india",
19216-
"japan",
19221+
"japaneast",
19222+
"japanwest",
1921719223
"uaenorth",
1921819224
"northcentralus",
1921919225
"norway",
@@ -19285,12 +19291,14 @@
1928519291
"type": "string",
1928619292
"enum": [
1928719293
"australia",
19288-
"canada",
19294+
"canadaeast",
19295+
"canadacentral",
1928919296
"eastus2",
1929019297
"eastus",
1929119298
"france",
1929219299
"india",
19293-
"japan",
19300+
"japaneast",
19301+
"japanwest",
1929419302
"uaenorth",
1929519303
"northcentralus",
1929619304
"norway",
@@ -21214,12 +21222,14 @@
2121421222
"description": "This is the region of the Azure resource.",
2121521223
"enum": [
2121621224
"australia",
21217-
"canada",
21225+
"canadaeast",
21226+
"canadacentral",
2121821227
"eastus2",
2121921228
"eastus",
2122021229
"france",
2122121230
"india",
21222-
"japan",
21231+
"japaneast",
21232+
"japanwest",
2122321233
"uaenorth",
2122421234
"northcentralus",
2122521235
"norway",
@@ -21259,12 +21269,14 @@
2125921269
"type": "string",
2126021270
"enum": [
2126121271
"australia",
21262-
"canada",
21272+
"canadaeast",
21273+
"canadacentral",
2126321274
"eastus2",
2126421275
"eastus",
2126521276
"france",
2126621277
"india",
21267-
"japan",
21278+
"japaneast",
21279+
"japanwest",
2126821280
"uaenorth",
2126921281
"northcentralus",
2127021282
"norway",
@@ -23371,6 +23383,44 @@
2337123383
"edges"
2337223384
]
2337323385
},
23386+
"UpdateWorkflowDTO": {
23387+
"type": "object",
23388+
"properties": {
23389+
"nodes": {
23390+
"type": "array",
23391+
"items": {
23392+
"oneOf": [
23393+
{
23394+
"$ref": "#/components/schemas/Say",
23395+
"title": "Say"
23396+
},
23397+
{
23398+
"$ref": "#/components/schemas/Gather",
23399+
"title": "Gather"
23400+
},
23401+
{
23402+
"$ref": "#/components/schemas/Hangup",
23403+
"title": "Hangup"
23404+
},
23405+
{
23406+
"$ref": "#/components/schemas/CreateWorkflowDTO",
23407+
"title": "CreateWorkflowDTO"
23408+
}
23409+
]
23410+
}
23411+
},
23412+
"name": {
23413+
"type": "string",
23414+
"maxLength": 40
23415+
},
23416+
"edges": {
23417+
"type": "array",
23418+
"items": {
23419+
"$ref": "#/components/schemas/Edge"
23420+
}
23421+
}
23422+
}
23423+
},
2337423424
"ClientMessageConversationUpdate": {
2337523425
"type": "object",
2337623426
"properties": {

0 commit comments

Comments
 (0)