-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated clinical focus; bumped to 0.2.24 (#41)
- Loading branch information
Showing
2 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)); |