@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 +5 -18
- package/dist/admin.cjs +903 -287
- package/dist/admin.d.cts +11 -1
- package/dist/admin.d.ts +11 -1
- package/dist/admin.js +903 -287
- package/dist/api.cjs +35 -35
- package/dist/api.js +3 -3
- package/dist/auth.cjs +51 -51
- package/dist/auth.js +3 -3
- package/dist/{chunk-UXMDSNIG.js → chunk-BLR6H5GL.js} +1 -1
- package/dist/{chunk-P7QCLE5W.js → chunk-DN65KDIA.js} +11 -1
- package/dist/{chunk-QU554KAZ.cjs → chunk-GINYYPXK.cjs} +796 -149
- package/dist/{chunk-4BG7XYSH.js → chunk-I6NH72MO.js} +1 -1
- package/dist/{chunk-ETZN4OQI.cjs → chunk-TAHX46EI.cjs} +6 -6
- package/dist/{chunk-EG4ICILK.js → chunk-W2NL365N.js} +745 -110
- package/dist/{chunk-WMXPKKXU.cjs → chunk-X6UQFV4X.cjs} +11 -1
- package/dist/{chunk-OIGCAGH7.cjs → chunk-ZMRQ72F6.cjs} +7 -7
- package/dist/index.cjs +290 -242
- package/dist/index.d.cts +110 -5
- package/dist/index.d.ts +110 -5
- package/dist/index.js +6 -6
- package/dist/migrations/1781300000000-BrandIsCatalog.ts +61 -0
- package/dist/migrations/1781400000000-ComboEventIdNullable.ts +30 -0
- package/dist/migrations/1781500000000-ProductApprovalWorkflow.ts +30 -0
- package/dist/migrations/1781600000000-ProductApprovalStatusColumn.ts +53 -0
- package/dist/migrations/1781700000000-EventApprovalWorkflow.ts +32 -0
- package/dist/{rbac-debug-db-QWHOENBR.js → rbac-debug-db-2SGNLANF.js} +1 -1
- package/dist/{rbac-debug-db-KHG4FJC3.cjs → rbac-debug-db-4Z6A425H.cjs} +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -505,24 +505,11 @@ export function getDataSource(): DataSource {
|
|
|
505
505
|
export default getDataSource();
|
|
506
506
|
```
|
|
507
507
|
|
|
508
|
-
##
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
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
|
|