counseling-schema 0.1.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/dist/appointment.schema.d.ts +144 -0
- package/dist/appointment.schema.d.ts.map +1 -0
- package/dist/appointment.schema.js +42 -0
- package/dist/appointment.schema.js.map +1 -0
- package/dist/chat.schema.d.ts +24 -0
- package/dist/chat.schema.d.ts.map +1 -0
- package/dist/chat.schema.js +22 -0
- package/dist/chat.schema.js.map +1 -0
- package/dist/clinic-profile.schema.d.ts +346 -0
- package/dist/clinic-profile.schema.d.ts.map +1 -0
- package/dist/clinic-profile.schema.js +64 -0
- package/dist/clinic-profile.schema.js.map +1 -0
- package/dist/counselor-profile.schema.d.ts +326 -0
- package/dist/counselor-profile.schema.d.ts.map +1 -0
- package/dist/counselor-profile.schema.js +56 -0
- package/dist/counselor-profile.schema.js.map +1 -0
- package/dist/enquiry.schema.d.ts +40 -0
- package/dist/enquiry.schema.d.ts.map +1 -0
- package/dist/enquiry.schema.js +21 -0
- package/dist/enquiry.schema.js.map +1 -0
- package/dist/enums.d.ts +52 -0
- package/dist/enums.d.ts.map +1 -0
- package/dist/enums.js +131 -0
- package/dist/enums.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -0
- package/dist/review.schema.d.ts +34 -0
- package/dist/review.schema.d.ts.map +1 -0
- package/dist/review.schema.js +18 -0
- package/dist/review.schema.js.map +1 -0
- package/dist/search.schema.d.ts +149 -0
- package/dist/search.schema.d.ts.map +1 -0
- package/dist/search.schema.js +33 -0
- package/dist/search.schema.js.map +1 -0
- package/dist/specializations.d.ts +33 -0
- package/dist/specializations.d.ts.map +1 -0
- package/dist/specializations.js +163 -0
- package/dist/specializations.js.map +1 -0
- package/dist/subscription.schema.d.ts +10 -0
- package/dist/subscription.schema.d.ts.map +1 -0
- package/dist/subscription.schema.js +7 -0
- package/dist/subscription.schema.js.map +1 -0
- package/package.json +34 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
/** Top-level counseling categories. */
|
|
2
|
+
export const COUNSELING_CATEGORY = [
|
|
3
|
+
"mental_health",
|
|
4
|
+
"neurodiversity",
|
|
5
|
+
"relationship",
|
|
6
|
+
"family",
|
|
7
|
+
"career",
|
|
8
|
+
"child_adolescent",
|
|
9
|
+
"addiction",
|
|
10
|
+
"sexual_health",
|
|
11
|
+
"trauma",
|
|
12
|
+
"wellness",
|
|
13
|
+
"corporate",
|
|
14
|
+
"legal",
|
|
15
|
+
];
|
|
16
|
+
/** Mental health issues. */
|
|
17
|
+
export const MENTAL_HEALTH_ISSUES = [
|
|
18
|
+
"anxiety",
|
|
19
|
+
"depression",
|
|
20
|
+
"stress",
|
|
21
|
+
"ocd",
|
|
22
|
+
"ptsd",
|
|
23
|
+
"bipolar",
|
|
24
|
+
"schizophrenia",
|
|
25
|
+
"grief",
|
|
26
|
+
"anger_management",
|
|
27
|
+
"panic_disorder",
|
|
28
|
+
"phobias",
|
|
29
|
+
"eating_disorders",
|
|
30
|
+
];
|
|
31
|
+
/** Neurodiversity issues. */
|
|
32
|
+
export const NEURODIVERSITY_ISSUES = [
|
|
33
|
+
"adhd",
|
|
34
|
+
"autism_asd",
|
|
35
|
+
"dyslexia",
|
|
36
|
+
"sensory_processing",
|
|
37
|
+
"giftedness",
|
|
38
|
+
"tourettes",
|
|
39
|
+
"dyscalculia",
|
|
40
|
+
"learning_disabilities",
|
|
41
|
+
];
|
|
42
|
+
/** Relationship issues. */
|
|
43
|
+
export const RELATIONSHIP_ISSUES = [
|
|
44
|
+
"marriage_counseling",
|
|
45
|
+
"couple_therapy",
|
|
46
|
+
"pre_marital",
|
|
47
|
+
"divorce_separation",
|
|
48
|
+
"infidelity",
|
|
49
|
+
"communication_issues",
|
|
50
|
+
"long_distance",
|
|
51
|
+
];
|
|
52
|
+
/** Family issues. */
|
|
53
|
+
export const FAMILY_ISSUES = [
|
|
54
|
+
"parenting",
|
|
55
|
+
"co_parenting",
|
|
56
|
+
"family_conflict",
|
|
57
|
+
"blended_families",
|
|
58
|
+
"elder_care_stress",
|
|
59
|
+
"sibling_issues",
|
|
60
|
+
"adoption",
|
|
61
|
+
];
|
|
62
|
+
/** Career issues. */
|
|
63
|
+
export const CAREER_ISSUES = [
|
|
64
|
+
"career_change",
|
|
65
|
+
"job_stress",
|
|
66
|
+
"burnout",
|
|
67
|
+
"work_life_balance",
|
|
68
|
+
"interview_anxiety",
|
|
69
|
+
"leadership_coaching",
|
|
70
|
+
"workplace_conflict",
|
|
71
|
+
];
|
|
72
|
+
/** Child & adolescent issues. */
|
|
73
|
+
export const CHILD_ADOLESCENT_ISSUES = [
|
|
74
|
+
"behavioral_issues",
|
|
75
|
+
"school_anxiety",
|
|
76
|
+
"bullying",
|
|
77
|
+
"teen_depression",
|
|
78
|
+
"identity_issues",
|
|
79
|
+
"academic_pressure",
|
|
80
|
+
"screen_addiction",
|
|
81
|
+
];
|
|
82
|
+
/** Addiction issues. */
|
|
83
|
+
export const ADDICTION_ISSUES = [
|
|
84
|
+
"substance_abuse",
|
|
85
|
+
"alcohol",
|
|
86
|
+
"gambling",
|
|
87
|
+
"internet_gaming",
|
|
88
|
+
"smoking",
|
|
89
|
+
"pornography",
|
|
90
|
+
"shopping",
|
|
91
|
+
];
|
|
92
|
+
/** Sexual health issues. */
|
|
93
|
+
export const SEXUAL_HEALTH_ISSUES = [
|
|
94
|
+
"sexual_dysfunction",
|
|
95
|
+
"gender_identity",
|
|
96
|
+
"lgbtq_support",
|
|
97
|
+
"intimacy_issues",
|
|
98
|
+
];
|
|
99
|
+
/** Trauma issues. */
|
|
100
|
+
export const TRAUMA_ISSUES = [
|
|
101
|
+
"abuse_survivors",
|
|
102
|
+
"domestic_violence",
|
|
103
|
+
"childhood_trauma",
|
|
104
|
+
"accident_recovery",
|
|
105
|
+
"war_conflict",
|
|
106
|
+
"natural_disaster",
|
|
107
|
+
];
|
|
108
|
+
/** Wellness issues. */
|
|
109
|
+
export const WELLNESS_ISSUES = [
|
|
110
|
+
"stress_management",
|
|
111
|
+
"mindfulness",
|
|
112
|
+
"sleep_issues",
|
|
113
|
+
"self_esteem",
|
|
114
|
+
"life_transitions",
|
|
115
|
+
"expat_adjustment",
|
|
116
|
+
"retirement",
|
|
117
|
+
];
|
|
118
|
+
/** Corporate issues. */
|
|
119
|
+
export const CORPORATE_ISSUES = [
|
|
120
|
+
"eap_counseling",
|
|
121
|
+
"executive_coaching",
|
|
122
|
+
"team_dynamics",
|
|
123
|
+
"harassment",
|
|
124
|
+
"diversity_inclusion",
|
|
125
|
+
];
|
|
126
|
+
/** Legal counseling issues. */
|
|
127
|
+
export const LEGAL_ISSUES = [
|
|
128
|
+
"pre_litigation_counseling",
|
|
129
|
+
"mediation",
|
|
130
|
+
"custody_counseling",
|
|
131
|
+
"victim_advocacy",
|
|
132
|
+
];
|
|
133
|
+
/** Union of all issues across all categories. */
|
|
134
|
+
export const ALL_ISSUES = [
|
|
135
|
+
...MENTAL_HEALTH_ISSUES,
|
|
136
|
+
...NEURODIVERSITY_ISSUES,
|
|
137
|
+
...RELATIONSHIP_ISSUES,
|
|
138
|
+
...FAMILY_ISSUES,
|
|
139
|
+
...CAREER_ISSUES,
|
|
140
|
+
...CHILD_ADOLESCENT_ISSUES,
|
|
141
|
+
...ADDICTION_ISSUES,
|
|
142
|
+
...SEXUAL_HEALTH_ISSUES,
|
|
143
|
+
...TRAUMA_ISSUES,
|
|
144
|
+
...WELLNESS_ISSUES,
|
|
145
|
+
...CORPORATE_ISSUES,
|
|
146
|
+
...LEGAL_ISSUES,
|
|
147
|
+
];
|
|
148
|
+
/** Category → issues mapping for dynamic UI filtering. */
|
|
149
|
+
export const ISSUE_CATALOG = {
|
|
150
|
+
mental_health: MENTAL_HEALTH_ISSUES,
|
|
151
|
+
neurodiversity: NEURODIVERSITY_ISSUES,
|
|
152
|
+
relationship: RELATIONSHIP_ISSUES,
|
|
153
|
+
family: FAMILY_ISSUES,
|
|
154
|
+
career: CAREER_ISSUES,
|
|
155
|
+
child_adolescent: CHILD_ADOLESCENT_ISSUES,
|
|
156
|
+
addiction: ADDICTION_ISSUES,
|
|
157
|
+
sexual_health: SEXUAL_HEALTH_ISSUES,
|
|
158
|
+
trauma: TRAUMA_ISSUES,
|
|
159
|
+
wellness: WELLNESS_ISSUES,
|
|
160
|
+
corporate: CORPORATE_ISSUES,
|
|
161
|
+
legal: LEGAL_ISSUES,
|
|
162
|
+
};
|
|
163
|
+
//# sourceMappingURL=specializations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"specializations.js","sourceRoot":"","sources":["../src/specializations.ts"],"names":[],"mappings":"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","sourcesContent":["/** Top-level counseling categories. */\nexport const COUNSELING_CATEGORY = [\n \"mental_health\",\n \"neurodiversity\",\n \"relationship\",\n \"family\",\n \"career\",\n \"child_adolescent\",\n \"addiction\",\n \"sexual_health\",\n \"trauma\",\n \"wellness\",\n \"corporate\",\n \"legal\",\n] as const;\nexport type CounselingCategory = (typeof COUNSELING_CATEGORY)[number];\n\n/** Mental health issues. */\nexport const MENTAL_HEALTH_ISSUES = [\n \"anxiety\",\n \"depression\",\n \"stress\",\n \"ocd\",\n \"ptsd\",\n \"bipolar\",\n \"schizophrenia\",\n \"grief\",\n \"anger_management\",\n \"panic_disorder\",\n \"phobias\",\n \"eating_disorders\",\n] as const;\n\n/** Neurodiversity issues. */\nexport const NEURODIVERSITY_ISSUES = [\n \"adhd\",\n \"autism_asd\",\n \"dyslexia\",\n \"sensory_processing\",\n \"giftedness\",\n \"tourettes\",\n \"dyscalculia\",\n \"learning_disabilities\",\n] as const;\n\n/** Relationship issues. */\nexport const RELATIONSHIP_ISSUES = [\n \"marriage_counseling\",\n \"couple_therapy\",\n \"pre_marital\",\n \"divorce_separation\",\n \"infidelity\",\n \"communication_issues\",\n \"long_distance\",\n] as const;\n\n/** Family issues. */\nexport const FAMILY_ISSUES = [\n \"parenting\",\n \"co_parenting\",\n \"family_conflict\",\n \"blended_families\",\n \"elder_care_stress\",\n \"sibling_issues\",\n \"adoption\",\n] as const;\n\n/** Career issues. */\nexport const CAREER_ISSUES = [\n \"career_change\",\n \"job_stress\",\n \"burnout\",\n \"work_life_balance\",\n \"interview_anxiety\",\n \"leadership_coaching\",\n \"workplace_conflict\",\n] as const;\n\n/** Child & adolescent issues. */\nexport const CHILD_ADOLESCENT_ISSUES = [\n \"behavioral_issues\",\n \"school_anxiety\",\n \"bullying\",\n \"teen_depression\",\n \"identity_issues\",\n \"academic_pressure\",\n \"screen_addiction\",\n] as const;\n\n/** Addiction issues. */\nexport const ADDICTION_ISSUES = [\n \"substance_abuse\",\n \"alcohol\",\n \"gambling\",\n \"internet_gaming\",\n \"smoking\",\n \"pornography\",\n \"shopping\",\n] as const;\n\n/** Sexual health issues. */\nexport const SEXUAL_HEALTH_ISSUES = [\n \"sexual_dysfunction\",\n \"gender_identity\",\n \"lgbtq_support\",\n \"intimacy_issues\",\n] as const;\n\n/** Trauma issues. */\nexport const TRAUMA_ISSUES = [\n \"abuse_survivors\",\n \"domestic_violence\",\n \"childhood_trauma\",\n \"accident_recovery\",\n \"war_conflict\",\n \"natural_disaster\",\n] as const;\n\n/** Wellness issues. */\nexport const WELLNESS_ISSUES = [\n \"stress_management\",\n \"mindfulness\",\n \"sleep_issues\",\n \"self_esteem\",\n \"life_transitions\",\n \"expat_adjustment\",\n \"retirement\",\n] as const;\n\n/** Corporate issues. */\nexport const CORPORATE_ISSUES = [\n \"eap_counseling\",\n \"executive_coaching\",\n \"team_dynamics\",\n \"harassment\",\n \"diversity_inclusion\",\n] as const;\n\n/** Legal counseling issues. */\nexport const LEGAL_ISSUES = [\n \"pre_litigation_counseling\",\n \"mediation\",\n \"custody_counseling\",\n \"victim_advocacy\",\n] as const;\n\n/** Union of all issues across all categories. */\nexport const ALL_ISSUES = [\n ...MENTAL_HEALTH_ISSUES,\n ...NEURODIVERSITY_ISSUES,\n ...RELATIONSHIP_ISSUES,\n ...FAMILY_ISSUES,\n ...CAREER_ISSUES,\n ...CHILD_ADOLESCENT_ISSUES,\n ...ADDICTION_ISSUES,\n ...SEXUAL_HEALTH_ISSUES,\n ...TRAUMA_ISSUES,\n ...WELLNESS_ISSUES,\n ...CORPORATE_ISSUES,\n ...LEGAL_ISSUES,\n] as const;\nexport type CounselingIssue = (typeof ALL_ISSUES)[number];\n\n/** Category → issues mapping for dynamic UI filtering. */\nexport const ISSUE_CATALOG: Record<CounselingCategory, readonly string[]> = {\n mental_health: MENTAL_HEALTH_ISSUES,\n neurodiversity: NEURODIVERSITY_ISSUES,\n relationship: RELATIONSHIP_ISSUES,\n family: FAMILY_ISSUES,\n career: CAREER_ISSUES,\n child_adolescent: CHILD_ADOLESCENT_ISSUES,\n addiction: ADDICTION_ISSUES,\n sexual_health: SEXUAL_HEALTH_ISSUES,\n trauma: TRAUMA_ISSUES,\n wellness: WELLNESS_ISSUES,\n corporate: CORPORATE_ISSUES,\n legal: LEGAL_ISSUES,\n};\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const purchaseSubscriptionSchema: z.ZodObject<{
|
|
3
|
+
plan: z.ZodEnum<{
|
|
4
|
+
monthly: "monthly";
|
|
5
|
+
quarterly: "quarterly";
|
|
6
|
+
yearly: "yearly";
|
|
7
|
+
}>;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
export type PurchaseSubscriptionInput = z.infer<typeof purchaseSubscriptionSchema>;
|
|
10
|
+
//# sourceMappingURL=subscription.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subscription.schema.d.ts","sourceRoot":"","sources":["../src/subscription.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,0BAA0B;;;;;;iBAErC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { SUBSCRIPTION_PLAN } from "./enums.js";
|
|
3
|
+
// ─── Purchase ────────────────────────────────────────────────────────
|
|
4
|
+
export const purchaseSubscriptionSchema = z.object({
|
|
5
|
+
plan: z.enum(SUBSCRIPTION_PLAN),
|
|
6
|
+
});
|
|
7
|
+
//# sourceMappingURL=subscription.schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subscription.schema.js","sourceRoot":"","sources":["../src/subscription.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAE/C,wEAAwE;AAExE,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC;CAChC,CAAC,CAAC","sourcesContent":["import { z } from \"zod\";\nimport { SUBSCRIPTION_PLAN } from \"./enums.js\";\n\n// ─── Purchase ────────────────────────────────────────────────────────\n\nexport const purchaseSubscriptionSchema = z.object({\n plan: z.enum(SUBSCRIPTION_PLAN),\n});\n\nexport type PurchaseSubscriptionInput = z.infer<typeof purchaseSubscriptionSchema>;\n"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "counseling-schema",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Shared Zod schemas for the Counseling service — single source of truth for API contracts, validation, and TypeScript types.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": ["dist", "README.md"],
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -p tsconfig.json",
|
|
20
|
+
"type-check": "tsc --noEmit",
|
|
21
|
+
"prepublishOnly": "npm run build"
|
|
22
|
+
},
|
|
23
|
+
"keywords": ["zod", "schema", "counseling", "therapy", "mental-health", "typescript"],
|
|
24
|
+
"author": "Hari",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"zod": "^3.25.0 || ^4.0.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/node": "^24.10.1",
|
|
31
|
+
"typescript": "^5.9.3",
|
|
32
|
+
"zod": "^4.1.13"
|
|
33
|
+
}
|
|
34
|
+
}
|