Update an existing shared conversation flow component

patch/update-conversation-flow-component/{conversation_flow_component_id}

Path parameters

conversation_flow_component_idstring required

ID of the component to update

Request body

namestring

Name of the component

flex_modeboolean nullable

If enabled, the whole component will be converted as a Single Prompt agent.

start_node_idstring nullable

ID of the starting node

Example request

{
  "name": "Customer Information Collector",
  "tools": [
    {
      "type": "custom",
      "name": "get_customer_info",
      "description": "Get customer information from database",
      "tool_id": "tool_001",
      "url": "https://api.example.com/customer",
      "method": "GET"
    }
  ],
  "mcps": [
    {
      "headers": {
        "Authorization": "Bearer 1234567890"
      },
      "query_params": {
        "index": "1",
        "key": "value"
      }
    }
  ],
  "nodes": [
    {
      "id": "collect_info",
      "type": "conversation",
      "instruction": {
        "type": "prompt",
        "text": "Ask the customer for their name and contact information."
      }
    }
  ],
  "start_node_id": "collect_info",
  "begin_tag_display_position": {
    "x": 100,
    "y": 200
  },
  "notes": [
    {
      "id": "note_abc123",
      "content": "Remember to handle edge cases here.",
      "display_position": {
        "x": 300,
        "y": 150
      },
      "size": {
        "width": 200,
        "height": 100
      }
    }
  ]
}

Response

Successfully updated conversation flow component

namestring required

Name of the component

flex_modeboolean nullable

If enabled, the whole component will be converted as a Single Prompt agent.

start_node_idstring nullable

ID of the starting node

conversation_flow_component_idstring required

Unique identifier for the component

user_modified_timestampinteger required

Timestamp of last user modification

linked_conversation_flow_idsstring[]

IDs of conversation flows linked to this shared component

Example response

{
  "name": "Customer Information Collector",
  "tools": [
    {
      "type": "custom",
      "name": "get_customer_info",
      "description": "Get customer information from database",
      "tool_id": "tool_001",
      "url": "https://api.example.com/customer",
      "method": "GET"
    }
  ],
  "mcps": [
    {
      "headers": {
        "Authorization": "Bearer 1234567890"
      },
      "query_params": {
        "index": "1",
        "key": "value"
      }
    }
  ],
  "nodes": [
    {
      "id": "collect_info",
      "type": "conversation",
      "instruction": {
        "type": "prompt",
        "text": "Ask the customer for their name and contact information."
      }
    }
  ],
  "start_node_id": "collect_info",
  "begin_tag_display_position": {
    "x": 100,
    "y": 200
  },
  "notes": [
    {
      "id": "note_abc123",
      "content": "Remember to handle edge cases here.",
      "display_position": {
        "x": 300,
        "y": 150
      },
      "size": {
        "width": 200,
        "height": 100
      }
    }
  ]
}

Changes

