Skip to content

Update API specifications with fern api update #566

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
86 changes: 59 additions & 27 deletions fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -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"
}
]
}
}
},
Expand Down