Skip to content

Commit 8b3ccd7

Browse files
bloveclaude
andcommitted
docs(chat): regenerate API docs for pinned-thread reorder
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent d09d511 commit 8b3ccd7

1 file changed

Lines changed: 158 additions & 0 deletions

File tree

apps/website/content/docs/chat/api/api-docs.json

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3870,6 +3870,18 @@
38703870
"description": "",
38713871
"optional": false
38723872
},
3873+
{
3874+
"name": "draggingThreadId",
3875+
"type": "WritableSignal<string | null>",
3876+
"description": "Id of the thread currently being dragged via HTML5 drag-and-drop.",
3877+
"optional": false
3878+
},
3879+
{
3880+
"name": "dropTarget",
3881+
"type": "WritableSignal<object | null>",
3882+
"description": "Drop target during a drag: which row, and whether the indicator shows\n on the top edge ('before') or bottom edge ('after').",
3883+
"optional": false
3884+
},
38733885
{
38743886
"name": "editingThreadId",
38753887
"type": "WritableSignal<string | null>",
@@ -3975,6 +3987,101 @@
39753987
}
39763988
]
39773989
},
3990+
{
3991+
"name": "dropPositionFor",
3992+
"signature": "dropPositionFor(threadId: string)",
3993+
"description": "",
3994+
"params": [
3995+
{
3996+
"name": "threadId",
3997+
"type": "string",
3998+
"description": "",
3999+
"optional": false
4000+
}
4001+
]
4002+
},
4003+
{
4004+
"name": "onDragEnd",
4005+
"signature": "onDragEnd()",
4006+
"description": "",
4007+
"params": []
4008+
},
4009+
{
4010+
"name": "onDragLeave",
4011+
"signature": "onDragLeave(_e: DragEvent, threadId: string)",
4012+
"description": "",
4013+
"params": [
4014+
{
4015+
"name": "_e",
4016+
"type": "DragEvent",
4017+
"description": "",
4018+
"optional": false
4019+
},
4020+
{
4021+
"name": "threadId",
4022+
"type": "string",
4023+
"description": "",
4024+
"optional": false
4025+
}
4026+
]
4027+
},
4028+
{
4029+
"name": "onDragOver",
4030+
"signature": "onDragOver(e: DragEvent, threadId: string)",
4031+
"description": "",
4032+
"params": [
4033+
{
4034+
"name": "e",
4035+
"type": "DragEvent",
4036+
"description": "",
4037+
"optional": false
4038+
},
4039+
{
4040+
"name": "threadId",
4041+
"type": "string",
4042+
"description": "",
4043+
"optional": false
4044+
}
4045+
]
4046+
},
4047+
{
4048+
"name": "onDragStart",
4049+
"signature": "onDragStart(e: DragEvent, threadId: string)",
4050+
"description": "",
4051+
"params": [
4052+
{
4053+
"name": "e",
4054+
"type": "DragEvent",
4055+
"description": "",
4056+
"optional": false
4057+
},
4058+
{
4059+
"name": "threadId",
4060+
"type": "string",
4061+
"description": "",
4062+
"optional": false
4063+
}
4064+
]
4065+
},
4066+
{
4067+
"name": "onDrop",
4068+
"signature": "onDrop(e: DragEvent, targetThreadId: string)",
4069+
"description": "",
4070+
"params": [
4071+
{
4072+
"name": "e",
4073+
"type": "DragEvent",
4074+
"description": "",
4075+
"optional": false
4076+
},
4077+
{
4078+
"name": "targetThreadId",
4079+
"type": "string",
4080+
"description": "",
4081+
"optional": false
4082+
}
4083+
]
4084+
},
39784085
{
39794086
"name": "onEditInput",
39804087
"signature": "onEditInput(e: Event)",
@@ -4052,6 +4159,19 @@
40524159
"description": "",
40534160
"params": []
40544161
},
4162+
{
4163+
"name": "performMoveDown",
4164+
"signature": "performMoveDown(threadId: string)",
4165+
"description": "",
4166+
"params": [
4167+
{
4168+
"name": "threadId",
4169+
"type": "string",
4170+
"description": "",
4171+
"optional": false
4172+
}
4173+
]
4174+
},
40554175
{
40564176
"name": "performMoveToProject",
40574177
"signature": "performMoveToProject(threadId: string, projectId: string | null)",
@@ -4071,6 +4191,19 @@
40714191
}
40724192
]
40734193
},
4194+
{
4195+
"name": "performMoveUp",
4196+
"signature": "performMoveUp(threadId: string)",
4197+
"description": "",
4198+
"params": [
4199+
{
4200+
"name": "threadId",
4201+
"type": "string",
4202+
"description": "",
4203+
"optional": false
4204+
}
4205+
]
4206+
},
40744207
{
40754208
"name": "performPin",
40764209
"signature": "performPin(threadId: string)",
@@ -4084,6 +4217,25 @@
40844217
}
40854218
]
40864219
},
4220+
{
4221+
"name": "performReorderPinned",
4222+
"signature": "performReorderPinned(threadId: string, beforeId: string | null)",
4223+
"description": "",
4224+
"params": [
4225+
{
4226+
"name": "threadId",
4227+
"type": "string",
4228+
"description": "",
4229+
"optional": false
4230+
},
4231+
{
4232+
"name": "beforeId",
4233+
"type": "string | null",
4234+
"description": "",
4235+
"optional": false
4236+
}
4237+
]
4238+
},
40874239
{
40884240
"name": "performUnarchive",
40894241
"signature": "performUnarchive(threadId: string)",
@@ -6322,6 +6474,12 @@
63226474
"description": "",
63236475
"optional": true
63246476
},
6477+
{
6478+
"name": "reorderPinned",
6479+
"type": "unknown",
6480+
"description": "",
6481+
"optional": true
6482+
},
63256483
{
63266484
"name": "unarchive",
63276485
"type": "unknown",

0 commit comments

Comments
 (0)