intuned-runtime 1.1.2__py3-none-any.whl → 1.1.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: intuned-runtime
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: Runtime commands for Intuned platform Python scrapers
5
5
  License: Elastic-2.0
6
6
  Keywords: runtime,intuned
@@ -85,15 +85,15 @@ runtime/run/__init__.py,sha256=zxMYVb7hn147YTrhMLsrcX6-KTd71HLrYHstJOWeWXQ,52
85
85
  runtime/run/intuned_settings.py,sha256=vy2-ktEzUfUp5Z90dp3l7jPKHNjgB-8GSMDgAY-rYaU,1074
86
86
  runtime/run/playwright_constructs.py,sha256=EIfnRlAi1k1wRiTT2OpPFVmrWwEeeiryuORibaLD1Xw,573
87
87
  runtime/run/pydantic_encoder.py,sha256=wJCljwwINSICvCJ0i2izp2RLkQ15nYglUQCyyjM40Jk,332
88
- runtime/run/run_api.py,sha256=iYekBi-mkBuBNvLIBXQ6RWvEDN7JhjSlX3i7a2td2P8,8952
88
+ runtime/run/run_api.py,sha256=vSf7kNmiUrmO4iXiqdLsZsNc0-vC8nm4r3HK2OAN0DY,8984
89
89
  runtime/run/traces.py,sha256=fKzh11LqV47ujgq_9I2tdp-dgld566wffWaHwU_4gis,1123
90
90
  runtime/types/__init__.py,sha256=IJkDfqsau8F8R_j8TO6j-JwW4ElQr6aU6LNaWRehg5U,401
91
91
  runtime/types/payload.py,sha256=sty8HgDEn3nJbZrwEOMCXyuG7_ICGDwlBIIWSON5ABY,124
92
92
  runtime/types/run_types.py,sha256=-j-XKXfRkzlyoW-Doe0og2jbqMMQWjOTIUqRFEc8lHA,4582
93
93
  runtime_helpers/__init__.py,sha256=XBrEiE9yNC8Lgn8NgIkqNXbI6e4ap237E83Zj_nlhCQ,249
94
94
  runtime_helpers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- intuned_runtime-1.1.2.dist-info/LICENSE,sha256=9LIjQdgyU_ptzNIfItNCR7VmEHqYnrY1f1XwOreKFI0,3714
96
- intuned_runtime-1.1.2.dist-info/METADATA,sha256=HP4J-g2b6h37GwRyjtMffGhuHNP1yQfJogzxfr_aiHc,5299
97
- intuned_runtime-1.1.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
98
- intuned_runtime-1.1.2.dist-info/entry_points.txt,sha256=ToMS2cqDeRmF1FGkflwoeD-Xz6jJV5p1zIbw9G7IxMg,85
99
- intuned_runtime-1.1.2.dist-info/RECORD,,
95
+ intuned_runtime-1.1.3.dist-info/LICENSE,sha256=9LIjQdgyU_ptzNIfItNCR7VmEHqYnrY1f1XwOreKFI0,3714
96
+ intuned_runtime-1.1.3.dist-info/METADATA,sha256=TKO1oRYe4tlBXONrqGiMOlcyYjIwx74ZdKwAoNlkh9g,5299
97
+ intuned_runtime-1.1.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
98
+ intuned_runtime-1.1.3.dist-info/entry_points.txt,sha256=ToMS2cqDeRmF1FGkflwoeD-Xz6jJV5p1zIbw9G7IxMg,85
99
+ intuned_runtime-1.1.3.dist-info/RECORD,,
runtime/run/run_api.py CHANGED
@@ -182,7 +182,7 @@ async def run_api(
182
182
  else:
183
183
  automation_result = await automation_coroutine_with_page(parameters.automation_function.params)
184
184
  try:
185
- json.dumps(automation_result, cls=PydanticEncoder)
185
+ automation_result = json.loads(json.dumps(automation_result, cls=PydanticEncoder))
186
186
  except TypeError as e:
187
187
  raise AutomationError(TypeError("Result is not JSON serializable")) from e
188
188