# Current strict mypy errors for the Modelable CLI.
# This file is a ratchet baseline: remove lines as typing issues are fixed,
# but do not add new lines unless intentionally accepting existing debt.
src/modelable/commands/codegen.py:62: error: Incompatible types in assignment (expression has type "str | None", variable has type "str")  [assignment]
src/modelable/commands/common.py:15: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/commands/common.py:22: error: Argument "path" to "diagnostic" of "ParseError" has incompatible type "Path"; expected "str | None"  [arg-type]
src/modelable/commands/common.py:36: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/commands/create.py:119: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/create.py:148: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/create.py:62: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/create.py:93: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/spec.py:140: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable)  [attr-defined]
src/modelable/commands/spec.py:194: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/commands/workspace.py:101: error: Incompatible types in assignment (expression has type "Any | None", variable has type "str")  [assignment]
src/modelable/commands/workspace.py:106: error: "str" has no attribute "models"  [attr-defined]
src/modelable/commands/workspace.py:112: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:126: error: "str" has no attribute "projections"  [attr-defined]
src/modelable/commands/workspace.py:132: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:133: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:179: error: Argument 3 to "resolve_model_ref" has incompatible type "int | object"; expected "VersionExact | VersionRange | VersionMin | VersionPinned | int"  [arg-type]
src/modelable/commands/workspace.py:51: error: Incompatible types in assignment (expression has type "Any | None", variable has type "str")  [assignment]
src/modelable/commands/workspace.py:56: error: "str" has no attribute "models"  [attr-defined]
src/modelable/commands/workspace.py:60: error: "str" has no attribute "description"  [attr-defined]
src/modelable/commands/workspace.py:60: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:60: error: "str" has no attribute "owner"; maybe "lower"?  [attr-defined]
src/modelable/commands/workspace.py:65: error: "str" has no attribute "projections"  [attr-defined]
src/modelable/commands/workspace.py:73: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:76: error: "str" has no attribute "owner"; maybe "lower"?  [attr-defined]
src/modelable/commands/workspace.py:77: error: "str" has no attribute "description"  [attr-defined]
src/modelable/compiler/workspace.py:249: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/compiler/workspace.py:253: error: "ModelVersion" has no attribute "auto_generated"  [attr-defined]
src/modelable/compiler/workspace.py:342: error: Missing type arguments for generic type "list"  [type-arg]
src/modelable/compiler/workspace.py:350: error: Missing type arguments for generic type "tuple"  [type-arg]
src/modelable/emitters/csharp.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/csharp.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/csharp.py:253: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/csharp.py:253: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/csharp.py:267: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/csharp.py:267: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/csharp.py:70: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/dbt_yaml.py:274: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/dbt_yaml.py:40: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/dbt_yaml.py:42: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/fhir.py:161: error: Argument 1 to "append" of "list" has incompatible type "object"; expected "EmittedArtifact"  [arg-type]
src/modelable/emitters/fhir.py:162: error: Argument 1 to "extend" of "list" has incompatible type "object"; expected "Iterable[EmittedArtifact]"  [arg-type]
src/modelable/emitters/fhir.py:341: error: Incompatible return value type (got "FieldDef | ProjectionField | None", expected "FieldDef | None")  [return-value]
src/modelable/emitters/go.py:174: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:199: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:23: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/go.py:25: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/go.py:342: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/go.py:342: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:356: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/go.py:356: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/go.py:68: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/java.py:22: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/java.py:24: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/java.py:282: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/java.py:282: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/java.py:296: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/java.py:296: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/java.py:77: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:124: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:132: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:170: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:173: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:176: error: Argument 1 to "_resolve_projection_field_type" has incompatible type "ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/json_schema.py:177: error: Argument 1 to "_field_to_json_schema" has incompatible type "ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/json_schema.py:206: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:206: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:226: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/json_schema.py:251: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:260: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/json_schema.py:260: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:266: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/json_schema.py:283: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/json_schema.py:284: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/json_schema.py:289: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:290: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:291: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:337: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:337: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:402: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:403: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:404: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:405: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:440: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:444: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:460: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:482: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:482: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:51: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/json_schema.py:53: error: Argument 3 to "_emit_projection_version" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/json_schema.py:71: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:87: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:90: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/markdown.py:161: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/markdown.py:183: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/markdown.py:45: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/markdown.py:47: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/odcs.py:171: error: Incompatible types in assignment (expression has type "list[str]", target has type "str")  [assignment]
src/modelable/emitters/odcs.py:298: error: Incompatible return value type (got "FieldDef | ProjectionField | None", expected "FieldDef | None")  [return-value]
src/modelable/emitters/odcs.py:47: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/odcs.py:49: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openlineage.py:140: error: Argument 1 to "_model_schema_field" has incompatible type "FieldDef | ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/openlineage.py:270: error: Incompatible return value type (got "FieldDef | ProjectionField | None", expected "FieldDef | None")  [return-value]
src/modelable/emitters/openlineage.py:46: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/openlineage.py:48: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openlineage.py:84: error: Unsupported target for indexed assignment ("object")  [index]
src/modelable/emitters/openmetadata.py:201: error: Incompatible return value type (got "FieldDef | ProjectionField", expected "FieldDef | None")  [return-value]
src/modelable/emitters/openmetadata.py:218: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/openmetadata.py:39: error: Need type annotation for "om_data"  [var-annotated]
src/modelable/emitters/openmetadata.py:49: error: Item "None" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:49: error: Item "str" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:51: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/openmetadata.py:53: error: Argument 2 to "_resolve_source" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openmetadata.py:54: error: Argument 3 to "_projection_asset" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openmetadata.py:54: error: Item "None" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:54: error: Item "str" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:55: error: Argument 3 to "_projection_lineage" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openmetadata.py:55: error: Item "None" of "list[Any] | str | None" has no attribute "extend"  [union-attr]
src/modelable/emitters/openmetadata.py:55: error: Item "str" of "list[Any] | str | None" has no attribute "extend"  [union-attr]
src/modelable/emitters/python.py:149: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:165: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:23: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/python.py:25: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/python.py:269: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/python.py:269: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:283: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/python.py:283: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/python.py:65: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1147: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1194: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1223: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1249: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1263: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/emitters/rust.py:1358: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/rust.py:1358: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1372: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/rust.py:1372: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/rust.py:1376: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1376: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:138: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:1384: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:1389: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:1393: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:150: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/rust.py:152: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/emitters/rust.py:157: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/rust.py:182: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:221: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/rust.py:223: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/emitters/rust.py:227: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/rust.py:367: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:367: error: Missing type arguments for generic type "set"  [type-arg]
src/modelable/emitters/rust.py:436: error: Missing type arguments for generic type "set"  [type-arg]
src/modelable/emitters/rust.py:46: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:61: error: Missing type arguments for generic type "frozenset"  [type-arg]
src/modelable/emitters/rust.py:639: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:720: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:729: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:856: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:980: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:220: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/sql.py:220: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:235: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/sql.py:235: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:241: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:241: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:253: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:257: error: Returning Any from function declared to return "bool"  [no-any-return]
src/modelable/emitters/sql.py:290: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:290: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:293: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/emitters/sql.py:317: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:317: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:322: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:354: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:354: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:387: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:387: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/typescript.py:105: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:127: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:167: error: Argument "wire_targets" to "_type_to_ts" has incompatible type "dict[str, WireTargetHint]"; expected "dict[str, object] | None"  [arg-type]
src/modelable/emitters/typescript.py:185: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:210: error: Argument 1 to "_resolve_projection_field_type" has incompatible type "ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/typescript.py:216: error: Argument "wire_targets" to "_type_to_ts" has incompatible type "dict[str, WireTargetHint]"; expected "dict[str, object] | None"  [arg-type]
src/modelable/emitters/typescript.py:270: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/typescript.py:270: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:275: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/typescript.py:287: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/typescript.py:288: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/typescript.py:292: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:321: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:396: error: Argument "wire_targets" to "_type_to_ts" has incompatible type "dict[str, WireTargetHint]"; expected "dict[str, object] | None"  [arg-type]
src/modelable/emitters/typescript.py:40: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/typescript.py:42: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/typescript.py:85: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/governance/checker.py:262: error: Incompatible types in assignment (expression has type "tuple[str, ModelVersion | ProjectionVersion]", target has type "tuple[str, ModelVersion]")  [assignment]
src/modelable/graph/export.py:122: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/graph/export.py:331: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/graph/export.py:357: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/engine.py:117: error: Argument "change_kind" to "ModelVersion" has incompatible type "str"; expected "ChangeKind"  [arg-type]
src/modelable/llm/engine.py:274: error: Argument "env" to "resolve_llm_config" has incompatible type "_Environ[str]"; expected "dict[str, str] | None"  [arg-type]
src/modelable/llm/engine.py:558: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/engine.py:564: error: Returning Any from function declared to return "Path | None"  [no-any-return]
src/modelable/llm/engine.py:568: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/importers.py:1007: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:1033: error: Need type annotation for "current" (hint: "current: list[<type>] = ...")  [var-annotated]
src/modelable/llm/importers.py:1053: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:210: error: Item "None" of "dict[str, Any] | None" has no attribute "get"  [union-attr]
src/modelable/llm/importers.py:213: error: Argument 1 to "_dbt_columns_for_selected_model" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:214: error: Argument 1 to "_dbt_unique_keys" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:218: error: Argument 1 to "_dbt_modelable_version" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:280: error: Value of type "dict[str, Any] | Any | None" is not indexable  [index]
src/modelable/llm/importers.py:283: error: Argument 1 to "_dbt_unique_keys" has incompatible type "dict[str, Any] | Any | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:283: error: Item "None" of "dict[str, Any] | Any | None" has no attribute "get"  [union-attr]
src/modelable/llm/importers.py:287: error: Argument 1 to "_dbt_modelable_version" has incompatible type "dict[str, Any] | Any | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:308: error: Incompatible types in assignment (expression has type "dict[str, Any] | None", variable has type "dict[str, Any]")  [assignment]
src/modelable/llm/importers.py:827: error: Argument "kind" to "PrimitiveType" has incompatible type "str"; expected "Literal['string', 'int', 'float', 'bool', 'date', 'time', 'timestamp', 'uuid', 'duration', 'binary', 'json', 'u8', 'u16', 'u32', 'u64', 'u128', 'i8', 'i16', 'i32', 'i64', 'i128']"  [arg-type]
src/modelable/llm/importers.py:885: error: Argument "kind" to "PrimitiveType" has incompatible type "str"; expected "Literal['string', 'int', 'float', 'bool', 'date', 'time', 'timestamp', 'uuid', 'duration', 'binary', 'json', 'u8', 'u16', 'u32', 'u64', 'u128', 'i8', 'i16', 'i32', 'i64', 'i128']"  [arg-type]
src/modelable/llm/importers.py:901: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/llm/importers.py:912: error: Missing type arguments for generic type "list"  [type-arg]
src/modelable/llm/importers.py:935: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:935: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/llm/importers.py:976: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/llm/importers.py:986: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:986: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/federation.py:221: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/lsp/inlay_hints.py:104: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/inlay_hints.py:111: error: Returning Any from function declared to return "str | None"  [no-any-return]
src/modelable/lsp/inlay_hints.py:118: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/inlay_hints.py:134: error: Returning Any from function declared to return "str | None"  [no-any-return]
src/modelable/lsp/server.py:41: error: Module "pygls.feature_manager" does not explicitly export attribute "asyncio"  [attr-defined]
src/modelable/lsp/server.py:41: error: Module has no attribute "iscoroutinefunction"  [attr-defined]
src/modelable/lsp/server.py:42: error: Module "pygls.protocol.json_rpc" does not explicitly export attribute "asyncio"  [attr-defined]
src/modelable/lsp/server.py:42: error: Module has no attribute "iscoroutinefunction"  [attr-defined]
src/modelable/lsp/server.py:52: error: Missing type arguments for generic type "Task"  [type-arg]
src/modelable/parser/parse.py:22: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/parser/parse.py:35: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/parser/parse.py:39: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/parser/transformer.py:1000: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1003: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1006: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1009: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1012: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1023: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1026: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1029: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1032: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1035: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:321: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:414: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:415: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:416: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:417: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:419: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:419: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:421: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:422: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:423: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:424: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:424: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:425: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:426: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:427: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:428: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:428: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:429: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:430: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:431: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:433: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:435: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:436: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:438: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:439: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:440: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:442: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:442: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:444: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:446: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:447: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:468: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:469: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:469: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:483: error: Argument 1 to "dict" has incompatible type "list[object]"; expected "Iterable[tuple[str, object]]"  [arg-type]
src/modelable/parser/transformer.py:518: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:566: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:569: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:578: error: Argument "item" to "ArrayType" has incompatible type "object"; expected "PrimitiveType | DecimalType | FixedBinaryType | ArrayType | MapType | RefType | EnumType | ObjectType | NamedType"  [arg-type]
src/modelable/parser/transformer.py:581: error: Argument "key" to "MapType" has incompatible type "object"; expected "PrimitiveType | DecimalType | FixedBinaryType | ArrayType | MapType | RefType | EnumType | ObjectType | NamedType"  [arg-type]
src/modelable/parser/transformer.py:581: error: Argument "value" to "MapType" has incompatible type "object"; expected "PrimitiveType | DecimalType | FixedBinaryType | ArrayType | MapType | RefType | EnumType | ObjectType | NamedType"  [arg-type]
src/modelable/parser/transformer.py:585: error: Argument "version" to "RefType" has incompatible type "object"; expected "VersionExact | VersionRange | VersionMin | VersionPinned | None"  [arg-type]
src/modelable/parser/transformer.py:614: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:620: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:633: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:636: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:639: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:642: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:645: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:650: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:653: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:656: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:667: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:683: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:686: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:689: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:692: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:695: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:698: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:701: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:704: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:707: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:710: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:713: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:716: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:726: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:735: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:738: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:748: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:761: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:764: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:774: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:777: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:780: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:783: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:786: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:789: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:792: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:795: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:798: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:801: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:804: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:807: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:831: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:834: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:837: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:840: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:843: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:846: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:849: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:852: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:855: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:858: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:861: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:870: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:873: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:876: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:879: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:882: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:885: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:888: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:891: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:894: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:897: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:900: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:903: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:906: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:909: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:912: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:930: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:933: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:936: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:941: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:944: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:977: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:991: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:994: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:997: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/planner/plans.py:103: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:114: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:21: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:36: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:88: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/planner/plans.py:94: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:98: error: Item "ProjectionVersion" of "ModelVersion | ProjectionVersion" has no attribute "change_kind"  [union-attr]
src/modelable/registry/__init__.py:4: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/registry/index.py:123: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/registry/index.py:142: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:146: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:147: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:150: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:167: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:171: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:172: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:175: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:178: error: "ModelVersion" has no attribute "joins"  [attr-defined]
src/modelable/registry/index.py:217: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/registry/index.py:228: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/registry/index.py:368: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/registry/index.py:399: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/registry/index.py:435: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/registry/resolver.py:229: error: Argument 1 to "extend" of "list" has incompatible type "list[ProjectionVersion]"; expected "Iterable[ModelVersion]"  [arg-type]
src/modelable/validation/deferred_syntax.py:43: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/validation/semantic.py:131: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:213: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:242: error: Call to untyped function "_resolve_projection_field_type" in typed context  [no-untyped-call]
src/modelable/validation/semantic.py:299: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:351: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:488: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:534: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:589: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:670: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:73: error: Missing type arguments for generic type "Match"  [type-arg]
src/modelable/validation/semantic.py:733: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:765: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:792: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:792: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
