{ "$schema": "https://metabuilder.dev/schemas/json-script.schema.json", "schemaVersion": "2.2.0", "package": "ui_level2", "description": "Level 2 user dashboard layout, profile, and comments management functions", "functions": [ { "id": "layout_render", "name": "renderLayout", "exported": true, "description": "Render the main Level 2 layout component", "category": "ui", "luaScript": "layout.lua" }, { "id": "layout_tabs", "name": "renderTabs", "exported": true, "description": "Render tabs component with profile, comments, and chat sections", "category": "ui", "luaScript": "layout.lua" }, { "id": "profile_render", "name": "renderProfile", "exported": true, "description": "Render the profile panel", "category": "ui", "luaScript": "profile/render.lua" }, { "id": "profile_save", "name": "saveProfile", "exported": true, "description": "Save user profile changes", "category": "data", "luaScript": "profile/save_profile.lua" }, { "id": "comments_render", "name": "renderComments", "exported": true, "description": "Render the comments panel", "category": "ui", "luaScript": "comments/render.lua" }, { "id": "comments_list", "name": "listComments", "exported": true, "description": "List user comments", "category": "data", "luaScript": "comments/list.lua" }, { "id": "comments_post", "name": "postComment", "exported": true, "description": "Post a new comment", "category": "data", "luaScript": "comments/post_comment.lua" }, { "id": "comments_composer", "name": "renderComposer", "exported": true, "description": "Render the comment composer component", "category": "ui", "luaScript": "comments/composer.lua" } ], "exports": { "functions": [ "renderLayout", "renderTabs", "renderProfile", "saveProfile", "renderComments", "listComments", "postComment", "renderComposer" ] } }