(data: {
workspaceId: string
subChatId: string
})
| 346 | * Track sub-chat created |
| 347 | */ |
| 348 | export function trackSubChatCreated(data: { |
| 349 | workspaceId: string |
| 350 | subChatId: string |
| 351 | }) { |
| 352 | capture("sub_chat_created", { |
| 353 | workspace_id: data.workspaceId, |
| 354 | sub_chat_id: data.subChatId, |
| 355 | }) |
| 356 | } |