diff --git a/fern/apis/api/openapi.json b/fern/apis/api/openapi.json index d432d32d9..298680cf9 100644 --- a/fern/apis/api/openapi.json +++ b/fern/apis/api/openapi.json @@ -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", @@ -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": {