Changed in 14 of the 28 revisions of this API.97177272

  • 40402ca870b948See the full diff
    • changed the pattern of the request property nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version/oneOf[subschema #2]/ from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$

      request-property-pattern-changed

    • changed the pattern of the request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version/oneOf[subschema #2]/ from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$

      request-property-pattern-changed

    • changed the pattern of the request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version/oneOf[subschema #2]/ from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$

      request-property-pattern-changed

    • changed the pattern of the request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version/oneOf[subschema #2]/ from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$

      request-property-pattern-changed

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/enable_typing_sound

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/enable_typing_sound

      new-optional-request-property

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • added the new optional request property flex_mode

      new-optional-request-property

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/flex_mode to the response with the 200 status

      response-optional-property-added

  • 7dd16ddf69d8422See the full diff
    • request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version list-of-types was narrowed by removing types number from media type application/json

      request-property-list-of-types-narrowed

    • request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version list-of-types was narrowed by removing types number from media type application/json

      request-property-list-of-types-narrowed

    • response property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • response property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • changed the pattern of the request property nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version/oneOf[subschema #2]/ from ^[a-z0-9_-]+$ to ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$

      request-property-pattern-changed

    • changed the pattern of the request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version/oneOf[subschema #2]/ from ^[a-z0-9_-]+$ to ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$

      request-property-pattern-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^[a-z0-9_-]+$ to ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^[a-z0-9_-]+$ to ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

  • f1a0d7c1e36c1822See the full diff
    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • removed the enum value gemini-2.5-flash of the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-removed

    • request property nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version list-of-types was narrowed by removing types number from media type application/json

      request-property-list-of-types-narrowed

    • request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version list-of-types was narrowed by removing types number from media type application/json

      request-property-list-of-types-narrowed

    • response property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • response property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[AgentOverrideConfig]/allow_dtmf_interruption

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/kb_config

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[SubagentNode]/allOf[AgentOverrideConfig]/allow_dtmf_interruption

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/kb_config

      new-optional-request-property

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[AgentOverrideConfig]/allow_dtmf_interruption to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/kb_config to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[AgentOverrideConfig]/allow_dtmf_interruption to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/kb_config to the response with the 200 status

      response-optional-property-added

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

  • 1b4a9d84942a21416See the full diff
    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[subschema #2]/code response property's maxLength was increased from 5000 to 20000 for the response status 200

      response-property-max-length-increased

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CodeTool]/code response property's maxLength was increased from 5000 to 20000 for the response status 200

      response-property-max-length-increased

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.5 enum value to the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • the nodes/items/oneOf[CodeNode]/allOf[subschema #2]/code request property's maxLength was increased from 5000 to 20000

      request-property-max-length-increased

    • the nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CodeTool]/code request property's maxLength was increased from 5000 to 20000

      request-property-max-length-increased

  • 8ee53928bf3131531See the full diff
    • removed NodeInstructionPrompt NodeInstructionStaticText from the nodes/items/oneOf[SmsNode]/allOf[subschema #2]/instruction request property oneOf list

      request-property-one-of-removed

    • added NodeInstruction SmsInstructionTemplate to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[subschema #2]/instruction response property oneOf list for the response status 200

      response-property-one-of-added

    • added SmsContentTemplate to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[SendSMSTool]/sms_content response property oneOf list for the response status 200

      response-property-one-of-added

    • the nodes/items/oneOf[CodeNode]/allOf[subschema #2]/code request property's maxLength was set to 5000

      request-property-max-length-set

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new optional request property nodes/items/oneOf[CodeNode]/allOf[subschema #2]/enable_typing_sound

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[FunctionNode]/allOf[subschema #2]/enable_typing_sound

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[MCPNode]/allOf[subschema #2]/enable_typing_sound

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CodeTool]/enable_typing_sound

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CustomTool]/enable_typing_sound

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[MCPTool]/enable_typing_sound

      new-optional-request-property

    • added the new optional request property tools/items/allOf[subschema #1]/oneOf[CustomTool]/enable_typing_sound

      new-optional-request-property

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added NodeInstruction SmsInstructionTemplate to the nodes/items/oneOf[SmsNode]/allOf[subschema #2]/instruction request property oneOf list

      request-property-one-of-added

    • added SmsContentTemplate to the nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[SendSMSTool]/sms_content request property oneOf list

      request-property-one-of-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CodeTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CustomTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[MCPTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/tools/items/allOf[subschema #1]/oneOf[CustomTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • removed NodeInstructionPrompt NodeInstructionStaticText from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[subschema #2]/instruction response property oneOf list for the response status 200

      response-property-one-of-removed

  • 56de19127afb1411See the full diff
    • added SubagentNode to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/ response property oneOf list for the response status 200

      response-property-one-of-added

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tool_ids

      request-property-removed

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools

      request-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tool_ids from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools from the response with the 200 status

      response-optional-property-removed

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[BooleanAnalysisData]/conditional_prompt

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[EnumAnalysisData]/conditional_prompt

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[NumberAnalysisData]/conditional_prompt

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[StringAnalysisData]/conditional_prompt

      new-optional-request-property

    • added the new optional request property notes

      new-optional-request-property

    • added SubagentNode to the nodes/items/ request property oneOf list

      request-property-one-of-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[BooleanAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[EnumAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[NumberAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[StringAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/notes to the response with the 200 status

      response-optional-property-added

  • 3aa6f6e028ef2630See the full diff
    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new optional request property nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/keep_current_language

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/keep_current_language

      new-optional-request-property

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/keep_current_language to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/keep_current_language to the response with the 200 status

      response-optional-property-added

  • 424df3aa79005110140See the full diff
    • added NodeBaseCommon to the nodes/items/oneOf[ComponentNode]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[BranchNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[EndNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[MCPNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[SmsNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • added NodeBaseCommon subschema #2 to the nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/ request property allOf list

      request-property-all-of-added

    • the nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[BranchNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[EndNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[MCPNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[SmsNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • the nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/ request property type/format changed from object/ to /

      request-property-type-changed

    • added CodeNode to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/ response property oneOf list for the response status 200

      response-property-one-of-added

    • added CodeTool to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/ response property oneOf list for the response status 200

      response-property-one-of-added

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed AgentOverrideConfig from the nodes/items/oneOf[FunctionNode]/ request property allOf list

      request-property-all-of-removed

    • removed AgentOverrideConfig from the nodes/items/oneOf[MCPNode]/ request property allOf list

      request-property-all-of-removed

    • removed NodeBase from the nodes/items/oneOf[ComponentNode]/ request property allOf list

      request-property-all-of-removed

    • removed the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[BranchNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/model_choice

      request-property-removed

    • removed the request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #2: Warm Transfer]/opt_out_initial_message

      request-property-removed

    • removed the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[EndNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/model_choice

      request-property-removed

    • removed the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[FunctionNode]/allOf[subschema #3 -> subschema #2]/model_choice

      request-property-removed

    • removed the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[MCPNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[PressDigitNode]/allOf[subschema #2]/model_choice

      request-property-removed

    • removed the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[SmsNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/display_position

      request-property-removed

    • removed the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/global_node_setting

      request-property-removed

    • removed the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/id

      request-property-removed

    • removed the request property nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/name

      request-property-removed

    • removed the request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/model_choice

      request-property-removed

    • removed the request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #2: Warm Transfer]/opt_out_initial_message

      request-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #2: Warm Transfer]/opt_out_initial_message from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[subschema #3 -> subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #2: Warm Transfer]/opt_out_initial_message from the response with the 200 status

      response-optional-property-removed

    • added the new optional request property nodes/items/oneOf[BridgeTransferNode]/allOf[subschema #2]/instruction

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[BridgeTransferNode]/allOf[subschema #2]/speak_during_execution

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[CancelTransferNode]/allOf[subschema #2]/instruction

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[CancelTransferNode]/allOf[subschema #2]/speak_during_execution

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ComponentNode]/allOf[subschema #2]/finetune_transition_examples

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/execution_message_description

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/execution_message_type

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/speak_during_execution

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/execution_message_description

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/execution_message_type

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/speak_during_execution

      new-optional-request-property

    • added CodeNode to the nodes/items/ request property oneOf list

      request-property-one-of-added

    • added CodeTool to the nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/ request property oneOf list

      request-property-one-of-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[subschema #2]/instruction to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[subschema #2]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[subschema #2]/instruction to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[subschema #2]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ComponentNode]/allOf[subschema #2]/finetune_transition_examples to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/execution_message_description to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/execution_message_type to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/execution_message_description to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/execution_message_type to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added NodeBaseCommon to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ComponentNode]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed AgentOverrideConfig from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed AgentOverrideConfig from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed NodeBase from the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ComponentNode]/ response property allOf list for the response status 200

      response-property-all-of-removed

  • 8fbf8c54a14211533See the full diff
    • the nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_id request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[BooleanAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[EnumAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[NumberAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[StringAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_id request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[BooleanAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[EnumAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[NumberAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[StringAnalysisData]/name request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • the nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_id request property's minLength was increased from 0 to 1

      request-property-min-length-increased

    • added the new claude-4.6-sonnet enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[subschema #3]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[BooleanAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[EnumAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[NumberAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[StringAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #1: Cold Transfer]/transfer_ring_duration_ms

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #2: Warm Transfer]/transfer_ring_duration_ms

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/transfer_ring_duration_ms

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[BooleanAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[EnumAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[NumberAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[StringAnalysisData]/required

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #1: Cold Transfer]/transfer_ring_duration_ms

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #2: Warm Transfer]/transfer_ring_duration_ms

      new-optional-request-property

    • added the new optional request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/transfer_ring_duration_ms

      new-optional-request-property

    • added the new claude-4.6-sonnet enum value to the request property nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the request property nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the request property nodes/items/oneOf[FunctionNode]/allOf[subschema #3]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the request property nodes/items/oneOf[PressDigitNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the request property nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model

      request-property-enum-value-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[BooleanAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[EnumAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[NumberAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[StringAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #1: Cold Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #2: Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[BooleanAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[EnumAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[NumberAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[StringAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #1: Cold Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #2: Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added