@venizia/ignis-docs 0.0.4-0 → 0.0.4-2
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/package.json +1 -1
- package/wiki/best-practices/api-usage-examples.md +1 -0
- package/wiki/best-practices/code-style-standards/advanced-patterns.md +259 -0
- package/wiki/best-practices/code-style-standards/constants-configuration.md +225 -0
- package/wiki/best-practices/code-style-standards/control-flow.md +245 -0
- package/wiki/best-practices/code-style-standards/documentation.md +221 -0
- package/wiki/best-practices/code-style-standards/function-patterns.md +142 -0
- package/wiki/best-practices/code-style-standards/index.md +110 -0
- package/wiki/best-practices/code-style-standards/naming-conventions.md +174 -0
- package/wiki/best-practices/code-style-standards/route-definitions.md +150 -0
- package/wiki/best-practices/code-style-standards/tooling.md +155 -0
- package/wiki/best-practices/code-style-standards/type-safety.md +165 -0
- package/wiki/best-practices/common-pitfalls.md +164 -3
- package/wiki/best-practices/contribution-workflow.md +1 -1
- package/wiki/best-practices/data-modeling.md +102 -2
- package/wiki/best-practices/error-handling.md +468 -0
- package/wiki/best-practices/index.md +204 -21
- package/wiki/best-practices/performance-optimization.md +180 -0
- package/wiki/best-practices/security-guidelines.md +249 -0
- package/wiki/best-practices/testing-strategies.md +620 -0
- package/wiki/changelogs/2026-01-05-range-queries-content-range.md +184 -0
- package/wiki/changelogs/2026-01-06-basic-authentication.md +103 -0
- package/wiki/changelogs/2026-01-07-controller-route-customization.md +209 -0
- package/wiki/changelogs/index.md +3 -0
- package/wiki/guides/core-concepts/components-guide.md +1 -1
- package/wiki/guides/core-concepts/persistent/models.md +10 -0
- package/wiki/guides/tutorials/complete-installation.md +1 -1
- package/wiki/guides/tutorials/testing.md +1 -1
- package/wiki/references/base/bootstrapping.md +4 -3
- package/wiki/references/base/components.md +47 -29
- package/wiki/references/base/controllers.md +220 -24
- package/wiki/references/base/filter-system/fields-order-pagination.md +84 -0
- package/wiki/references/base/middlewares.md +37 -3
- package/wiki/references/base/models.md +40 -2
- package/wiki/references/base/providers.md +1 -2
- package/wiki/references/base/repositories/index.md +3 -1
- package/wiki/references/base/services.md +2 -2
- package/wiki/references/components/authentication.md +261 -247
- package/wiki/references/helpers/index.md +1 -1
- package/wiki/references/helpers/socket-io.md +1 -1
- package/wiki/references/quick-reference.md +2 -2
- package/wiki/references/src-details/core.md +1 -1
- package/wiki/references/utilities/statuses.md +4 -4
- package/wiki/best-practices/code-style-standards.md +0 -1193
|
@@ -119,4 +119,4 @@ socketClient.subscribe({
|
|
|
119
119
|
- [Socket.IO Redis Adapter](https://socket.io/docs/v4/redis-adapter/) - Scaling guide
|
|
120
120
|
|
|
121
121
|
- **Tutorials:**
|
|
122
|
-
- [Real-Time Chat Application](/guides/tutorials/
|
|
122
|
+
- [Real-Time Chat Application](/guides/tutorials/realtime-chat) - Socket.IO tutorial
|
|
@@ -630,5 +630,5 @@ class UserRepository extends DefaultCRUDRepository<User> {
|
|
|
630
630
|
- [Core Concepts](/guides/core-concepts/application/) - Architecture deep-dive
|
|
631
631
|
|
|
632
632
|
- **Best Practices:**
|
|
633
|
-
- [
|
|
634
|
-
- [Security Guidelines](/best-practices/security
|
|
633
|
+
- [Architectural Patterns](/best-practices/architectural-patterns)
|
|
634
|
+
- [Security Guidelines](/best-practices/security-guidelines)
|
|
@@ -146,7 +146,7 @@ Defines base classes and utilities for data models, often used with Drizzle ORM.
|
|
|
146
146
|
| `enrichers/id.enricher.ts` | Adds `id` column with number (serial) or string (UUID) types. |
|
|
147
147
|
| `enrichers/principal.enricher.ts` | Adds polymorphic fields for associating with different principal types. |
|
|
148
148
|
| `enrichers/tz.enricher.ts` | Adds `createdAt` and `modifiedAt` timestamp columns. |
|
|
149
|
-
| `enrichers/user-audit.enricher.ts` | Adds `createdBy` and `modifiedBy` fields.
|
|
149
|
+
| `enrichers/user-audit.enricher.ts` | Adds `createdBy` and `modifiedBy` fields. Supports `allowAnonymous` option to require or allow anonymous user context. |
|
|
150
150
|
|
|
151
151
|
#### `base/providers`
|
|
152
152
|
|
|
@@ -732,9 +732,9 @@ if (isTerminal) {
|
|
|
732
732
|
- [Services](../base/services.md) - Business logic with status transitions
|
|
733
733
|
|
|
734
734
|
- **Guides:**
|
|
735
|
-
- [Data Modeling](/guides/core-concepts/models
|
|
736
|
-
- [Working with Repositories](/guides/core-concepts/repositories
|
|
735
|
+
- [Data Modeling](/guides/core-concepts/persistent/models)
|
|
736
|
+
- [Working with Repositories](/guides/core-concepts/persistent/repositories)
|
|
737
737
|
|
|
738
738
|
- **Best Practices:**
|
|
739
|
-
- [
|
|
740
|
-
- [
|
|
739
|
+
- [Architectural Patterns](/best-practices/architectural-patterns)
|
|
740
|
+
- [Data Modeling Best Practices](/best-practices/data-modeling)
|