openbb-platform-api 1.3.1__tar.gz → 1.3.3__tar.gz

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 (16) hide show
  1. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/PKG-INFO +2 -2
  2. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/utils/widgets.py +0 -2
  3. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/pyproject.toml +2 -2
  4. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/README.md +0 -0
  5. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/__init__.py +0 -0
  6. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/assets/default_apps.json +0 -0
  7. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/assets/landing_page.html +0 -0
  8. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/main.py +0 -0
  9. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/query_models.py +0 -0
  10. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/response_models.py +0 -0
  11. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/utils/__init__.py +0 -0
  12. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/utils/api.py +0 -0
  13. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/utils/merge_agents.py +0 -0
  14. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/utils/merge_apps.py +0 -0
  15. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/utils/merge_widgets.py +0 -0
  16. {openbb_platform_api-1.3.1 → openbb_platform_api-1.3.3}/openbb_platform_api/utils/openapi.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openbb-platform-api
3
- Version: 1.3.1
3
+ Version: 1.3.3
4
4
  Summary: OpenBB Platform API: Launch script and widgets builder for the Open Data Platform REST API and Workspace Backend Connector.
5
5
  License: AGPL-3.0-only
6
6
  Author: OpenBB
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Programming Language :: Python :: 3.14
16
16
  Requires-Dist: deepdiff (>=8.6.1)
17
- Requires-Dist: openbb-core (>=1.6.1,<2.0.0)
17
+ Requires-Dist: openbb-core (>=1.6.3,<2.0.0)
18
18
  Project-URL: Documentation, https://docs.openbb.co/odp/python/extensions/interface/openbb-api
19
19
  Project-URL: Homepage, https://openbb.co
20
20
  Project-URL: Repository, https://github.com/openbb-finance/openbb
@@ -596,7 +596,6 @@ def build_json( # noqa: PLR0912 # pylint: disable=too-many-branches, too-many-
596
596
  "description": route_api[route_method].get("description", ""),
597
597
  "category": category.replace("_", " ").title(),
598
598
  "type": widget_type,
599
- "searchCategory": category.replace("_", " ").title(),
600
599
  "widgetId": f"{widget_id}_{provider}_obb",
601
600
  "mcp_tool": {
602
601
  "mcp_server": "Open Data Platform",
@@ -726,7 +725,6 @@ def build_json( # noqa: PLR0912 # pylint: disable=too-many-branches, too-many-
726
725
  "show": False,
727
726
  },
728
727
  )
729
- widget_config_chart["searchCategory"] = "chart"
730
728
  widget_config_chart["gridData"]["h"] = widget_config_dict.get(
731
729
  "gridData", {}
732
730
  ).get("h", 20)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "openbb-platform-api"
3
- version = "1.3.1"
3
+ version = "1.3.3"
4
4
  description = "OpenBB Platform API: Launch script and widgets builder for the Open Data Platform REST API and Workspace Backend Connector."
5
5
  authors = ["OpenBB <hello@openbb.co>"]
6
6
  license = "AGPL-3.0-only"
@@ -15,7 +15,7 @@ openbb-api = "openbb_platform_api.main:main"
15
15
 
16
16
  [tool.poetry.dependencies]
17
17
  python = ">=3.10,<4"
18
- openbb-core = "^1.6.1"
18
+ openbb-core = "^1.6.3"
19
19
  deepdiff = ">=8.6.1"
20
20
 
21
21
  [build-system]