From f341d95213f309d8d2b9700971326d84d5f00e26 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 22 Apr 2025 00:08:00 +0000 Subject: [PATCH] chore: update OpenAPI specification --- fern/apis/api/openapi.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) 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": {