Remove functions.json files and stop generating them

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-07 19:20:19 +00:00
parent 7b0dc3963d
commit 00a49e4243
54 changed files with 1 additions and 6222 deletions

View File

@@ -1,100 +0,0 @@
{
"$schema": "https://metabuilder.dev/schemas/json-script.schema.json",
"schemaVersion": "2.2.0",
"package": "database_manager",
"description": "Database management functions for export, import, statistics, and operations",
"functions": [
{
"id": "db_get_statistics",
"name": "getStatistics",
"exported": true,
"description": "Retrieve database statistics including record counts for all entities",
"category": "statistics"
},
{
"id": "db_get_entity_count",
"name": "getEntityCount",
"exported": true,
"description": "Get record count for a specific entity",
"category": "statistics"
},
{
"id": "db_export_all",
"name": "exportDatabase",
"exported": true,
"description": "Export all database data to JSON format",
"category": "export"
},
{
"id": "db_export_entity",
"name": "exportEntity",
"exported": true,
"description": "Export a specific entity's data to JSON",
"category": "export"
},
{
"id": "db_import_all",
"name": "importDatabase",
"exported": true,
"description": "Import database data from JSON format",
"category": "import"
},
{
"id": "db_validate_import",
"name": "validateImportData",
"exported": true,
"description": "Validate import data before applying",
"category": "import"
},
{
"id": "db_initialize",
"name": "initializeDatabase",
"exported": true,
"description": "Initialize database with default schema and seed data",
"category": "operations"
},
{
"id": "db_clear",
"name": "clearDatabase",
"exported": true,
"description": "Clear all data from the database",
"category": "operations"
},
{
"id": "db_vacuum",
"name": "vacuumDatabase",
"exported": true,
"description": "Optimize database by reclaiming unused space",
"category": "operations"
},
{
"id": "db_get_entities",
"name": "getEntities",
"exported": true,
"description": "Get list of all database entities with metadata",
"category": "schema"
},
{
"id": "db_get_entity_schema",
"name": "getEntitySchema",
"exported": true,
"description": "Get schema definition for a specific entity",
"category": "schema"
}
],
"exports": {
"functions": [
"getStatistics",
"getEntityCount",
"exportDatabase",
"exportEntity",
"importDatabase",
"validateImportData",
"initializeDatabase",
"clearDatabase",
"vacuumDatabase",
"getEntities",
"getEntitySchema"
]
}
}