Enhance NestJS application with SWC builder configuration, add @nestjs/devtools-integration for development support, and refactor various components for improved readability. Update package dependencies and streamline import statements across multiple files.

This commit is contained in:
2024-11-26 04:26:55 +07:00
parent c4e302387f
commit a1ca5c62fb
12 changed files with 1646 additions and 235 deletions

View File

@@ -1,10 +1,8 @@
export enum DocumentEvent {
CREATED = 'document_created',
CHANGED = 'document_changed',
DELETED = 'document_deleted',
SAVED = 'document_saved',
PAGE_CREATED = 'document_page_created',
PAGE_DELETED = 'document_page_deleted',
DOCUMENT_CREATED = 'document_created',
ACTIVE_DOCUMENT_ID_CHANGED = 'document_active_document_id_changed',
}