@infuro/cms-core 1.0.41 → 1.0.42

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.
package/README.md CHANGED
@@ -505,24 +505,11 @@ export function getDataSource(): DataSource {
505
505
  export default getDataSource();
506
506
  ```
507
507
 
508
- ## Core Entities
509
-
510
- | Entity | Table | Purpose |
511
- |--------|-------|---------|
512
- | `User` | `users` | Admin users with groups/permissions |
513
- | `UserGroup` | `user_groups` | Role-based groups |
514
- | `Permission` | `permissions` | Granular permissions |
515
- | `Blog` | `blogs` | Blog posts with slug, SEO, tags, categories |
516
- | `Category` | `categories` | Blog categories |
517
- | `Tag` | `tags` | Blog tags (many-to-many with blogs) |
518
- | `Comment` | `comments` | Blog comments |
519
- | `Contact` | `contacts` | Contact form submissions |
520
- | `Form` | `forms` | Dynamic forms |
521
- | `FormField` | `form_fields` | Form field definitions |
522
- | `FormSubmission` | `form_submissions` | Form submission data |
523
- | `Seo` | `seos` | SEO metadata |
524
- | `Config` | `configs` | Key-value configuration |
525
- | `PasswordResetToken` | `password_reset_tokens` | Password reset flow |
508
+ ## Domain model (SSOT)
509
+
510
+ The authoritative description of entities, catalog ownership (admin vs vendor), events, storefront, API scope, and feature flags lives in **[docs/SSOT.md](./docs/SSOT.md)**.
511
+
512
+ For a quick CMS-only orientation, the package still includes users, groups, permissions, blogs, tags, comments, contacts, forms, SEO, and configs — plus the full commerce / multi-vendor model documented in the SSOT (catalog taxonomy is `product_categories`).
526
513
 
527
514
  ## API Endpoints
528
515