omnata-plugin-runtime 0.1.88__py3-none-any.whl → 0.1.89__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/forms.py +9 -2
- {omnata_plugin_runtime-0.1.88.dist-info → omnata_plugin_runtime-0.1.89.dist-info}/METADATA +1 -1
- {omnata_plugin_runtime-0.1.88.dist-info → omnata_plugin_runtime-0.1.89.dist-info}/RECORD +5 -5
- {omnata_plugin_runtime-0.1.88.dist-info → omnata_plugin_runtime-0.1.89.dist-info}/LICENSE +0 -0
- {omnata_plugin_runtime-0.1.88.dist-info → omnata_plugin_runtime-0.1.89.dist-info}/WHEEL +0 -0
omnata_plugin_runtime/forms.py
CHANGED
@@ -19,6 +19,7 @@ from .configuration import (
|
|
19
19
|
StreamConfiguration,
|
20
20
|
SyncConfigurationParameters,
|
21
21
|
InboundSyncConfigurationParameters,
|
22
|
+
StoredConfigurationValue,
|
22
23
|
)
|
23
24
|
|
24
25
|
|
@@ -325,14 +326,20 @@ class ConfigurationFormBase(BaseModel, ABC):
|
|
325
326
|
class NewOptionCreator(SubscriptableBaseModel):
|
326
327
|
"""
|
327
328
|
Allows for options to be added to a datasource by the user.
|
328
|
-
It does this by presenting the user with a form, then building a
|
329
|
+
It does this by presenting the user with a form, then building a StoredConfigurationValue from the provided values.
|
330
|
+
Since this StoredConfigurationValue won't be present in the data source (at least not initially), there is
|
331
|
+
also a function (construct_form_option) to convert the StoredConfigurationValue into a FormOption which can be added to the data source.
|
332
|
+
This means that all the presentation options (e.g. required, unique) must be derivable from the metadata in StoredConfigurationValue.
|
329
333
|
"""
|
330
334
|
|
331
335
|
creation_form_function: Union[
|
332
336
|
Callable[[SyncConfigurationParameters], ConfigurationFormBase], str
|
333
337
|
]
|
334
338
|
creation_complete_function: Union[
|
335
|
-
Callable[[SyncConfigurationParameters],
|
339
|
+
Callable[[SyncConfigurationParameters], StoredConfigurationValue], str
|
340
|
+
]
|
341
|
+
construct_form_option: Union[
|
342
|
+
Callable[[StoredConfigurationValue], FormOption], str
|
336
343
|
]
|
337
344
|
allow_create: bool = True
|
338
345
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
omnata_plugin_runtime/__init__.py,sha256=w63LVME5nY-hQ4BBzfacy9kvTunwqHGs8iiSPGAX2ns,1214
|
2
2
|
omnata_plugin_runtime/api.py,sha256=vCDTCxPZ5rIhi8aSM6Z0TXWHtGpbCoNvCnM3mKa-47Q,5591
|
3
3
|
omnata_plugin_runtime/configuration.py,sha256=xtPp0ET1Gdgk4zjklWwXLNuczVZ_rMhaKDS5c9ZCwVU,29744
|
4
|
-
omnata_plugin_runtime/forms.py,sha256=
|
4
|
+
omnata_plugin_runtime/forms.py,sha256=85T2LVFHg3w2PPNi9ug9mOd3blkYB3ajhZhXaBHEXp8,15600
|
5
5
|
omnata_plugin_runtime/logging.py,sha256=ne1sLh5cBkjdRS54B30PGc5frABgjy0sF1_2RMcJ_Tk,3012
|
6
6
|
omnata_plugin_runtime/omnata_plugin.py,sha256=x4Vvd1a8FNNiQNiURFuhp8s7FIuJgX03xR5d_iNTxK0,74287
|
7
7
|
omnata_plugin_runtime/plugin_entrypoints.py,sha256=m1wrGf_uYxJNuv2N5r5QoyPWtor98bYGIBunocHWoIc,21652
|
8
8
|
omnata_plugin_runtime/rate_limiting.py,sha256=OnFnCdMenpMpAZYumpe6mypRnMmDl1Q02vzlgmQgiw0,10733
|
9
|
-
omnata_plugin_runtime-0.1.
|
10
|
-
omnata_plugin_runtime-0.1.
|
11
|
-
omnata_plugin_runtime-0.1.
|
12
|
-
omnata_plugin_runtime-0.1.
|
9
|
+
omnata_plugin_runtime-0.1.89.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
10
|
+
omnata_plugin_runtime-0.1.89.dist-info/METADATA,sha256=IP9fv2rD02MuH4d-kG7zZ0MmfIpUJ7UwM8nekqul4-I,1086
|
11
|
+
omnata_plugin_runtime-0.1.89.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
12
|
+
omnata_plugin_runtime-0.1.89.dist-info/RECORD,,
|
File without changes
|
File without changes
|