diff --git a/fern/apis/api/openapi.json b/fern/apis/api/openapi.json index b462fde1..67529671 100644 --- a/fern/apis/api/openapi.json +++ b/fern/apis/api/openapi.json @@ -15229,6 +15229,30 @@ } } }, + "KeypadInputPlan": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean", + "description": "This keeps track of whether the user has enabled keypad input.\nBy default, it is off.\n\n@default false" + }, + "timeoutSeconds": { + "type": "number", + "description": "This is the time in seconds to wait before processing the input.\nIf the input is not received within this time, the input will be ignored.\nIf set to \"off\", the input will be processed when the user enters a delimiter or immediately if no delimiter is used.\n\n@default 2", + "minimum": 0, + "maximum": 10 + }, + "delimiters": { + "type": "string", + "description": "This is the delimiter(s) that will be used to process the input.\nCan be '#', '*', or an empty array.", + "enum": [ + "#", + "*", + "" + ] + } + } + }, "WorkflowUserEditable": { "type": "object", "properties": { @@ -15739,6 +15763,14 @@ "items": { "type": "string" } + }, + "keypadInputPlan": { + "description": "This is the plan for keypad input handling during workflow calls.", + "allOf": [ + { + "$ref": "#/components/schemas/KeypadInputPlan" + } + ] } }, "required": [ @@ -22466,30 +22498,6 @@ } } }, - "KeypadInputPlan": { - "type": "object", - "properties": { - "enabled": { - "type": "boolean", - "description": "This keeps track of whether the user has enabled keypad input.\nBy default, it is off.\n\n@default false" - }, - "timeoutSeconds": { - "type": "number", - "description": "This is the time in seconds to wait before processing the input.\nIf the input is not received within this time, the input will be ignored.\nIf set to \"off\", the input will be processed when the user enters a delimiter or immediately if no delimiter is used.\n\n@default 2", - "minimum": 0, - "maximum": 10 - }, - "delimiters": { - "type": "string", - "description": "This is the delimiter(s) that will be used to process the input.\nCan be '#', '*', or an empty array.", - "enum": [ - "#", - "*", - "" - ] - } - } - }, "CreateAssistantDTO": { "type": "object", "properties": { @@ -24642,6 +24650,14 @@ "items": { "type": "string" } + }, + "keypadInputPlan": { + "description": "This is the plan for keypad input handling during workflow calls.", + "allOf": [ + { + "$ref": "#/components/schemas/KeypadInputPlan" + } + ] } }, "required": [ @@ -31049,7 +31065,7 @@ ] }, "headers": { - "description": "These are the headers to send in the request.", + "description": "These are the headers to send with the request.", "allOf": [ { "$ref": "#/components/schemas/JsonSchema" @@ -32591,7 +32607,7 @@ ] }, "headers": { - "description": "These are the headers to send in the request.", + "description": "These are the headers to send with the request.", "allOf": [ { "$ref": "#/components/schemas/JsonSchema" @@ -32970,7 +32986,7 @@ ] }, "headers": { - "description": "These are the headers to send in the request.", + "description": "These are the headers to send with the request.", "allOf": [ { "$ref": "#/components/schemas/JsonSchema" @@ -34641,6 +34657,14 @@ "items": { "type": "string" } + }, + "keypadInputPlan": { + "description": "This is the plan for keypad input handling during workflow calls.", + "allOf": [ + { + "$ref": "#/components/schemas/KeypadInputPlan" + } + ] } }, "required": [ @@ -35163,6 +35187,14 @@ "items": { "type": "string" } + }, + "keypadInputPlan": { + "description": "This is the plan for keypad input handling during workflow calls.", + "allOf": [ + { + "$ref": "#/components/schemas/KeypadInputPlan" + } + ] } } },