From 7e506877754926a46397505b4e5d877ad55140de Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Fri, 23 Jan 2026 19:32:08 +0000 Subject: [PATCH] feat(dbal): register email entities in master schema --- dbal/shared/api/schema/entities/entities.yaml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 dbal/shared/api/schema/entities/entities.yaml diff --git a/dbal/shared/api/schema/entities/entities.yaml b/dbal/shared/api/schema/entities/entities.yaml new file mode 100644 index 000000000..68cd6a565 --- /dev/null +++ b/dbal/shared/api/schema/entities/entities.yaml @@ -0,0 +1,37 @@ +# Master Entity Registry +# This file imports and registers all entity schemas from across the MetaBuilder platform +# Version: 1.0 +# Last Updated: Jan 23, 2026 + +entities: + # Core Entities + - $ref: './core/user.yaml' + - $ref: './core/session.yaml' + - $ref: './core/workflow.yaml' + - $ref: './core/package.yaml' + - $ref: './core/ui_page.yaml' + + # Access Control Entities + - $ref: './access/credential.yaml' + - $ref: './access/component_node.yaml' + - $ref: './access/page_config.yaml' + + # Package Entities + - $ref: './packages/forum.yaml' + - $ref: './packages/notification.yaml' + - $ref: './packages/audit_log.yaml' + - $ref: './packages/media.yaml' + - $ref: './packages/irc.yaml' + - $ref: './packages/streaming.yaml' + + # Email Client Package (New - Jan 23, 2026) + - $ref: './packages/email_client.yaml' + - $ref: './packages/email_folder.yaml' + - $ref: './packages/email_message.yaml' + - $ref: './packages/email_attachment.yaml' + + # Domain-Specific Entities + - $ref: './ecommerce/product.yaml' + - $ref: './gaming/game.yaml' + - $ref: './spotify_clone/artist.yaml' + - $ref: './youtube_clone/video.yaml'