Skip to content

Commit

Permalink
updated clinical focus; bumped to 0.2.24 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
bejoinka authored Oct 8, 2024
1 parent 185b3d6 commit a694b9a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@awell-health/sol-scheduling",
"version": "0.2.23",
"version": "0.2.24",
"packageManager": "[email protected]",
"repository": {
"type": "git",
Expand Down
32 changes: 16 additions & 16 deletions src/lib/api/schema/atoms/ClinicalFocus.schema.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
import { z } from 'zod';

export enum ClinicalFocus {
ADHD = 'ADHD',
Anxiety = 'Anxiety d/o',
Autism = 'Autism spectrum',
GenderDysphoria = 'Gender dysphoria',
Trauma = 'Trauma (including PTSD)',
Depression = 'Depressive d/o',
BipolarSpectrum = 'Bipolar spectrum',
AngerManagement = 'Anger management',
OCD = 'OCD',
PersonalityDO = 'Personality d/o',
SubstanceUse = 'Substance use',
EatingDisorder = 'Eating d/o',
Psychosis = 'Psychosis (e.g. schizophrenia)',
DissociativeDO = 'Dissociative d/o',
DevelopmentalDelal = 'Developmental delay',
TraumaticBrainInjury = 'Traumatic brain injury'
'ADHD' = 'ADHD',
'Anger Management' = 'Anger Management',
'Anxiety' = 'Anxiety',
'Autism (ASD)' = 'Autism (ASD)',
'Bipolar Disorder' = 'Bipolar Disorder',
'Depression' = 'Depression',
'Developmental Disorders' = 'Developmental Disorders',
'Eating Disorder' = 'Eating Disorder',
'Grief & Loss' = 'Grief & Loss',
'Identity Issues' = 'Identity Issues',
'Life Transitions' = 'Life Transitions',
'OCD' = 'OCD',
'Relationship Issues' = 'Relationship Issues',
'Stress Management' = 'Stress Management',
'Substance Use' = 'Substance Use',
'Trauma & PTSD' = 'Trauma & PTSD'
}

export const ClinicalFocusSchema = z.array(z.nativeEnum(ClinicalFocus));

0 comments on commit a694b9a

Please sign in to comment.