omnata-plugin-runtime 0.10.20__tar.gz → 0.10.21a275__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.
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/configuration.py +2 -2
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/LICENSE +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/README.md +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/json_schema.py +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.10.
|
3
|
+
version = "0.10.21-a275"
|
4
4
|
description = "Classes and common runtime components for building and running Omnata Plugins"
|
5
5
|
authors = ["James Weakley <james.weakley@omnata.com>"]
|
6
6
|
readme = "README.md"
|
@@ -923,7 +923,7 @@ class SyncScheduleDbt(SubscriptableBaseModel):
|
|
923
923
|
time_limit_mins (int): The maximum time the sync can run for before being cancelled
|
924
924
|
dbt_dev_target_name (str): The name of the dbt target used by developers outside of CI
|
925
925
|
dbt_sync_model_name (str): The name of the dbt model used to run the sync
|
926
|
-
dbt_source_model_name (str): The name of the dbt model used as a source for the run. This will be resolved at runtime and replaces the configured source table
|
926
|
+
dbt_source_model_name (str): The name of the dbt model used as a source for the run, if the sync is Outbound. This will be resolved at runtime and replaces the configured source table
|
927
927
|
is_dbt_cloud (bool): If true, dbt cloud is in use
|
928
928
|
"""
|
929
929
|
|
@@ -934,7 +934,7 @@ class SyncScheduleDbt(SubscriptableBaseModel):
|
|
934
934
|
time_limit_mins: int = 60 * 4
|
935
935
|
dbt_dev_target_name: str = "dev"
|
936
936
|
dbt_sync_model_name: str
|
937
|
-
dbt_source_model_name: str
|
937
|
+
dbt_source_model_name: Optional[str] = Field(default=None)
|
938
938
|
is_dbt_cloud: bool = True
|
939
939
|
|
940
940
|
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.10.20 → omnata_plugin_runtime-0.10.21a275}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|