Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
508 changes: 508 additions & 0 deletions json_export_engine/README.rst

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions json_export_engine/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from . import controllers
from . import models
from . import tools
45 changes: 45 additions & 0 deletions json_export_engine/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Copyright 2026 KOBROS-TECH LTD (https://kobros-tech.com).
# @author Mohamed Alkobrosli <mohamed@kobros-tech.com>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "JSON Export Engine",
"summary": "Universal JSON schema builder, REST API, webhooks and scheduled exports",
"version": "16.0.1.0.0",
"category": "Tools",
"website": "https://github.com/OCA/server-tools",
"author": "kobros-tech, Odoo Community Association (OCA)",
"maintainers": ["kobros-tech"],
"license": "AGPL-3",
"development_status": "Alpha",
"external_dependencies": {
"python": ["requests"],
},
"depends": [
"base",
"web",
"jsonifier",
],
"data": [
"security/json_export_engine_security.xml",
"security/ir.model.access.csv",
"data/ir_cron.xml",
"views/json_export_schema_views.xml",
"views/json_export_endpoint_views.xml",
"views/json_export_webhook_views.xml",
"views/json_export_schedule_views.xml",
"views/json_export_log_views.xml",
"views/menu.xml",
],
"assets": {
"web.assets_backend": [
"json_export_engine/static/src/json_export_widget.xml",
"json_export_engine/static/src/json_export_widget.esm.js",
],
},
"demo": [
"demo/json_export_demo.xml",
"demo/ir.exports.line.csv",
],
"installable": True,
}
1 change: 1 addition & 0 deletions json_export_engine/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import main
Loading
Loading