Function
hasCollabLinkHints
(item: Record<string, unknown>)
Source from the content-addressed store, hash-verified
| 75 | } |
| 76 | |
| 77 | function hasCollabLinkHints(item: Record<string, unknown>) { |
| 78 | return Boolean( |
| 79 | item.senderThreadId ?? |
| 80 | item.sender_thread_id ?? |
| 81 | item.receiverThreadId ?? |
| 82 | item.receiver_thread_id ?? |
| 83 | item.receiverThreadIds ?? |
| 84 | item.receiver_thread_ids ?? |
| 85 | item.newThreadId ?? |
| 86 | item.new_thread_id ?? |
| 87 | item.receiverAgents ?? |
| 88 | item.receiver_agents ?? |
| 89 | item.receiverAgent ?? |
| 90 | item.receiver_agent ?? |
| 91 | item.agentStatuses ?? |
| 92 | item.agent_statuses ?? |
| 93 | item.agentStatus ?? |
| 94 | item.agentsStates ?? |
| 95 | item.agents_states ?? |
| 96 | item.statuses, |
| 97 | ); |
| 98 | } |
| 99 | |
| 100 | export function useThreadLinking({ |
| 101 | dispatch, |
Tested by
no test coverage detected