omnata-plugin-runtime 0.10.1a227__tar.gz → 0.10.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.
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/configuration.py +3 -3
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/LICENSE +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/README.md +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/json_schema.py +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/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.2"
|
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"
|
@@ -864,7 +864,7 @@ class SyncScheduleDbt(SubscriptableBaseModel):
|
|
864
864
|
mode: Literal["dbt"] = "dbt"
|
865
865
|
dbt_prod_target_name: str = "prod"
|
866
866
|
task_warehouse_dbt_defined: bool = True
|
867
|
-
warehouse: str
|
867
|
+
warehouse: Optional[str] = Field(default=None)
|
868
868
|
time_limit_mins: int = 60 * 4
|
869
869
|
dbt_dev_target_name: str = "dev"
|
870
870
|
dbt_sync_model_name: str
|
@@ -887,7 +887,7 @@ class SyncScheduleDependant(SubscriptableBaseModel):
|
|
887
887
|
run_when: Literal[
|
888
888
|
"after_parent_completes", "at_same_time_as"
|
889
889
|
] = "after_parent_completes"
|
890
|
-
warehouse: str
|
890
|
+
warehouse: Optional[str] = Field(default=None)
|
891
891
|
time_limit_mins: int = 60 * 4
|
892
892
|
selected_sync: int
|
893
893
|
|
@@ -902,7 +902,7 @@ class SyncScheduleManual(SubscriptableBaseModel):
|
|
902
902
|
"""
|
903
903
|
|
904
904
|
mode: Literal["manual"] = "manual"
|
905
|
-
warehouse: str
|
905
|
+
warehouse: Optional[str] = Field(default=None)
|
906
906
|
time_limit_mins: int = 60 * 4
|
907
907
|
|
908
908
|
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.10.1a227 → omnata_plugin_runtime-0.10.2}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|