stoobly-agent 0.29.1__py3-none-any.whl → 0.30.0__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.
Files changed (59) hide show
  1. stoobly_agent/__init__.py +1 -1
  2. stoobly_agent/app/api/configs_controller.py +5 -2
  3. stoobly_agent/app/cli/config_cli.py +64 -14
  4. stoobly_agent/app/cli/endpoint_cli.py +1 -1
  5. stoobly_agent/app/cli/helpers/endpoint_facade.py +1 -1
  6. stoobly_agent/app/cli/helpers/handle_config_update_service.py +44 -5
  7. stoobly_agent/app/cli/helpers/openapi_endpoint_adapter.py +19 -3
  8. stoobly_agent/app/cli/helpers/replay_facade.py +2 -2
  9. stoobly_agent/app/cli/intercept_cli.py +14 -5
  10. stoobly_agent/app/cli/request_cli.py +2 -2
  11. stoobly_agent/app/cli/scenario_cli.py +2 -2
  12. stoobly_agent/app/cli/types/endpoint.py +1 -1
  13. stoobly_agent/app/models/adapters/raw_http_request_adapter.py +1 -1
  14. stoobly_agent/app/models/adapters/raw_http_response_adapter.py +1 -1
  15. stoobly_agent/app/proxy/context.py +18 -0
  16. stoobly_agent/app/proxy/handle_mock_service.py +1 -1
  17. stoobly_agent/app/proxy/handle_replay_service.py +2 -1
  18. stoobly_agent/app/proxy/intercept_handler.py +14 -3
  19. stoobly_agent/app/proxy/intercept_settings.py +28 -21
  20. stoobly_agent/app/proxy/mitmproxy/request_facade.py +41 -35
  21. stoobly_agent/app/proxy/mitmproxy/response_facade.py +0 -11
  22. stoobly_agent/app/proxy/mock/context.py +4 -11
  23. stoobly_agent/app/proxy/record/context.py +4 -12
  24. stoobly_agent/app/proxy/record/join_request_service.py +1 -1
  25. stoobly_agent/app/proxy/replay/context.py +4 -11
  26. stoobly_agent/app/proxy/replay/replay_request_service.py +5 -5
  27. stoobly_agent/app/proxy/replay/rewrite_params_service.py +1 -1
  28. stoobly_agent/app/proxy/run.py +3 -0
  29. stoobly_agent/app/proxy/test/context.py +2 -2
  30. stoobly_agent/app/proxy/test/context_abc.py +1 -1
  31. stoobly_agent/app/proxy/test/matchers/custom.py +1 -1
  32. stoobly_agent/app/settings/rewrite_rule.py +13 -0
  33. stoobly_agent/app/settings/types/__init__.py +1 -6
  34. stoobly_agent/app/settings/types/proxy_settings.py +6 -0
  35. stoobly_agent/app/settings/url_rule.py +33 -0
  36. stoobly_agent/cli.py +4 -0
  37. stoobly_agent/config/constants/custom_headers.py +1 -1
  38. stoobly_agent/config/constants/env_vars.py +1 -0
  39. stoobly_agent/config/constants/lifecycle_hooks.py +2 -0
  40. stoobly_agent/config/schema.yml +7 -1
  41. stoobly_agent/lib/orm/request.py +8 -4
  42. stoobly_agent/public/18-es2015.46d337c47cb41abec8ad.js +1 -0
  43. stoobly_agent/public/18-es5.46d337c47cb41abec8ad.js +1 -0
  44. stoobly_agent/public/dashboard.agent-alpha-0.30.0.tar.gz +0 -0
  45. stoobly_agent/public/index.html +1 -1
  46. stoobly_agent/public/runtime-es2015.3a15c6ce90c8f8cce796.js +1 -0
  47. stoobly_agent/public/runtime-es5.3a15c6ce90c8f8cce796.js +1 -0
  48. stoobly_agent-0.30.0.dist-info/METADATA +26 -0
  49. {stoobly_agent-0.29.1.dist-info → stoobly_agent-0.30.0.dist-info}/RECORD +53 -51
  50. {stoobly_agent-0.29.1.dist-info → stoobly_agent-0.30.0.dist-info}/WHEEL +1 -1
  51. stoobly_agent/public/18-es2015.750ef954bde422debcb6.js +0 -1
  52. stoobly_agent/public/18-es5.750ef954bde422debcb6.js +0 -1
  53. stoobly_agent/public/dashboard.agent-alpha-0.29.0.tar.gz +0 -0
  54. stoobly_agent/public/runtime-es2015.b392473c492ce4cf1cb5.js +0 -1
  55. stoobly_agent/public/runtime-es5.b392473c492ce4cf1cb5.js +0 -1
  56. stoobly_agent-0.29.1.dist-info/METADATA +0 -26
  57. {stoobly_agent-0.29.1.dist-info → stoobly_agent-0.30.0.dist-info}/LICENSE +0 -0
  58. {stoobly_agent-0.29.1.dist-info → stoobly_agent-0.30.0.dist-info}/entry_points.txt +0 -0
  59. {stoobly_agent-0.29.1.dist-info → stoobly_agent-0.30.0.dist-info}/top_level.txt +0 -0
@@ -1,26 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: stoobly-agent
3
- Version: 0.29.1
4
- Summary: Client agent for Stoobly
5
- Home-page: https://github.com/Stoobly/stoobly-agent
6
- Author: Michael Yen
7
- Author-email: michael@stoobly.com
8
- License: MIT
9
- License-File: LICENSE
10
- Requires-Dist: click (<8.0.0,>=7.0.0)
11
- Requires-Dist: distro (<1.7.0,>=1.6.0)
12
- Requires-Dist: httptools (>=0.4.0)
13
- Requires-Dist: jmespath (>=1.0.0)
14
- Requires-Dist: mergedeep (<1.3.4,>=1.3.0)
15
- Requires-Dist: mitmproxy (<=8.1.0,>=8.0.0)
16
- Requires-Dist: openapi-core (>=0.17.0)
17
- Requires-Dist: orator (>=0.9.9)
18
- Requires-Dist: pyyaml (<=5.4.1,>=5.4)
19
- Requires-Dist: requests (<=2.25.1,>=2.25.0)
20
- Requires-Dist: tabulate (>=0.8.8)
21
- Requires-Dist: watchdog (<=2.1.3,>=2.1.0)
22
- Requires-Dist: yamale (<=4.0.2,>=4.0.0)
23
- Provides-Extra: test
24
- Requires-Dist: mock ; extra == 'test'
25
- Requires-Dist: pytest ; extra == 'test'
26
-