omnata-plugin-runtime 0.3.18a59__py3-none-any.whl → 0.3.19a62__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 +6 -2
- {omnata_plugin_runtime-0.3.18a59.dist-info → omnata_plugin_runtime-0.3.19a62.dist-info}/METADATA +1 -1
- {omnata_plugin_runtime-0.3.18a59.dist-info → omnata_plugin_runtime-0.3.19a62.dist-info}/RECORD +5 -5
- {omnata_plugin_runtime-0.3.18a59.dist-info → omnata_plugin_runtime-0.3.19a62.dist-info}/LICENSE +0 -0
- {omnata_plugin_runtime-0.3.18a59.dist-info → omnata_plugin_runtime-0.3.19a62.dist-info}/WHEEL +0 -0
@@ -31,12 +31,13 @@ class SyncDirection(str, Enum):
|
|
31
31
|
class InboundStorageBehaviour(str, Enum):
|
32
32
|
APPEND = "append"
|
33
33
|
MERGE = "merge"
|
34
|
-
REPLACE = "replace"
|
34
|
+
REPLACE = "replace" # now deprecated, full refreshes now use merge
|
35
35
|
|
36
36
|
|
37
37
|
class InboundSyncStrategy(str, Enum):
|
38
38
|
FULL_REFRESH = "Full Refresh"
|
39
39
|
INCREMENTAL = "Incremental"
|
40
|
+
AUTO = "Auto" # not valid as an individual stream choice, only when referring to a forward preference (new_stream_sync_strategy)
|
40
41
|
|
41
42
|
|
42
43
|
class InboundSyncBulkConfiguration(str, Enum):
|
@@ -44,11 +45,14 @@ class InboundSyncBulkConfiguration(str, Enum):
|
|
44
45
|
Provides a way to apply a combination of sync strategy and storage behaviour to all selected streams.
|
45
46
|
These options will be reduce to the set of supported strategies. If there is no overlap, only CUSTOMIZE will be supported
|
46
47
|
"""
|
48
|
+
AUTO_MERGE = "Auto / Merge changes" # Merge
|
49
|
+
AUTO_APPEND = "Auto / Keep history" # Append
|
50
|
+
CUSTOMIZE = "Customize - choose sync behaviours for each object"
|
51
|
+
# These are legacy values, back when we used to let people bulk set the full combination
|
47
52
|
ALL_FULL_REPLACE = "All Objects - Full refresh / Replace"
|
48
53
|
ALL_FULL_APPEND = "All Objects - Full refresh / Append"
|
49
54
|
ALL_INCR_MERGE = "All Objects - Incremental / Merge"
|
50
55
|
ALL_INCR_APPEND = "All Objects - Incremental / Append"
|
51
|
-
CUSTOMIZE = "Customize - choose sync behaviours for each object"
|
52
56
|
|
53
57
|
|
54
58
|
ICON_URL_CODE = '<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 24 24"><path fill="currentColor" d="m8 18l-6-6l6-6l1.425 1.425l-4.6 4.6L9.4 16.6Zm8 0l-1.425-1.425l4.6-4.6L14.6 7.4L16 6l6 6Z"/></svg>'
|
{omnata_plugin_runtime-0.3.18a59.dist-info → omnata_plugin_runtime-0.3.19a62.dist-info}/RECORD
RENAMED
@@ -1,12 +1,12 @@
|
|
1
1
|
omnata_plugin_runtime/__init__.py,sha256=w63LVME5nY-hQ4BBzfacy9kvTunwqHGs8iiSPGAX2ns,1214
|
2
2
|
omnata_plugin_runtime/api.py,sha256=_N5ok5LN7GDO4J9n3yduXp3tpjmhpySY__U2baiygrs,6217
|
3
|
-
omnata_plugin_runtime/configuration.py,sha256=
|
3
|
+
omnata_plugin_runtime/configuration.py,sha256=AY_hHBd283VHx_rU9TzUol5VTzA6PHxxTltYWV7clCg,35113
|
4
4
|
omnata_plugin_runtime/forms.py,sha256=pw_aKVsXSz47EP8PFBI3VDwdSN5IjvZxp8JTjO1V130,18421
|
5
5
|
omnata_plugin_runtime/logging.py,sha256=bn7eKoNWvtuyTk7RTwBS9UARMtqkiICtgMtzq3KA2V0,3272
|
6
6
|
omnata_plugin_runtime/omnata_plugin.py,sha256=hygZU0EwuFmob-LAL57C_tj8Ft_OTQ81NoEZkEqHppc,99276
|
7
7
|
omnata_plugin_runtime/plugin_entrypoints.py,sha256=_XgmWsrHoSshkl5Z2T27BAGVnBh4yH-8lni5sdGlSz8,27670
|
8
8
|
omnata_plugin_runtime/rate_limiting.py,sha256=se6MftQI5NrVHaLb1hByPCgAESPQhkAgIG7KIU1clDU,16562
|
9
|
-
omnata_plugin_runtime-0.3.
|
10
|
-
omnata_plugin_runtime-0.3.
|
11
|
-
omnata_plugin_runtime-0.3.
|
12
|
-
omnata_plugin_runtime-0.3.
|
9
|
+
omnata_plugin_runtime-0.3.19a62.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
10
|
+
omnata_plugin_runtime-0.3.19a62.dist-info/METADATA,sha256=3XZaey5QxrU_8tdvPlXWi2OKJc3oIlyB-CUxn8bg05M,1604
|
11
|
+
omnata_plugin_runtime-0.3.19a62.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
12
|
+
omnata_plugin_runtime-0.3.19a62.dist-info/RECORD,,
|
{omnata_plugin_runtime-0.3.18a59.dist-info → omnata_plugin_runtime-0.3.19a62.dist-info}/LICENSE
RENAMED
File without changes
|
{omnata_plugin_runtime-0.3.18a59.dist-info → omnata_plugin_runtime-0.3.19a62.dist-info}/WHEEL
RENAMED
File without changes
|