diff --git a/src/data/constellation.ts b/src/data/constellation.ts index d6963f8..245b703 100644 --- a/src/data/constellation.ts +++ b/src/data/constellation.ts @@ -10,14 +10,6 @@ export interface RoleSkillMapping { } export const roleSkillMappings: RoleSkillMapping[] = [ - { - roleId: 'duty-pharmacist-2016', - skillIds: [ - 'medicines-optimisation', - 'team-development', - 'excel', - ], - }, { roleId: 'pharmacy-manager-2017', skillIds: [ @@ -86,17 +78,7 @@ export const roleSkillMappings: RoleSkillMapping[] = [ * Includes both role nodes and skill nodes. */ export const constellationNodes: ConstellationNode[] = [ - // Role nodes (6 roles) - { - id: 'duty-pharmacist-2016', - type: 'role', - label: 'Duty Pharmacy Manager', - shortLabel: 'Duty Mgr', - organization: 'Tesco PLC', - startYear: 2016, - endYear: 2017, - orgColor: '#00897B', - }, + // Role nodes (4 roles) { id: 'pharmacy-manager-2017', type: 'role', @@ -292,11 +274,6 @@ export const constellationNodes: ConstellationNode[] = [ * Strength values (0-1) indicate how central that skill was to the role. */ export const constellationLinks: ConstellationLink[] = [ - // Duty Pharmacist 2016 → Skills (foundation role) - { source: 'duty-pharmacist-2016', target: 'medicines-optimisation', strength: 0.9 }, - { source: 'duty-pharmacist-2016', target: 'team-development', strength: 0.6 }, - { source: 'duty-pharmacist-2016', target: 'excel', strength: 0.5 }, - // Pharmacy Manager 2017 → Skills (broad operational role) { source: 'pharmacy-manager-2017', target: 'medicines-optimisation', strength: 0.9 }, { source: 'pharmacy-manager-2017', target: 'team-development', strength: 0.8 }, diff --git a/src/data/consultations.ts b/src/data/consultations.ts index 4b262dd..661275e 100644 --- a/src/data/consultations.ts +++ b/src/data/consultations.ts @@ -109,25 +109,4 @@ export const consultations: Consultation[] = [ { code: 'LEA002', description: 'Leadership: Staff development to technician registration' }, ], }, - { - id: 'duty-pharmacist-2016', - date: '01 Aug 2016', - organization: 'Tesco PLC', - orgColor: '#00897B', - role: 'Duty Pharmacy Manager', - duration: 'Aug 2016 — Nov 2017', - isCurrent: false, - history: 'Commenced professional career as registered pharmacist following GPhC registration. Developed foundational skills in pharmacy operations, patient care, and team management within a high-volume community pharmacy setting.', - examination: [ - 'Progressed from newly registered pharmacist to Pharmacy Manager role', - 'Developed clinical and operational competencies in community pharmacy', - ], - plan: [ - 'GPhC registration obtained, beginning professional practice', - 'Foundation established for progression to management role', - ], - codedEntries: [ - { code: 'REG001', description: 'Registration: GPhC pharmacist qualification' }, - ], - }, ]