omnata-plugin-runtime 0.1.55__py3-none-any.whl → 0.1.57__py3-none-any.whl
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/configuration.py +4 -1
- {omnata_plugin_runtime-0.1.55.dist-info → omnata_plugin_runtime-0.1.57.dist-info}/METADATA +1 -1
- {omnata_plugin_runtime-0.1.55.dist-info → omnata_plugin_runtime-0.1.57.dist-info}/RECORD +5 -5
- {omnata_plugin_runtime-0.1.55.dist-info → omnata_plugin_runtime-0.1.57.dist-info}/LICENSE +0 -0
- {omnata_plugin_runtime-0.1.55.dist-info → omnata_plugin_runtime-0.1.57.dist-info}/WHEEL +0 -0
@@ -500,6 +500,7 @@ class StoredJinjaTemplate(SubscriptableBaseModel):
|
|
500
500
|
It contains either a list of mappings or a jinja template
|
501
501
|
"""
|
502
502
|
mapper_type:Literal["jinja_template"] = 'jinja_template'
|
503
|
+
additional_column_expressions:Dict[str,str] = {}
|
503
504
|
jinja_template:str
|
504
505
|
|
505
506
|
class StoredFieldMappings(SubscriptableBaseModel):
|
@@ -582,8 +583,10 @@ SyncSchedule = Annotated[Union[SyncScheduleSnowflakeTask,SyncScheduleDbt,SyncSch
|
|
582
583
|
class StoredFieldMapping(SubscriptableBaseModel):
|
583
584
|
"""
|
584
585
|
A column->field mapping value that was provided by a user when configuring a sync.
|
586
|
+
The source can either be a column name (e.g. EMAIL_ADDRESS) or an expression (e.g. CONTACT_DETAILS:email_address::varchar or FIRST_NAME||' '||LAST_NAME))
|
585
587
|
"""
|
586
|
-
|
588
|
+
source_type:Literal['column_name','expression']
|
589
|
+
source_value:str
|
587
590
|
app_field:str
|
588
591
|
app_metadata:dict = Field(default_factory=dict)
|
589
592
|
|
@@ -1,13 +1,13 @@
|
|
1
1
|
omnata_plugin_runtime/__init__.py,sha256=piQOo_Y0VwAdP2nME0J53yey06In4MgfBFbH7R1OJkA,1213
|
2
2
|
omnata_plugin_runtime/api.py,sha256=g1zFd4OgqVHcjYrSQ6aEhF-dS_8tbKlFJQdt6U93tok,4945
|
3
|
-
omnata_plugin_runtime/configuration.py,sha256=
|
3
|
+
omnata_plugin_runtime/configuration.py,sha256=eYvtdbFMrfRvpTKpWca2326eNzEZ-ZgQfzl2ckIMkPg,29786
|
4
4
|
omnata_plugin_runtime/forms.py,sha256=n_OTuWL8zldCQtxqP4ZORn4Jq3mKObLEZ9bZqOrWoSE,13518
|
5
5
|
omnata_plugin_runtime/logging.py,sha256=8Xc7PyFIYAXYmCal5J4ClneJXTNMyM0rJspvxFzorh4,3004
|
6
6
|
omnata_plugin_runtime/omnata_plugin.py,sha256=8Ej9lll1E6WgzZ8pbFYJP-Trlv1WOK0-X4yiQlwb8NE,68057
|
7
7
|
omnata_plugin_runtime/plugin_entrypoints.py,sha256=tZB2d7O9j0caHUiKPaJOIHAtL_blWnJoKuklPdJ27Bk,19957
|
8
8
|
omnata_plugin_runtime/rate_limiting.py,sha256=wxjKF26cMyCRdkCdTytC-mXwJFgsMze-PJttiND9c8g,10078
|
9
9
|
omnata_plugin_runtime/record_transformer.py,sha256=oDUHurMQl6ixsltBaZf6ngPxtoizcaS21LuxKMxlaxY,2611
|
10
|
-
omnata_plugin_runtime-0.1.
|
11
|
-
omnata_plugin_runtime-0.1.
|
12
|
-
omnata_plugin_runtime-0.1.
|
13
|
-
omnata_plugin_runtime-0.1.
|
10
|
+
omnata_plugin_runtime-0.1.57.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
11
|
+
omnata_plugin_runtime-0.1.57.dist-info/METADATA,sha256=G2ITbvdKpSJd5TF85dN26YwH_--DV9_y6oY_ETngcyM,998
|
12
|
+
omnata_plugin_runtime-0.1.57.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
13
|
+
omnata_plugin_runtime-0.1.57.dist-info/RECORD,,
|
File without changes
|
File without changes
|