(conversationId: string | null | undefined)
| 164 | * @param conversationId The conversation ID to set. Pass `null` or `undefined` to unset the conversation ID. |
| 165 | */ |
| 166 | export function setConversationId(conversationId: string | null | undefined): void { |
| 167 | getIsolationScope().setConversationId(conversationId); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * The last error event id of the isolation scope. |
nothing calls this directly
no test coverage detected