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
37 changes: 37 additions & 0 deletions fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -15975,6 +15975,10 @@
"minimum": 1,
"maximum": 10
},
"idleMessageResetCountOnUserSpeechEnabled": {
"type": "boolean",
"description": "This determines whether the idle message count is reset whenever the user speaks.\n\n@default false"
},
"idleTimeoutSeconds": {
"type": "number",
"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",
Expand Down Expand Up @@ -18031,6 +18035,39 @@
"members"
]
},
"PhoneNumberHookCallRinging": {
"type": "object",
"properties": {
"on": {
"type": "string",
"description": "This is the event to trigger the hook on",
"enum": [
"call.ringing"
],
"maxLength": 1000
},
"do": {
"type": "array",
"description": "This is the set of actions to perform when the hook triggers",
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/TransferPhoneNumberHookAction",
"title": "TransferPhoneNumberHookAction"
},
{
"$ref": "#/components/schemas/SayPhoneNumberHookAction",
"title": "SayPhoneNumberHookAction"
}
]
}
}
},
"required": [
"on",
"do"
]
},
"ImportTwilioPhoneNumberDTO": {
"type": "object",
"properties": {
Expand Down