diff --git a/ROADMAP.md b/ROADMAP.md index 07722ca..ef49c0f 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,7 +1,7 @@ # 777 Wolfpack Grow Ops Manager - Complete Roadmap -**Version**: 0.2.0 -**Last Updated**: 2025-12-09 +**Version**: 0.3.0 +**Last Updated**: 2025-12-17 **Team**: 777 Wolfpack --- diff --git a/frontend/src/lib/documentsApi.ts b/frontend/src/lib/documentsApi.ts index 7cff225..5ebb804 100644 --- a/frontend/src/lib/documentsApi.ts +++ b/frontend/src/lib/documentsApi.ts @@ -1,6 +1,6 @@ import api from './api'; -export type DocumentType = 'SOP' | 'POLICY' | 'FORM' | 'CHECKLIST' | 'GUIDE' | 'OTHER'; +export type DocumentType = 'SOP' | 'POLICY' | 'FORM' | 'CHECKLIST' | 'GUIDE' | 'TRAINING' | 'OTHER'; export type DocumentStatus = 'DRAFT' | 'PENDING_APPROVAL' | 'APPROVED' | 'ARCHIVED'; export interface Document { diff --git a/frontend/src/pages/DocumentsPage.tsx b/frontend/src/pages/DocumentsPage.tsx index 2bcc1f4..9a82531 100644 --- a/frontend/src/pages/DocumentsPage.tsx +++ b/frontend/src/pages/DocumentsPage.tsx @@ -14,6 +14,7 @@ const TYPE_CONFIG: Record