omnata-plugin-runtime 0.5.2a118__tar.gz → 0.5.3__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/PKG-INFO +3 -1
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/pyproject.toml +3 -1
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/configuration.py +3 -3
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/LICENSE +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/README.md +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: omnata-plugin-runtime
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.3
|
4
4
|
Summary: Classes and common runtime components for building and running Omnata Plugins
|
5
5
|
Author: James Weakley
|
6
6
|
Author-email: james.weakley@omnata.com
|
@@ -11,6 +11,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
12
12
|
Requires-Dist: annotated-types (<=0.6.0)
|
13
13
|
Requires-Dist: certifi (<=2024.7.4)
|
14
|
+
Requires-Dist: cffi (<=1.16.0)
|
14
15
|
Requires-Dist: charset-normalizer (<=2.0.4)
|
15
16
|
Requires-Dist: cryptography (<=42.0.5)
|
16
17
|
Requires-Dist: filelock (<=3.13.1)
|
@@ -27,6 +28,7 @@ Requires-Dist: pydantic-core (<=2.14.6)
|
|
27
28
|
Requires-Dist: pyjwt (<=2.8.0)
|
28
29
|
Requires-Dist: pyopenssl (<=24.0.0)
|
29
30
|
Requires-Dist: pytz (<=2024.1)
|
31
|
+
Requires-Dist: pyyaml (<=6.0.1)
|
30
32
|
Requires-Dist: requests (>=2,<=2.32.2)
|
31
33
|
Requires-Dist: setuptools (<=69.5.1)
|
32
34
|
Requires-Dist: snowflake-connector-python (>=3,<=3.12.0)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.5.
|
3
|
+
version = "0.5.3"
|
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"
|
@@ -35,6 +35,8 @@ tomlkit = "<=0.11.1" # 0.11.1 was latest version available on Snowflake Anaconda
|
|
35
35
|
tenacity = "^8, <=8.2.3" # latest version available on Snowflake Anaconda
|
36
36
|
urllib3 = "<=2.2.2" # latest version available on Snowflake Anaconda
|
37
37
|
wheel = "<=0.43.0" # latest version available on Snowflake Anaconda
|
38
|
+
pyyaml = "<=6.0.1" # latest version available on Snowflake Anaconda
|
39
|
+
cffi = "<=1.16.0" # latest version available on Snowflake Anaconda
|
38
40
|
|
39
41
|
[tool.poetry.dev-dependencies]
|
40
42
|
pytest = "^6.2.4"
|
@@ -706,9 +706,9 @@ class InboundSyncConfigurationParameters(SyncConfigurationParameters):
|
|
706
706
|
"""
|
707
707
|
|
708
708
|
connection_method: str
|
709
|
-
connection_parameters: Dict[str, StoredConfigurationValue] = Field(default=None)
|
710
|
-
connection_secrets: Dict[str, StoredConfigurationValue] = Field(default=None)
|
711
|
-
sync_parameters: Dict[str, StoredConfigurationValue] = Field(default=None)
|
709
|
+
connection_parameters: Optional[Dict[str, StoredConfigurationValue]] = Field(default=None)
|
710
|
+
connection_secrets: Optional[Dict[str, StoredConfigurationValue]] = Field(default=None)
|
711
|
+
sync_parameters: Optional[Dict[str, StoredConfigurationValue]] = Field(default=None)
|
712
712
|
current_form_parameters: Optional[Dict[str, StoredConfigurationValue]] = Field(default=None)
|
713
713
|
currently_selected_streams: Optional[List[str]] = Field(default=None)
|
714
714
|
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.5.2a118 → omnata_plugin_runtime-0.5.3}/src/omnata_plugin_runtime/logging.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|