meta$

View as MarkdownOpen in Claude
get meta$(): Observable<Record<string, unknown>>

Observable of custom metadata associated with the call.

meta

get meta(): Record<string, unknown>

Current custom metadata of the call.

Examples

call.meta$.subscribe((meta) => {
console.log('meta:', meta);
});