Skip to content

Commit 75c5d10

Browse files
chore: update OpenAPI specification (#318)
Co-authored-by: GitHub Actions <[email protected]>
1 parent f8db9a3 commit 75c5d10

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

fern/apis/api/openapi.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15975,6 +15975,10 @@
1597515975
"minimum": 1,
1597615976
"maximum": 10
1597715977
},
15978+
"idleMessageResetCountOnUserSpeechEnabled": {
15979+
"type": "boolean",
15980+
"description": "This determines whether the idle message count is reset whenever the user speaks.\n\n@default false"
15981+
},
1597815982
"idleTimeoutSeconds": {
1597915983
"type": "number",
1598015984
"description": "This is the timeout in seconds before a message from `idleMessages` is spoken. The clock starts when the assistant finishes speaking and remains active until the user speaks.\n\n@default 10",
@@ -18031,6 +18035,39 @@
1803118035
"members"
1803218036
]
1803318037
},
18038+
"PhoneNumberHookCallRinging": {
18039+
"type": "object",
18040+
"properties": {
18041+
"on": {
18042+
"type": "string",
18043+
"description": "This is the event to trigger the hook on",
18044+
"enum": [
18045+
"call.ringing"
18046+
],
18047+
"maxLength": 1000
18048+
},
18049+
"do": {
18050+
"type": "array",
18051+
"description": "This is the set of actions to perform when the hook triggers",
18052+
"items": {
18053+
"oneOf": [
18054+
{
18055+
"$ref": "#/components/schemas/TransferPhoneNumberHookAction",
18056+
"title": "TransferPhoneNumberHookAction"
18057+
},
18058+
{
18059+
"$ref": "#/components/schemas/SayPhoneNumberHookAction",
18060+
"title": "SayPhoneNumberHookAction"
18061+
}
18062+
]
18063+
}
18064+
}
18065+
},
18066+
"required": [
18067+
"on",
18068+
"do"
18069+
]
18070+
},
1803418071
"ImportTwilioPhoneNumberDTO": {
1803518072
"type": "object",
1803618073
"properties": {

0 commit comments

Comments
 (0)