featurebyte 3.4.1__tar.gz → 3.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {featurebyte-3.4.1 → featurebyte-3.4.2}/PKG-INFO +1 -1
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/__init__.py +4 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/base_table.py +2 -1
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/calendar_view.py +2 -1
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/catalog.py +2 -2
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/deployment.py +41 -0
- featurebyte-3.4.2/featurebyte/api/forecast_table.py +275 -0
- featurebyte-3.4.2/featurebyte/api/forecast_view.py +168 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/item_view.py +12 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/source_table.py +116 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/table.py +2 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/app.py +2 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/documentation_layout.py +9 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/enum.py +4 -0
- featurebyte-3.4.2/featurebyte/models/forecast_table.py +90 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/proxy_table.py +2 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/enum.py +4 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/common_table.py +2 -1
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/table.py +63 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/input.py +52 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/sdk_code.py +1 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/nested.py +31 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/timestamp_helper.py +57 -5
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/decompose_point.py +28 -5
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/base.py +2 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/base_table.py +4 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/deployment_sql/api.py +1 -2
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/deployment_sql/controller.py +3 -13
- featurebyte-3.4.2/featurebyte/routes/forecast_table/api.py +228 -0
- featurebyte-3.4.2/featurebyte/routes/forecast_table/controller.py +101 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/registry.py +9 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/deployment_sql.py +8 -0
- featurebyte-3.4.2/featurebyte/schema/forecast_table.py +58 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/info.py +12 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/deployment_sql.py +2 -1
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/table_validation.py +1 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/base_table_document.py +1 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/deployment_sql.py +1 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/deployment_sql_generation.py +35 -2
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_offline_store_info.py +12 -3
- featurebyte-3.4.2/featurebyte/service/forecast_table.py +24 -0
- featurebyte-3.4.2/featurebyte/service/forecast_table_validation.py +17 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/table_columns_info.py +2 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/table_facade.py +9 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/deployment_sql.py +1 -0
- featurebyte-3.4.2/featurebyte/worker/util/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/pyproject.toml +1 -1
- {featurebyte-3.4.1 → featurebyte-3.4.2}/LICENSE +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/README.md +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/__main__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/_overrides/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/_overrides/typechecked_override.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/accessor/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/accessor/databricks.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/asat_aggregator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/base_aggregator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/base_asat_aggregator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/forward_aggregator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/forward_asat_aggregator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/simple_aggregator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/vector_validator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/aggregator/window_aggregator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/catalog.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/feature.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/feature_list.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/feature_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/target_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_handler/user_defined_function.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_object.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/api_object_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/batch_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/batch_request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/calendar_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/catalog_decorator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/catalog_get_by_id_mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/change_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/context.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/credential.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/data_source.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/dimension_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/dimension_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/entity.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/event_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/event_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_group.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_job.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_list.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_or_target_mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_or_target_namespace_mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/feature_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/groupby.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/historical_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/item_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/lag.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/materialized_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/obs_table/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/obs_table/utils.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/observation_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/online_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/periodic_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/primary_entity_mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/relationship.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/request_column.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/savable_api_object.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/scd_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/scd_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/snapshots_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/snapshots_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/snapshots_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/static_source_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/target_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/templates/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/templates/doc_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/templates/entity_doc.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/templates/feature_or_target_doc.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/templates/series_doc.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/time_series_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/time_series_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/treatment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/use_case.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/use_case_or_context_mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/user_defined_function.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/user_defined_function_injector.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/utils.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/api/window_validator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/date_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/descriptor.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/dict_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/doc_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/allowed_classes.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/autodoc_processor.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/constants.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/custom_nav.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/doc_types.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/extract_csv.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/formatters.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/gen_ref_pages_docs_builder.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/markdown_extension/extension.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/pydantic_field_docs.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/resource_extractor.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/resource_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/documentation/util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/env_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/formatting_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/join_utils.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/model_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/path_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/progress.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/singleton.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/string.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/utils.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/common/validator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/config.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/conftest.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/count_dict.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/datetime.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/feature_datetime.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/feature_string.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/string.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/target_datetime.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/target_string.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/accessor/vector.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/datetime.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/distance.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/frame.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/generic.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/series.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/timedelta.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/trigonometry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/core/util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/datasets/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/datasets/__main__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/datasets/app.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/datasets/creditcard.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/datasets/doctest_grocery.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/datasets/grocery.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/datasets/healthcare.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/docker/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/docker/featurebyte.yml +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/docker/manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/exception.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/enum.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/infra/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/infra/offline_stores/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/infra/offline_stores/bigquery.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/infra/offline_stores/databricks.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/infra/offline_stores/spark_thrift.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/infra/offline_stores/spark_thrift_source.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/model/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/model/feature_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/model/online_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/model/registry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/online_store/mysql.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/patch.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/registry_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/schema/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/schema/registry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/service/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/service/feature_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/service/registry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/utils/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/utils/materialize_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/utils/on_demand_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feast/utils/registry_construction.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feature_manager/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/feature_manager/model.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/list_utility.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/logging.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/middleware.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/migration_data_service.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/model.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/run.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/data_warehouse.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/deployment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/event_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/feature.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/feature_list.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/feature_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/feature_store_table_cleanup_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/offline_store_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/migration/service/use_case.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/base_feature_or_target_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/batch_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/batch_request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/calendar_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/catalog.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/column_statistics.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/context.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/credential.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/deployed_tile_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/deployment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/deployment_sql.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/development_dataset.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/dimension_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/entity.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/entity_lookup_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/entity_universe.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/entity_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/event_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_list.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_list_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_list_store_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_materialize_prerequisite.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_materialize_run.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_query_set.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_store_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/feature_table_cache_metadata.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/historical_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/item_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/managed_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/materialized_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/observation_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/offline_store_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/offline_store_ingest_query.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/online_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/online_store_compute_query.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/online_store_table_version.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/parent_serving.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/periodic_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/persistent.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/precomputed_lookup_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/query_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/relationship.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/relationship_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/request_input.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/scd_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/semantic.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/snapshots_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/sqlglot_expression.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/static_source_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/system_metrics.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/target_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/target_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/tile.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/tile_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/tile_compute_query.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/tile_job_log.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/tile_registry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/time_series_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/treatment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/use_case.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/user_defined_function.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/utils.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/models/warehouse_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/persistent/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/persistent/audit.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/persistent/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/persistent/mongo.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/QUERY_GRAPH.md +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/algorithm.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/graph.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/graph_node/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/graph_node/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/column_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/critical_data_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/dtype.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/entity_lookup_plan.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/entity_relationship_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/feature_job_setting.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/forecast_point_schema.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/graph.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/node_hash_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/time_series_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/timestamp_schema.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/model/window.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/agg_func.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/binary.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/cleaning_operation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/count_dict.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/date.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/distance.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/function.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/generic.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/column.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/config.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/operation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/templates/databricks_feature_spec.tpl +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/templates/on_demand_function.tpl +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/templates/on_demand_function_sql.tpl +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/templates/on_demand_view.tpl +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/metadata/templates/sdk_code.tpl +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/request.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/scalar.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/schema.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/string.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/trigonometry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/unary.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/utils.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/validator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/node/vector.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/pruning_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/adapter/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/adapter/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/adapter/bigquery.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/adapter/databricks.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/adapter/databricks_unity.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/adapter/snowflake.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/adapter/spark.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/asat.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/base_asat.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/base_lookup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/forward.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/forward_asat.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/item.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/latest.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/lookup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/lookup_target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/non_tile_window.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/range_join.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/snapshots_request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/time_series_window.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/aggregator/window.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/asat_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/aggregate.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/binary.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/count_dict.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/datetime.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/distance.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/function.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/generic.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/groupby.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/input.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/is_in.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/join.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/join_feature.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/literal.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/request.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/string.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/tile.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/track_changes.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/trigonometry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/unary.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/vector.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/ast/zip_timestamp.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/batch_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/builder.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/common.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/cron.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/dataframe.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/deduplication.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/deployment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/dialects.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/entity.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/entity_filter.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/expression.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/feature_compute.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/feature_historical.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/feature_job.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/feature_preview.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/groupby_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/interpreter/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/interpreter/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/interpreter/preview.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/interpreter/tile.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/materialisation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/offset.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/online_serving.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/online_serving_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/parent_serving.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/partition_filter.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/partition_filter_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/query_graph_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/scd_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/source_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/aggregate_asat.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/base_aggregate_asat.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/base_lookup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/forward_aggregate_asat.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/lookup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/lookup_target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/non_tile_window_aggregate.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specifications/time_series_window_aggregate.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/specs.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/template.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/tile_compute.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/tile_compute_combine.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/tile_compute_spec.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/tile_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/tiling.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/udf_extractor.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/udf_registry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/validation_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/sql/vector_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/definition.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/flattening.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/null_filling_value.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/offline_store_ingest.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/on_demand_function.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/on_demand_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/operation_structure.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/pruning.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/quick_pruning.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/reconstruction.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/transform/sdk_code.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/ttl_handling_util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/query_graph/util.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/app_container_config.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/base_materialized_table_router.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/base_router.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/batch_feature_table/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/batch_feature_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/batch_feature_table/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/batch_request_table/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/batch_request_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/batch_request_table/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/block_modification_handler.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/calendar_table/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/calendar_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/calendar_table/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/catalog/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/catalog/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/catalog/catalog_name_injector.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/catalog/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/base_materialized_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/derive_primary_entity_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/feature_metadata_extractor.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/feature_or_target_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/feature_or_target_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/primary_entity_validator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/common/schema.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/context/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/context/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/context/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/credential/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/credential/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/credential/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/deployment/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/deployment/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/deployment/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/deployment_sql/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/development_dataset/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/development_dataset/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/development_dataset/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/dimension_table/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/dimension_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/dimension_table/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/entity/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/entity/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/entity/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/event_table/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/event_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/event_table/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_job_setting_analysis/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_job_setting_analysis/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_job_setting_analysis/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_list/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_list/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_list/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_list_namespace/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_list_namespace/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_list_namespace/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_namespace/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_namespace/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_namespace/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_store/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_store/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/feature_store/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/historical_feature_table → featurebyte-3.4.2/featurebyte/routes/forecast_table}/__init__.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/item_table → featurebyte-3.4.2/featurebyte/routes/historical_feature_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/historical_feature_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/historical_feature_table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/managed_view → featurebyte-3.4.2/featurebyte/routes/item_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/item_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/item_table/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/lazy_app_container.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/observation_table → featurebyte-3.4.2/featurebyte/routes/managed_view}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/managed_view/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/managed_view/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/online_store → featurebyte-3.4.2/featurebyte/routes/observation_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/observation_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/observation_table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/periodic_tasks → featurebyte-3.4.2/featurebyte/routes/online_store}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/online_store/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/online_store/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/relationship_info → featurebyte-3.4.2/featurebyte/routes/periodic_tasks}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/periodic_tasks/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/periodic_tasks/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/scd_table → featurebyte-3.4.2/featurebyte/routes/relationship_info}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/relationship_info/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/relationship_info/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/semantic → featurebyte-3.4.2/featurebyte/routes/scd_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/scd_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/scd_table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/snapshots_table → featurebyte-3.4.2/featurebyte/routes/semantic}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/semantic/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/semantic/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/static_source_table → featurebyte-3.4.2/featurebyte/routes/snapshots_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/snapshots_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/snapshots_table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/system_metrics → featurebyte-3.4.2/featurebyte/routes/static_source_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/static_source_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/static_source_table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/table → featurebyte-3.4.2/featurebyte/routes/system_metrics}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/system_metrics/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/system_metrics/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/target → featurebyte-3.4.2/featurebyte/routes/table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/target_namespace → featurebyte-3.4.2/featurebyte/routes/target}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/target/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/target/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/target_table → featurebyte-3.4.2/featurebyte/routes/target_namespace}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/target_namespace/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/target_namespace/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/task → featurebyte-3.4.2/featurebyte/routes/target_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/target_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/target_table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/temp_data → featurebyte-3.4.2/featurebyte/routes/task}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/task/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/task/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/time_series_table → featurebyte-3.4.2/featurebyte/routes/temp_data}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/temp_data/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/temp_data/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/treatment → featurebyte-3.4.2/featurebyte/routes/time_series_table}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/time_series_table/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/time_series_table/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/use_case → featurebyte-3.4.2/featurebyte/routes/treatment}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/treatment/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/treatment/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/routes/user_defined_function → featurebyte-3.4.2/featurebyte/routes/use_case}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/use_case/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/use_case/controller.py +0 -0
- {featurebyte-3.4.1/featurebyte/schema/common → featurebyte-3.4.2/featurebyte/routes/user_defined_function}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/user_defined_function/api.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/routes/user_defined_function/controller.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/batch_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/batch_request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/calendar_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/catalog.py +0 -0
- {featurebyte-3.4.1/featurebyte/schema/worker → featurebyte-3.4.2/featurebyte/schema/common}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/common/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/common/feature_or_target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/common/operation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/constant.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/context.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/credential.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/deployment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/development_dataset.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/dimension_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/entity.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/event_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature_list.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature_list_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature_store_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/feature_table_cache_metadata.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/historical_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/item_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/managed_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/materialized_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/observation_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/online_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/periodic_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/preview.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/relationship_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/scd_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/semantic.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/snapshots_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/static_source_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/system_metrics.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/target_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/target_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/time_series_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/treatment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/use_case.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/user_defined_function.py +0 -0
- {featurebyte-3.4.1/featurebyte/schema/worker/task → featurebyte-3.4.2/featurebyte/schema/worker}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/progress.py +0 -0
- {featurebyte-3.4.1/featurebyte/service → featurebyte-3.4.2/featurebyte/schema/worker/task}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/batch_feature_create.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/batch_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/batch_request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/catalog_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/data_description.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/deployment_create_update.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/development_dataset.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/feature_list_batch_feature_create.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/feature_list_create.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/feature_list_make_production_ready.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/feature_materialize_sync.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/feature_store_table_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/historical_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/materialized_table_delete.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/observation_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/observation_table_upload.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/online_store_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/online_store_initialize.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/query_cache_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/scheduled_feature_materialize.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/static_source_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/target_namespace_classification_metadata_update.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/target_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/test.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/tile.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/schema/worker/task/treatment_labels_validate.py +0 -0
- {featurebyte-3.4.1/featurebyte/service/templates → featurebyte-3.4.2/featurebyte/service}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/base_document.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/base_feature_service.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/base_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/batch_external_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/batch_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/batch_request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/calendar_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/calendar_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/catalog.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/column_statistics.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/context.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/credential.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/cron_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/deploy.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/deployed_tile_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/deployed_tile_table_manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/deployment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/development_dataset.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/dimension_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/dimension_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/entity.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/entity_lookup_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/entity_relationship_extractor.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/entity_serving_names.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/entity_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/event_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/event_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/exception.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_facade.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_job_history_service.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_list.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_list_facade.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_list_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_list_status.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_materialize.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_materialize_prerequisite.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_materialize_run.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_materialize_scheduler.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_materialize_sync.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_preview.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_readiness.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_store_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_store_table_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_store_table_cleanup_scheduler.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_store_warehouse.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_table_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_table_cache_metadata.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/feature_type.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/historical_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/historical_features.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/historical_features_and_target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/item_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/item_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/managed_view.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/materialized_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/namespace_handler.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/observation_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/offline_store_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/offline_store_feature_table_comment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/offline_store_feature_table_construction.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/offline_store_feature_table_manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/online_enable.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/online_serving.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/online_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/online_store_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/online_store_cleanup_scheduler.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/online_store_compute_query_service.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/online_store_table_version.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/parent_serving.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/periodic_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/preview.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/query_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/query_cache_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/query_cache_cleanup_scheduler.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/query_cache_manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/relationship.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/relationship_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/relationship_info_manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/relationship_info_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/sanitizer.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/scd_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/scd_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/semantic.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/session_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/session_manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/snapshots_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/snapshots_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/specialized_dtype.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/static_source_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/system_metrics.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/table_info.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/table_status.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/target_helper/base_feature_or_target_computer.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/target_helper/compute_target.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/target_namespace.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/target_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/task_manager.py +0 -0
- {featurebyte-3.4.1/featurebyte/service/templates/online_serving → featurebyte-3.4.2/featurebyte/service/templates}/__init__.py +0 -0
- {featurebyte-3.4.1/featurebyte/service/tile → featurebyte-3.4.2/featurebyte/service/templates/online_serving}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/templates/online_serving/python.tpl +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/templates/online_serving/sh.tpl +0 -0
- {featurebyte-3.4.1/featurebyte/service/validator → featurebyte-3.4.2/featurebyte/service/tile}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile/tile_task_executor.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile_cache.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile_cache_query_base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile_cache_query_by_observation_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile_job_log.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile_manager.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile_registry_service.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/tile_scheduler.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/time_series_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/time_series_table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/treatment.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/use_case.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/user_defined_function.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/user_service.py +0 -0
- {featurebyte-3.4.1/featurebyte/session → featurebyte-3.4.2/featurebyte/service/validator}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/validator/entity_relationship_validator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/validator/materialized_table_delete.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/validator/production_ready_validator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/version.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/view_construction.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/warehouse_table_service.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/service/working_schema.py +0 -0
- {featurebyte-3.4.1/featurebyte/sql → featurebyte-3.4.2/featurebyte/session}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/base_spark.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/bigquery.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/databricks.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/databricks_unity.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/enum.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/hive.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/session_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/simple_storage.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/snowflake.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/spark.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/sqlite.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/time_formatter.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/session/webhdfs.py +0 -0
- {featurebyte-3.4.1/featurebyte/sql/spark → featurebyte-3.4.2/featurebyte/sql}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_COSINE_SIMILARITY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_DIVIDE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_ENTROPY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_LEAST_FREQUENT.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_MOST_FREQUENT.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_MOST_FREQUENT_KEY_VALUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_MOST_FREQUENT_VALUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_NORMALIZE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_COUNT_DICT_NUM_UNIQUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_GET_RANK.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_GET_RELATIVE_FREQUENCY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_GET_VALUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_INDEX_TO_TIMESTAMP.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_OBJECT_DELETE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_TIMESTAMP_TO_INDEX.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_TIMEZONE_OFFSET_TO_SECOND.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_VECTOR_AGGREGATE_MAX.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_VECTOR_AGGREGATE_SIMPLE_AVERAGE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_VECTOR_AGGREGATE_SIMPLE_AVG.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_VECTOR_AGGREGATE_SUM.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/bigquery/F_VECTOR_COSINE_SIMILARITY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/common.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks/.gitignore +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_COSINE_SIMILARITY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_DIVIDE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_ENTROPY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_LEAST_FREQUENT.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_MOST_FREQUENT.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_MOST_FREQUENT_KEY_VALUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_MOST_FREQUENT_VALUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_NORMALIZE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_COUNT_DICT_NUM_UNIQUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_GET_RANK.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_GET_RELATIVE_FREQUENCY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_INDEX_TO_TIMESTAMP.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_OBJECT_DELETE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_TIMESTAMP_TO_INDEX.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_TIMEZONE_OFFSET_TO_SECOND.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/databricks_unity/F_VECTOR_COSINE_SIMILARITY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_COSINE_SIMILARITY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_DIVIDE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_ENTROPY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_LEAST_FREQUENT.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_MOST_FREQUENT.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_MOST_FREQUENT_KEY_VALUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_MOST_FREQUENT_VALUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_NORMALIZE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_COUNT_DICT_NUM_UNIQUE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_GET_RANK.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_GET_RELATIVE_FREQUENCY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_INDEX_TO_TIMESTAMP.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_TIMESTAMP_TO_INDEX.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_TIMEZONE_OFFSET_TO_SECOND.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_VECTOR_AGGREGATE_AVG.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_VECTOR_AGGREGATE_MAX.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_VECTOR_AGGREGATE_SIMPLE_AVERAGE.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_VECTOR_AGGREGATE_SUM.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/snowflake/F_VECTOR_COSINE_SIMILARITY.sql +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/spark/.gitignore +0 -0
- {featurebyte-3.4.1/featurebyte/tile → featurebyte-3.4.2/featurebyte/sql/spark}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/tile_common.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/tile_generate.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/tile_registry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/sql/tile_schedule_online_store.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/storage/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/storage/azure.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/storage/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/storage/local.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/storage/local_temp.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/storage/s3.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/storage/webdav.py +0 -0
- {featurebyte-3.4.1/featurebyte/utils → featurebyte-3.4.2/featurebyte/tile}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/typing.py +0 -0
- {featurebyte-3.4.1/featurebyte/utils/snowflake → featurebyte-3.4.2/featurebyte/utils}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/utils/async_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/utils/messaging.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/utils/persistent.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/utils/redis.py +0 -0
- {featurebyte-3.4.1/featurebyte/worker/test_util → featurebyte-3.4.2/featurebyte/utils/snowflake}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/utils/snowflake/sql.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/utils/storage.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/warning.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/loader.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/registry.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/schedulers.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/start.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/base.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/batch_feature_create.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/batch_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/batch_request_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/catalog_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/catalog_online_store_update.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/data_description.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/deployment_create_update.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/development_dataset.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/feature_job_setting_analysis.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/feature_job_setting_analysis_backtest.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/feature_list_batch_feature_create.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/feature_list_create.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/feature_list_make_production_ready.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/feature_materialize_sync.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/feature_store_table_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/historical_feature_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/materialized_table_delete.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/mixin.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/observation_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/observation_table_upload.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/online_store_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/query_cache_cleanup.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/scheduled_feature_materialize.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/static_source_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/table_validation.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/target_namespace_classification_metadata_update.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/target_table.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/test_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/tile_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task/treatment_labels_validate.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/task_executor.py +0 -0
- {featurebyte-3.4.1/featurebyte/worker/util → featurebyte-3.4.2/featurebyte/worker/test_util}/__init__.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/test_util/random_task.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/util/batch_feature_creator.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/util/observation_set_helper.py +0 -0
- {featurebyte-3.4.1 → featurebyte-3.4.2}/featurebyte/worker/util/task_progress_updater.py +0 -0
|
@@ -33,6 +33,8 @@ from featurebyte.api.feature_group import BaseFeatureGroup, FeatureGroup
|
|
|
33
33
|
from featurebyte.api.feature_job_setting_analysis import FeatureJobSettingAnalysis
|
|
34
34
|
from featurebyte.api.feature_list import FeatureList
|
|
35
35
|
from featurebyte.api.feature_store import FeatureStore
|
|
36
|
+
from featurebyte.api.forecast_table import ForecastTable
|
|
37
|
+
from featurebyte.api.forecast_view import ForecastView
|
|
36
38
|
from featurebyte.api.historical_feature_table import HistoricalFeatureTable
|
|
37
39
|
from featurebyte.api.item_table import ItemTable
|
|
38
40
|
from featurebyte.api.item_view import ItemView
|
|
@@ -513,6 +515,8 @@ __all__ = [
|
|
|
513
515
|
"CalendarTable",
|
|
514
516
|
"CalendarView",
|
|
515
517
|
"Catalog",
|
|
518
|
+
"ForecastTable",
|
|
519
|
+
"ForecastView",
|
|
516
520
|
"ChangeView",
|
|
517
521
|
"CronFeatureJobSetting",
|
|
518
522
|
"Crontab",
|
|
@@ -516,8 +516,9 @@ class TableApiObject(
|
|
|
516
516
|
TableDataType.TIME_SERIES_TABLE,
|
|
517
517
|
TableDataType.SNAPSHOTS_TABLE,
|
|
518
518
|
TableDataType.CALENDAR_TABLE,
|
|
519
|
+
TableDataType.FORECAST_TABLE,
|
|
519
520
|
] = Field(
|
|
520
|
-
description="Table type. Either source_table, event_table, item_table, dimension_table, scd_table, time_series_table, snapshots_table or
|
|
521
|
+
description="Table type. Either source_table, event_table, item_table, dimension_table, scd_table, time_series_table, snapshots_table, calendar_table or forecast_table."
|
|
521
522
|
)
|
|
522
523
|
|
|
523
524
|
# pydantic instance variable (internal use)
|
|
@@ -164,6 +164,7 @@ class CalendarView(View, RawMixin):
|
|
|
164
164
|
If joining a CalendarView to the given view type is not supported
|
|
165
165
|
"""
|
|
166
166
|
from featurebyte.api.event_view import EventView
|
|
167
|
+
from featurebyte.api.item_view import ItemView
|
|
167
168
|
from featurebyte.api.snapshots_view import SnapshotsView
|
|
168
169
|
from featurebyte.api.time_series_view import TimeSeriesView
|
|
169
170
|
|
|
@@ -178,7 +179,7 @@ class CalendarView(View, RawMixin):
|
|
|
178
179
|
}
|
|
179
180
|
# The join should transform the left view's (EventView, TimeSeriesView, etc) timestamp
|
|
180
181
|
# column into its local time, truncated to day, and match with CalendarView's date column.
|
|
181
|
-
if isinstance(left_view, EventView):
|
|
182
|
+
if isinstance(left_view, (EventView, ItemView)):
|
|
182
183
|
original_timestamp_schema = left_view.event_timestamp_schema
|
|
183
184
|
column_name = left_view.timestamp_column
|
|
184
185
|
elif isinstance(left_view, TimeSeriesView):
|
|
@@ -1214,8 +1214,8 @@ class Catalog(NameAttributeUpdatableMixin, SavableApiObject, CatalogGetByIdMixin
|
|
|
1214
1214
|
Gets a Table object from the catalog based on its name.
|
|
1215
1215
|
|
|
1216
1216
|
A Table object represents a source table within the data warehouse and provides metadata to support feature
|
|
1217
|
-
engineering. There are
|
|
1218
|
-
SCDTable, TimeSeriesTable, SnapshotsTable and
|
|
1217
|
+
engineering. There are eight distinct types of Table objects: EventTable, ItemTable, DimensionTable,
|
|
1218
|
+
SCDTable, TimeSeriesTable, SnapshotsTable, CalendarTable and ForecastTable.
|
|
1219
1219
|
|
|
1220
1220
|
Parameters
|
|
1221
1221
|
----------
|
|
@@ -38,6 +38,7 @@ from featurebyte.exception import (
|
|
|
38
38
|
from featurebyte.models.base import PydanticObjectId
|
|
39
39
|
from featurebyte.models.batch_request_table import BatchRequestInput
|
|
40
40
|
from featurebyte.models.deployment import DeploymentModel
|
|
41
|
+
from featurebyte.models.deployment_sql import DeploymentSqlModel
|
|
41
42
|
from featurebyte.schema.batch_feature_table import (
|
|
42
43
|
BatchExternalFeatureTableCreate,
|
|
43
44
|
BatchFeatureTableCreate,
|
|
@@ -531,6 +532,46 @@ class Deployment(DeletableApiObject):
|
|
|
531
532
|
).replace("<API_TOKEN>", str(current_profile.api_token)),
|
|
532
533
|
)
|
|
533
534
|
|
|
535
|
+
@typechecked
|
|
536
|
+
def get_deployment_sql(
|
|
537
|
+
self,
|
|
538
|
+
max_features_per_query: Optional[int] = None,
|
|
539
|
+
) -> DeploymentSqlModel:
|
|
540
|
+
"""
|
|
541
|
+
Generate SQL code that can be used to compute features for this deployment. The generated
|
|
542
|
+
SQL can be scheduled and run directly in your data warehouse to populate feature tables
|
|
543
|
+
without going through FeatureByte's serving infrastructure.
|
|
544
|
+
|
|
545
|
+
Parameters
|
|
546
|
+
----------
|
|
547
|
+
max_features_per_query: Optional[int]
|
|
548
|
+
Maximum number of features to include in a single SQL query. If not specified, features
|
|
549
|
+
are only split by aggregation source. Use this to control the complexity of each
|
|
550
|
+
individual query.
|
|
551
|
+
|
|
552
|
+
Returns
|
|
553
|
+
-------
|
|
554
|
+
DeploymentSqlModel
|
|
555
|
+
Object containing the generated SQL. Key attributes:
|
|
556
|
+
- feature_table_sqls: List of FeatureTableSql objects, each with sql_code,
|
|
557
|
+
feature_names, feature_ids, and optional feature_job_setting.
|
|
558
|
+
- udf_registration_sqls: List of SQL statements for registering any required UDFs.
|
|
559
|
+
|
|
560
|
+
Examples
|
|
561
|
+
--------
|
|
562
|
+
Generate deployment SQL for a deployment.
|
|
563
|
+
|
|
564
|
+
>>> deployment = catalog.get_deployment(<deployment_name>) # doctest: +SKIP
|
|
565
|
+
>>> deployment_sql = deployment.get_deployment_sql() # doctest: +SKIP
|
|
566
|
+
>>> for feature_table_sql in deployment_sql.feature_table_sqls: # doctest: +SKIP
|
|
567
|
+
... print(feature_table_sql.sql_code)
|
|
568
|
+
"""
|
|
569
|
+
payload = {"deployment_id": str(self.id)}
|
|
570
|
+
if max_features_per_query is not None:
|
|
571
|
+
payload["max_features_per_query"] = max_features_per_query # type: ignore[assignment]
|
|
572
|
+
result = self.post_async_task(route="/deployment_sql", payload=payload)
|
|
573
|
+
return DeploymentSqlModel(**result)
|
|
574
|
+
|
|
534
575
|
def get_feature_jobs_status(
|
|
535
576
|
self,
|
|
536
577
|
job_history_window: int = 1,
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ForecastTable class
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from typing import TYPE_CHECKING, Any, ClassVar, List, Optional, Type, cast
|
|
8
|
+
|
|
9
|
+
from bson import ObjectId
|
|
10
|
+
from pydantic import Field, StrictStr, model_validator
|
|
11
|
+
from typing_extensions import Literal
|
|
12
|
+
|
|
13
|
+
from featurebyte.api.base_table import TableApiObject
|
|
14
|
+
from featurebyte.common.doc_util import FBAutoDoc
|
|
15
|
+
from featurebyte.common.validator import construct_data_model_validator
|
|
16
|
+
from featurebyte.enum import DBVarType, TableDataType, ViewMode
|
|
17
|
+
from featurebyte.exception import RecordRetrievalException
|
|
18
|
+
from featurebyte.models.forecast_table import ForecastTableModel
|
|
19
|
+
from featurebyte.query_graph.graph import GlobalQueryGraph
|
|
20
|
+
from featurebyte.query_graph.model.table import (
|
|
21
|
+
AllTableDataT,
|
|
22
|
+
ForecastTableData,
|
|
23
|
+
)
|
|
24
|
+
from featurebyte.query_graph.model.timestamp_schema import TimestampSchema
|
|
25
|
+
from featurebyte.query_graph.node.cleaning_operation import ColumnCleaningOperation
|
|
26
|
+
from featurebyte.query_graph.node.input import InputNode
|
|
27
|
+
from featurebyte.query_graph.node.nested import ViewMetadata
|
|
28
|
+
from featurebyte.schema.forecast_table import ForecastTableCreate, ForecastTableUpdate
|
|
29
|
+
|
|
30
|
+
if TYPE_CHECKING:
|
|
31
|
+
from featurebyte.api.forecast_view import ForecastView
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class ForecastTable(TableApiObject):
|
|
35
|
+
"""
|
|
36
|
+
A ForecastTable object represents a table of forecasted values indexed by both a
|
|
37
|
+
point-in-time (effective timestamp) and a forecast horizon (forecast timestamp).
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
# class variables
|
|
41
|
+
__fbautodoc__: ClassVar[FBAutoDoc] = FBAutoDoc(
|
|
42
|
+
proxy_class="featurebyte.ForecastTable",
|
|
43
|
+
skip_params_and_signature_in_class_docs=True,
|
|
44
|
+
)
|
|
45
|
+
_route: ClassVar[str] = "/forecast_table"
|
|
46
|
+
_update_schema_class: ClassVar[Any] = ForecastTableUpdate
|
|
47
|
+
_create_schema_class: ClassVar[Any] = ForecastTableCreate
|
|
48
|
+
_get_schema: ClassVar[Any] = ForecastTableModel
|
|
49
|
+
_table_data_class: ClassVar[Type[AllTableDataT]] = ForecastTableData
|
|
50
|
+
|
|
51
|
+
# pydantic instance variable (public)
|
|
52
|
+
type: Literal[TableDataType.FORECAST_TABLE] = TableDataType.FORECAST_TABLE
|
|
53
|
+
|
|
54
|
+
# pydantic instance variable (internal use)
|
|
55
|
+
internal_natural_key_column: Optional[StrictStr] = Field(
|
|
56
|
+
alias="natural_key_column", default=None
|
|
57
|
+
)
|
|
58
|
+
internal_effective_timestamp_column: StrictStr = Field(alias="effective_timestamp_column")
|
|
59
|
+
internal_effective_timestamp_schema: Optional[TimestampSchema] = Field(
|
|
60
|
+
alias="effective_timestamp_schema", default=None
|
|
61
|
+
)
|
|
62
|
+
internal_forecast_timestamp_column: StrictStr = Field(alias="forecast_timestamp_column")
|
|
63
|
+
internal_forecast_timestamp_schema: Optional[TimestampSchema] = Field(
|
|
64
|
+
alias="forecast_timestamp_schema", default=None
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
# pydantic validators
|
|
68
|
+
_model_validator = model_validator(mode="after")(
|
|
69
|
+
construct_data_model_validator(
|
|
70
|
+
columns_info_key="internal_columns_info",
|
|
71
|
+
expected_column_field_name_type_pairs=[
|
|
72
|
+
(
|
|
73
|
+
"internal_record_creation_timestamp_column",
|
|
74
|
+
DBVarType.supported_timestamp_types(),
|
|
75
|
+
),
|
|
76
|
+
(
|
|
77
|
+
"internal_natural_key_column",
|
|
78
|
+
DBVarType.supported_id_types(),
|
|
79
|
+
),
|
|
80
|
+
(
|
|
81
|
+
"internal_effective_timestamp_column",
|
|
82
|
+
DBVarType.supported_datetime_types(),
|
|
83
|
+
),
|
|
84
|
+
(
|
|
85
|
+
"internal_forecast_timestamp_column",
|
|
86
|
+
DBVarType.supported_datetime_types(),
|
|
87
|
+
),
|
|
88
|
+
],
|
|
89
|
+
)
|
|
90
|
+
)
|
|
91
|
+
|
|
92
|
+
def get_view(
|
|
93
|
+
self,
|
|
94
|
+
view_mode: Literal[ViewMode.AUTO, ViewMode.MANUAL] = ViewMode.AUTO,
|
|
95
|
+
drop_column_names: Optional[List[str]] = None,
|
|
96
|
+
column_cleaning_operations: Optional[List[ColumnCleaningOperation]] = None,
|
|
97
|
+
) -> ForecastView:
|
|
98
|
+
"""
|
|
99
|
+
Gets a ForecastView object from a ForecastTable object.
|
|
100
|
+
|
|
101
|
+
Parameters
|
|
102
|
+
----------
|
|
103
|
+
view_mode: Literal[ViewMode.AUTO, ViewMode.MANUAL]
|
|
104
|
+
View mode to use. When auto, the view will be constructed with cleaning operations from
|
|
105
|
+
the table, and the record creation timestamp column will be dropped.
|
|
106
|
+
drop_column_names: Optional[List[str]]
|
|
107
|
+
List of column names to drop (manual mode only).
|
|
108
|
+
column_cleaning_operations: Optional[List[ColumnCleaningOperation]]
|
|
109
|
+
List of cleaning operations to apply per column in manual mode only. Each element in
|
|
110
|
+
the list indicates the cleaning operations for a specific column.
|
|
111
|
+
|
|
112
|
+
Returns
|
|
113
|
+
-------
|
|
114
|
+
ForecastView
|
|
115
|
+
ForecastView object constructed from the source table.
|
|
116
|
+
|
|
117
|
+
Examples
|
|
118
|
+
--------
|
|
119
|
+
Get a ForecastView in automated mode.
|
|
120
|
+
|
|
121
|
+
>>> forecast_table = catalog.get_table("FORECAST") # doctest: +SKIP
|
|
122
|
+
>>> forecast_view = forecast_table.get_view() # doctest: +SKIP
|
|
123
|
+
"""
|
|
124
|
+
from featurebyte.api.forecast_view import ForecastView
|
|
125
|
+
|
|
126
|
+
self._validate_view_mode_params(
|
|
127
|
+
view_mode=view_mode,
|
|
128
|
+
drop_column_names=drop_column_names,
|
|
129
|
+
column_cleaning_operations=column_cleaning_operations,
|
|
130
|
+
)
|
|
131
|
+
|
|
132
|
+
drop_column_names = drop_column_names or []
|
|
133
|
+
if view_mode == ViewMode.AUTO and self.record_creation_timestamp_column:
|
|
134
|
+
drop_column_names.append(self.record_creation_timestamp_column)
|
|
135
|
+
|
|
136
|
+
data_node = self.frame.node
|
|
137
|
+
assert isinstance(data_node, InputNode)
|
|
138
|
+
forecast_table_data = cast(ForecastTableData, self.table_data)
|
|
139
|
+
(
|
|
140
|
+
forecast_table_data,
|
|
141
|
+
column_cleaning_operations,
|
|
142
|
+
) = self._prepare_table_data_and_column_cleaning_operations(
|
|
143
|
+
table_data=forecast_table_data,
|
|
144
|
+
column_cleaning_operations=column_cleaning_operations,
|
|
145
|
+
view_mode=view_mode,
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
view_graph_node, columns_info = forecast_table_data.construct_forecast_view_graph_node(
|
|
149
|
+
forecast_table_node=data_node,
|
|
150
|
+
drop_column_names=drop_column_names,
|
|
151
|
+
metadata=ViewMetadata(
|
|
152
|
+
view_mode=view_mode,
|
|
153
|
+
drop_column_names=drop_column_names,
|
|
154
|
+
column_cleaning_operations=column_cleaning_operations,
|
|
155
|
+
table_id=data_node.parameters.id,
|
|
156
|
+
),
|
|
157
|
+
)
|
|
158
|
+
inserted_graph_node = GlobalQueryGraph().add_node(view_graph_node, input_nodes=[data_node])
|
|
159
|
+
columns_info = self._prepare_columns_info_for_view(
|
|
160
|
+
view_node=inserted_graph_node, columns_info=columns_info
|
|
161
|
+
)
|
|
162
|
+
return ForecastView(
|
|
163
|
+
feature_store=self.feature_store,
|
|
164
|
+
tabular_source=self.tabular_source,
|
|
165
|
+
columns_info=columns_info,
|
|
166
|
+
node_name=inserted_graph_node.name,
|
|
167
|
+
natural_key_column=self.natural_key_column,
|
|
168
|
+
)
|
|
169
|
+
|
|
170
|
+
@property
|
|
171
|
+
def timestamp_column(self) -> Optional[str]:
|
|
172
|
+
"""
|
|
173
|
+
Timestamp column name of the ForecastTable (effective timestamp)
|
|
174
|
+
|
|
175
|
+
Returns
|
|
176
|
+
-------
|
|
177
|
+
Optional[str]
|
|
178
|
+
"""
|
|
179
|
+
return self.effective_timestamp_column
|
|
180
|
+
|
|
181
|
+
@property
|
|
182
|
+
def natural_key_column(self) -> Optional[str]:
|
|
183
|
+
"""
|
|
184
|
+
Natural key column name of the ForecastTable
|
|
185
|
+
|
|
186
|
+
Returns
|
|
187
|
+
-------
|
|
188
|
+
Optional[str]
|
|
189
|
+
"""
|
|
190
|
+
try:
|
|
191
|
+
return self.cached_model.natural_key_column
|
|
192
|
+
except RecordRetrievalException:
|
|
193
|
+
return self.internal_natural_key_column
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
def effective_timestamp_column(self) -> str:
|
|
197
|
+
"""
|
|
198
|
+
Effective timestamp column name of the ForecastTable
|
|
199
|
+
|
|
200
|
+
Returns
|
|
201
|
+
-------
|
|
202
|
+
str
|
|
203
|
+
"""
|
|
204
|
+
try:
|
|
205
|
+
return self.cached_model.effective_timestamp_column
|
|
206
|
+
except RecordRetrievalException:
|
|
207
|
+
return self.internal_effective_timestamp_column
|
|
208
|
+
|
|
209
|
+
@property
|
|
210
|
+
def effective_timestamp_schema(self) -> Optional[TimestampSchema]:
|
|
211
|
+
"""
|
|
212
|
+
Schema of the effective timestamp column
|
|
213
|
+
|
|
214
|
+
Returns
|
|
215
|
+
-------
|
|
216
|
+
Optional[TimestampSchema]
|
|
217
|
+
"""
|
|
218
|
+
try:
|
|
219
|
+
return self.cached_model.effective_timestamp_schema
|
|
220
|
+
except RecordRetrievalException:
|
|
221
|
+
return self.internal_effective_timestamp_schema
|
|
222
|
+
|
|
223
|
+
@property
|
|
224
|
+
def forecast_timestamp_column(self) -> str:
|
|
225
|
+
"""
|
|
226
|
+
Forecast timestamp column name of the ForecastTable
|
|
227
|
+
|
|
228
|
+
Returns
|
|
229
|
+
-------
|
|
230
|
+
str
|
|
231
|
+
"""
|
|
232
|
+
try:
|
|
233
|
+
return self.cached_model.forecast_timestamp_column
|
|
234
|
+
except RecordRetrievalException:
|
|
235
|
+
return self.internal_forecast_timestamp_column
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
def forecast_timestamp_schema(self) -> Optional[TimestampSchema]:
|
|
239
|
+
"""
|
|
240
|
+
Schema of the forecast timestamp column
|
|
241
|
+
|
|
242
|
+
Returns
|
|
243
|
+
-------
|
|
244
|
+
Optional[TimestampSchema]
|
|
245
|
+
"""
|
|
246
|
+
try:
|
|
247
|
+
return self.cached_model.forecast_timestamp_schema
|
|
248
|
+
except RecordRetrievalException:
|
|
249
|
+
return self.internal_forecast_timestamp_schema
|
|
250
|
+
|
|
251
|
+
@classmethod
|
|
252
|
+
def get_by_id(
|
|
253
|
+
cls,
|
|
254
|
+
id: ObjectId,
|
|
255
|
+
) -> ForecastTable:
|
|
256
|
+
"""
|
|
257
|
+
Returns a ForecastTable object by its unique identifier (ID).
|
|
258
|
+
|
|
259
|
+
Parameters
|
|
260
|
+
----------
|
|
261
|
+
id: ObjectId
|
|
262
|
+
ForecastTable unique identifier ID.
|
|
263
|
+
|
|
264
|
+
Returns
|
|
265
|
+
-------
|
|
266
|
+
ForecastTable
|
|
267
|
+
ForecastTable object.
|
|
268
|
+
|
|
269
|
+
Examples
|
|
270
|
+
--------
|
|
271
|
+
Get a ForecastTable object that is already saved.
|
|
272
|
+
|
|
273
|
+
>>> fb.ForecastTable.get_by_id(<forecast_table_id>) # doctest: +SKIP
|
|
274
|
+
"""
|
|
275
|
+
return cls._get_by_id(id=id)
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ForecastView class
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from typing import Any, ClassVar, Optional, cast
|
|
8
|
+
|
|
9
|
+
from pydantic import Field
|
|
10
|
+
|
|
11
|
+
from featurebyte.api.view import RawMixin, View, ViewColumn
|
|
12
|
+
from featurebyte.common.doc_util import FBAutoDoc
|
|
13
|
+
from featurebyte.enum import TableDataType
|
|
14
|
+
from featurebyte.exception import JoinViewMismatchError
|
|
15
|
+
from featurebyte.query_graph.enum import GraphNodeType, NodeType
|
|
16
|
+
from featurebyte.query_graph.model.timestamp_schema import TimestampSchema
|
|
17
|
+
from featurebyte.query_graph.node.input import ForecastTableInputNodeParameters, InputNode
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ForecastViewColumn(ViewColumn):
|
|
21
|
+
"""
|
|
22
|
+
ForecastViewColumn class
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
# class variables
|
|
26
|
+
__fbautodoc__: ClassVar[FBAutoDoc] = FBAutoDoc()
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class ForecastView(View, RawMixin):
|
|
30
|
+
"""
|
|
31
|
+
A ForecastView object is a modified version of the ForecastTable object that provides additional
|
|
32
|
+
capabilities for transforming data. With a ForecastView, you can create and transform columns
|
|
33
|
+
and filter records prior to feature declaration.
|
|
34
|
+
|
|
35
|
+
See Also
|
|
36
|
+
--------
|
|
37
|
+
- [forecast_table#get_view](/reference/featurebyte.api.forecast_table.ForecastTable.get_view/): get forecast view from a `ForecastTable`
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
# class variables
|
|
41
|
+
__fbautodoc__: ClassVar[FBAutoDoc] = FBAutoDoc(
|
|
42
|
+
proxy_class="featurebyte.ForecastView",
|
|
43
|
+
skip_params_and_signature_in_class_docs=True,
|
|
44
|
+
)
|
|
45
|
+
_series_class: ClassVar[Any] = ForecastViewColumn
|
|
46
|
+
_view_graph_node_type: ClassVar[GraphNodeType] = GraphNodeType.FORECAST_VIEW
|
|
47
|
+
|
|
48
|
+
# pydantic instance variables
|
|
49
|
+
natural_key_column: Optional[str] = Field(
|
|
50
|
+
frozen=True,
|
|
51
|
+
default=None,
|
|
52
|
+
description="Represents the natural key column of the forecast table.",
|
|
53
|
+
)
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
def timestamp_column(self) -> str:
|
|
57
|
+
"""
|
|
58
|
+
Timestamp column of the forecast table (effective timestamp)
|
|
59
|
+
|
|
60
|
+
Returns
|
|
61
|
+
-------
|
|
62
|
+
str
|
|
63
|
+
"""
|
|
64
|
+
return self.effective_timestamp_column
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
def effective_timestamp_column(self) -> str:
|
|
68
|
+
"""
|
|
69
|
+
Effective timestamp column of the forecast table
|
|
70
|
+
|
|
71
|
+
Returns
|
|
72
|
+
-------
|
|
73
|
+
str
|
|
74
|
+
"""
|
|
75
|
+
return self._get_forecast_table_node_parameters().effective_timestamp_column
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
def effective_timestamp_schema(self) -> Optional[TimestampSchema]:
|
|
79
|
+
"""
|
|
80
|
+
Effective timestamp schema of the forecast table
|
|
81
|
+
|
|
82
|
+
Returns
|
|
83
|
+
-------
|
|
84
|
+
Optional[TimestampSchema]
|
|
85
|
+
"""
|
|
86
|
+
return self._get_forecast_table_node_parameters().effective_timestamp_schema
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
def forecast_timestamp_column(self) -> str:
|
|
90
|
+
"""
|
|
91
|
+
Forecast timestamp column of the forecast table
|
|
92
|
+
|
|
93
|
+
Returns
|
|
94
|
+
-------
|
|
95
|
+
str
|
|
96
|
+
"""
|
|
97
|
+
return self._get_forecast_table_node_parameters().forecast_timestamp_column
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
def forecast_timestamp_schema(self) -> Optional[TimestampSchema]:
|
|
101
|
+
"""
|
|
102
|
+
Forecast timestamp schema of the forecast table
|
|
103
|
+
|
|
104
|
+
Returns
|
|
105
|
+
-------
|
|
106
|
+
Optional[TimestampSchema]
|
|
107
|
+
"""
|
|
108
|
+
return self._get_forecast_table_node_parameters().forecast_timestamp_schema
|
|
109
|
+
|
|
110
|
+
def _get_forecast_table_node_parameters(self) -> ForecastTableInputNodeParameters:
|
|
111
|
+
input_node = next(
|
|
112
|
+
node
|
|
113
|
+
for node in self.graph.iterate_nodes(target_node=self.node, node_type=NodeType.INPUT)
|
|
114
|
+
if cast(InputNode, node).parameters.type == TableDataType.FORECAST_TABLE
|
|
115
|
+
)
|
|
116
|
+
return cast(ForecastTableInputNodeParameters, input_node.parameters)
|
|
117
|
+
|
|
118
|
+
def _get_additional_inherited_columns(self) -> set[str]:
|
|
119
|
+
return {self.effective_timestamp_column, self.forecast_timestamp_column}
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
def protected_attributes(self) -> list[str]:
|
|
123
|
+
"""
|
|
124
|
+
List of protected attributes used to extract protected_columns
|
|
125
|
+
|
|
126
|
+
Returns
|
|
127
|
+
-------
|
|
128
|
+
list[str]
|
|
129
|
+
"""
|
|
130
|
+
out = super().protected_attributes + [
|
|
131
|
+
"effective_timestamp_column",
|
|
132
|
+
"forecast_timestamp_column",
|
|
133
|
+
]
|
|
134
|
+
if self.natural_key_column is not None:
|
|
135
|
+
out.append("natural_key_column")
|
|
136
|
+
return out
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
def _getitem_frame_params(self) -> dict[str, Any]:
|
|
140
|
+
"""
|
|
141
|
+
Parameters that will be passed to frame-like class constructor in __getitem__ method
|
|
142
|
+
|
|
143
|
+
Returns
|
|
144
|
+
-------
|
|
145
|
+
dict[str, Any]
|
|
146
|
+
"""
|
|
147
|
+
params = super()._getitem_frame_params
|
|
148
|
+
params.update({"natural_key_column": self.natural_key_column})
|
|
149
|
+
return params
|
|
150
|
+
|
|
151
|
+
def validate_join(self, other_view: View) -> None:
|
|
152
|
+
"""
|
|
153
|
+
Validate join should be implemented by view classes that have extra requirements.
|
|
154
|
+
|
|
155
|
+
Parameters
|
|
156
|
+
----------
|
|
157
|
+
other_view: View
|
|
158
|
+
the other view that we are joining with
|
|
159
|
+
|
|
160
|
+
Raises
|
|
161
|
+
------
|
|
162
|
+
JoinViewMismatchError
|
|
163
|
+
raised when ForecastView is used as the left-hand side of a join
|
|
164
|
+
"""
|
|
165
|
+
raise JoinViewMismatchError("ForecastView cannot be used as the left-hand side of a join")
|
|
166
|
+
|
|
167
|
+
def _get_join_column(self) -> Optional[str]:
|
|
168
|
+
return self.natural_key_column
|
|
@@ -18,6 +18,7 @@ from featurebyte.query_graph.model.feature_job_setting import (
|
|
|
18
18
|
FeatureJobSettingUnion,
|
|
19
19
|
)
|
|
20
20
|
from featurebyte.query_graph.model.table import ItemTableData
|
|
21
|
+
from featurebyte.query_graph.model.timestamp_schema import TimestampSchema
|
|
21
22
|
from featurebyte.query_graph.node.metadata.operation import DerivedDataColumn
|
|
22
23
|
from featurebyte.typing import OffsetType
|
|
23
24
|
|
|
@@ -156,6 +157,17 @@ class ItemView(View, GroupByMixin, RawMixin):
|
|
|
156
157
|
"""
|
|
157
158
|
return self.timestamp_column_name
|
|
158
159
|
|
|
160
|
+
@property
|
|
161
|
+
def event_timestamp_schema(self) -> Optional[TimestampSchema]:
|
|
162
|
+
"""
|
|
163
|
+
Event timestamp schema inherited from the associated EventView
|
|
164
|
+
|
|
165
|
+
Returns
|
|
166
|
+
-------
|
|
167
|
+
Optional[TimestampSchema]
|
|
168
|
+
"""
|
|
169
|
+
return self.event_view.event_timestamp_schema
|
|
170
|
+
|
|
159
171
|
@property
|
|
160
172
|
def timestamp_timezone_offset_column(self) -> Optional[str]:
|
|
161
173
|
"""
|