meta$

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

Observable of custom metadata associated with the call.

meta

1get meta(): Record<string, unknown>

Current custom metadata of the call.

Examples

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