@apptimate/core-lib 6.2.0 → 6.3.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apptimate/core-lib",
3
- "version": "6.2.0",
3
+ "version": "6.3.0",
4
4
  "main": "src/index.ts",
5
5
  "types": "src/index.ts",
6
6
  "publishConfig": {
@@ -294,6 +294,8 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
294
294
  { key: 'construction__test_types', label: 'Test Types', path: '/construction/settings/test-types', module: 'Construction', defaultGroup: 'Configuration', permission: null },
295
295
  { key: 'construction__material_types', label: 'Material Types', path: '/construction/settings/material-types', module: 'Construction', defaultGroup: 'Configuration', permission: 'construction_material_type.view' },
296
296
  { key: 'construction__project_categories', label: 'Project Categories', path: '/construction/settings/project-categories', module: 'Construction', defaultGroup: 'Configuration', permission: 'project_category.view' },
297
+ { key: 'construction__daily_tasks', label: 'Daily Tasks', path: '/construction/settings/daily-tasks', module: 'Construction', defaultGroup: 'Configuration', permission: null },
298
+ { key: 'construction__incident_notifications', label: 'Incident Reminders', path: '/construction/settings/incident-notifications', module: 'Construction', defaultGroup: 'Configuration', permission: null },
297
299
  { key: 'construction__settings', label: 'Settings', path: '/construction/settings', module: 'Construction', defaultGroup: 'Configuration', permission: null },
298
300
 
299
301
  // ── CRM Module ──
@@ -538,6 +540,8 @@ export const MENU_PRESETS: MenuPreset[] = [
538
540
  'construction__project_categories',
539
541
  'construction__test_types',
540
542
  'construction__material_types',
543
+ 'construction__daily_tasks',
544
+ 'construction__incident_notifications',
541
545
  'construction__settings',
542
546
  ],
543
547
  },
@@ -630,6 +634,7 @@ const PROJECT_KEY_MAPPING: Record<string, string> = {
630
634
  'project_equipment_allocation': 'construction__equipment_allocation',
631
635
  'project_fuel_logs': 'construction__fuel_logs',
632
636
  'project_maintenance': 'construction__maintenance',
637
+ 'project_daily_tasks': 'construction__daily_tasks',
633
638
  };
634
639
 
635
640
  export const getProjectConstructionGroups = (projectId: string | number): MainMenuItem['groups'] => {