# 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:33: 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:145: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/compiler/workspace.py:149: error: "ModelVersion" has no attribute "auto_generated"  [attr-defined]
src/modelable/compiler/workspace.py:216: error: Missing type arguments for generic type "list"  [type-arg]
src/modelable/compiler/workspace.py:224: 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:264: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/csharp.py:264: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/csharp.py:278: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/csharp.py:278: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/csharp.py:81: 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:184: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:209: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/go.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/go.py:352: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/go.py:352: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:366: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/go.py:366: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/go.py:78: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/java.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/java.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/java.py:286: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/java.py:286: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/java.py:300: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/java.py:300: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/java.py:81: 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:159: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:175: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/python.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/python.py:279: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/python.py:279: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:293: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/python.py:293: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/python.py:75: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1055: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/rust.py:1055: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1069: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/rust.py:1069: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/rust.py:1073: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1073: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:1081: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:1086: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:1090: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:119: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:131: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/rust.py:133: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/emitters/rust.py:138: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/rust.py:193: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:193: error: Missing type arguments for generic type "set"  [type-arg]
src/modelable/emitters/rust.py:214: error: Missing type arguments for generic type "set"  [type-arg]
src/modelable/emitters/rust.py:379: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:42: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:447: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:456: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:563: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:57: error: Missing type arguments for generic type "frozenset"  [type-arg]
src/modelable/emitters/rust.py:677: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:844: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:891: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:920: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:946: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:960: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/emitters/sql.py:196: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/sql.py:196: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:211: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/sql.py:211: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:217: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:217: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:229: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:233: error: Returning Any from function declared to return "bool"  [no-any-return]
src/modelable/emitters/sql.py:266: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:266: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:269: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/emitters/sql.py:293: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:293: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:298: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:330: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:330: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:363: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:363: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/typescript.py:118: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:158: 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:176: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:201: error: Argument 1 to "_resolve_projection_field_type" has incompatible type "ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/typescript.py:207: 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:261: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/typescript.py:261: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:266: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/typescript.py:278: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/typescript.py:279: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/typescript.py:283: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:312: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:385: 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:39: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/typescript.py:41: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/typescript.py:74: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:96: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/governance/checker.py:267: 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/chat.py:226: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/chat.py:230: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/context.py:123: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/context.py:140: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/llm/context.py:141: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/llm/context.py:144: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/context.py:56: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/llm/context.py:60: error: "ModelVersion" has no attribute "source"  [attr-defined]
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/completion.py:178: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/completion.py:189: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/completion.py:283: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/completion.py:452: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/lsp/definition.py:101: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/definition.py:117: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/definition.py:130: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/definition.py:176: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/definition.py:190: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/definition.py:200: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/definition.py:223: 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/hover.py:115: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/hover.py:164: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/hover.py:246: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/hover.py:293: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/lsp/hover.py:293: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/hover.py:361: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/hover.py:75: error: Incompatible types in assignment (expression has type "str | None", variable has type "HoverInfo | None")  [assignment]
src/modelable/lsp/hover.py:78: error: Argument 1 to "_markdown_block" has incompatible type "HoverInfo"; expected "str"  [arg-type]
src/modelable/lsp/hover.py:82: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/hover.py:98: error: Function is missing a type annotation for one or more parameters  [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/references.py:120: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:184: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:200: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:264: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:282: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:310: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:338: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:345: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/lsp/references.py:345: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:357: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:378: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:416: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/references.py:95: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:225: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:256: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:317: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:378: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:406: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:420: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:464: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:543: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/rename.py:553: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
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:41: error: Returning Any from function declared to return "MdlFile"  [no-any-return]
src/modelable/parser/transformer.py:298: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:391: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:392: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:393: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:394: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:396: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:396: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:398: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:399: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:400: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:401: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:401: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:402: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:403: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:404: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:405: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:405: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:406: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:407: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:408: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:410: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:412: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:413: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:415: error: Cannot determine type of "value"  [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:423: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:424: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:445: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:446: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:446: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:460: error: Argument 1 to "dict" has incompatible type "list[object]"; expected "Iterable[tuple[str, object]]"  [arg-type]
src/modelable/parser/transformer.py:495: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:543: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:546: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:555: 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:558: 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:558: 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:590: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:595: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:607: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:612: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:615: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:618: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:629: 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:648: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:651: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:654: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:657: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:660: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:663: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:666: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:669: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:672: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:675: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:678: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:688: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:697: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:700: 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:723: 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:736: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:739: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:742: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:745: 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:751: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:754: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:757: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:760: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:763: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:766: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:769: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:793: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:796: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:799: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:802: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:805: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:808: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:811: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:814: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:817: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:820: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:823: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:832: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:835: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:838: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:841: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:844: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:847: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:850: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:853: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:856: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:859: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:862: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:865: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:868: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:871: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:874: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:892: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:895: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:898: 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:935: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:938: 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:947: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:958: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:961: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:964: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:967: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:970: 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:169: error: Argument 1 to "extend" of "list" has incompatible type "list[ProjectionVersion]"; expected "Iterable[ModelVersion]"  [arg-type]
src/modelable/validation/semantic.py:129: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:211: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:240: error: Call to untyped function "_resolve_projection_field_type" in typed context  [no-untyped-call]
src/modelable/validation/semantic.py:297: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:349: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:485: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:531: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:586: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:667: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:71: error: Missing type arguments for generic type "Match"  [type-arg]
src/modelable/validation/semantic.py:730: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:762: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:789: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:789: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
