Skip to content
Merged
158 changes: 158 additions & 0 deletions apps/website/content/docs/chat/api/api-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3870,6 +3870,18 @@
"description": "",
"optional": false
},
{
"name": "draggingThreadId",
"type": "WritableSignal<string | null>",
"description": "Id of the thread currently being dragged via HTML5 drag-and-drop.",
"optional": false
},
{
"name": "dropTarget",
"type": "WritableSignal<object | null>",
"description": "Drop target during a drag: which row, and whether the indicator shows\n on the top edge ('before') or bottom edge ('after').",
"optional": false
},
{
"name": "editingThreadId",
"type": "WritableSignal<string | null>",
Expand Down Expand Up @@ -3975,6 +3987,101 @@
}
]
},
{
"name": "dropPositionFor",
"signature": "dropPositionFor(threadId: string)",
"description": "",
"params": [
{
"name": "threadId",
"type": "string",
"description": "",
"optional": false
}
]
},
{
"name": "onDragEnd",
"signature": "onDragEnd()",
"description": "",
"params": []
},
{
"name": "onDragLeave",
"signature": "onDragLeave(_e: DragEvent, threadId: string)",
"description": "",
"params": [
{
"name": "_e",
"type": "DragEvent",
"description": "",
"optional": false
},
{
"name": "threadId",
"type": "string",
"description": "",
"optional": false
}
]
},
{
"name": "onDragOver",
"signature": "onDragOver(e: DragEvent, threadId: string)",
"description": "",
"params": [
{
"name": "e",
"type": "DragEvent",
"description": "",
"optional": false
},
{
"name": "threadId",
"type": "string",
"description": "",
"optional": false
}
]
},
{
"name": "onDragStart",
"signature": "onDragStart(e: DragEvent, threadId: string)",
"description": "",
"params": [
{
"name": "e",
"type": "DragEvent",
"description": "",
"optional": false
},
{
"name": "threadId",
"type": "string",
"description": "",
"optional": false
}
]
},
{
"name": "onDrop",
"signature": "onDrop(e: DragEvent, targetThreadId: string)",
"description": "",
"params": [
{
"name": "e",
"type": "DragEvent",
"description": "",
"optional": false
},
{
"name": "targetThreadId",
"type": "string",
"description": "",
"optional": false
}
]
},
{
"name": "onEditInput",
"signature": "onEditInput(e: Event)",
Expand Down Expand Up @@ -4052,6 +4159,19 @@
"description": "",
"params": []
},
{
"name": "performMoveDown",
"signature": "performMoveDown(threadId: string)",
"description": "",
"params": [
{
"name": "threadId",
"type": "string",
"description": "",
"optional": false
}
]
},
{
"name": "performMoveToProject",
"signature": "performMoveToProject(threadId: string, projectId: string | null)",
Expand All @@ -4071,6 +4191,19 @@
}
]
},
{
"name": "performMoveUp",
"signature": "performMoveUp(threadId: string)",
"description": "",
"params": [
{
"name": "threadId",
"type": "string",
"description": "",
"optional": false
}
]
},
{
"name": "performPin",
"signature": "performPin(threadId: string)",
Expand All @@ -4084,6 +4217,25 @@
}
]
},
{
"name": "performReorderPinned",
"signature": "performReorderPinned(threadId: string, beforeId: string | null)",
"description": "",
"params": [
{
"name": "threadId",
"type": "string",
"description": "",
"optional": false
},
{
"name": "beforeId",
"type": "string | null",
"description": "",
"optional": false
}
]
},
{
"name": "performUnarchive",
"signature": "performUnarchive(threadId: string)",
Expand Down Expand Up @@ -6322,6 +6474,12 @@
"description": "",
"optional": true
},
{
"name": "reorderPinned",
"type": "unknown",
"description": "",
"optional": true
},
{
"name": "unarchive",
"type": "unknown",
Expand Down
Loading
Loading