diff --git a/core/dbt/contracts/graph/manifest.py b/core/dbt/contracts/graph/manifest.py index 852f4dce724..0c84c7a0033 100644 --- a/core/dbt/contracts/graph/manifest.py +++ b/core/dbt/contracts/graph/manifest.py @@ -23,6 +23,7 @@ ) from typing_extensions import Protocol +from dbt import deprecations from dbt import tracking from dbt.contracts.graph.nodes import ( BaseNode, @@ -570,11 +571,15 @@ def __lt__(self, other: object) -> bool: class CandidateList(List[M]): - def last(self) -> Optional[Macro]: + def last_candidate(self) -> Optional[MacroCandidate]: if not self: return None self.sort() - return self[-1].macro + return self[-1] + + def last(self) -> Optional[Macro]: + last_candidate = self.last_candidate() + return last_candidate.macro if last_candidate is not None else None def _get_locality(macro: Macro, root_project_name: str, internal_packages: Set[str]) -> Locality: @@ -930,7 +935,24 @@ def find_materialization_macro_by_name( for specificity, atype in enumerate(self._get_parent_adapter_types(adapter_type)) ) ) - return candidates.last() + core_candidates = [ + candidate for candidate in candidates if candidate.locality == Locality.Core + ] + + materialization_candidate = candidates.last_candidate() + # If an imported materialization macro was found that also had a core candidate, fire a deprecation + if ( + materialization_candidate is not None + and materialization_candidate.locality == Locality.Imported + and core_candidates + ): + deprecations.warn( + "package-materialization-override", + package_name=materialization_candidate.macro.package_name, + materialization_name=materialization_name, + ) + + return materialization_candidate.macro if materialization_candidate else None def get_resource_fqns(self) -> Mapping[str, PathSet]: resource_fqns: Dict[str, Set[Tuple[str, ...]]] = {} diff --git a/core/dbt/deprecations.py b/core/dbt/deprecations.py index 1b011128fb8..2bd50d7943a 100644 --- a/core/dbt/deprecations.py +++ b/core/dbt/deprecations.py @@ -118,6 +118,11 @@ def show(self, *args, **kwargs) -> None: active_deprecations.add(self.name) +class PackageMaterializationOverrideDeprecation(DBTDeprecation): + _name = "package-materialization-override" + _event = "PackageMaterializationOverrideDeprecation" + + def renamed_env_var(old_name: str, new_name: str): class EnvironmentVariableRenamed(DBTDeprecation): _name = f"environment-variable-renamed:{old_name}" @@ -157,6 +162,7 @@ def warn(name, *args, **kwargs): CollectFreshnessReturnSignature(), TestsConfigDeprecation(), ProjectFlagsMovedDeprecation(), + PackageMaterializationOverrideDeprecation(), ] deprecations: Dict[str, DBTDeprecation] = {d.name: d for d in deprecations_list} diff --git a/core/dbt/events/core_types.proto b/core/dbt/events/core_types.proto index c7c9d00c5ae..cfb537ec75e 100644 --- a/core/dbt/events/core_types.proto +++ b/core/dbt/events/core_types.proto @@ -422,6 +422,17 @@ message TotalModelNamesWithSpacesDeprecation { string level = 3; } +// D016 +message PackageMaterializationOverrideDeprecation { + string package_name = 1; + string materialization_name = 2; +} + +message PackageMaterializationOverrideDeprecationMsg { + CoreEventInfo info = 1; + PackageMaterializationOverrideDeprecation data = 2; +} + message TotalModelNamesWithSpacesDeprecationMsg { CoreEventInfo info = 1; TotalModelNamesWithSpacesDeprecation data = 2; diff --git a/core/dbt/events/core_types_pb2.py b/core/dbt/events/core_types_pb2.py index 32754125a38..6f270b3b7ca 100644 --- a/core/dbt/events/core_types_pb2.py +++ b/core/dbt/events/core_types_pb2.py @@ -16,7 +16,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x63ore_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x99\x02\n\rCoreEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x05\x65xtra\x18\t \x03(\x0b\x32%.proto_types.CoreEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"V\n\x0cNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x91\x02\n\x08NodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x30\n\rnode_relation\x18\n \x01(\x0b\x32\x19.proto_types.NodeRelation\"\x7f\n\rTimingInfoMsg\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd1\x01\n\x0cRunResultMsg\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12/\n\x0btiming_info\x18\x03 \x03(\x0b\x32\x1a.proto_types.TimingInfoMsg\x12\x0e\n\x06thread\x18\x04 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x31\n\x10\x61\x64\x61pter_response\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"\\\n\nColumnType\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x1c\n\x14previous_column_type\x18\x02 \x01(\t\x12\x1b\n\x13\x63urrent_column_type\x18\x03 \x01(\t\"Y\n\x10\x43olumnConstraint\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x03 \x01(\t\"T\n\x0fModelConstraint\x12\x17\n\x0f\x63onstraint_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"n\n\x14MainReportVersionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.MainReportVersion\"r\n\x0eMainReportArgs\x12\x33\n\x04\x61rgs\x18\x01 \x03(\x0b\x32%.proto_types.MainReportArgs.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"h\n\x11MainReportArgsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainReportArgs\"+\n\x15MainTrackingUserState\x12\x12\n\nuser_state\x18\x01 \x01(\t\"v\n\x18MainTrackingUserStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainTrackingUserState\"5\n\x0fMergedFromState\x12\x12\n\nnum_merged\x18\x01 \x01(\x05\x12\x0e\n\x06sample\x18\x02 \x03(\t\"j\n\x12MergedFromStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.MergedFromState\"A\n\x14MissingProfileTarget\x12\x14\n\x0cprofile_name\x18\x01 \x01(\t\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\"t\n\x17MissingProfileTargetMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"n\n\x14InvalidOptionYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.InvalidOptionYAML\"!\n\x12LogDbtProjectError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x15LogDbtProjectErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProjectError\"3\n\x12LogDbtProfileError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08profiles\x18\x02 \x03(\t\"p\n\x15LogDbtProfileErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProfileError\"!\n\x12StarterProjectPath\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"p\n\x15StarterProjectPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StarterProjectPath\"$\n\x15\x43onfigFolderDirectory\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"v\n\x18\x43onfigFolderDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConfigFolderDirectory\"\'\n\x14NoSampleProfileFound\x12\x0f\n\x07\x61\x64\x61pter\x18\x01 \x01(\t\"t\n\x17NoSampleProfileFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NoSampleProfileFound\"6\n\x18ProfileWrittenWithSample\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"|\n\x1bProfileWrittenWithSampleMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProfileWrittenWithSample\"B\n$ProfileWrittenWithTargetTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x94\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.ProfileWrittenWithTargetTemplateYAML\"C\n%ProfileWrittenWithProjectTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x96\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"l\n\x13SettingUpProfileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"\x80\x01\n\x1dInvalidProfileTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"|\n\x1bProjectNameAlreadyExistsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProjectNameAlreadyExists\"K\n\x0eProjectCreated\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x10\n\x08\x64ocs_url\x18\x02 \x01(\t\x12\x11\n\tslack_url\x18\x03 \x01(\t\"h\n\x11ProjectCreatedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ProjectCreated\"@\n\x1aPackageRedirectDeprecation\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1dPackageRedirectDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x86\x01\n PackageInstallPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.PackageInstallPathDeprecation\"H\n\x1b\x43onfigSourcePathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"\x82\x01\n\x1e\x43onfigSourcePathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigSourcePathDeprecation\"F\n\x19\x43onfigDataPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"~\n\x1c\x43onfigDataPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"z\n\x1aMetricAttributesRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.MetricAttributesRenamed\"+\n\x17\x45xposureNameDeprecation\x12\x10\n\x08\x65xposure\x18\x01 \x01(\t\"z\n\x1a\x45xposureNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.ExposureNameDeprecation\"^\n\x13InternalDeprecation\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x18\n\x10suggested_action\x18\x03 \x01(\t\x12\x0f\n\x07version\x18\x04 \x01(\t\"r\n\x16InternalDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.InternalDeprecation\"@\n\x1a\x45nvironmentVariableRenamed\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1d\x45nvironmentVariableRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.EnvironmentVariableRenamed\"3\n\x18\x43onfigLogPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"|\n\x1b\x43onfigLogPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ConfigLogPathDeprecation\"6\n\x1b\x43onfigTargetPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"\x82\x01\n\x1e\x43onfigTargetPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"C\n\x16TestsConfigDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"x\n\x19TestsConfigDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.TestsConfigDeprecation\"\x1e\n\x1cProjectFlagsMovedDeprecation\"\x84\x01\n\x1fProjectFlagsMovedDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.ProjectFlagsMovedDeprecation\"X\n\x1cSpacesInModelNameDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\r\n\x05level\x18\x03 \x01(\t\"\x84\x01\n\x1fSpacesInModelNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.SpacesInModelNameDeprecation\"k\n$TotalModelNamesWithSpacesDeprecation\x12\x1b\n\x13\x63ount_invalid_names\x18\x01 \x01(\x05\x12\x17\n\x0fshow_debug_hint\x18\x02 \x01(\x08\x12\r\n\x05level\x18\x03 \x01(\t\"\x94\x01\n\'TotalModelNamesWithSpacesDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.TotalModelNamesWithSpacesDeprecation\"V\n\x0f\x44\x65precatedModel\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65precation_date\x18\x03 \x01(\t\"j\n\x12\x44\x65precatedModelMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"p\n\x15InputFileDiffErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"t\n\x17InvalidValueForFieldMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.InvalidValueForField\"Q\n\x11ValidationWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x12\n\nfield_name\x18\x02 \x01(\t\x12\x11\n\tnode_name\x18\x03 \x01(\t\"n\n\x14ValidationWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"n\n\x14ParsePerfInfoPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8e\x01\n$PartialParsingErrorProcessingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.PartialParsingErrorProcessingFile\"\x86\x01\n\x13PartialParsingError\x12?\n\x08\x65xc_info\x18\x01 \x03(\x0b\x32-.proto_types.PartialParsingError.ExcInfoEntry\x1a.\n\x0c\x45xcInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"r\n\x16PartialParsingErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"~\n\x1cPartialParsingSkipParsingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"t\n\x17UnableToPartialParseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.UnableToPartialParse\"f\n\x12StateCheckVarsHash\x12\x10\n\x08\x63hecksum\x18\x01 \x01(\t\x12\x0c\n\x04vars\x18\x02 \x01(\t\x12\x0f\n\x07profile\x18\x03 \x01(\t\x12\x0e\n\x06target\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"p\n\x15StateCheckVarsHashMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"|\n\x1bPartialParsingNotEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.PartialParsingNotEnabled\"C\n\x14ParsedFileLoadFailed\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"t\n\x17ParsedFileLoadFailedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParsedFileLoadFailed\"H\n\x15PartialParsingEnabled\x12\x0f\n\x07\x64\x65leted\x18\x01 \x01(\x05\x12\r\n\x05\x61\x64\x64\x65\x64\x18\x02 \x01(\x05\x12\x0f\n\x07\x63hanged\x18\x03 \x01(\x05\"v\n\x18PartialParsingEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.PartialParsingEnabled\"8\n\x12PartialParsingFile\x12\x0f\n\x07\x66ile_id\x18\x01 \x01(\t\x12\x11\n\toperation\x18\x02 \x01(\t\"p\n\x15PartialParsingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.PartialParsingFile\"\xaf\x01\n\x1fInvalidDisabledTargetInTestNode\x12\x1b\n\x13resource_type_title\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1a\n\x12original_file_path\x18\x03 \x01(\t\x12\x13\n\x0btarget_kind\x18\x04 \x01(\t\x12\x13\n\x0btarget_name\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\"\x8a\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.InvalidDisabledTargetInTestNode\"7\n\x18UnusedResourceConfigPath\x12\x1b\n\x13unused_config_paths\x18\x01 \x03(\t\"|\n\x1bUnusedResourceConfigPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.UnusedResourceConfigPath\"3\n\rSeedIncreased\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"f\n\x10SeedIncreasedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.SeedIncreased\">\n\x18SeedExceedsLimitSamePath\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"|\n\x1bSeedExceedsLimitSamePathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.SeedExceedsLimitSamePath\"D\n\x1eSeedExceedsLimitAndPathChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\x88\x01\n!SeedExceedsLimitAndPathChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.SeedExceedsLimitAndPathChanged\"\\\n\x1fSeedExceedsLimitChecksumChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\rchecksum_name\x18\x03 \x01(\t\"\x8a\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"d\n\x0fUnusedTablesMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.UnusedTables\"\x87\x01\n\x17WrongResourceSchemaFile\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x1c\n\x14plural_resource_type\x18\x03 \x01(\t\x12\x10\n\x08yaml_key\x18\x04 \x01(\t\x12\x11\n\tfile_path\x18\x05 \x01(\t\"z\n\x1aWrongResourceSchemaFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.WrongResourceSchemaFile\"K\n\x10NoNodeForYamlKey\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x10\n\x08yaml_key\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"l\n\x13NoNodeForYamlKeyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.NoNodeForYamlKey\"+\n\x15MacroNotFoundForPatch\x12\x12\n\npatch_name\x18\x01 \x01(\t\"v\n\x18MacroNotFoundForPatchMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MacroNotFoundForPatch\"\xb8\x01\n\x16NodeNotFoundOrDisabled\x12\x1a\n\x12original_file_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1b\n\x13resource_type_title\x18\x03 \x01(\t\x12\x13\n\x0btarget_name\x18\x04 \x01(\t\x12\x13\n\x0btarget_kind\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\x12\x10\n\x08\x64isabled\x18\x07 \x01(\t\"x\n\x19NodeNotFoundOrDisabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.NodeNotFoundOrDisabled\"H\n\x0fJinjaLogWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"j\n\x12JinjaLogWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.JinjaLogWarning\"E\n\x0cJinjaLogInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"d\n\x0fJinjaLogInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.JinjaLogInfo\"F\n\rJinjaLogDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"f\n\x10JinjaLogDebugMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.JinjaLogDebug\"\xae\x01\n\x1eUnpinnedRefNewVersionAvailable\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rref_node_name\x18\x02 \x01(\t\x12\x18\n\x10ref_node_package\x18\x03 \x01(\t\x12\x18\n\x10ref_node_version\x18\x04 \x01(\t\x12\x17\n\x0fref_max_version\x18\x05 \x01(\t\"\x88\x01\n!UnpinnedRefNewVersionAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"\xc6\x01\n\x1cUpcomingReferenceDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"\x84\x01\n\x1fUpcomingReferenceDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.UpcomingReferenceDeprecation\"\xbd\x01\n\x13\x44\x65precatedReference\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"r\n\x16\x44\x65precatedReferenceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x94\x01\n\'UnsupportedConstraintMaterializationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"M\n\x14ParseInlineNodeError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"t\n\x17ParseInlineNodeErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParseInlineNodeError\"(\n\x19SemanticValidationFailure\x12\x0b\n\x03msg\x18\x02 \x01(\t\"~\n\x1cSemanticValidationFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.SemanticValidationFailure\"\x8a\x03\n\x19UnversionedBreakingChange\x12\x18\n\x10\x62reaking_changes\x18\x01 \x03(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x17\n\x0fmodel_file_path\x18\x03 \x01(\t\x12\"\n\x1a\x63ontract_enforced_disabled\x18\x04 \x01(\x08\x12\x17\n\x0f\x63olumns_removed\x18\x05 \x03(\t\x12\x34\n\x13\x63olumn_type_changes\x18\x06 \x03(\x0b\x32\x17.proto_types.ColumnType\x12I\n\"enforced_column_constraint_removed\x18\x07 \x03(\x0b\x32\x1d.proto_types.ColumnConstraint\x12G\n!enforced_model_constraint_removed\x18\x08 \x03(\x0b\x32\x1c.proto_types.ModelConstraint\x12\x1f\n\x17materialization_changed\x18\t \x03(\t\"~\n\x1cUnversionedBreakingChangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.UnversionedBreakingChange\"*\n\x14WarnStateTargetEqual\x12\x12\n\nstate_path\x18\x01 \x01(\t\"t\n\x17WarnStateTargetEqualMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.WarnStateTargetEqual\"%\n\x16\x46reshnessConfigProblem\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x19\x46reshnessConfigProblemMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessConfigProblem\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x86\x01\n GitSparseCheckoutSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"\x82\x01\n\x1eGitProgressCheckoutRevisionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.GitProgressCheckoutRevision\"4\n%GitProgressUpdatingExistingDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x96\x01\n(GitProgressUpdatingExistingDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.GitProgressUpdatingExistingDependency\".\n\x1fGitProgressPullingNewDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x8a\x01\n\"GitProgressPullingNewDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"h\n\x11GitNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.GitNothingToDo\"E\n\x1fGitProgressUpdatedCheckoutRange\x12\x11\n\tstart_sha\x18\x01 \x01(\t\x12\x0f\n\x07\x65nd_sha\x18\x02 \x01(\t\"\x8a\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressUpdatedCheckoutRange\"*\n\x17GitProgressCheckedOutAt\x12\x0f\n\x07\x65nd_sha\x18\x01 \x01(\t\"z\n\x1aGitProgressCheckedOutAtMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x80\x01\n\x1dRegistryProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.RegistryProgressGETRequest\"=\n\x1bRegistryProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x82\x01\n\x1eRegistryProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RegistryProgressGETResponse\"_\n\x1dSelectorReportInvalidSelector\x12\x17\n\x0fvalid_selectors\x18\x01 \x01(\t\x12\x13\n\x0bspec_method\x18\x02 \x01(\t\x12\x10\n\x08raw_spec\x18\x03 \x01(\t\"\x86\x01\n SelectorReportInvalidSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"r\n\x16\x44\x65psNoPackagesFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsNoPackagesFound\"/\n\x17\x44\x65psStartPackageInstall\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psStartPackageInstallMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsStartPackageInstall\"\'\n\x0f\x44\x65psInstallInfo\x12\x14\n\x0cversion_name\x18\x01 \x01(\t\"j\n\x12\x44\x65psInstallInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DepsInstallInfo\"-\n\x13\x44\x65psUpdateAvailable\x12\x16\n\x0eversion_latest\x18\x01 \x01(\t\"r\n\x16\x44\x65psUpdateAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"d\n\x0f\x44\x65psUpToDateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUpToDate\",\n\x14\x44\x65psListSubdirectory\x12\x14\n\x0csubdirectory\x18\x01 \x01(\t\"t\n\x17\x44\x65psListSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.DepsListSubdirectory\".\n\x1a\x44\x65psNotifyUpdatesAvailable\x12\x10\n\x08packages\x18\x01 \x03(\t\"\x80\x01\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryIndexProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryIndexProgressGETRequest\"B\n RegistryIndexProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x8c\x01\n#RegistryIndexProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseUnexpectedTypeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseUnexpectedType\"2\n\x1eRegistryResponseMissingTopKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseMissingTopKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseMissingTopKeys\"5\n!RegistryResponseMissingNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8e\x01\n$RegistryResponseMissingNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryResponseExtraNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryResponseExtraNestedKeys\"(\n\x18\x44\x65psSetDownloadDirectory\x12\x0c\n\x04path\x18\x01 \x01(\t\"|\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsSetDownloadDirectory\"-\n\x0c\x44\x65psUnpinned\x12\x10\n\x08revision\x18\x01 \x01(\t\x12\x0b\n\x03git\x18\x02 \x01(\t\"d\n\x0f\x44\x65psUnpinnedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUnpinned\"/\n\x1bNoNodesForSelectionCriteria\x12\x10\n\x08spec_raw\x18\x01 \x01(\t\"\x82\x01\n\x1eNoNodesForSelectionCriteriaMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\")\n\x10\x44\x65psLockUpdating\x12\x15\n\rlock_filepath\x18\x01 \x01(\t\"l\n\x13\x44\x65psLockUpdatingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.DepsLockUpdating\"R\n\x0e\x44\x65psAddPackage\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x19\n\x11packages_filepath\x18\x03 \x01(\t\"h\n\x11\x44\x65psAddPackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DepsAddPackage\"\xa7\x01\n\x19\x44\x65psFoundDuplicatePackage\x12S\n\x0fremoved_package\x18\x01 \x03(\x0b\x32:.proto_types.DepsFoundDuplicatePackage.RemovedPackageEntry\x1a\x35\n\x13RemovedPackageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"~\n\x1c\x44\x65psFoundDuplicatePackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.DepsFoundDuplicatePackage\"$\n\x12\x44\x65psVersionMissing\x12\x0e\n\x06source\x18\x01 \x01(\t\"p\n\x15\x44\x65psVersionMissingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.DepsVersionMissing\"/\n\x17\x44\x65psScrubbedPackageName\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psScrubbedPackageNameMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsScrubbedPackageName\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x82\x01\n\x1eRunningOperationCaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"j\n\x12\x43ompileCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"x\n\x19\x46reshnessCheckCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessCheckComplete\"\x1c\n\nSeedHeader\x12\x0e\n\x06header\x18\x01 \x01(\t\"`\n\rSeedHeaderMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"]\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15SQLRunnerExceptionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SQLRunnerException\"\xa8\x01\n\rLogTestResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\x12\n\nnum_models\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"f\n\x10LogTestResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogTestResult\"k\n\x0cLogStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"d\n\x0fLogStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.LogStartLine\"\x95\x01\n\x0eLogModelResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogModelResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\x92\x02\n\x11LogSnapshotResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x34\n\x03\x63\x66g\x18\x07 \x03(\x0b\x32\'.proto_types.LogSnapshotResult.CfgEntry\x12\x16\n\x0eresult_message\x18\x08 \x01(\t\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"n\n\x14LogSnapshotResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogSnapshotResult\"\xb9\x01\n\rLogSeedResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x16\n\x0eresult_message\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x0e\n\x06schema\x18\x07 \x01(\t\x12\x10\n\x08relation\x18\x08 \x01(\t\"f\n\x10LogSeedResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogSeedResult\"\xad\x01\n\x12LogFreshnessResult\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x13\n\x0bsource_name\x18\x06 \x01(\t\x12\x12\n\ntable_name\x18\x07 \x01(\t\"p\n\x15LogFreshnessResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\x98\x01\n\x11LogNodeNoOpResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"n\n\x14LogNodeNoOpResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogNodeNoOpResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"f\n\x10LogCancelLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogCancelLine\"\x1f\n\x0f\x44\x65\x66\x61ultSelector\x12\x0c\n\x04name\x18\x01 \x01(\t\"j\n\x12\x44\x65\x66\x61ultSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DefaultSelector\"5\n\tNodeStart\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"^\n\x0cNodeStartMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.NodeStart\"g\n\x0cNodeFinished\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12-\n\nrun_result\x18\x02 \x01(\x0b\x32\x19.proto_types.RunResultMsg\"d\n\x0fNodeFinishedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"\x82\x01\n\x1eQueryCancelationUnsupportedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.QueryCancelationUnsupported\"O\n\x0f\x43oncurrencyLine\x12\x13\n\x0bnum_threads\x18\x01 \x01(\x05\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\x12\x12\n\nnode_count\x18\x03 \x01(\x05\"j\n\x12\x43oncurrencyLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ConcurrencyLine\"E\n\x19WritingInjectedSQLForNode\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"~\n\x1cWritingInjectedSQLForNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.WritingInjectedSQLForNode\"9\n\rNodeCompiling\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeCompilingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeCompiling\"9\n\rNodeExecuting\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeExecutingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeExecuting\"m\n\x10LogHookStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"l\n\x13LogHookStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.LogHookStartLine\"\x93\x01\n\x0eLogHookEndLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogHookEndLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogHookEndLine\"\x93\x01\n\x0fSkippingDetails\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tnode_name\x18\x04 \x01(\t\x12\r\n\x05index\x18\x05 \x01(\x05\x12\r\n\x05total\x18\x06 \x01(\x05\"j\n\x12SkippingDetailsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"b\n\x0eNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.NothingToDo\",\n\x1dRunningOperationUncaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x86\x01\n RunningOperationUncaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.RunningOperationUncaughtError\"\x93\x01\n\x0c\x45ndRunResult\x12*\n\x07results\x18\x01 \x03(\x0b\x32\x19.proto_types.RunResultMsg\x12\x14\n\x0c\x65lapsed_time\x18\x02 \x01(\x02\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07success\x18\x04 \x01(\x08\"d\n\x0f\x45ndRunResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"j\n\x12NoNodesSelectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.NoNodesSelected\"w\n\x10\x43ommandCompleted\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x65lapsed\x18\x04 \x01(\x02\"l\n\x13\x43ommandCompletedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.CommandCompleted\"k\n\x08ShowNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0f\n\x07preview\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"\\\n\x0bShowNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.ShowNode\"p\n\x0c\x43ompiledNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x10\n\x08\x63ompiled\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"d\n\x0f\x43ompiledNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.CompiledNode\"b\n\x17\x43\x61tchableExceptionOnRun\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"z\n\x1a\x43\x61tchableExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"_\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15InternalErrorOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"u\n\x15GenericExceptionOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"v\n\x18GenericExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.GenericExceptionOnRun\"N\n\x1aNodeConnectionReleaseError\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"\x80\x01\n\x1dNodeConnectionReleaseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.NodeConnectionReleaseError\"\x1f\n\nFoundStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\"`\n\rFoundStatsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"v\n\x18MainKeyboardInterruptMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainKeyboardInterrupt\"#\n\x14MainEncounteredError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x17MainEncounteredErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"h\n\x11MainStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"p\n\x13TimingInfoCollected\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12/\n\x0btiming_info\x18\x02 \x01(\x0b\x32\x1a.proto_types.TimingInfoMsg\"r\n\x16TimingInfoCollectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.TimingInfoCollected\"&\n\x12LogDebugStackTrace\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"p\n\x15LogDebugStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDebugStackTrace\"\x1e\n\x0e\x43heckCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"h\n\x11\x43heckCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CheckCleanPath\" \n\x10\x43onfirmCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x13\x43onfirmCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x15ProtectedCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"p\n\x15\x46inishedCleanPathsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FinishedCleanPaths\"5\n\x0bOpenCommand\x12\x10\n\x08open_cmd\x18\x01 \x01(\t\x12\x14\n\x0cprofiles_dir\x18\x02 \x01(\t\"b\n\x0eOpenCommandMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"j\n\x12ServingDocsPortMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"v\n\x18ServingDocsAccessInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"r\n\x16ServingDocsExitInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"t\n\x10RunResultWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"t\n\x10RunResultFailure\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultFailure\"k\n\tStatsLine\x12\x30\n\x05stats\x18\x01 \x03(\x0b\x32!.proto_types.StatsLine.StatsEntry\x1a,\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"^\n\x0cStatsLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"G\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"h\n\x11RunResultErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\"S\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultErrorNoMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"I\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"j\n\x12SQLCompiledPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"W\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"t\n\x17\x43heckNodeTestFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"W\n\x0f\x45ndOfRunSummary\x12\x12\n\nnum_errors\x18\x01 \x01(\x05\x12\x14\n\x0cnum_warnings\x18\x02 \x01(\x05\x12\x1a\n\x12keyboard_interrupt\x18\x03 \x01(\x08\"j\n\x12\x45ndOfRunSummaryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.EndOfRunSummary\"U\n\x13LogSkipBecauseError\x12\x0e\n\x06schema\x18\x01 \x01(\t\x12\x10\n\x08relation\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"r\n\x16LogSkipBecauseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"p\n\x15\x45nsureGitInstalledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"|\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"z\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"j\n\x12\x44isableTrackingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DisableTracking\"\x1e\n\x0cSendingEvent\x12\x0e\n\x06kwargs\x18\x01 \x01(\t\"d\n\x0fSendingEventMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"l\n\x13SendEventFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"b\n\x0e\x46lushEventsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"p\n\x15\x46lushEventsFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FlushEventsFailure\"-\n\x19TrackingInitializeFailure\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"~\n\x1cTrackingInitializeFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"P\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultWarningMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultWarningMessage\"\x1a\n\x0b\x44\x65\x62ugCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"b\n\x0e\x44\x65\x62ugCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.DebugCmdOut\"\x1d\n\x0e\x44\x65\x62ugCmdResult\x12\x0b\n\x03msg\x18\x01 \x01(\t\"h\n\x11\x44\x65\x62ugCmdResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DebugCmdResult\"\x19\n\nListCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"`\n\rListCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\xec\x01\n\x0eResourceReport\x12\x14\n\x0c\x63ommand_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63ommand_success\x18\x03 \x01(\x08\x12\x1f\n\x17\x63ommand_wall_clock_time\x18\x04 \x01(\x02\x12\x19\n\x11process_user_time\x18\x05 \x01(\x02\x12\x1b\n\x13process_kernel_time\x18\x06 \x01(\x02\x12\x1b\n\x13process_mem_max_rss\x18\x07 \x01(\x03\x12\x19\n\x11process_in_blocks\x18\x08 \x01(\x03\x12\x1a\n\x12process_out_blocks\x18\t \x01(\x03\"h\n\x11ResourceReportMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ResourceReportb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x63ore_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x99\x02\n\rCoreEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x05\x65xtra\x18\t \x03(\x0b\x32%.proto_types.CoreEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"V\n\x0cNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x91\x02\n\x08NodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x30\n\rnode_relation\x18\n \x01(\x0b\x32\x19.proto_types.NodeRelation\"\x7f\n\rTimingInfoMsg\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd1\x01\n\x0cRunResultMsg\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12/\n\x0btiming_info\x18\x03 \x03(\x0b\x32\x1a.proto_types.TimingInfoMsg\x12\x0e\n\x06thread\x18\x04 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x31\n\x10\x61\x64\x61pter_response\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"\\\n\nColumnType\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x1c\n\x14previous_column_type\x18\x02 \x01(\t\x12\x1b\n\x13\x63urrent_column_type\x18\x03 \x01(\t\"Y\n\x10\x43olumnConstraint\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x03 \x01(\t\"T\n\x0fModelConstraint\x12\x17\n\x0f\x63onstraint_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"n\n\x14MainReportVersionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.MainReportVersion\"r\n\x0eMainReportArgs\x12\x33\n\x04\x61rgs\x18\x01 \x03(\x0b\x32%.proto_types.MainReportArgs.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"h\n\x11MainReportArgsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainReportArgs\"+\n\x15MainTrackingUserState\x12\x12\n\nuser_state\x18\x01 \x01(\t\"v\n\x18MainTrackingUserStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainTrackingUserState\"5\n\x0fMergedFromState\x12\x12\n\nnum_merged\x18\x01 \x01(\x05\x12\x0e\n\x06sample\x18\x02 \x03(\t\"j\n\x12MergedFromStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.MergedFromState\"A\n\x14MissingProfileTarget\x12\x14\n\x0cprofile_name\x18\x01 \x01(\t\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\"t\n\x17MissingProfileTargetMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"n\n\x14InvalidOptionYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.InvalidOptionYAML\"!\n\x12LogDbtProjectError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x15LogDbtProjectErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProjectError\"3\n\x12LogDbtProfileError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08profiles\x18\x02 \x03(\t\"p\n\x15LogDbtProfileErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProfileError\"!\n\x12StarterProjectPath\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"p\n\x15StarterProjectPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StarterProjectPath\"$\n\x15\x43onfigFolderDirectory\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"v\n\x18\x43onfigFolderDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConfigFolderDirectory\"\'\n\x14NoSampleProfileFound\x12\x0f\n\x07\x61\x64\x61pter\x18\x01 \x01(\t\"t\n\x17NoSampleProfileFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NoSampleProfileFound\"6\n\x18ProfileWrittenWithSample\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"|\n\x1bProfileWrittenWithSampleMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProfileWrittenWithSample\"B\n$ProfileWrittenWithTargetTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x94\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.ProfileWrittenWithTargetTemplateYAML\"C\n%ProfileWrittenWithProjectTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x96\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"l\n\x13SettingUpProfileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"\x80\x01\n\x1dInvalidProfileTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"|\n\x1bProjectNameAlreadyExistsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProjectNameAlreadyExists\"K\n\x0eProjectCreated\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x10\n\x08\x64ocs_url\x18\x02 \x01(\t\x12\x11\n\tslack_url\x18\x03 \x01(\t\"h\n\x11ProjectCreatedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ProjectCreated\"@\n\x1aPackageRedirectDeprecation\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1dPackageRedirectDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x86\x01\n PackageInstallPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.PackageInstallPathDeprecation\"H\n\x1b\x43onfigSourcePathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"\x82\x01\n\x1e\x43onfigSourcePathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigSourcePathDeprecation\"F\n\x19\x43onfigDataPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"~\n\x1c\x43onfigDataPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"z\n\x1aMetricAttributesRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.MetricAttributesRenamed\"+\n\x17\x45xposureNameDeprecation\x12\x10\n\x08\x65xposure\x18\x01 \x01(\t\"z\n\x1a\x45xposureNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.ExposureNameDeprecation\"^\n\x13InternalDeprecation\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x18\n\x10suggested_action\x18\x03 \x01(\t\x12\x0f\n\x07version\x18\x04 \x01(\t\"r\n\x16InternalDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.InternalDeprecation\"@\n\x1a\x45nvironmentVariableRenamed\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1d\x45nvironmentVariableRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.EnvironmentVariableRenamed\"3\n\x18\x43onfigLogPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"|\n\x1b\x43onfigLogPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ConfigLogPathDeprecation\"6\n\x1b\x43onfigTargetPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"\x82\x01\n\x1e\x43onfigTargetPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"C\n\x16TestsConfigDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"x\n\x19TestsConfigDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.TestsConfigDeprecation\"\x1e\n\x1cProjectFlagsMovedDeprecation\"\x84\x01\n\x1fProjectFlagsMovedDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.ProjectFlagsMovedDeprecation\"X\n\x1cSpacesInModelNameDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\r\n\x05level\x18\x03 \x01(\t\"\x84\x01\n\x1fSpacesInModelNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.SpacesInModelNameDeprecation\"k\n$TotalModelNamesWithSpacesDeprecation\x12\x1b\n\x13\x63ount_invalid_names\x18\x01 \x01(\x05\x12\x17\n\x0fshow_debug_hint\x18\x02 \x01(\x08\x12\r\n\x05level\x18\x03 \x01(\t\"_\n)PackageMaterializationOverrideDeprecation\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x1c\n\x14materialization_name\x18\x02 \x01(\t\"\x9e\x01\n,PackageMaterializationOverrideDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x44\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x36.proto_types.PackageMaterializationOverrideDeprecation\"\x94\x01\n\'TotalModelNamesWithSpacesDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.TotalModelNamesWithSpacesDeprecation\"V\n\x0f\x44\x65precatedModel\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65precation_date\x18\x03 \x01(\t\"j\n\x12\x44\x65precatedModelMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"p\n\x15InputFileDiffErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"t\n\x17InvalidValueForFieldMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.InvalidValueForField\"Q\n\x11ValidationWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x12\n\nfield_name\x18\x02 \x01(\t\x12\x11\n\tnode_name\x18\x03 \x01(\t\"n\n\x14ValidationWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"n\n\x14ParsePerfInfoPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8e\x01\n$PartialParsingErrorProcessingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.PartialParsingErrorProcessingFile\"\x86\x01\n\x13PartialParsingError\x12?\n\x08\x65xc_info\x18\x01 \x03(\x0b\x32-.proto_types.PartialParsingError.ExcInfoEntry\x1a.\n\x0c\x45xcInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"r\n\x16PartialParsingErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"~\n\x1cPartialParsingSkipParsingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"t\n\x17UnableToPartialParseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.UnableToPartialParse\"f\n\x12StateCheckVarsHash\x12\x10\n\x08\x63hecksum\x18\x01 \x01(\t\x12\x0c\n\x04vars\x18\x02 \x01(\t\x12\x0f\n\x07profile\x18\x03 \x01(\t\x12\x0e\n\x06target\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"p\n\x15StateCheckVarsHashMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"|\n\x1bPartialParsingNotEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.PartialParsingNotEnabled\"C\n\x14ParsedFileLoadFailed\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"t\n\x17ParsedFileLoadFailedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParsedFileLoadFailed\"H\n\x15PartialParsingEnabled\x12\x0f\n\x07\x64\x65leted\x18\x01 \x01(\x05\x12\r\n\x05\x61\x64\x64\x65\x64\x18\x02 \x01(\x05\x12\x0f\n\x07\x63hanged\x18\x03 \x01(\x05\"v\n\x18PartialParsingEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.PartialParsingEnabled\"8\n\x12PartialParsingFile\x12\x0f\n\x07\x66ile_id\x18\x01 \x01(\t\x12\x11\n\toperation\x18\x02 \x01(\t\"p\n\x15PartialParsingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.PartialParsingFile\"\xaf\x01\n\x1fInvalidDisabledTargetInTestNode\x12\x1b\n\x13resource_type_title\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1a\n\x12original_file_path\x18\x03 \x01(\t\x12\x13\n\x0btarget_kind\x18\x04 \x01(\t\x12\x13\n\x0btarget_name\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\"\x8a\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.InvalidDisabledTargetInTestNode\"7\n\x18UnusedResourceConfigPath\x12\x1b\n\x13unused_config_paths\x18\x01 \x03(\t\"|\n\x1bUnusedResourceConfigPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.UnusedResourceConfigPath\"3\n\rSeedIncreased\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"f\n\x10SeedIncreasedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.SeedIncreased\">\n\x18SeedExceedsLimitSamePath\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"|\n\x1bSeedExceedsLimitSamePathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.SeedExceedsLimitSamePath\"D\n\x1eSeedExceedsLimitAndPathChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\x88\x01\n!SeedExceedsLimitAndPathChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.SeedExceedsLimitAndPathChanged\"\\\n\x1fSeedExceedsLimitChecksumChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\rchecksum_name\x18\x03 \x01(\t\"\x8a\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"d\n\x0fUnusedTablesMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.UnusedTables\"\x87\x01\n\x17WrongResourceSchemaFile\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x1c\n\x14plural_resource_type\x18\x03 \x01(\t\x12\x10\n\x08yaml_key\x18\x04 \x01(\t\x12\x11\n\tfile_path\x18\x05 \x01(\t\"z\n\x1aWrongResourceSchemaFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.WrongResourceSchemaFile\"K\n\x10NoNodeForYamlKey\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x10\n\x08yaml_key\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"l\n\x13NoNodeForYamlKeyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.NoNodeForYamlKey\"+\n\x15MacroNotFoundForPatch\x12\x12\n\npatch_name\x18\x01 \x01(\t\"v\n\x18MacroNotFoundForPatchMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MacroNotFoundForPatch\"\xb8\x01\n\x16NodeNotFoundOrDisabled\x12\x1a\n\x12original_file_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1b\n\x13resource_type_title\x18\x03 \x01(\t\x12\x13\n\x0btarget_name\x18\x04 \x01(\t\x12\x13\n\x0btarget_kind\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\x12\x10\n\x08\x64isabled\x18\x07 \x01(\t\"x\n\x19NodeNotFoundOrDisabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.NodeNotFoundOrDisabled\"H\n\x0fJinjaLogWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"j\n\x12JinjaLogWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.JinjaLogWarning\"E\n\x0cJinjaLogInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"d\n\x0fJinjaLogInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.JinjaLogInfo\"F\n\rJinjaLogDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"f\n\x10JinjaLogDebugMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.JinjaLogDebug\"\xae\x01\n\x1eUnpinnedRefNewVersionAvailable\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rref_node_name\x18\x02 \x01(\t\x12\x18\n\x10ref_node_package\x18\x03 \x01(\t\x12\x18\n\x10ref_node_version\x18\x04 \x01(\t\x12\x17\n\x0fref_max_version\x18\x05 \x01(\t\"\x88\x01\n!UnpinnedRefNewVersionAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"\xc6\x01\n\x1cUpcomingReferenceDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"\x84\x01\n\x1fUpcomingReferenceDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.UpcomingReferenceDeprecation\"\xbd\x01\n\x13\x44\x65precatedReference\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"r\n\x16\x44\x65precatedReferenceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x94\x01\n\'UnsupportedConstraintMaterializationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"M\n\x14ParseInlineNodeError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"t\n\x17ParseInlineNodeErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParseInlineNodeError\"(\n\x19SemanticValidationFailure\x12\x0b\n\x03msg\x18\x02 \x01(\t\"~\n\x1cSemanticValidationFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.SemanticValidationFailure\"\x8a\x03\n\x19UnversionedBreakingChange\x12\x18\n\x10\x62reaking_changes\x18\x01 \x03(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x17\n\x0fmodel_file_path\x18\x03 \x01(\t\x12\"\n\x1a\x63ontract_enforced_disabled\x18\x04 \x01(\x08\x12\x17\n\x0f\x63olumns_removed\x18\x05 \x03(\t\x12\x34\n\x13\x63olumn_type_changes\x18\x06 \x03(\x0b\x32\x17.proto_types.ColumnType\x12I\n\"enforced_column_constraint_removed\x18\x07 \x03(\x0b\x32\x1d.proto_types.ColumnConstraint\x12G\n!enforced_model_constraint_removed\x18\x08 \x03(\x0b\x32\x1c.proto_types.ModelConstraint\x12\x1f\n\x17materialization_changed\x18\t \x03(\t\"~\n\x1cUnversionedBreakingChangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.UnversionedBreakingChange\"*\n\x14WarnStateTargetEqual\x12\x12\n\nstate_path\x18\x01 \x01(\t\"t\n\x17WarnStateTargetEqualMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.WarnStateTargetEqual\"%\n\x16\x46reshnessConfigProblem\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x19\x46reshnessConfigProblemMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessConfigProblem\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x86\x01\n GitSparseCheckoutSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"\x82\x01\n\x1eGitProgressCheckoutRevisionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.GitProgressCheckoutRevision\"4\n%GitProgressUpdatingExistingDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x96\x01\n(GitProgressUpdatingExistingDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.GitProgressUpdatingExistingDependency\".\n\x1fGitProgressPullingNewDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x8a\x01\n\"GitProgressPullingNewDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"h\n\x11GitNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.GitNothingToDo\"E\n\x1fGitProgressUpdatedCheckoutRange\x12\x11\n\tstart_sha\x18\x01 \x01(\t\x12\x0f\n\x07\x65nd_sha\x18\x02 \x01(\t\"\x8a\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressUpdatedCheckoutRange\"*\n\x17GitProgressCheckedOutAt\x12\x0f\n\x07\x65nd_sha\x18\x01 \x01(\t\"z\n\x1aGitProgressCheckedOutAtMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x80\x01\n\x1dRegistryProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.RegistryProgressGETRequest\"=\n\x1bRegistryProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x82\x01\n\x1eRegistryProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RegistryProgressGETResponse\"_\n\x1dSelectorReportInvalidSelector\x12\x17\n\x0fvalid_selectors\x18\x01 \x01(\t\x12\x13\n\x0bspec_method\x18\x02 \x01(\t\x12\x10\n\x08raw_spec\x18\x03 \x01(\t\"\x86\x01\n SelectorReportInvalidSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"r\n\x16\x44\x65psNoPackagesFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsNoPackagesFound\"/\n\x17\x44\x65psStartPackageInstall\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psStartPackageInstallMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsStartPackageInstall\"\'\n\x0f\x44\x65psInstallInfo\x12\x14\n\x0cversion_name\x18\x01 \x01(\t\"j\n\x12\x44\x65psInstallInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DepsInstallInfo\"-\n\x13\x44\x65psUpdateAvailable\x12\x16\n\x0eversion_latest\x18\x01 \x01(\t\"r\n\x16\x44\x65psUpdateAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"d\n\x0f\x44\x65psUpToDateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUpToDate\",\n\x14\x44\x65psListSubdirectory\x12\x14\n\x0csubdirectory\x18\x01 \x01(\t\"t\n\x17\x44\x65psListSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.DepsListSubdirectory\".\n\x1a\x44\x65psNotifyUpdatesAvailable\x12\x10\n\x08packages\x18\x01 \x03(\t\"\x80\x01\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryIndexProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryIndexProgressGETRequest\"B\n RegistryIndexProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x8c\x01\n#RegistryIndexProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseUnexpectedTypeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseUnexpectedType\"2\n\x1eRegistryResponseMissingTopKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseMissingTopKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseMissingTopKeys\"5\n!RegistryResponseMissingNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8e\x01\n$RegistryResponseMissingNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryResponseExtraNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryResponseExtraNestedKeys\"(\n\x18\x44\x65psSetDownloadDirectory\x12\x0c\n\x04path\x18\x01 \x01(\t\"|\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsSetDownloadDirectory\"-\n\x0c\x44\x65psUnpinned\x12\x10\n\x08revision\x18\x01 \x01(\t\x12\x0b\n\x03git\x18\x02 \x01(\t\"d\n\x0f\x44\x65psUnpinnedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUnpinned\"/\n\x1bNoNodesForSelectionCriteria\x12\x10\n\x08spec_raw\x18\x01 \x01(\t\"\x82\x01\n\x1eNoNodesForSelectionCriteriaMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\")\n\x10\x44\x65psLockUpdating\x12\x15\n\rlock_filepath\x18\x01 \x01(\t\"l\n\x13\x44\x65psLockUpdatingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.DepsLockUpdating\"R\n\x0e\x44\x65psAddPackage\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x19\n\x11packages_filepath\x18\x03 \x01(\t\"h\n\x11\x44\x65psAddPackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DepsAddPackage\"\xa7\x01\n\x19\x44\x65psFoundDuplicatePackage\x12S\n\x0fremoved_package\x18\x01 \x03(\x0b\x32:.proto_types.DepsFoundDuplicatePackage.RemovedPackageEntry\x1a\x35\n\x13RemovedPackageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"~\n\x1c\x44\x65psFoundDuplicatePackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.DepsFoundDuplicatePackage\"$\n\x12\x44\x65psVersionMissing\x12\x0e\n\x06source\x18\x01 \x01(\t\"p\n\x15\x44\x65psVersionMissingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.DepsVersionMissing\"/\n\x17\x44\x65psScrubbedPackageName\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psScrubbedPackageNameMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsScrubbedPackageName\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x82\x01\n\x1eRunningOperationCaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"j\n\x12\x43ompileCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"x\n\x19\x46reshnessCheckCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessCheckComplete\"\x1c\n\nSeedHeader\x12\x0e\n\x06header\x18\x01 \x01(\t\"`\n\rSeedHeaderMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"]\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15SQLRunnerExceptionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SQLRunnerException\"\xa8\x01\n\rLogTestResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\x12\n\nnum_models\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"f\n\x10LogTestResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogTestResult\"k\n\x0cLogStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"d\n\x0fLogStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.LogStartLine\"\x95\x01\n\x0eLogModelResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogModelResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\x92\x02\n\x11LogSnapshotResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x34\n\x03\x63\x66g\x18\x07 \x03(\x0b\x32\'.proto_types.LogSnapshotResult.CfgEntry\x12\x16\n\x0eresult_message\x18\x08 \x01(\t\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"n\n\x14LogSnapshotResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogSnapshotResult\"\xb9\x01\n\rLogSeedResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x16\n\x0eresult_message\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x0e\n\x06schema\x18\x07 \x01(\t\x12\x10\n\x08relation\x18\x08 \x01(\t\"f\n\x10LogSeedResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogSeedResult\"\xad\x01\n\x12LogFreshnessResult\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x13\n\x0bsource_name\x18\x06 \x01(\t\x12\x12\n\ntable_name\x18\x07 \x01(\t\"p\n\x15LogFreshnessResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\x98\x01\n\x11LogNodeNoOpResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"n\n\x14LogNodeNoOpResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogNodeNoOpResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"f\n\x10LogCancelLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogCancelLine\"\x1f\n\x0f\x44\x65\x66\x61ultSelector\x12\x0c\n\x04name\x18\x01 \x01(\t\"j\n\x12\x44\x65\x66\x61ultSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DefaultSelector\"5\n\tNodeStart\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"^\n\x0cNodeStartMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.NodeStart\"g\n\x0cNodeFinished\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12-\n\nrun_result\x18\x02 \x01(\x0b\x32\x19.proto_types.RunResultMsg\"d\n\x0fNodeFinishedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"\x82\x01\n\x1eQueryCancelationUnsupportedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.QueryCancelationUnsupported\"O\n\x0f\x43oncurrencyLine\x12\x13\n\x0bnum_threads\x18\x01 \x01(\x05\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\x12\x12\n\nnode_count\x18\x03 \x01(\x05\"j\n\x12\x43oncurrencyLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ConcurrencyLine\"E\n\x19WritingInjectedSQLForNode\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"~\n\x1cWritingInjectedSQLForNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.WritingInjectedSQLForNode\"9\n\rNodeCompiling\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeCompilingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeCompiling\"9\n\rNodeExecuting\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeExecutingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeExecuting\"m\n\x10LogHookStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"l\n\x13LogHookStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.LogHookStartLine\"\x93\x01\n\x0eLogHookEndLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogHookEndLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogHookEndLine\"\x93\x01\n\x0fSkippingDetails\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tnode_name\x18\x04 \x01(\t\x12\r\n\x05index\x18\x05 \x01(\x05\x12\r\n\x05total\x18\x06 \x01(\x05\"j\n\x12SkippingDetailsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"b\n\x0eNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.NothingToDo\",\n\x1dRunningOperationUncaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x86\x01\n RunningOperationUncaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.RunningOperationUncaughtError\"\x93\x01\n\x0c\x45ndRunResult\x12*\n\x07results\x18\x01 \x03(\x0b\x32\x19.proto_types.RunResultMsg\x12\x14\n\x0c\x65lapsed_time\x18\x02 \x01(\x02\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07success\x18\x04 \x01(\x08\"d\n\x0f\x45ndRunResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"j\n\x12NoNodesSelectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.NoNodesSelected\"w\n\x10\x43ommandCompleted\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x65lapsed\x18\x04 \x01(\x02\"l\n\x13\x43ommandCompletedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.CommandCompleted\"k\n\x08ShowNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0f\n\x07preview\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"\\\n\x0bShowNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.ShowNode\"p\n\x0c\x43ompiledNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x10\n\x08\x63ompiled\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"d\n\x0f\x43ompiledNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.CompiledNode\"b\n\x17\x43\x61tchableExceptionOnRun\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"z\n\x1a\x43\x61tchableExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"_\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15InternalErrorOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"u\n\x15GenericExceptionOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"v\n\x18GenericExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.GenericExceptionOnRun\"N\n\x1aNodeConnectionReleaseError\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"\x80\x01\n\x1dNodeConnectionReleaseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.NodeConnectionReleaseError\"\x1f\n\nFoundStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\"`\n\rFoundStatsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"v\n\x18MainKeyboardInterruptMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainKeyboardInterrupt\"#\n\x14MainEncounteredError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x17MainEncounteredErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"h\n\x11MainStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"p\n\x13TimingInfoCollected\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12/\n\x0btiming_info\x18\x02 \x01(\x0b\x32\x1a.proto_types.TimingInfoMsg\"r\n\x16TimingInfoCollectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.TimingInfoCollected\"&\n\x12LogDebugStackTrace\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"p\n\x15LogDebugStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDebugStackTrace\"\x1e\n\x0e\x43heckCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"h\n\x11\x43heckCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CheckCleanPath\" \n\x10\x43onfirmCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x13\x43onfirmCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x15ProtectedCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"p\n\x15\x46inishedCleanPathsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FinishedCleanPaths\"5\n\x0bOpenCommand\x12\x10\n\x08open_cmd\x18\x01 \x01(\t\x12\x14\n\x0cprofiles_dir\x18\x02 \x01(\t\"b\n\x0eOpenCommandMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"j\n\x12ServingDocsPortMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"v\n\x18ServingDocsAccessInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"r\n\x16ServingDocsExitInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"t\n\x10RunResultWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"t\n\x10RunResultFailure\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultFailure\"k\n\tStatsLine\x12\x30\n\x05stats\x18\x01 \x03(\x0b\x32!.proto_types.StatsLine.StatsEntry\x1a,\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"^\n\x0cStatsLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"G\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"h\n\x11RunResultErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\"S\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultErrorNoMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"I\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"j\n\x12SQLCompiledPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"W\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"t\n\x17\x43heckNodeTestFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"W\n\x0f\x45ndOfRunSummary\x12\x12\n\nnum_errors\x18\x01 \x01(\x05\x12\x14\n\x0cnum_warnings\x18\x02 \x01(\x05\x12\x1a\n\x12keyboard_interrupt\x18\x03 \x01(\x08\"j\n\x12\x45ndOfRunSummaryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.EndOfRunSummary\"U\n\x13LogSkipBecauseError\x12\x0e\n\x06schema\x18\x01 \x01(\t\x12\x10\n\x08relation\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"r\n\x16LogSkipBecauseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"p\n\x15\x45nsureGitInstalledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"|\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"z\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"j\n\x12\x44isableTrackingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DisableTracking\"\x1e\n\x0cSendingEvent\x12\x0e\n\x06kwargs\x18\x01 \x01(\t\"d\n\x0fSendingEventMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"l\n\x13SendEventFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"b\n\x0e\x46lushEventsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"p\n\x15\x46lushEventsFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FlushEventsFailure\"-\n\x19TrackingInitializeFailure\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"~\n\x1cTrackingInitializeFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"P\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultWarningMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultWarningMessage\"\x1a\n\x0b\x44\x65\x62ugCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"b\n\x0e\x44\x65\x62ugCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.DebugCmdOut\"\x1d\n\x0e\x44\x65\x62ugCmdResult\x12\x0b\n\x03msg\x18\x01 \x01(\t\"h\n\x11\x44\x65\x62ugCmdResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DebugCmdResult\"\x19\n\nListCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"`\n\rListCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\xec\x01\n\x0eResourceReport\x12\x14\n\x0c\x63ommand_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63ommand_success\x18\x03 \x01(\x08\x12\x1f\n\x17\x63ommand_wall_clock_time\x18\x04 \x01(\x02\x12\x19\n\x11process_user_time\x18\x05 \x01(\x02\x12\x1b\n\x13process_kernel_time\x18\x06 \x01(\x02\x12\x1b\n\x13process_mem_max_rss\x18\x07 \x01(\x03\x12\x19\n\x11process_in_blocks\x18\x08 \x01(\x03\x12\x1a\n\x12process_out_blocks\x18\t \x01(\x03\"h\n\x11ResourceReportMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ResourceReportb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -181,574 +181,578 @@ _globals['_SPACESINMODELNAMEDEPRECATIONMSG']._serialized_end=6936 _globals['_TOTALMODELNAMESWITHSPACESDEPRECATION']._serialized_start=6938 _globals['_TOTALMODELNAMESWITHSPACESDEPRECATION']._serialized_end=7045 - _globals['_TOTALMODELNAMESWITHSPACESDEPRECATIONMSG']._serialized_start=7048 - _globals['_TOTALMODELNAMESWITHSPACESDEPRECATIONMSG']._serialized_end=7196 - _globals['_DEPRECATEDMODEL']._serialized_start=7198 - _globals['_DEPRECATEDMODEL']._serialized_end=7284 - _globals['_DEPRECATEDMODELMSG']._serialized_start=7286 - _globals['_DEPRECATEDMODELMSG']._serialized_end=7392 - _globals['_INPUTFILEDIFFERROR']._serialized_start=7394 - _globals['_INPUTFILEDIFFERROR']._serialized_end=7449 - _globals['_INPUTFILEDIFFERRORMSG']._serialized_start=7451 - _globals['_INPUTFILEDIFFERRORMSG']._serialized_end=7563 - _globals['_INVALIDVALUEFORFIELD']._serialized_start=7565 - _globals['_INVALIDVALUEFORFIELD']._serialized_end=7628 - _globals['_INVALIDVALUEFORFIELDMSG']._serialized_start=7630 - _globals['_INVALIDVALUEFORFIELDMSG']._serialized_end=7746 - _globals['_VALIDATIONWARNING']._serialized_start=7748 - _globals['_VALIDATIONWARNING']._serialized_end=7829 - _globals['_VALIDATIONWARNINGMSG']._serialized_start=7831 - _globals['_VALIDATIONWARNINGMSG']._serialized_end=7941 - _globals['_PARSEPERFINFOPATH']._serialized_start=7943 - _globals['_PARSEPERFINFOPATH']._serialized_end=7976 - _globals['_PARSEPERFINFOPATHMSG']._serialized_start=7978 - _globals['_PARSEPERFINFOPATHMSG']._serialized_end=8088 - _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_start=8090 - _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_end=8139 - _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_start=8142 - _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_end=8284 - _globals['_PARTIALPARSINGERROR']._serialized_start=8287 - _globals['_PARTIALPARSINGERROR']._serialized_end=8421 - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_start=8375 - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_end=8421 - _globals['_PARTIALPARSINGERRORMSG']._serialized_start=8423 - _globals['_PARTIALPARSINGERRORMSG']._serialized_end=8537 - _globals['_PARTIALPARSINGSKIPPARSING']._serialized_start=8539 - _globals['_PARTIALPARSINGSKIPPARSING']._serialized_end=8566 - _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_start=8568 - _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_end=8694 - _globals['_UNABLETOPARTIALPARSE']._serialized_start=8696 - _globals['_UNABLETOPARTIALPARSE']._serialized_end=8734 - _globals['_UNABLETOPARTIALPARSEMSG']._serialized_start=8736 - _globals['_UNABLETOPARTIALPARSEMSG']._serialized_end=8852 - _globals['_STATECHECKVARSHASH']._serialized_start=8854 - _globals['_STATECHECKVARSHASH']._serialized_end=8956 - _globals['_STATECHECKVARSHASHMSG']._serialized_start=8958 - _globals['_STATECHECKVARSHASHMSG']._serialized_end=9070 - _globals['_PARTIALPARSINGNOTENABLED']._serialized_start=9072 - _globals['_PARTIALPARSINGNOTENABLED']._serialized_end=9098 - _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_start=9100 - _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_end=9224 - _globals['_PARSEDFILELOADFAILED']._serialized_start=9226 - _globals['_PARSEDFILELOADFAILED']._serialized_end=9293 - _globals['_PARSEDFILELOADFAILEDMSG']._serialized_start=9295 - _globals['_PARSEDFILELOADFAILEDMSG']._serialized_end=9411 - _globals['_PARTIALPARSINGENABLED']._serialized_start=9413 - _globals['_PARTIALPARSINGENABLED']._serialized_end=9485 - _globals['_PARTIALPARSINGENABLEDMSG']._serialized_start=9487 - _globals['_PARTIALPARSINGENABLEDMSG']._serialized_end=9605 - _globals['_PARTIALPARSINGFILE']._serialized_start=9607 - _globals['_PARTIALPARSINGFILE']._serialized_end=9663 - _globals['_PARTIALPARSINGFILEMSG']._serialized_start=9665 - _globals['_PARTIALPARSINGFILEMSG']._serialized_end=9777 - _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_start=9780 - _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_end=9955 - _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_start=9958 - _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_end=10096 - _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_start=10098 - _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_end=10153 - _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_start=10155 - _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_end=10279 - _globals['_SEEDINCREASED']._serialized_start=10281 - _globals['_SEEDINCREASED']._serialized_end=10332 - _globals['_SEEDINCREASEDMSG']._serialized_start=10334 - _globals['_SEEDINCREASEDMSG']._serialized_end=10436 - _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_start=10438 - _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_end=10500 - _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_start=10502 - _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_end=10626 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_start=10628 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_end=10696 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_start=10699 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_end=10835 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_start=10837 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_end=10929 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_start=10932 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_end=11070 - _globals['_UNUSEDTABLES']._serialized_start=11072 - _globals['_UNUSEDTABLES']._serialized_end=11109 - _globals['_UNUSEDTABLESMSG']._serialized_start=11111 - _globals['_UNUSEDTABLESMSG']._serialized_end=11211 - _globals['_WRONGRESOURCESCHEMAFILE']._serialized_start=11214 - _globals['_WRONGRESOURCESCHEMAFILE']._serialized_end=11349 - _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_start=11351 - _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_end=11473 - _globals['_NONODEFORYAMLKEY']._serialized_start=11475 - _globals['_NONODEFORYAMLKEY']._serialized_end=11550 - _globals['_NONODEFORYAMLKEYMSG']._serialized_start=11552 - _globals['_NONODEFORYAMLKEYMSG']._serialized_end=11660 - _globals['_MACRONOTFOUNDFORPATCH']._serialized_start=11662 - _globals['_MACRONOTFOUNDFORPATCH']._serialized_end=11705 - _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_start=11707 - _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_end=11825 - _globals['_NODENOTFOUNDORDISABLED']._serialized_start=11828 - _globals['_NODENOTFOUNDORDISABLED']._serialized_end=12012 - _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_start=12014 - _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_end=12134 - _globals['_JINJALOGWARNING']._serialized_start=12136 - _globals['_JINJALOGWARNING']._serialized_end=12208 - _globals['_JINJALOGWARNINGMSG']._serialized_start=12210 - _globals['_JINJALOGWARNINGMSG']._serialized_end=12316 - _globals['_JINJALOGINFO']._serialized_start=12318 - _globals['_JINJALOGINFO']._serialized_end=12387 - _globals['_JINJALOGINFOMSG']._serialized_start=12389 - _globals['_JINJALOGINFOMSG']._serialized_end=12489 - _globals['_JINJALOGDEBUG']._serialized_start=12491 - _globals['_JINJALOGDEBUG']._serialized_end=12561 - _globals['_JINJALOGDEBUGMSG']._serialized_start=12563 - _globals['_JINJALOGDEBUGMSG']._serialized_end=12665 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_start=12668 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_end=12842 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_start=12845 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_end=12981 - _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_start=12984 - _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_end=13182 - _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_start=13185 - _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_end=13317 - _globals['_DEPRECATEDREFERENCE']._serialized_start=13320 - _globals['_DEPRECATEDREFERENCE']._serialized_end=13509 - _globals['_DEPRECATEDREFERENCEMSG']._serialized_start=13511 - _globals['_DEPRECATEDREFERENCEMSG']._serialized_end=13625 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_start=13627 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_end=13687 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_start=13690 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_end=13838 - _globals['_PARSEINLINENODEERROR']._serialized_start=13840 - _globals['_PARSEINLINENODEERROR']._serialized_end=13917 - _globals['_PARSEINLINENODEERRORMSG']._serialized_start=13919 - _globals['_PARSEINLINENODEERRORMSG']._serialized_end=14035 - _globals['_SEMANTICVALIDATIONFAILURE']._serialized_start=14037 - _globals['_SEMANTICVALIDATIONFAILURE']._serialized_end=14077 - _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_start=14079 - _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_end=14205 - _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_start=14208 - _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_end=14602 - _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_start=14604 - _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_end=14730 - _globals['_WARNSTATETARGETEQUAL']._serialized_start=14732 - _globals['_WARNSTATETARGETEQUAL']._serialized_end=14774 - _globals['_WARNSTATETARGETEQUALMSG']._serialized_start=14776 - _globals['_WARNSTATETARGETEQUALMSG']._serialized_end=14892 - _globals['_FRESHNESSCONFIGPROBLEM']._serialized_start=14894 - _globals['_FRESHNESSCONFIGPROBLEM']._serialized_end=14931 - _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_start=14933 - _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_end=15053 - _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_start=15055 - _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_end=15102 - _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_start=15105 - _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_end=15239 - _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_start=15241 - _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_end=15288 - _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_start=15291 - _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_end=15421 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_start=15423 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_end=15475 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_start=15478 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_end=15628 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_start=15630 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_end=15676 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_start=15679 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_end=15817 - _globals['_GITNOTHINGTODO']._serialized_start=15819 - _globals['_GITNOTHINGTODO']._serialized_end=15848 - _globals['_GITNOTHINGTODOMSG']._serialized_start=15850 - _globals['_GITNOTHINGTODOMSG']._serialized_end=15954 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_start=15956 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_end=16025 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_start=16028 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_end=16166 - _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_start=16168 - _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_end=16210 - _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_start=16212 - _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_end=16334 - _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_start=16336 - _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_end=16377 - _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_start=16380 - _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_end=16508 - _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_start=16510 - _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_end=16571 - _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_start=16574 - _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_end=16704 - _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_start=16706 - _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_end=16801 - _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_start=16804 - _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_end=16938 - _globals['_DEPSNOPACKAGESFOUND']._serialized_start=16940 - _globals['_DEPSNOPACKAGESFOUND']._serialized_end=16961 - _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_start=16963 - _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_end=17077 - _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_start=17079 - _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_end=17126 - _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_start=17128 - _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_end=17250 - _globals['_DEPSINSTALLINFO']._serialized_start=17252 - _globals['_DEPSINSTALLINFO']._serialized_end=17291 - _globals['_DEPSINSTALLINFOMSG']._serialized_start=17293 - _globals['_DEPSINSTALLINFOMSG']._serialized_end=17399 - _globals['_DEPSUPDATEAVAILABLE']._serialized_start=17401 - _globals['_DEPSUPDATEAVAILABLE']._serialized_end=17446 - _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_start=17448 - _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_end=17562 - _globals['_DEPSUPTODATE']._serialized_start=17564 - _globals['_DEPSUPTODATE']._serialized_end=17578 - _globals['_DEPSUPTODATEMSG']._serialized_start=17580 - _globals['_DEPSUPTODATEMSG']._serialized_end=17680 - _globals['_DEPSLISTSUBDIRECTORY']._serialized_start=17682 - _globals['_DEPSLISTSUBDIRECTORY']._serialized_end=17726 - _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_start=17728 - _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_end=17844 - _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_start=17846 - _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_end=17892 - _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_start=17895 - _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_end=18023 - _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_start=18025 - _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_end=18071 - _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_start=18074 - _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_end=18212 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_start=18214 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_end=18280 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_start=18283 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_end=18423 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_start=18425 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_end=18475 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_start=18478 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_end=18614 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_start=18616 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_end=18666 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_start=18669 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_end=18805 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_start=18807 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_end=18860 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_start=18863 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_end=19005 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_start=19007 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_end=19058 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_start=19061 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_end=19199 - _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_start=19201 - _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_end=19241 - _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_start=19243 - _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_end=19367 - _globals['_DEPSUNPINNED']._serialized_start=19369 - _globals['_DEPSUNPINNED']._serialized_end=19414 - _globals['_DEPSUNPINNEDMSG']._serialized_start=19416 - _globals['_DEPSUNPINNEDMSG']._serialized_end=19516 - _globals['_NONODESFORSELECTIONCRITERIA']._serialized_start=19518 - _globals['_NONODESFORSELECTIONCRITERIA']._serialized_end=19565 - _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_start=19568 - _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_end=19698 - _globals['_DEPSLOCKUPDATING']._serialized_start=19700 - _globals['_DEPSLOCKUPDATING']._serialized_end=19741 - _globals['_DEPSLOCKUPDATINGMSG']._serialized_start=19743 - _globals['_DEPSLOCKUPDATINGMSG']._serialized_end=19851 - _globals['_DEPSADDPACKAGE']._serialized_start=19853 - _globals['_DEPSADDPACKAGE']._serialized_end=19935 - _globals['_DEPSADDPACKAGEMSG']._serialized_start=19937 - _globals['_DEPSADDPACKAGEMSG']._serialized_end=20041 - _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_start=20044 - _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_end=20211 - _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_start=20158 - _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_end=20211 - _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_start=20213 - _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_end=20339 - _globals['_DEPSVERSIONMISSING']._serialized_start=20341 - _globals['_DEPSVERSIONMISSING']._serialized_end=20377 - _globals['_DEPSVERSIONMISSINGMSG']._serialized_start=20379 - _globals['_DEPSVERSIONMISSINGMSG']._serialized_end=20491 - _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_start=20493 - _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_end=20540 - _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_start=20542 - _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_end=20664 - _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_start=20666 - _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_end=20708 - _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_start=20711 - _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_end=20841 - _globals['_COMPILECOMPLETE']._serialized_start=20843 - _globals['_COMPILECOMPLETE']._serialized_end=20860 - _globals['_COMPILECOMPLETEMSG']._serialized_start=20862 - _globals['_COMPILECOMPLETEMSG']._serialized_end=20968 - _globals['_FRESHNESSCHECKCOMPLETE']._serialized_start=20970 - _globals['_FRESHNESSCHECKCOMPLETE']._serialized_end=20994 - _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_start=20996 - _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_end=21116 - _globals['_SEEDHEADER']._serialized_start=21118 - _globals['_SEEDHEADER']._serialized_end=21146 - _globals['_SEEDHEADERMSG']._serialized_start=21148 - _globals['_SEEDHEADERMSG']._serialized_end=21244 - _globals['_SQLRUNNEREXCEPTION']._serialized_start=21246 - _globals['_SQLRUNNEREXCEPTION']._serialized_end=21339 - _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_start=21341 - _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_end=21453 - _globals['_LOGTESTRESULT']._serialized_start=21456 - _globals['_LOGTESTRESULT']._serialized_end=21624 - _globals['_LOGTESTRESULTMSG']._serialized_start=21626 - _globals['_LOGTESTRESULTMSG']._serialized_end=21728 - _globals['_LOGSTARTLINE']._serialized_start=21730 - _globals['_LOGSTARTLINE']._serialized_end=21837 - _globals['_LOGSTARTLINEMSG']._serialized_start=21839 - _globals['_LOGSTARTLINEMSG']._serialized_end=21939 - _globals['_LOGMODELRESULT']._serialized_start=21942 - _globals['_LOGMODELRESULT']._serialized_end=22091 - _globals['_LOGMODELRESULTMSG']._serialized_start=22093 - _globals['_LOGMODELRESULTMSG']._serialized_end=22197 - _globals['_LOGSNAPSHOTRESULT']._serialized_start=22200 - _globals['_LOGSNAPSHOTRESULT']._serialized_end=22474 - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_start=22432 - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_end=22474 - _globals['_LOGSNAPSHOTRESULTMSG']._serialized_start=22476 - _globals['_LOGSNAPSHOTRESULTMSG']._serialized_end=22586 - _globals['_LOGSEEDRESULT']._serialized_start=22589 - _globals['_LOGSEEDRESULT']._serialized_end=22774 - _globals['_LOGSEEDRESULTMSG']._serialized_start=22776 - _globals['_LOGSEEDRESULTMSG']._serialized_end=22878 - _globals['_LOGFRESHNESSRESULT']._serialized_start=22881 - _globals['_LOGFRESHNESSRESULT']._serialized_end=23054 - _globals['_LOGFRESHNESSRESULTMSG']._serialized_start=23056 - _globals['_LOGFRESHNESSRESULTMSG']._serialized_end=23168 - _globals['_LOGNODENOOPRESULT']._serialized_start=23171 - _globals['_LOGNODENOOPRESULT']._serialized_end=23323 - _globals['_LOGNODENOOPRESULTMSG']._serialized_start=23325 - _globals['_LOGNODENOOPRESULTMSG']._serialized_end=23435 - _globals['_LOGCANCELLINE']._serialized_start=23437 - _globals['_LOGCANCELLINE']._serialized_end=23471 - _globals['_LOGCANCELLINEMSG']._serialized_start=23473 - _globals['_LOGCANCELLINEMSG']._serialized_end=23575 - _globals['_DEFAULTSELECTOR']._serialized_start=23577 - _globals['_DEFAULTSELECTOR']._serialized_end=23608 - _globals['_DEFAULTSELECTORMSG']._serialized_start=23610 - _globals['_DEFAULTSELECTORMSG']._serialized_end=23716 - _globals['_NODESTART']._serialized_start=23718 - _globals['_NODESTART']._serialized_end=23771 - _globals['_NODESTARTMSG']._serialized_start=23773 - _globals['_NODESTARTMSG']._serialized_end=23867 - _globals['_NODEFINISHED']._serialized_start=23869 - _globals['_NODEFINISHED']._serialized_end=23972 - _globals['_NODEFINISHEDMSG']._serialized_start=23974 - _globals['_NODEFINISHEDMSG']._serialized_end=24074 - _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_start=24076 - _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_end=24119 - _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_start=24122 - _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_end=24252 - _globals['_CONCURRENCYLINE']._serialized_start=24254 - _globals['_CONCURRENCYLINE']._serialized_end=24333 - _globals['_CONCURRENCYLINEMSG']._serialized_start=24335 - _globals['_CONCURRENCYLINEMSG']._serialized_end=24441 - _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_start=24443 - _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_end=24512 - _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_start=24514 - _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_end=24640 - _globals['_NODECOMPILING']._serialized_start=24642 - _globals['_NODECOMPILING']._serialized_end=24699 - _globals['_NODECOMPILINGMSG']._serialized_start=24701 - _globals['_NODECOMPILINGMSG']._serialized_end=24803 - _globals['_NODEEXECUTING']._serialized_start=24805 - _globals['_NODEEXECUTING']._serialized_end=24862 - _globals['_NODEEXECUTINGMSG']._serialized_start=24864 - _globals['_NODEEXECUTINGMSG']._serialized_end=24966 - _globals['_LOGHOOKSTARTLINE']._serialized_start=24968 - _globals['_LOGHOOKSTARTLINE']._serialized_end=25077 - _globals['_LOGHOOKSTARTLINEMSG']._serialized_start=25079 - _globals['_LOGHOOKSTARTLINEMSG']._serialized_end=25187 - _globals['_LOGHOOKENDLINE']._serialized_start=25190 - _globals['_LOGHOOKENDLINE']._serialized_end=25337 - _globals['_LOGHOOKENDLINEMSG']._serialized_start=25339 - _globals['_LOGHOOKENDLINEMSG']._serialized_end=25443 - _globals['_SKIPPINGDETAILS']._serialized_start=25446 - _globals['_SKIPPINGDETAILS']._serialized_end=25593 - _globals['_SKIPPINGDETAILSMSG']._serialized_start=25595 - _globals['_SKIPPINGDETAILSMSG']._serialized_end=25701 - _globals['_NOTHINGTODO']._serialized_start=25703 - _globals['_NOTHINGTODO']._serialized_end=25716 - _globals['_NOTHINGTODOMSG']._serialized_start=25718 - _globals['_NOTHINGTODOMSG']._serialized_end=25816 - _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_start=25818 - _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_end=25862 - _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_start=25865 - _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_end=25999 - _globals['_ENDRUNRESULT']._serialized_start=26002 - _globals['_ENDRUNRESULT']._serialized_end=26149 - _globals['_ENDRUNRESULTMSG']._serialized_start=26151 - _globals['_ENDRUNRESULTMSG']._serialized_end=26251 - _globals['_NONODESSELECTED']._serialized_start=26253 - _globals['_NONODESSELECTED']._serialized_end=26270 - _globals['_NONODESSELECTEDMSG']._serialized_start=26272 - _globals['_NONODESSELECTEDMSG']._serialized_end=26378 - _globals['_COMMANDCOMPLETED']._serialized_start=26380 - _globals['_COMMANDCOMPLETED']._serialized_end=26499 - _globals['_COMMANDCOMPLETEDMSG']._serialized_start=26501 - _globals['_COMMANDCOMPLETEDMSG']._serialized_end=26609 - _globals['_SHOWNODE']._serialized_start=26611 - _globals['_SHOWNODE']._serialized_end=26718 - _globals['_SHOWNODEMSG']._serialized_start=26720 - _globals['_SHOWNODEMSG']._serialized_end=26812 - _globals['_COMPILEDNODE']._serialized_start=26814 - _globals['_COMPILEDNODE']._serialized_end=26926 - _globals['_COMPILEDNODEMSG']._serialized_start=26928 - _globals['_COMPILEDNODEMSG']._serialized_end=27028 - _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_start=27030 - _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_end=27128 - _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_start=27130 - _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_end=27252 - _globals['_INTERNALERRORONRUN']._serialized_start=27254 - _globals['_INTERNALERRORONRUN']._serialized_end=27349 - _globals['_INTERNALERRORONRUNMSG']._serialized_start=27351 - _globals['_INTERNALERRORONRUNMSG']._serialized_end=27463 - _globals['_GENERICEXCEPTIONONRUN']._serialized_start=27465 - _globals['_GENERICEXCEPTIONONRUN']._serialized_end=27582 - _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_start=27584 - _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_end=27702 - _globals['_NODECONNECTIONRELEASEERROR']._serialized_start=27704 - _globals['_NODECONNECTIONRELEASEERROR']._serialized_end=27782 - _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_start=27785 - _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_end=27913 - _globals['_FOUNDSTATS']._serialized_start=27915 - _globals['_FOUNDSTATS']._serialized_end=27946 - _globals['_FOUNDSTATSMSG']._serialized_start=27948 - _globals['_FOUNDSTATSMSG']._serialized_end=28044 - _globals['_MAINKEYBOARDINTERRUPT']._serialized_start=28046 - _globals['_MAINKEYBOARDINTERRUPT']._serialized_end=28069 - _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_start=28071 - _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_end=28189 - _globals['_MAINENCOUNTEREDERROR']._serialized_start=28191 - _globals['_MAINENCOUNTEREDERROR']._serialized_end=28226 - _globals['_MAINENCOUNTEREDERRORMSG']._serialized_start=28228 - _globals['_MAINENCOUNTEREDERRORMSG']._serialized_end=28344 - _globals['_MAINSTACKTRACE']._serialized_start=28346 - _globals['_MAINSTACKTRACE']._serialized_end=28383 - _globals['_MAINSTACKTRACEMSG']._serialized_start=28385 - _globals['_MAINSTACKTRACEMSG']._serialized_end=28489 - _globals['_TIMINGINFOCOLLECTED']._serialized_start=28491 - _globals['_TIMINGINFOCOLLECTED']._serialized_end=28603 - _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_start=28605 - _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_end=28719 - _globals['_LOGDEBUGSTACKTRACE']._serialized_start=28721 - _globals['_LOGDEBUGSTACKTRACE']._serialized_end=28759 - _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_start=28761 - _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_end=28873 - _globals['_CHECKCLEANPATH']._serialized_start=28875 - _globals['_CHECKCLEANPATH']._serialized_end=28905 - _globals['_CHECKCLEANPATHMSG']._serialized_start=28907 - _globals['_CHECKCLEANPATHMSG']._serialized_end=29011 - _globals['_CONFIRMCLEANPATH']._serialized_start=29013 - _globals['_CONFIRMCLEANPATH']._serialized_end=29045 - _globals['_CONFIRMCLEANPATHMSG']._serialized_start=29047 - _globals['_CONFIRMCLEANPATHMSG']._serialized_end=29155 - _globals['_PROTECTEDCLEANPATH']._serialized_start=29157 - _globals['_PROTECTEDCLEANPATH']._serialized_end=29191 - _globals['_PROTECTEDCLEANPATHMSG']._serialized_start=29193 - _globals['_PROTECTEDCLEANPATHMSG']._serialized_end=29305 - _globals['_FINISHEDCLEANPATHS']._serialized_start=29307 - _globals['_FINISHEDCLEANPATHS']._serialized_end=29327 - _globals['_FINISHEDCLEANPATHSMSG']._serialized_start=29329 - _globals['_FINISHEDCLEANPATHSMSG']._serialized_end=29441 - _globals['_OPENCOMMAND']._serialized_start=29443 - _globals['_OPENCOMMAND']._serialized_end=29496 - _globals['_OPENCOMMANDMSG']._serialized_start=29498 - _globals['_OPENCOMMANDMSG']._serialized_end=29596 - _globals['_SERVINGDOCSPORT']._serialized_start=29598 - _globals['_SERVINGDOCSPORT']._serialized_end=29646 - _globals['_SERVINGDOCSPORTMSG']._serialized_start=29648 - _globals['_SERVINGDOCSPORTMSG']._serialized_end=29754 - _globals['_SERVINGDOCSACCESSINFO']._serialized_start=29756 - _globals['_SERVINGDOCSACCESSINFO']._serialized_end=29793 - _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_start=29795 - _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_end=29913 - _globals['_SERVINGDOCSEXITINFO']._serialized_start=29915 - _globals['_SERVINGDOCSEXITINFO']._serialized_end=29936 - _globals['_SERVINGDOCSEXITINFOMSG']._serialized_start=29938 - _globals['_SERVINGDOCSEXITINFOMSG']._serialized_end=30052 - _globals['_RUNRESULTWARNING']._serialized_start=30054 - _globals['_RUNRESULTWARNING']._serialized_end=30170 - _globals['_RUNRESULTWARNINGMSG']._serialized_start=30172 - _globals['_RUNRESULTWARNINGMSG']._serialized_end=30280 - _globals['_RUNRESULTFAILURE']._serialized_start=30282 - _globals['_RUNRESULTFAILURE']._serialized_end=30398 - _globals['_RUNRESULTFAILUREMSG']._serialized_start=30400 - _globals['_RUNRESULTFAILUREMSG']._serialized_end=30508 - _globals['_STATSLINE']._serialized_start=30510 - _globals['_STATSLINE']._serialized_end=30617 - _globals['_STATSLINE_STATSENTRY']._serialized_start=30573 - _globals['_STATSLINE_STATSENTRY']._serialized_end=30617 - _globals['_STATSLINEMSG']._serialized_start=30619 - _globals['_STATSLINEMSG']._serialized_end=30713 - _globals['_RUNRESULTERROR']._serialized_start=30715 - _globals['_RUNRESULTERROR']._serialized_end=30786 - _globals['_RUNRESULTERRORMSG']._serialized_start=30788 - _globals['_RUNRESULTERRORMSG']._serialized_end=30892 - _globals['_RUNRESULTERRORNOMESSAGE']._serialized_start=30894 - _globals['_RUNRESULTERRORNOMESSAGE']._serialized_end=30977 - _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_start=30979 - _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_end=31101 - _globals['_SQLCOMPILEDPATH']._serialized_start=31103 - _globals['_SQLCOMPILEDPATH']._serialized_end=31176 - _globals['_SQLCOMPILEDPATHMSG']._serialized_start=31178 - _globals['_SQLCOMPILEDPATHMSG']._serialized_end=31284 - _globals['_CHECKNODETESTFAILURE']._serialized_start=31286 - _globals['_CHECKNODETESTFAILURE']._serialized_end=31373 - _globals['_CHECKNODETESTFAILUREMSG']._serialized_start=31375 - _globals['_CHECKNODETESTFAILUREMSG']._serialized_end=31491 - _globals['_ENDOFRUNSUMMARY']._serialized_start=31493 - _globals['_ENDOFRUNSUMMARY']._serialized_end=31580 - _globals['_ENDOFRUNSUMMARYMSG']._serialized_start=31582 - _globals['_ENDOFRUNSUMMARYMSG']._serialized_end=31688 - _globals['_LOGSKIPBECAUSEERROR']._serialized_start=31690 - _globals['_LOGSKIPBECAUSEERROR']._serialized_end=31775 - _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_start=31777 - _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_end=31891 - _globals['_ENSUREGITINSTALLED']._serialized_start=31893 - _globals['_ENSUREGITINSTALLED']._serialized_end=31913 - _globals['_ENSUREGITINSTALLEDMSG']._serialized_start=31915 - _globals['_ENSUREGITINSTALLEDMSG']._serialized_end=32027 - _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_start=32029 - _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_end=32055 - _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_start=32057 - _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_end=32181 - _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_start=32183 - _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_end=32208 - _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_start=32210 - _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_end=32332 - _globals['_DISABLETRACKING']._serialized_start=32334 - _globals['_DISABLETRACKING']._serialized_end=32351 - _globals['_DISABLETRACKINGMSG']._serialized_start=32353 - _globals['_DISABLETRACKINGMSG']._serialized_end=32459 - _globals['_SENDINGEVENT']._serialized_start=32461 - _globals['_SENDINGEVENT']._serialized_end=32491 - _globals['_SENDINGEVENTMSG']._serialized_start=32493 - _globals['_SENDINGEVENTMSG']._serialized_end=32593 - _globals['_SENDEVENTFAILURE']._serialized_start=32595 - _globals['_SENDEVENTFAILURE']._serialized_end=32613 - _globals['_SENDEVENTFAILUREMSG']._serialized_start=32615 - _globals['_SENDEVENTFAILUREMSG']._serialized_end=32723 - _globals['_FLUSHEVENTS']._serialized_start=32725 - _globals['_FLUSHEVENTS']._serialized_end=32738 - _globals['_FLUSHEVENTSMSG']._serialized_start=32740 - _globals['_FLUSHEVENTSMSG']._serialized_end=32838 - _globals['_FLUSHEVENTSFAILURE']._serialized_start=32840 - _globals['_FLUSHEVENTSFAILURE']._serialized_end=32860 - _globals['_FLUSHEVENTSFAILUREMSG']._serialized_start=32862 - _globals['_FLUSHEVENTSFAILUREMSG']._serialized_end=32974 - _globals['_TRACKINGINITIALIZEFAILURE']._serialized_start=32976 - _globals['_TRACKINGINITIALIZEFAILURE']._serialized_end=33021 - _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_start=33023 - _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_end=33149 - _globals['_RUNRESULTWARNINGMESSAGE']._serialized_start=33151 - _globals['_RUNRESULTWARNINGMESSAGE']._serialized_end=33231 - _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_start=33233 - _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_end=33355 - _globals['_DEBUGCMDOUT']._serialized_start=33357 - _globals['_DEBUGCMDOUT']._serialized_end=33383 - _globals['_DEBUGCMDOUTMSG']._serialized_start=33385 - _globals['_DEBUGCMDOUTMSG']._serialized_end=33483 - _globals['_DEBUGCMDRESULT']._serialized_start=33485 - _globals['_DEBUGCMDRESULT']._serialized_end=33514 - _globals['_DEBUGCMDRESULTMSG']._serialized_start=33516 - _globals['_DEBUGCMDRESULTMSG']._serialized_end=33620 - _globals['_LISTCMDOUT']._serialized_start=33622 - _globals['_LISTCMDOUT']._serialized_end=33647 - _globals['_LISTCMDOUTMSG']._serialized_start=33649 - _globals['_LISTCMDOUTMSG']._serialized_end=33745 - _globals['_RESOURCEREPORT']._serialized_start=33748 - _globals['_RESOURCEREPORT']._serialized_end=33984 - _globals['_RESOURCEREPORTMSG']._serialized_start=33986 - _globals['_RESOURCEREPORTMSG']._serialized_end=34090 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION']._serialized_start=7047 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION']._serialized_end=7142 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG']._serialized_start=7145 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG']._serialized_end=7303 + _globals['_TOTALMODELNAMESWITHSPACESDEPRECATIONMSG']._serialized_start=7306 + _globals['_TOTALMODELNAMESWITHSPACESDEPRECATIONMSG']._serialized_end=7454 + _globals['_DEPRECATEDMODEL']._serialized_start=7456 + _globals['_DEPRECATEDMODEL']._serialized_end=7542 + _globals['_DEPRECATEDMODELMSG']._serialized_start=7544 + _globals['_DEPRECATEDMODELMSG']._serialized_end=7650 + _globals['_INPUTFILEDIFFERROR']._serialized_start=7652 + _globals['_INPUTFILEDIFFERROR']._serialized_end=7707 + _globals['_INPUTFILEDIFFERRORMSG']._serialized_start=7709 + _globals['_INPUTFILEDIFFERRORMSG']._serialized_end=7821 + _globals['_INVALIDVALUEFORFIELD']._serialized_start=7823 + _globals['_INVALIDVALUEFORFIELD']._serialized_end=7886 + _globals['_INVALIDVALUEFORFIELDMSG']._serialized_start=7888 + _globals['_INVALIDVALUEFORFIELDMSG']._serialized_end=8004 + _globals['_VALIDATIONWARNING']._serialized_start=8006 + _globals['_VALIDATIONWARNING']._serialized_end=8087 + _globals['_VALIDATIONWARNINGMSG']._serialized_start=8089 + _globals['_VALIDATIONWARNINGMSG']._serialized_end=8199 + _globals['_PARSEPERFINFOPATH']._serialized_start=8201 + _globals['_PARSEPERFINFOPATH']._serialized_end=8234 + _globals['_PARSEPERFINFOPATHMSG']._serialized_start=8236 + _globals['_PARSEPERFINFOPATHMSG']._serialized_end=8346 + _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_start=8348 + _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_end=8397 + _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_start=8400 + _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_end=8542 + _globals['_PARTIALPARSINGERROR']._serialized_start=8545 + _globals['_PARTIALPARSINGERROR']._serialized_end=8679 + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_start=8633 + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_end=8679 + _globals['_PARTIALPARSINGERRORMSG']._serialized_start=8681 + _globals['_PARTIALPARSINGERRORMSG']._serialized_end=8795 + _globals['_PARTIALPARSINGSKIPPARSING']._serialized_start=8797 + _globals['_PARTIALPARSINGSKIPPARSING']._serialized_end=8824 + _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_start=8826 + _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_end=8952 + _globals['_UNABLETOPARTIALPARSE']._serialized_start=8954 + _globals['_UNABLETOPARTIALPARSE']._serialized_end=8992 + _globals['_UNABLETOPARTIALPARSEMSG']._serialized_start=8994 + _globals['_UNABLETOPARTIALPARSEMSG']._serialized_end=9110 + _globals['_STATECHECKVARSHASH']._serialized_start=9112 + _globals['_STATECHECKVARSHASH']._serialized_end=9214 + _globals['_STATECHECKVARSHASHMSG']._serialized_start=9216 + _globals['_STATECHECKVARSHASHMSG']._serialized_end=9328 + _globals['_PARTIALPARSINGNOTENABLED']._serialized_start=9330 + _globals['_PARTIALPARSINGNOTENABLED']._serialized_end=9356 + _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_start=9358 + _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_end=9482 + _globals['_PARSEDFILELOADFAILED']._serialized_start=9484 + _globals['_PARSEDFILELOADFAILED']._serialized_end=9551 + _globals['_PARSEDFILELOADFAILEDMSG']._serialized_start=9553 + _globals['_PARSEDFILELOADFAILEDMSG']._serialized_end=9669 + _globals['_PARTIALPARSINGENABLED']._serialized_start=9671 + _globals['_PARTIALPARSINGENABLED']._serialized_end=9743 + _globals['_PARTIALPARSINGENABLEDMSG']._serialized_start=9745 + _globals['_PARTIALPARSINGENABLEDMSG']._serialized_end=9863 + _globals['_PARTIALPARSINGFILE']._serialized_start=9865 + _globals['_PARTIALPARSINGFILE']._serialized_end=9921 + _globals['_PARTIALPARSINGFILEMSG']._serialized_start=9923 + _globals['_PARTIALPARSINGFILEMSG']._serialized_end=10035 + _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_start=10038 + _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_end=10213 + _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_start=10216 + _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_end=10354 + _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_start=10356 + _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_end=10411 + _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_start=10413 + _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_end=10537 + _globals['_SEEDINCREASED']._serialized_start=10539 + _globals['_SEEDINCREASED']._serialized_end=10590 + _globals['_SEEDINCREASEDMSG']._serialized_start=10592 + _globals['_SEEDINCREASEDMSG']._serialized_end=10694 + _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_start=10696 + _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_end=10758 + _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_start=10760 + _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_end=10884 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_start=10886 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_end=10954 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_start=10957 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_end=11093 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_start=11095 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_end=11187 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_start=11190 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_end=11328 + _globals['_UNUSEDTABLES']._serialized_start=11330 + _globals['_UNUSEDTABLES']._serialized_end=11367 + _globals['_UNUSEDTABLESMSG']._serialized_start=11369 + _globals['_UNUSEDTABLESMSG']._serialized_end=11469 + _globals['_WRONGRESOURCESCHEMAFILE']._serialized_start=11472 + _globals['_WRONGRESOURCESCHEMAFILE']._serialized_end=11607 + _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_start=11609 + _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_end=11731 + _globals['_NONODEFORYAMLKEY']._serialized_start=11733 + _globals['_NONODEFORYAMLKEY']._serialized_end=11808 + _globals['_NONODEFORYAMLKEYMSG']._serialized_start=11810 + _globals['_NONODEFORYAMLKEYMSG']._serialized_end=11918 + _globals['_MACRONOTFOUNDFORPATCH']._serialized_start=11920 + _globals['_MACRONOTFOUNDFORPATCH']._serialized_end=11963 + _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_start=11965 + _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_end=12083 + _globals['_NODENOTFOUNDORDISABLED']._serialized_start=12086 + _globals['_NODENOTFOUNDORDISABLED']._serialized_end=12270 + _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_start=12272 + _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_end=12392 + _globals['_JINJALOGWARNING']._serialized_start=12394 + _globals['_JINJALOGWARNING']._serialized_end=12466 + _globals['_JINJALOGWARNINGMSG']._serialized_start=12468 + _globals['_JINJALOGWARNINGMSG']._serialized_end=12574 + _globals['_JINJALOGINFO']._serialized_start=12576 + _globals['_JINJALOGINFO']._serialized_end=12645 + _globals['_JINJALOGINFOMSG']._serialized_start=12647 + _globals['_JINJALOGINFOMSG']._serialized_end=12747 + _globals['_JINJALOGDEBUG']._serialized_start=12749 + _globals['_JINJALOGDEBUG']._serialized_end=12819 + _globals['_JINJALOGDEBUGMSG']._serialized_start=12821 + _globals['_JINJALOGDEBUGMSG']._serialized_end=12923 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_start=12926 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_end=13100 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_start=13103 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_end=13239 + _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_start=13242 + _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_end=13440 + _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_start=13443 + _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_end=13575 + _globals['_DEPRECATEDREFERENCE']._serialized_start=13578 + _globals['_DEPRECATEDREFERENCE']._serialized_end=13767 + _globals['_DEPRECATEDREFERENCEMSG']._serialized_start=13769 + _globals['_DEPRECATEDREFERENCEMSG']._serialized_end=13883 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_start=13885 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_end=13945 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_start=13948 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_end=14096 + _globals['_PARSEINLINENODEERROR']._serialized_start=14098 + _globals['_PARSEINLINENODEERROR']._serialized_end=14175 + _globals['_PARSEINLINENODEERRORMSG']._serialized_start=14177 + _globals['_PARSEINLINENODEERRORMSG']._serialized_end=14293 + _globals['_SEMANTICVALIDATIONFAILURE']._serialized_start=14295 + _globals['_SEMANTICVALIDATIONFAILURE']._serialized_end=14335 + _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_start=14337 + _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_end=14463 + _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_start=14466 + _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_end=14860 + _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_start=14862 + _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_end=14988 + _globals['_WARNSTATETARGETEQUAL']._serialized_start=14990 + _globals['_WARNSTATETARGETEQUAL']._serialized_end=15032 + _globals['_WARNSTATETARGETEQUALMSG']._serialized_start=15034 + _globals['_WARNSTATETARGETEQUALMSG']._serialized_end=15150 + _globals['_FRESHNESSCONFIGPROBLEM']._serialized_start=15152 + _globals['_FRESHNESSCONFIGPROBLEM']._serialized_end=15189 + _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_start=15191 + _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_end=15311 + _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_start=15313 + _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_end=15360 + _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_start=15363 + _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_end=15497 + _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_start=15499 + _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_end=15546 + _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_start=15549 + _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_end=15679 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_start=15681 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_end=15733 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_start=15736 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_end=15886 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_start=15888 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_end=15934 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_start=15937 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_end=16075 + _globals['_GITNOTHINGTODO']._serialized_start=16077 + _globals['_GITNOTHINGTODO']._serialized_end=16106 + _globals['_GITNOTHINGTODOMSG']._serialized_start=16108 + _globals['_GITNOTHINGTODOMSG']._serialized_end=16212 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_start=16214 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_end=16283 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_start=16286 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_end=16424 + _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_start=16426 + _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_end=16468 + _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_start=16470 + _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_end=16592 + _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_start=16594 + _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_end=16635 + _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_start=16638 + _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_end=16766 + _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_start=16768 + _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_end=16829 + _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_start=16832 + _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_end=16962 + _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_start=16964 + _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_end=17059 + _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_start=17062 + _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_end=17196 + _globals['_DEPSNOPACKAGESFOUND']._serialized_start=17198 + _globals['_DEPSNOPACKAGESFOUND']._serialized_end=17219 + _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_start=17221 + _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_end=17335 + _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_start=17337 + _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_end=17384 + _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_start=17386 + _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_end=17508 + _globals['_DEPSINSTALLINFO']._serialized_start=17510 + _globals['_DEPSINSTALLINFO']._serialized_end=17549 + _globals['_DEPSINSTALLINFOMSG']._serialized_start=17551 + _globals['_DEPSINSTALLINFOMSG']._serialized_end=17657 + _globals['_DEPSUPDATEAVAILABLE']._serialized_start=17659 + _globals['_DEPSUPDATEAVAILABLE']._serialized_end=17704 + _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_start=17706 + _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_end=17820 + _globals['_DEPSUPTODATE']._serialized_start=17822 + _globals['_DEPSUPTODATE']._serialized_end=17836 + _globals['_DEPSUPTODATEMSG']._serialized_start=17838 + _globals['_DEPSUPTODATEMSG']._serialized_end=17938 + _globals['_DEPSLISTSUBDIRECTORY']._serialized_start=17940 + _globals['_DEPSLISTSUBDIRECTORY']._serialized_end=17984 + _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_start=17986 + _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_end=18102 + _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_start=18104 + _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_end=18150 + _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_start=18153 + _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_end=18281 + _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_start=18283 + _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_end=18329 + _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_start=18332 + _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_end=18470 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_start=18472 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_end=18538 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_start=18541 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_end=18681 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_start=18683 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_end=18733 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_start=18736 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_end=18872 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_start=18874 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_end=18924 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_start=18927 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_end=19063 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_start=19065 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_end=19118 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_start=19121 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_end=19263 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_start=19265 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_end=19316 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_start=19319 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_end=19457 + _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_start=19459 + _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_end=19499 + _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_start=19501 + _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_end=19625 + _globals['_DEPSUNPINNED']._serialized_start=19627 + _globals['_DEPSUNPINNED']._serialized_end=19672 + _globals['_DEPSUNPINNEDMSG']._serialized_start=19674 + _globals['_DEPSUNPINNEDMSG']._serialized_end=19774 + _globals['_NONODESFORSELECTIONCRITERIA']._serialized_start=19776 + _globals['_NONODESFORSELECTIONCRITERIA']._serialized_end=19823 + _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_start=19826 + _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_end=19956 + _globals['_DEPSLOCKUPDATING']._serialized_start=19958 + _globals['_DEPSLOCKUPDATING']._serialized_end=19999 + _globals['_DEPSLOCKUPDATINGMSG']._serialized_start=20001 + _globals['_DEPSLOCKUPDATINGMSG']._serialized_end=20109 + _globals['_DEPSADDPACKAGE']._serialized_start=20111 + _globals['_DEPSADDPACKAGE']._serialized_end=20193 + _globals['_DEPSADDPACKAGEMSG']._serialized_start=20195 + _globals['_DEPSADDPACKAGEMSG']._serialized_end=20299 + _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_start=20302 + _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_end=20469 + _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_start=20416 + _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_end=20469 + _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_start=20471 + _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_end=20597 + _globals['_DEPSVERSIONMISSING']._serialized_start=20599 + _globals['_DEPSVERSIONMISSING']._serialized_end=20635 + _globals['_DEPSVERSIONMISSINGMSG']._serialized_start=20637 + _globals['_DEPSVERSIONMISSINGMSG']._serialized_end=20749 + _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_start=20751 + _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_end=20798 + _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_start=20800 + _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_end=20922 + _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_start=20924 + _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_end=20966 + _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_start=20969 + _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_end=21099 + _globals['_COMPILECOMPLETE']._serialized_start=21101 + _globals['_COMPILECOMPLETE']._serialized_end=21118 + _globals['_COMPILECOMPLETEMSG']._serialized_start=21120 + _globals['_COMPILECOMPLETEMSG']._serialized_end=21226 + _globals['_FRESHNESSCHECKCOMPLETE']._serialized_start=21228 + _globals['_FRESHNESSCHECKCOMPLETE']._serialized_end=21252 + _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_start=21254 + _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_end=21374 + _globals['_SEEDHEADER']._serialized_start=21376 + _globals['_SEEDHEADER']._serialized_end=21404 + _globals['_SEEDHEADERMSG']._serialized_start=21406 + _globals['_SEEDHEADERMSG']._serialized_end=21502 + _globals['_SQLRUNNEREXCEPTION']._serialized_start=21504 + _globals['_SQLRUNNEREXCEPTION']._serialized_end=21597 + _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_start=21599 + _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_end=21711 + _globals['_LOGTESTRESULT']._serialized_start=21714 + _globals['_LOGTESTRESULT']._serialized_end=21882 + _globals['_LOGTESTRESULTMSG']._serialized_start=21884 + _globals['_LOGTESTRESULTMSG']._serialized_end=21986 + _globals['_LOGSTARTLINE']._serialized_start=21988 + _globals['_LOGSTARTLINE']._serialized_end=22095 + _globals['_LOGSTARTLINEMSG']._serialized_start=22097 + _globals['_LOGSTARTLINEMSG']._serialized_end=22197 + _globals['_LOGMODELRESULT']._serialized_start=22200 + _globals['_LOGMODELRESULT']._serialized_end=22349 + _globals['_LOGMODELRESULTMSG']._serialized_start=22351 + _globals['_LOGMODELRESULTMSG']._serialized_end=22455 + _globals['_LOGSNAPSHOTRESULT']._serialized_start=22458 + _globals['_LOGSNAPSHOTRESULT']._serialized_end=22732 + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_start=22690 + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_end=22732 + _globals['_LOGSNAPSHOTRESULTMSG']._serialized_start=22734 + _globals['_LOGSNAPSHOTRESULTMSG']._serialized_end=22844 + _globals['_LOGSEEDRESULT']._serialized_start=22847 + _globals['_LOGSEEDRESULT']._serialized_end=23032 + _globals['_LOGSEEDRESULTMSG']._serialized_start=23034 + _globals['_LOGSEEDRESULTMSG']._serialized_end=23136 + _globals['_LOGFRESHNESSRESULT']._serialized_start=23139 + _globals['_LOGFRESHNESSRESULT']._serialized_end=23312 + _globals['_LOGFRESHNESSRESULTMSG']._serialized_start=23314 + _globals['_LOGFRESHNESSRESULTMSG']._serialized_end=23426 + _globals['_LOGNODENOOPRESULT']._serialized_start=23429 + _globals['_LOGNODENOOPRESULT']._serialized_end=23581 + _globals['_LOGNODENOOPRESULTMSG']._serialized_start=23583 + _globals['_LOGNODENOOPRESULTMSG']._serialized_end=23693 + _globals['_LOGCANCELLINE']._serialized_start=23695 + _globals['_LOGCANCELLINE']._serialized_end=23729 + _globals['_LOGCANCELLINEMSG']._serialized_start=23731 + _globals['_LOGCANCELLINEMSG']._serialized_end=23833 + _globals['_DEFAULTSELECTOR']._serialized_start=23835 + _globals['_DEFAULTSELECTOR']._serialized_end=23866 + _globals['_DEFAULTSELECTORMSG']._serialized_start=23868 + _globals['_DEFAULTSELECTORMSG']._serialized_end=23974 + _globals['_NODESTART']._serialized_start=23976 + _globals['_NODESTART']._serialized_end=24029 + _globals['_NODESTARTMSG']._serialized_start=24031 + _globals['_NODESTARTMSG']._serialized_end=24125 + _globals['_NODEFINISHED']._serialized_start=24127 + _globals['_NODEFINISHED']._serialized_end=24230 + _globals['_NODEFINISHEDMSG']._serialized_start=24232 + _globals['_NODEFINISHEDMSG']._serialized_end=24332 + _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_start=24334 + _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_end=24377 + _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_start=24380 + _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_end=24510 + _globals['_CONCURRENCYLINE']._serialized_start=24512 + _globals['_CONCURRENCYLINE']._serialized_end=24591 + _globals['_CONCURRENCYLINEMSG']._serialized_start=24593 + _globals['_CONCURRENCYLINEMSG']._serialized_end=24699 + _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_start=24701 + _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_end=24770 + _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_start=24772 + _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_end=24898 + _globals['_NODECOMPILING']._serialized_start=24900 + _globals['_NODECOMPILING']._serialized_end=24957 + _globals['_NODECOMPILINGMSG']._serialized_start=24959 + _globals['_NODECOMPILINGMSG']._serialized_end=25061 + _globals['_NODEEXECUTING']._serialized_start=25063 + _globals['_NODEEXECUTING']._serialized_end=25120 + _globals['_NODEEXECUTINGMSG']._serialized_start=25122 + _globals['_NODEEXECUTINGMSG']._serialized_end=25224 + _globals['_LOGHOOKSTARTLINE']._serialized_start=25226 + _globals['_LOGHOOKSTARTLINE']._serialized_end=25335 + _globals['_LOGHOOKSTARTLINEMSG']._serialized_start=25337 + _globals['_LOGHOOKSTARTLINEMSG']._serialized_end=25445 + _globals['_LOGHOOKENDLINE']._serialized_start=25448 + _globals['_LOGHOOKENDLINE']._serialized_end=25595 + _globals['_LOGHOOKENDLINEMSG']._serialized_start=25597 + _globals['_LOGHOOKENDLINEMSG']._serialized_end=25701 + _globals['_SKIPPINGDETAILS']._serialized_start=25704 + _globals['_SKIPPINGDETAILS']._serialized_end=25851 + _globals['_SKIPPINGDETAILSMSG']._serialized_start=25853 + _globals['_SKIPPINGDETAILSMSG']._serialized_end=25959 + _globals['_NOTHINGTODO']._serialized_start=25961 + _globals['_NOTHINGTODO']._serialized_end=25974 + _globals['_NOTHINGTODOMSG']._serialized_start=25976 + _globals['_NOTHINGTODOMSG']._serialized_end=26074 + _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_start=26076 + _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_end=26120 + _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_start=26123 + _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_end=26257 + _globals['_ENDRUNRESULT']._serialized_start=26260 + _globals['_ENDRUNRESULT']._serialized_end=26407 + _globals['_ENDRUNRESULTMSG']._serialized_start=26409 + _globals['_ENDRUNRESULTMSG']._serialized_end=26509 + _globals['_NONODESSELECTED']._serialized_start=26511 + _globals['_NONODESSELECTED']._serialized_end=26528 + _globals['_NONODESSELECTEDMSG']._serialized_start=26530 + _globals['_NONODESSELECTEDMSG']._serialized_end=26636 + _globals['_COMMANDCOMPLETED']._serialized_start=26638 + _globals['_COMMANDCOMPLETED']._serialized_end=26757 + _globals['_COMMANDCOMPLETEDMSG']._serialized_start=26759 + _globals['_COMMANDCOMPLETEDMSG']._serialized_end=26867 + _globals['_SHOWNODE']._serialized_start=26869 + _globals['_SHOWNODE']._serialized_end=26976 + _globals['_SHOWNODEMSG']._serialized_start=26978 + _globals['_SHOWNODEMSG']._serialized_end=27070 + _globals['_COMPILEDNODE']._serialized_start=27072 + _globals['_COMPILEDNODE']._serialized_end=27184 + _globals['_COMPILEDNODEMSG']._serialized_start=27186 + _globals['_COMPILEDNODEMSG']._serialized_end=27286 + _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_start=27288 + _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_end=27386 + _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_start=27388 + _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_end=27510 + _globals['_INTERNALERRORONRUN']._serialized_start=27512 + _globals['_INTERNALERRORONRUN']._serialized_end=27607 + _globals['_INTERNALERRORONRUNMSG']._serialized_start=27609 + _globals['_INTERNALERRORONRUNMSG']._serialized_end=27721 + _globals['_GENERICEXCEPTIONONRUN']._serialized_start=27723 + _globals['_GENERICEXCEPTIONONRUN']._serialized_end=27840 + _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_start=27842 + _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_end=27960 + _globals['_NODECONNECTIONRELEASEERROR']._serialized_start=27962 + _globals['_NODECONNECTIONRELEASEERROR']._serialized_end=28040 + _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_start=28043 + _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_end=28171 + _globals['_FOUNDSTATS']._serialized_start=28173 + _globals['_FOUNDSTATS']._serialized_end=28204 + _globals['_FOUNDSTATSMSG']._serialized_start=28206 + _globals['_FOUNDSTATSMSG']._serialized_end=28302 + _globals['_MAINKEYBOARDINTERRUPT']._serialized_start=28304 + _globals['_MAINKEYBOARDINTERRUPT']._serialized_end=28327 + _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_start=28329 + _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_end=28447 + _globals['_MAINENCOUNTEREDERROR']._serialized_start=28449 + _globals['_MAINENCOUNTEREDERROR']._serialized_end=28484 + _globals['_MAINENCOUNTEREDERRORMSG']._serialized_start=28486 + _globals['_MAINENCOUNTEREDERRORMSG']._serialized_end=28602 + _globals['_MAINSTACKTRACE']._serialized_start=28604 + _globals['_MAINSTACKTRACE']._serialized_end=28641 + _globals['_MAINSTACKTRACEMSG']._serialized_start=28643 + _globals['_MAINSTACKTRACEMSG']._serialized_end=28747 + _globals['_TIMINGINFOCOLLECTED']._serialized_start=28749 + _globals['_TIMINGINFOCOLLECTED']._serialized_end=28861 + _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_start=28863 + _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_end=28977 + _globals['_LOGDEBUGSTACKTRACE']._serialized_start=28979 + _globals['_LOGDEBUGSTACKTRACE']._serialized_end=29017 + _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_start=29019 + _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_end=29131 + _globals['_CHECKCLEANPATH']._serialized_start=29133 + _globals['_CHECKCLEANPATH']._serialized_end=29163 + _globals['_CHECKCLEANPATHMSG']._serialized_start=29165 + _globals['_CHECKCLEANPATHMSG']._serialized_end=29269 + _globals['_CONFIRMCLEANPATH']._serialized_start=29271 + _globals['_CONFIRMCLEANPATH']._serialized_end=29303 + _globals['_CONFIRMCLEANPATHMSG']._serialized_start=29305 + _globals['_CONFIRMCLEANPATHMSG']._serialized_end=29413 + _globals['_PROTECTEDCLEANPATH']._serialized_start=29415 + _globals['_PROTECTEDCLEANPATH']._serialized_end=29449 + _globals['_PROTECTEDCLEANPATHMSG']._serialized_start=29451 + _globals['_PROTECTEDCLEANPATHMSG']._serialized_end=29563 + _globals['_FINISHEDCLEANPATHS']._serialized_start=29565 + _globals['_FINISHEDCLEANPATHS']._serialized_end=29585 + _globals['_FINISHEDCLEANPATHSMSG']._serialized_start=29587 + _globals['_FINISHEDCLEANPATHSMSG']._serialized_end=29699 + _globals['_OPENCOMMAND']._serialized_start=29701 + _globals['_OPENCOMMAND']._serialized_end=29754 + _globals['_OPENCOMMANDMSG']._serialized_start=29756 + _globals['_OPENCOMMANDMSG']._serialized_end=29854 + _globals['_SERVINGDOCSPORT']._serialized_start=29856 + _globals['_SERVINGDOCSPORT']._serialized_end=29904 + _globals['_SERVINGDOCSPORTMSG']._serialized_start=29906 + _globals['_SERVINGDOCSPORTMSG']._serialized_end=30012 + _globals['_SERVINGDOCSACCESSINFO']._serialized_start=30014 + _globals['_SERVINGDOCSACCESSINFO']._serialized_end=30051 + _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_start=30053 + _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_end=30171 + _globals['_SERVINGDOCSEXITINFO']._serialized_start=30173 + _globals['_SERVINGDOCSEXITINFO']._serialized_end=30194 + _globals['_SERVINGDOCSEXITINFOMSG']._serialized_start=30196 + _globals['_SERVINGDOCSEXITINFOMSG']._serialized_end=30310 + _globals['_RUNRESULTWARNING']._serialized_start=30312 + _globals['_RUNRESULTWARNING']._serialized_end=30428 + _globals['_RUNRESULTWARNINGMSG']._serialized_start=30430 + _globals['_RUNRESULTWARNINGMSG']._serialized_end=30538 + _globals['_RUNRESULTFAILURE']._serialized_start=30540 + _globals['_RUNRESULTFAILURE']._serialized_end=30656 + _globals['_RUNRESULTFAILUREMSG']._serialized_start=30658 + _globals['_RUNRESULTFAILUREMSG']._serialized_end=30766 + _globals['_STATSLINE']._serialized_start=30768 + _globals['_STATSLINE']._serialized_end=30875 + _globals['_STATSLINE_STATSENTRY']._serialized_start=30831 + _globals['_STATSLINE_STATSENTRY']._serialized_end=30875 + _globals['_STATSLINEMSG']._serialized_start=30877 + _globals['_STATSLINEMSG']._serialized_end=30971 + _globals['_RUNRESULTERROR']._serialized_start=30973 + _globals['_RUNRESULTERROR']._serialized_end=31044 + _globals['_RUNRESULTERRORMSG']._serialized_start=31046 + _globals['_RUNRESULTERRORMSG']._serialized_end=31150 + _globals['_RUNRESULTERRORNOMESSAGE']._serialized_start=31152 + _globals['_RUNRESULTERRORNOMESSAGE']._serialized_end=31235 + _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_start=31237 + _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_end=31359 + _globals['_SQLCOMPILEDPATH']._serialized_start=31361 + _globals['_SQLCOMPILEDPATH']._serialized_end=31434 + _globals['_SQLCOMPILEDPATHMSG']._serialized_start=31436 + _globals['_SQLCOMPILEDPATHMSG']._serialized_end=31542 + _globals['_CHECKNODETESTFAILURE']._serialized_start=31544 + _globals['_CHECKNODETESTFAILURE']._serialized_end=31631 + _globals['_CHECKNODETESTFAILUREMSG']._serialized_start=31633 + _globals['_CHECKNODETESTFAILUREMSG']._serialized_end=31749 + _globals['_ENDOFRUNSUMMARY']._serialized_start=31751 + _globals['_ENDOFRUNSUMMARY']._serialized_end=31838 + _globals['_ENDOFRUNSUMMARYMSG']._serialized_start=31840 + _globals['_ENDOFRUNSUMMARYMSG']._serialized_end=31946 + _globals['_LOGSKIPBECAUSEERROR']._serialized_start=31948 + _globals['_LOGSKIPBECAUSEERROR']._serialized_end=32033 + _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_start=32035 + _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_end=32149 + _globals['_ENSUREGITINSTALLED']._serialized_start=32151 + _globals['_ENSUREGITINSTALLED']._serialized_end=32171 + _globals['_ENSUREGITINSTALLEDMSG']._serialized_start=32173 + _globals['_ENSUREGITINSTALLEDMSG']._serialized_end=32285 + _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_start=32287 + _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_end=32313 + _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_start=32315 + _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_end=32439 + _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_start=32441 + _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_end=32466 + _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_start=32468 + _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_end=32590 + _globals['_DISABLETRACKING']._serialized_start=32592 + _globals['_DISABLETRACKING']._serialized_end=32609 + _globals['_DISABLETRACKINGMSG']._serialized_start=32611 + _globals['_DISABLETRACKINGMSG']._serialized_end=32717 + _globals['_SENDINGEVENT']._serialized_start=32719 + _globals['_SENDINGEVENT']._serialized_end=32749 + _globals['_SENDINGEVENTMSG']._serialized_start=32751 + _globals['_SENDINGEVENTMSG']._serialized_end=32851 + _globals['_SENDEVENTFAILURE']._serialized_start=32853 + _globals['_SENDEVENTFAILURE']._serialized_end=32871 + _globals['_SENDEVENTFAILUREMSG']._serialized_start=32873 + _globals['_SENDEVENTFAILUREMSG']._serialized_end=32981 + _globals['_FLUSHEVENTS']._serialized_start=32983 + _globals['_FLUSHEVENTS']._serialized_end=32996 + _globals['_FLUSHEVENTSMSG']._serialized_start=32998 + _globals['_FLUSHEVENTSMSG']._serialized_end=33096 + _globals['_FLUSHEVENTSFAILURE']._serialized_start=33098 + _globals['_FLUSHEVENTSFAILURE']._serialized_end=33118 + _globals['_FLUSHEVENTSFAILUREMSG']._serialized_start=33120 + _globals['_FLUSHEVENTSFAILUREMSG']._serialized_end=33232 + _globals['_TRACKINGINITIALIZEFAILURE']._serialized_start=33234 + _globals['_TRACKINGINITIALIZEFAILURE']._serialized_end=33279 + _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_start=33281 + _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_end=33407 + _globals['_RUNRESULTWARNINGMESSAGE']._serialized_start=33409 + _globals['_RUNRESULTWARNINGMESSAGE']._serialized_end=33489 + _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_start=33491 + _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_end=33613 + _globals['_DEBUGCMDOUT']._serialized_start=33615 + _globals['_DEBUGCMDOUT']._serialized_end=33641 + _globals['_DEBUGCMDOUTMSG']._serialized_start=33643 + _globals['_DEBUGCMDOUTMSG']._serialized_end=33741 + _globals['_DEBUGCMDRESULT']._serialized_start=33743 + _globals['_DEBUGCMDRESULT']._serialized_end=33772 + _globals['_DEBUGCMDRESULTMSG']._serialized_start=33774 + _globals['_DEBUGCMDRESULTMSG']._serialized_end=33878 + _globals['_LISTCMDOUT']._serialized_start=33880 + _globals['_LISTCMDOUT']._serialized_end=33905 + _globals['_LISTCMDOUTMSG']._serialized_start=33907 + _globals['_LISTCMDOUTMSG']._serialized_end=34003 + _globals['_RESOURCEREPORT']._serialized_start=34006 + _globals['_RESOURCEREPORT']._serialized_end=34242 + _globals['_RESOURCEREPORTMSG']._serialized_start=34244 + _globals['_RESOURCEREPORTMSG']._serialized_end=34348 # @@protoc_insertion_point(module_scope) diff --git a/core/dbt/events/types.py b/core/dbt/events/types.py index 01b46cc54bf..5a36382d2d0 100644 --- a/core/dbt/events/types.py +++ b/core/dbt/events/types.py @@ -450,6 +450,16 @@ def message(self) -> str: return line_wrap_message(description) +class PackageMaterializationOverrideDeprecation(WarnLevel): + def code(self) -> str: + return "D016" + + def message(self) -> str: + description = f"Package '{self.package_name}' is overriding the built-in materialization '{self.materialization_name}' from an installed package, which will be deprecated in future versions of dbt." + + return line_wrap_message(description) + + # ======================================================= # I - Project parsing # ======================================================= diff --git a/tests/functional/materializations/test_custom_materialization.py b/tests/functional/materializations/test_custom_materialization.py index 838eb68bb01..ba0177a71cb 100644 --- a/tests/functional/materializations/test_custom_materialization.py +++ b/tests/functional/materializations/test_custom_materialization.py @@ -36,6 +36,7 @@ def packages(self): def test_default_dependency(self, project, override_view_default_dep): run_dbt(["deps"]) # this should error because the override is buggy + # TODO: assert deprecation fired run_dbt(["run"], expect_pass=False)