MCPcopy Create free account
hub / github.com/deepnote/deepnote / BlockDiagnosis

Interface BlockDiagnosis

packages/cli/src/commands/run.ts:118–132  ·  view source on GitHub ↗

Diagnosis info for a failed block

Source from the content-addressed store, hash-verified

116
117/** Diagnosis info for a failed block */
118interface BlockDiagnosis {
119 blockId: string
120 blockLabel: string
121 upstream: Array<{
122 id: string
123 label: string
124 variables: string[]
125 }>
126 relatedIssues: Array<{
127 code: string
128 message: string
129 severity: 'error' | 'warning'
130 }>
131 usedVariables: string[]
132}
133
134/** Block info with context (for --context flag) */
135interface BlockWithContext extends BlockResult {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected