port-ocean 0.28.19__py3-none-any.whl → 0.29.1__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.
- port_ocean/clients/port/authentication.py +19 -0
- port_ocean/clients/port/client.py +3 -0
- port_ocean/clients/port/mixins/actions.py +93 -0
- port_ocean/clients/port/mixins/blueprints.py +0 -12
- port_ocean/clients/port/mixins/integrations.py +5 -2
- port_ocean/config/settings.py +35 -3
- port_ocean/context/ocean.py +7 -5
- port_ocean/core/defaults/initialize.py +12 -5
- port_ocean/core/event_listener/__init__.py +7 -0
- port_ocean/core/event_listener/actions_only.py +42 -0
- port_ocean/core/event_listener/base.py +4 -1
- port_ocean/core/event_listener/factory.py +18 -9
- port_ocean/core/event_listener/http.py +4 -3
- port_ocean/core/event_listener/kafka.py +3 -2
- port_ocean/core/event_listener/once.py +5 -2
- port_ocean/core/event_listener/polling.py +4 -3
- port_ocean/core/event_listener/webhooks_only.py +3 -2
- port_ocean/core/handlers/actions/__init__.py +7 -0
- port_ocean/core/handlers/actions/abstract_executor.py +150 -0
- port_ocean/core/handlers/actions/execution_manager.py +434 -0
- port_ocean/core/handlers/webhook/abstract_webhook_processor.py +16 -0
- port_ocean/core/handlers/webhook/processor_manager.py +30 -12
- port_ocean/core/integrations/mixins/sync_raw.py +2 -2
- port_ocean/core/models.py +35 -2
- port_ocean/exceptions/execution_manager.py +22 -0
- port_ocean/ocean.py +30 -4
- port_ocean/tests/core/event_listener/test_kafka.py +14 -7
- port_ocean/tests/core/handlers/actions/test_execution_manager.py +837 -0
- port_ocean/tests/core/handlers/webhook/test_processor_manager.py +3 -1
- {port_ocean-0.28.19.dist-info → port_ocean-0.29.1.dist-info}/METADATA +3 -2
- {port_ocean-0.28.19.dist-info → port_ocean-0.29.1.dist-info}/RECORD +34 -27
- {port_ocean-0.28.19.dist-info → port_ocean-0.29.1.dist-info}/LICENSE.md +0 -0
- {port_ocean-0.28.19.dist-info → port_ocean-0.29.1.dist-info}/WHEEL +0 -0
- {port_ocean-0.28.19.dist-info → port_ocean-0.29.1.dist-info}/entry_points.txt +0 -0
|
@@ -348,6 +348,7 @@ async def test_extractMatchingProcessors_processorMatch(
|
|
|
348
348
|
assert len(processors) == 1
|
|
349
349
|
config, processor = processors[0]
|
|
350
350
|
assert isinstance(processor, MockProcessor)
|
|
351
|
+
assert config is not None
|
|
351
352
|
assert config.kind == "repository"
|
|
352
353
|
assert processor.event != webhook_event
|
|
353
354
|
assert processor.event.payload == webhook_event.payload
|
|
@@ -414,6 +415,7 @@ async def test_extractMatchingProcessors_onlyOneMatches(
|
|
|
414
415
|
assert len(processors) == 1
|
|
415
416
|
config, processor = processors[0]
|
|
416
417
|
assert isinstance(processor, MockProcessor)
|
|
418
|
+
assert config is not None
|
|
417
419
|
assert config.kind == "repository"
|
|
418
420
|
assert processor.event != webhook_event
|
|
419
421
|
assert processor.event.payload == webhook_event.payload
|
|
@@ -885,7 +887,7 @@ async def test_integrationTest_postRequestSent_noMatchingHandlers_entityNotUpser
|
|
|
885
887
|
|
|
886
888
|
async def patched_extract_matching_processors(
|
|
887
889
|
self: LiveEventsProcessorManager, event: WebhookEvent, path: str
|
|
888
|
-
) -> list[tuple[ResourceConfig, AbstractWebhookProcessor]]:
|
|
890
|
+
) -> list[tuple[ResourceConfig | None, AbstractWebhookProcessor]]:
|
|
889
891
|
try:
|
|
890
892
|
return await original_process_data(self, event, path)
|
|
891
893
|
except Exception as e:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: port-ocean
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.29.1
|
|
4
4
|
Summary: Port Ocean is a CLI tool for managing your Port projects.
|
|
5
5
|
Home-page: https://app.getport.io
|
|
6
6
|
Keywords: ocean,port-ocean,port
|
|
@@ -28,7 +28,7 @@ Requires-Dist: click (>=8.1.3,<9.0.0) ; extra == "cli"
|
|
|
28
28
|
Requires-Dist: confluent-kafka (>=2.10.1,<3.0.0)
|
|
29
29
|
Requires-Dist: cookiecutter (>=2.1.1,<3.0.0) ; extra == "cli"
|
|
30
30
|
Requires-Dist: cryptography (>=44.0.1,<45.0.0)
|
|
31
|
-
Requires-Dist: fastapi (>=0.
|
|
31
|
+
Requires-Dist: fastapi (>=0.121.0,<0.122.0)
|
|
32
32
|
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
|
33
33
|
Requires-Dist: ijson (>=3.4.0,<4.0.0)
|
|
34
34
|
Requires-Dist: jinja2 (>=3.1.6)
|
|
@@ -39,6 +39,7 @@ Requires-Dist: prometheus-client (>=0.21.1,<0.22.0)
|
|
|
39
39
|
Requires-Dist: pydantic[dotenv] (>=1.10.8,<2.0.0)
|
|
40
40
|
Requires-Dist: pydispatcher (>=2.0.7,<3.0.0)
|
|
41
41
|
Requires-Dist: pyhumps (>=3.8.0,<4.0.0)
|
|
42
|
+
Requires-Dist: pyjwt (>=2.10.1,<3.0.0)
|
|
42
43
|
Requires-Dist: pytest-cov (>=6.0.0,<7.0.0)
|
|
43
44
|
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
|
|
44
45
|
Requires-Dist: pyyaml (>=6.0,<7.0)
|
|
@@ -56,12 +56,13 @@ port_ocean/clients/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
56
56
|
port_ocean/clients/auth/auth_client.py,sha256=scxx7AYqvXoRAd8_K-Ww26oErzi5l8ZCGPc0sVKgIfA,192
|
|
57
57
|
port_ocean/clients/auth/oauth_client.py,sha256=FjexH-T3v4ssRWhkHtvHXhi1EH1Vxu8vwHp3HxqfYN8,795
|
|
58
58
|
port_ocean/clients/port/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
port_ocean/clients/port/authentication.py,sha256=
|
|
60
|
-
port_ocean/clients/port/client.py,sha256=
|
|
59
|
+
port_ocean/clients/port/authentication.py,sha256=KujhSGUQcrlvA54J9pJNpUxrdue-AwZwYy8U2cX5rZM,4219
|
|
60
|
+
port_ocean/clients/port/client.py,sha256=LHR6zKgCCCyhe3aPWH0kRFYS02BN-lIDZMPQbaz-iDg,3776
|
|
61
61
|
port_ocean/clients/port/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
port_ocean/clients/port/mixins/
|
|
62
|
+
port_ocean/clients/port/mixins/actions.py,sha256=dv720JjS8QNAtBBxuZb81cPR5cKRtnwKS6nvbEgVUuE,3482
|
|
63
|
+
port_ocean/clients/port/mixins/blueprints.py,sha256=iAKwguhDpUL-YLd7GRNjS-monVgOG8UyKJFOengO_zM,4291
|
|
63
64
|
port_ocean/clients/port/mixins/entities.py,sha256=UiVssYYqJeHhrLahx1mW24B7oGVMZV2WVvUze_htuBk,25279
|
|
64
|
-
port_ocean/clients/port/mixins/integrations.py,sha256=
|
|
65
|
+
port_ocean/clients/port/mixins/integrations.py,sha256=rzmfv3BfsBXX21VZrhZLsH5B5spvVBo6xIiXKxOwNvg,12236
|
|
65
66
|
port_ocean/clients/port/mixins/migrations.py,sha256=vdL_A_NNUogvzujyaRLIoZEu5vmKDY2BxTjoGP94YzI,1467
|
|
66
67
|
port_ocean/clients/port/mixins/organization.py,sha256=A2cP5V49KnjoAXxjmnm_XGth4ftPSU0qURNfnyUyS_Y,1041
|
|
67
68
|
port_ocean/clients/port/retry_transport.py,sha256=PtIZOAZ6V-ncpVysRUsPOgt8Sf01QLnTKB5YeKBxkJk,1861
|
|
@@ -70,28 +71,32 @@ port_ocean/clients/port/utils.py,sha256=osFyAjw7Y5Qf2uVSqC7_RTCQfijiL1zS74JJM0go
|
|
|
70
71
|
port_ocean/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
72
|
port_ocean/config/base.py,sha256=x1gFbzujrxn7EJudRT81C6eN9WsYAb3vOHwcpcpX8Tc,6370
|
|
72
73
|
port_ocean/config/dynamic.py,sha256=Lrk4JRGtR-0YKQ9DDGexX5NGFE7EJ6VoHya19YYhssM,2687
|
|
73
|
-
port_ocean/config/settings.py,sha256=
|
|
74
|
+
port_ocean/config/settings.py,sha256=EMS_RPVrQxtZKNevQ_9h6SmaMclAXPwIMNwI6204wvE,8840
|
|
74
75
|
port_ocean/consumers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
76
|
port_ocean/consumers/kafka_consumer.py,sha256=N8KocjBi9aR0BOPG8hgKovg-ns_ggpEjrSxqSqF_BSo,4710
|
|
76
77
|
port_ocean/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
78
|
port_ocean/context/event.py,sha256=z7DBNOPOL9P3s-SR8jpgwoyaQ6IL9vZxLaAxIjv1Faw,6493
|
|
78
79
|
port_ocean/context/metric_resource.py,sha256=_EbLRjv3r1y6E3B9mU10wuGg_oepD8zo3VueaJMeH6A,1689
|
|
79
|
-
port_ocean/context/ocean.py,sha256=
|
|
80
|
+
port_ocean/context/ocean.py,sha256=cz61xgSepHG9rJlS9MCb53YAHTOtf3iVRrpun6Q-ar4,8059
|
|
80
81
|
port_ocean/context/resource.py,sha256=WQlPzplxWic0hvvMxWKu8xPfQQC0VjrsJVeA6yZytw0,1712
|
|
81
82
|
port_ocean/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
83
|
port_ocean/core/defaults/__init__.py,sha256=8qCZg8n06WAdMu9s_FiRtDYLGPGHbOuS60vapeUoAks,142
|
|
83
84
|
port_ocean/core/defaults/clean.py,sha256=_rL-NCl6Q_x3lUxDW5ACOM27IYilTCWl6ISUfRleuL0,2891
|
|
84
85
|
port_ocean/core/defaults/common.py,sha256=FGB6sshNsU5tD1JLX1C__RiN7tJgQYZhUUxEQzK0sKE,4205
|
|
85
|
-
port_ocean/core/defaults/initialize.py,sha256=
|
|
86
|
-
port_ocean/core/event_listener/__init__.py,sha256=
|
|
87
|
-
port_ocean/core/event_listener/
|
|
88
|
-
port_ocean/core/event_listener/
|
|
89
|
-
port_ocean/core/event_listener/
|
|
90
|
-
port_ocean/core/event_listener/
|
|
91
|
-
port_ocean/core/event_listener/
|
|
92
|
-
port_ocean/core/event_listener/
|
|
93
|
-
port_ocean/core/event_listener/
|
|
86
|
+
port_ocean/core/defaults/initialize.py,sha256=KcWNoRu5Q8mzuVP-D6iQWfGtdp7T6yeOoZFPSrUmr2Q,11319
|
|
87
|
+
port_ocean/core/event_listener/__init__.py,sha256=ijqQ0GLcQHzISQFzC4LD3Sfv28NyaHkgohpY-AXlnZU,1374
|
|
88
|
+
port_ocean/core/event_listener/actions_only.py,sha256=9zDoWESJapn0ZuZ1-WWDd6VJdeP6P3dveALnrdW-FGA,1325
|
|
89
|
+
port_ocean/core/event_listener/base.py,sha256=WHrlR8GxJDjPB_YgxonJaZ4sUKWpM85SvPQVmXoWeZw,3139
|
|
90
|
+
port_ocean/core/event_listener/factory.py,sha256=N3268hU-RsnBRlNXqHUlpr1yQW3P3Z08HqFG-O6vsVs,4621
|
|
91
|
+
port_ocean/core/event_listener/http.py,sha256=GSRy1GXw6RdM8w7M63Bp8t3L2p_D8HSCEiqoGO38MIw,3060
|
|
92
|
+
port_ocean/core/event_listener/kafka.py,sha256=SNJJHup0BrcuUqYKINj6mMobdnxvx973ow2QeP3pdao,8033
|
|
93
|
+
port_ocean/core/event_listener/once.py,sha256=5aPFREPEzVPWmC6r_JzRAGLW2lNTcbjRVhpQFIsbPD0,6003
|
|
94
|
+
port_ocean/core/event_listener/polling.py,sha256=UmbbJqOJWWdX9dpWQNk0pVvS7aoAlIlc-B0GvbCxT_s,3672
|
|
95
|
+
port_ocean/core/event_listener/webhooks_only.py,sha256=No4nNR7fb4ZtivzCFWzpYq4cgx2Cvu66pi3vgq2qOEY,1319
|
|
94
96
|
port_ocean/core/handlers/__init__.py,sha256=d7ShmS90gLRzGKJA6oNy2Zs_dF2yjkmYZInRhBnO9Rw,572
|
|
97
|
+
port_ocean/core/handlers/actions/__init__.py,sha256=GNNfYb7C5cw5wPNVSFSmPENbvMZ1nXGhILWz04oasc4,223
|
|
98
|
+
port_ocean/core/handlers/actions/abstract_executor.py,sha256=4elvJuImKFO36D6fNJIgMho-bdPow-MBpMXSqtBvu2w,6189
|
|
99
|
+
port_ocean/core/handlers/actions/execution_manager.py,sha256=EaluFt_7znWB0KbQuTEV2WgUHsuE_SoAU7vZUsBN1Zs,17961
|
|
95
100
|
port_ocean/core/handlers/base.py,sha256=cTarblazu8yh8xz2FpB-dzDKuXxtoi143XJgPbV_DcM,157
|
|
96
101
|
port_ocean/core/handlers/entities_state_applier/__init__.py,sha256=kgLZDCeCEzi4r-0nzW9k78haOZNf6PX7mJOUr34A4c8,173
|
|
97
102
|
port_ocean/core/handlers/entities_state_applier/base.py,sha256=5wHL0icfFAYRPqk8iV_wN49GdJ3aRUtO8tumSxBi4Wo,2268
|
|
@@ -114,8 +119,8 @@ port_ocean/core/handlers/queue/local_queue.py,sha256=Y6qabDbrQ8aOPTN6Ct3lnMU7JnT
|
|
|
114
119
|
port_ocean/core/handlers/resync_state_updater/__init__.py,sha256=kG6y-JQGpPfuTHh912L_bctIDCzAK4DN-d00S7rguWU,81
|
|
115
120
|
port_ocean/core/handlers/resync_state_updater/updater.py,sha256=UWUwHX8-Sr6UxCjcpgInonM_2SbO2WWgawONtZJZQB8,3937
|
|
116
121
|
port_ocean/core/handlers/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
-
port_ocean/core/handlers/webhook/abstract_webhook_processor.py,sha256=
|
|
118
|
-
port_ocean/core/handlers/webhook/processor_manager.py,sha256=
|
|
122
|
+
port_ocean/core/handlers/webhook/abstract_webhook_processor.py,sha256=8oCYaJwr_b8HP-xS0oR1Zia0YYmwJT9vJ4fOvgDlvDY,4362
|
|
123
|
+
port_ocean/core/handlers/webhook/processor_manager.py,sha256=QAidsITckOuYGLMEGA3OAzS4hBNfPiWds5WHdYvQ2qc,13751
|
|
119
124
|
port_ocean/core/handlers/webhook/webhook_event.py,sha256=o-REML80GxN7jKonO-vlRnycN_8NAymbykQSUjVp5FI,3947
|
|
120
125
|
port_ocean/core/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
126
|
port_ocean/core/integrations/base.py,sha256=dUhytVM9uUbcDRzG1QWyvBvEJOWZY0dPVV3hXuukOfg,3587
|
|
@@ -124,9 +129,9 @@ port_ocean/core/integrations/mixins/events.py,sha256=2L7P3Jhp8XBqddh2_o9Cn4N261n
|
|
|
124
129
|
port_ocean/core/integrations/mixins/handler.py,sha256=mZ7-0UlG3LcrwJttFbMe-R4xcOU2H_g33tZar7PwTv8,3771
|
|
125
130
|
port_ocean/core/integrations/mixins/live_events.py,sha256=zM24dhNc7uHx9XYZ6toVhDADPA90EnpOmZxgDegFZbA,4196
|
|
126
131
|
port_ocean/core/integrations/mixins/sync.py,sha256=Vm_898pLKBwfVewtwouDWsXoxcOLicnAy6pzyqqk6U8,4053
|
|
127
|
-
port_ocean/core/integrations/mixins/sync_raw.py,sha256=
|
|
132
|
+
port_ocean/core/integrations/mixins/sync_raw.py,sha256=ed-f2t8Gb-Pjywhf8YxKBkQPAaYi23Mr81twINDYKQc,41054
|
|
128
133
|
port_ocean/core/integrations/mixins/utils.py,sha256=wdpQmapYEkKDqpnyyt_KLfu6Vrcbnk2pxrW8ikqNq8Q,14652
|
|
129
|
-
port_ocean/core/models.py,sha256=
|
|
134
|
+
port_ocean/core/models.py,sha256=sN7viTJbqEEy7j8VEgeffusML31cQWgzI7k8JP64Mbg,3769
|
|
130
135
|
port_ocean/core/ocean_types.py,sha256=bkLlTd8XfJK6_JDl0eXUHfE_NygqgiInSMwJ4YJH01Q,1399
|
|
131
136
|
port_ocean/core/utils/entity_topological_sorter.py,sha256=MDUjM6OuDy4Xj68o-7InNN0w1jqjxeDfeY8U02vySNI,3081
|
|
132
137
|
port_ocean/core/utils/utils.py,sha256=6ySxua6JgVxcjESPL5MScdkpaUj5XR9srorGHHb0B2o,7157
|
|
@@ -137,6 +142,7 @@ port_ocean/exceptions/base.py,sha256=uY4DX7fIITDFfemCJDWpaZi3bD51lcANc5swpoNvMJA
|
|
|
137
142
|
port_ocean/exceptions/clients.py,sha256=LKLLs-Zy3caNG85rwxfOw2rMr8qqVV6SHUq4fRCZ99U,180
|
|
138
143
|
port_ocean/exceptions/context.py,sha256=mA8HII6Rl4QxKUz98ppy1zX3kaziaen21h1ZWuU3ADc,372
|
|
139
144
|
port_ocean/exceptions/core.py,sha256=3LpQrOWdZ-xZ8zm90DmTnFnk0Nms2OgrVIzZBK0Xw5M,931
|
|
145
|
+
port_ocean/exceptions/execution_manager.py,sha256=1IALgXZaWOg5CgyEw1g14AQnr6QO5PKSKrh48JAzXEc,506
|
|
140
146
|
port_ocean/exceptions/port_defaults.py,sha256=2a7Koy541KxMan33mU-gbauUxsumG3NT4itVxSpQqfw,666
|
|
141
147
|
port_ocean/exceptions/utils.py,sha256=gjOqpi-HpY1l4WlMFsGA9yzhxDhajhoGGdDDyGbLnqI,197
|
|
142
148
|
port_ocean/exceptions/webhook_processor.py,sha256=4SnkVzVwiacH_Ip4qs1hRHa6GanhnojW_TLTdQQtm7Y,363
|
|
@@ -151,7 +157,7 @@ port_ocean/log/handlers.py,sha256=LJ1WAfq7wYCrBpeLPihMKmWjdSahKKXNHFMRYkbk0Co,36
|
|
|
151
157
|
port_ocean/log/logger_setup.py,sha256=wcr5WOkYRtng4pW6ZRl4Av3GqtZ2omSWIqYhB_8Duuc,2700
|
|
152
158
|
port_ocean/log/sensetive.py,sha256=lVKiZH6b7TkrZAMmhEJRhcl67HNM94e56x12DwFgCQk,2920
|
|
153
159
|
port_ocean/middlewares.py,sha256=9wYCdyzRZGK1vjEJ28FY_DkfwDNENmXp504UKPf5NaQ,2727
|
|
154
|
-
port_ocean/ocean.py,sha256=
|
|
160
|
+
port_ocean/ocean.py,sha256=4KRqRZdeaZ4tGLRglZ3eFKWz-aE_Rqs3-iz5EQvHN2o,10858
|
|
155
161
|
port_ocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
162
|
port_ocean/run.py,sha256=CmKz14bxfdOooNbQ5QqH1MwX-XLYVG4NgT4KbrzFaqI,2216
|
|
157
163
|
port_ocean/sonar-project.properties,sha256=X_wLzDOkEVmpGLRMb2fg9Rb0DxWwUFSvESId8qpvrPI,73
|
|
@@ -169,7 +175,8 @@ port_ocean/tests/config/test_config.py,sha256=Rk4N-ldVSOfn1p23NzdVdfqUpPrqG2cMut
|
|
|
169
175
|
port_ocean/tests/conftest.py,sha256=JXASSS0IY0nnR6bxBflhzxS25kf4iNaABmThyZ0mZt8,101
|
|
170
176
|
port_ocean/tests/core/conftest.py,sha256=0Oql7R1iTbjPyNdUoO6M21IKknLwnCIgDRz2JQ7nf0w,7748
|
|
171
177
|
port_ocean/tests/core/defaults/test_common.py,sha256=sR7RqB3ZYV6Xn6NIg-c8k5K6JcGsYZ2SCe_PYX5vLYM,5560
|
|
172
|
-
port_ocean/tests/core/event_listener/test_kafka.py,sha256=
|
|
178
|
+
port_ocean/tests/core/event_listener/test_kafka.py,sha256=RN_JOCy4aRDUNvyQocO6WFvUMH2XeAZy-PIWHOYnD9M,2888
|
|
179
|
+
port_ocean/tests/core/handlers/actions/test_execution_manager.py,sha256=nIS2WwZzxmM3QOr75IfNEfNRhy453eaViLpdbN9wPic,30931
|
|
173
180
|
port_ocean/tests/core/handlers/entities_state_applier/test_applier.py,sha256=7XWgwUB9uVYRov4VbIz1A-7n2YLbHTTYT-4rKJxjB0A,10711
|
|
174
181
|
port_ocean/tests/core/handlers/entity_processor/test_jq_entity_processor.py,sha256=7TpqaWcOYLb25SL7e282DmwryCUBllwi387dGHhCMqI,58493
|
|
175
182
|
port_ocean/tests/core/handlers/entity_processor/test_jq_input_evaluator.py,sha256=rCXen2k77BnA-p2E6ga2P3Tqo0SU5tQuMYKhB1v92d8,42076
|
|
@@ -180,7 +187,7 @@ port_ocean/tests/core/handlers/port_app_config/test_base.py,sha256=hSh556bJM9zuE
|
|
|
180
187
|
port_ocean/tests/core/handlers/queue/test_group_queue.py,sha256=Y1BrQi5xwhk5bYDlKRWw9PenF5cqxIF2TIU_hldqji0,22801
|
|
181
188
|
port_ocean/tests/core/handlers/queue/test_local_queue.py,sha256=9Ly0HzZXbs6Rbl_bstsIdInC3h2bgABU3roP9S_PnJM,2582
|
|
182
189
|
port_ocean/tests/core/handlers/webhook/test_abstract_webhook_processor.py,sha256=zKwHhPAYEZoZ5Z2UETp1t--mbkS8uyvlXThB0obZTTc,3340
|
|
183
|
-
port_ocean/tests/core/handlers/webhook/test_processor_manager.py,sha256=
|
|
190
|
+
port_ocean/tests/core/handlers/webhook/test_processor_manager.py,sha256=wKzKO79HByqtLcKoYUQ6PjZ-VZAUT1TwdZXyH9NchfY,52365
|
|
184
191
|
port_ocean/tests/core/handlers/webhook/test_webhook_event.py,sha256=oR4dEHLO65mp6rkfNfszZcfFoRZlB8ZWee4XetmsuIk,3181
|
|
185
192
|
port_ocean/tests/core/test_utils.py,sha256=Z3kdhb5V7Svhcyy3EansdTpgHL36TL6erNtU-OPwAcI,2647
|
|
186
193
|
port_ocean/tests/core/utils/test_entity_topological_sorter.py,sha256=zuq5WSPy_88PemG3mOUIHTxWMR_js1R7tOzUYlgBd68,3447
|
|
@@ -211,8 +218,8 @@ port_ocean/utils/repeat.py,sha256=U2OeCkHPWXmRTVoPV-VcJRlQhcYqPWI5NfmPlb1JIbc,32
|
|
|
211
218
|
port_ocean/utils/signal.py,sha256=J1sI-e_32VHP_VUa5bskLMFoJjJOAk5isrnewKDikUI,2125
|
|
212
219
|
port_ocean/utils/time.py,sha256=pufAOH5ZQI7gXvOvJoQXZXZJV-Dqktoj9Qp9eiRwmJ4,1939
|
|
213
220
|
port_ocean/version.py,sha256=UsuJdvdQlazzKGD3Hd5-U7N69STh8Dq9ggJzQFnu9fU,177
|
|
214
|
-
port_ocean-0.
|
|
215
|
-
port_ocean-0.
|
|
216
|
-
port_ocean-0.
|
|
217
|
-
port_ocean-0.
|
|
218
|
-
port_ocean-0.
|
|
221
|
+
port_ocean-0.29.1.dist-info/LICENSE.md,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
222
|
+
port_ocean-0.29.1.dist-info/METADATA,sha256=pZ1Hd7JTxx20S_pqkBh80onOOOgphI2uoxYnEku0z9Y,7054
|
|
223
|
+
port_ocean-0.29.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
224
|
+
port_ocean-0.29.1.dist-info/entry_points.txt,sha256=F_DNUmGZU2Kme-8NsWM5LLE8piGMafYZygRYhOVtcjA,54
|
|
225
|
+
port_ocean-0.29.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|