| 32 | |
| 33 | /** @internal */ |
| 34 | export interface Request { |
| 35 | method: string; |
| 36 | params?: { |
| 37 | /** |
| 38 | * See [General fields: `_meta`](/specification/2025-06-18/basic/index#meta) for notes on `_meta` usage. |
| 39 | */ |
| 40 | _meta?: { |
| 41 | /** |
| 42 | * If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications. |
| 43 | */ |
| 44 | progressToken?: ProgressToken; |
| 45 | [key: string]: unknown; |
| 46 | }; |
| 47 | [key: string]: unknown; |
| 48 | }; |
| 49 | } |
| 50 | |
| 51 | /** @internal */ |
| 52 | export interface Notification { |
nothing calls this directly
no outgoing calls
no test coverage detected