udp-schema 0.3.0 → 1.0.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.
Files changed (69) hide show
  1. package/dist/field-helpers.d.ts +10 -38
  2. package/dist/field-helpers.d.ts.map +1 -1
  3. package/dist/field-helpers.js +40 -66
  4. package/dist/field-helpers.js.map +1 -1
  5. package/dist/field-meta.d.ts +46 -28
  6. package/dist/field-meta.d.ts.map +1 -1
  7. package/dist/field-meta.js +304 -1988
  8. package/dist/field-meta.js.map +1 -1
  9. package/dist/index.d.ts +17 -17
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +32 -32
  12. package/dist/index.js.map +1 -1
  13. package/dist/onboarding-config.d.ts +44 -0
  14. package/dist/onboarding-config.d.ts.map +1 -0
  15. package/dist/onboarding-config.js +705 -0
  16. package/dist/onboarding-config.js.map +1 -0
  17. package/dist/progress-fields.d.ts +3 -3
  18. package/dist/progress-fields.d.ts.map +1 -1
  19. package/dist/progress-fields.js +76 -94
  20. package/dist/progress-fields.js.map +1 -1
  21. package/dist/step-01.schema.d.ts +84 -111
  22. package/dist/step-01.schema.d.ts.map +1 -1
  23. package/dist/step-01.schema.js +94 -101
  24. package/dist/step-01.schema.js.map +1 -1
  25. package/dist/step-02.schema.d.ts +31 -21
  26. package/dist/step-02.schema.d.ts.map +1 -1
  27. package/dist/step-02.schema.js +34 -27
  28. package/dist/step-02.schema.js.map +1 -1
  29. package/dist/step-03.schema.d.ts +24 -300
  30. package/dist/step-03.schema.d.ts.map +1 -1
  31. package/dist/step-03.schema.js +24 -60
  32. package/dist/step-03.schema.js.map +1 -1
  33. package/dist/step-04.schema.d.ts +56 -50
  34. package/dist/step-04.schema.d.ts.map +1 -1
  35. package/dist/step-04.schema.js +48 -43
  36. package/dist/step-04.schema.js.map +1 -1
  37. package/dist/step-05.schema.d.ts +13 -52
  38. package/dist/step-05.schema.d.ts.map +1 -1
  39. package/dist/step-05.schema.js +19 -40
  40. package/dist/step-05.schema.js.map +1 -1
  41. package/dist/step-06.schema.d.ts +101 -117
  42. package/dist/step-06.schema.d.ts.map +1 -1
  43. package/dist/step-06.schema.js +70 -75
  44. package/dist/step-06.schema.js.map +1 -1
  45. package/dist/step-07.schema.d.ts +44 -95
  46. package/dist/step-07.schema.d.ts.map +1 -1
  47. package/dist/step-07.schema.js +51 -78
  48. package/dist/step-07.schema.js.map +1 -1
  49. package/dist/step-08.schema.d.ts +31 -44
  50. package/dist/step-08.schema.d.ts.map +1 -1
  51. package/dist/step-08.schema.js +30 -47
  52. package/dist/step-08.schema.js.map +1 -1
  53. package/dist/step-09.schema.d.ts +48 -85
  54. package/dist/step-09.schema.d.ts.map +1 -1
  55. package/dist/step-09.schema.js +42 -120
  56. package/dist/step-09.schema.js.map +1 -1
  57. package/dist/step-10.schema.d.ts +32 -86
  58. package/dist/step-10.schema.d.ts.map +1 -1
  59. package/dist/step-10.schema.js +44 -120
  60. package/dist/step-10.schema.js.map +1 -1
  61. package/dist/step-11.schema.d.ts +36 -92
  62. package/dist/step-11.schema.d.ts.map +1 -1
  63. package/dist/step-11.schema.js +32 -111
  64. package/dist/step-11.schema.js.map +1 -1
  65. package/dist/step-12.schema.d.ts +56 -93
  66. package/dist/step-12.schema.d.ts.map +1 -1
  67. package/dist/step-12.schema.js +77 -133
  68. package/dist/step-12.schema.js.map +1 -1
  69. package/package.json +1 -1
@@ -1,1997 +1,313 @@
1
1
  /**
2
- * UDP Field Metadata
3
- * ==================
4
- * Single source of truth for field-level metadata across all 14 UDP steps.
5
- * Both frontend and backend import this — NO hardcoded option arrays elsewhere.
2
+ * UDP Field Metadata — Option arrays for all field types.
6
3
  *
7
4
  * Labels use i18n translation keys (not hardcoded English strings).
5
+ * Options that match dating-schema use the SAME values for cross-product consistency.
8
6
  *
9
7
  * @module udp-schema/field-meta
10
8
  */
11
- // ─── Step 01: Profile Onboarding ─────────────────────────────────────────────
12
- const GENDER_OPTIONS = [
13
- { value: 'male', label: 'gender_male' },
14
- { value: 'female', label: 'gender_female' },
9
+ // ─── Step 01: Profile ───────────────────────────────────────────────────────
10
+ /** Gender options — matches dating-schema values */
11
+ export const GENDER_OPTIONS = [
12
+ { value: 'man', label: 'gender_man' },
13
+ { value: 'woman', label: 'gender_woman' },
14
+ { value: 'non_binary', label: 'gender_non_binary' },
15
+ { value: 'transgender_man', label: 'gender_transgender_man' },
16
+ { value: 'transgender_woman', label: 'gender_transgender_woman' },
17
+ { value: 'genderqueer', label: 'gender_genderqueer' },
18
+ { value: 'genderfluid', label: 'gender_genderfluid' },
19
+ { value: 'agender', label: 'gender_agender' },
20
+ { value: 'two_spirit', label: 'gender_two_spirit' },
15
21
  { value: 'other', label: 'gender_other' },
16
- { value: 'prefer_not', label: 'gender_prefer_not' },
22
+ { value: 'prefer_not_to_say', label: 'gender_prefer_not_to_say' },
23
+ ];
24
+ /** Religion options — matches dating-schema values exactly */
25
+ export const RELIGION_OPTIONS = [
26
+ { value: 'hindu', label: 'religion_hindu' },
27
+ { value: 'muslim_sunni', label: 'religion_muslim_sunni' },
28
+ { value: 'muslim_shia', label: 'religion_muslim_shia' },
29
+ { value: 'muslim_sufi', label: 'religion_muslim_sufi' },
30
+ { value: 'muslim_other', label: 'religion_muslim_other' },
31
+ { value: 'christian_catholic', label: 'religion_christian_catholic' },
32
+ { value: 'christian_protestant', label: 'religion_christian_protestant' },
33
+ { value: 'christian_other', label: 'religion_christian_other' },
34
+ { value: 'sikh', label: 'religion_sikh' },
35
+ { value: 'jain_digambar', label: 'religion_jain_digambar' },
36
+ { value: 'jain_shwetambar', label: 'religion_jain_shwetambar' },
37
+ { value: 'buddhist', label: 'religion_buddhist' },
38
+ { value: 'parsi_zoroastrian', label: 'religion_parsi_zoroastrian' },
39
+ { value: 'jewish', label: 'religion_jewish' },
40
+ { value: 'bahai', label: 'religion_bahai' },
41
+ { value: 'spiritual', label: 'religion_spiritual' },
42
+ { value: 'atheist', label: 'religion_atheist' },
43
+ { value: 'agnostic', label: 'religion_agnostic' },
44
+ { value: 'no_religion', label: 'religion_no_religion' },
45
+ { value: 'inter_religion', label: 'religion_inter_religion' },
46
+ { value: 'other', label: 'religion_other' },
47
+ { value: 'prefer_not_to_say', label: 'religion_prefer_not_to_say' },
48
+ ];
49
+ /** Language options — matches dating-schema motherTongue values */
50
+ export const LANGUAGE_OPTIONS = [
51
+ { value: 'hindi', label: 'language_hindi' },
52
+ { value: 'english', label: 'language_english' },
53
+ { value: 'bengali', label: 'language_bengali' },
54
+ { value: 'telugu', label: 'language_telugu' },
55
+ { value: 'marathi', label: 'language_marathi' },
56
+ { value: 'tamil', label: 'language_tamil' },
57
+ { value: 'urdu', label: 'language_urdu' },
58
+ { value: 'gujarati', label: 'language_gujarati' },
59
+ { value: 'kannada', label: 'language_kannada' },
60
+ { value: 'odia', label: 'language_odia' },
61
+ { value: 'malayalam', label: 'language_malayalam' },
62
+ { value: 'punjabi', label: 'language_punjabi' },
63
+ { value: 'assamese', label: 'language_assamese' },
64
+ { value: 'maithili', label: 'language_maithili' },
65
+ { value: 'bhojpuri', label: 'language_bhojpuri' },
66
+ { value: 'rajasthani', label: 'language_rajasthani' },
67
+ { value: 'chhattisgarhi', label: 'language_chhattisgarhi' },
68
+ { value: 'haryanvi', label: 'language_haryanvi' },
69
+ { value: 'tulu', label: 'language_tulu' },
70
+ { value: 'sanskrit', label: 'language_sanskrit' },
71
+ { value: 'sindhi', label: 'language_sindhi' },
72
+ { value: 'kashmiri', label: 'language_kashmiri' },
73
+ { value: 'nepali', label: 'language_nepali' },
74
+ { value: 'konkani', label: 'language_konkani' },
75
+ { value: 'dogri', label: 'language_dogri' },
76
+ { value: 'manipuri', label: 'language_manipuri' },
77
+ { value: 'bodo', label: 'language_bodo' },
78
+ { value: 'santali', label: 'language_santali' },
79
+ { value: 'other', label: 'language_other' },
80
+ ];
81
+ /** Reservation / caste category options */
82
+ export const RESERVATION_STATUS_OPTIONS = [
83
+ { value: 'SC', label: 'reservation_SC' },
84
+ { value: 'ST', label: 'reservation_ST' },
85
+ { value: 'OBC_NC', label: 'reservation_OBC_NC' },
86
+ { value: 'OBC_C', label: 'reservation_OBC_C' },
87
+ { value: 'EWS', label: 'reservation_EWS' },
88
+ { value: 'GENERAL', label: 'reservation_GENERAL' },
89
+ { value: 'DONT_KNOW', label: 'reservation_DONT_KNOW' },
90
+ { value: 'PREFER_NOT_SAY', label: 'reservation_PREFER_NOT_SAY' },
91
+ ];
92
+ /** Minority status options */
93
+ export const MINORITY_STATUS_OPTIONS = [
94
+ { value: 'NO', label: 'minority_NO' },
95
+ { value: 'RELIGIOUS', label: 'minority_RELIGIOUS' },
96
+ { value: 'LINGUISTIC', label: 'minority_LINGUISTIC' },
97
+ { value: 'NOT_SURE', label: 'minority_NOT_SURE' },
98
+ ];
99
+ // ─── Step 02: Political ─────────────────────────────────────────────────────
100
+ /** Political spectrum — matches dating-schema cognitiveBand values */
101
+ export const POLITICAL_SPECTRUM_OPTIONS = [
102
+ { value: '1_tradition_faith', label: 'politicalSpectrum_1_tradition_faith' },
103
+ { value: '2_faith_curious', label: 'politicalSpectrum_2_faith_curious' },
104
+ { value: '3_multiplicity_open', label: 'politicalSpectrum_3_multiplicity_open' },
105
+ { value: '4_pragmatic_flexible', label: 'politicalSpectrum_4_pragmatic_flexible' },
106
+ { value: '5_evidence_reasoning', label: 'politicalSpectrum_5_evidence_reasoning' },
107
+ { value: '6_critical_reflective', label: 'politicalSpectrum_6_critical_reflective' },
108
+ { value: '7_skeptic_optimize', label: 'politicalSpectrum_7_skeptic_optimize' },
109
+ { value: 'prefer_not_to_say', label: 'politicalSpectrum_prefer_not_to_say' },
110
+ ];
111
+ /** Major Indian political parties */
112
+ export const PARTY_OPTIONS = [
113
+ { value: 'bjp', label: 'party_bjp' },
114
+ { value: 'inc', label: 'party_inc' },
115
+ { value: 'aap', label: 'party_aap' },
116
+ { value: 'bsp', label: 'party_bsp' },
117
+ { value: 'sp', label: 'party_sp' },
118
+ { value: 'tmc', label: 'party_tmc' },
119
+ { value: 'dmk', label: 'party_dmk' },
120
+ { value: 'aiadmk', label: 'party_aiadmk' },
121
+ { value: 'ncp', label: 'party_ncp' },
122
+ { value: 'shiv_sena', label: 'party_shiv_sena' },
123
+ { value: 'jdu', label: 'party_jdu' },
124
+ { value: 'rjd', label: 'party_rjd' },
125
+ { value: 'cpim', label: 'party_cpim' },
126
+ { value: 'cpi', label: 'party_cpi' },
127
+ { value: 'ysrcp', label: 'party_ysrcp' },
128
+ { value: 'tdp', label: 'party_tdp' },
129
+ { value: 'bjd', label: 'party_bjd' },
130
+ { value: 'jmm', label: 'party_jmm' },
131
+ { value: 'none', label: 'party_none' },
132
+ { value: 'other', label: 'party_other' },
133
+ { value: 'prefer_not_to_say', label: 'party_prefer_not_to_say' },
134
+ ];
135
+ /** Civic engagement types */
136
+ export const CIVIC_ENGAGEMENT_OPTIONS = [
137
+ { value: 'ngo', label: 'civic_ngo' },
138
+ { value: 'trade_union', label: 'civic_trade_union' },
139
+ { value: 'cooperative', label: 'civic_cooperative' },
140
+ { value: 'resident_association', label: 'civic_resident_association' },
141
+ { value: 'self_help_group', label: 'civic_self_help_group' },
142
+ { value: 'youth_club', label: 'civic_youth_club' },
143
+ { value: 'religious_organization', label: 'civic_religious_organization' },
144
+ { value: 'caste_association', label: 'civic_caste_association' },
145
+ { value: 'professional_body', label: 'civic_professional_body' },
146
+ { value: 'none', label: 'civic_none' },
147
+ { value: 'other', label: 'civic_other' },
148
+ ];
149
+ // ─── Step 03: Electoral ─────────────────────────────────────────────────────
150
+ /** Voting issues */
151
+ export const VOTING_ISSUES_OPTIONS = [
152
+ { value: 'economy', label: 'votingIssue_economy' },
153
+ { value: 'healthcare', label: 'votingIssue_healthcare' },
154
+ { value: 'education', label: 'votingIssue_education' },
155
+ { value: 'unemployment', label: 'votingIssue_unemployment' },
156
+ { value: 'corruption', label: 'votingIssue_corruption' },
157
+ { value: 'womens_safety', label: 'votingIssue_womens_safety' },
158
+ { value: 'environment', label: 'votingIssue_environment' },
159
+ { value: 'caste_issues', label: 'votingIssue_caste_issues' },
160
+ { value: 'religious_issues', label: 'votingIssue_religious_issues' },
161
+ { value: 'infrastructure', label: 'votingIssue_infrastructure' },
162
+ { value: 'national_security', label: 'votingIssue_national_security' },
163
+ { value: 'farmer_issues', label: 'votingIssue_farmer_issues' },
164
+ { value: 'water_sanitation', label: 'votingIssue_water_sanitation' },
165
+ { value: 'other', label: 'votingIssue_other' },
166
+ ];
167
+ // ─── Step 04: Leadership ────────────────────────────────────────────────────
168
+ /** Leadership skillset options */
169
+ export const LEADERSHIP_SKILLSET_OPTIONS = [
170
+ { value: 'public_speaking', label: 'leadership_public_speaking' },
171
+ { value: 'community_organizing', label: 'leadership_community_organizing' },
172
+ { value: 'conflict_resolution', label: 'leadership_conflict_resolution' },
173
+ { value: 'fundraising', label: 'leadership_fundraising' },
174
+ { value: 'media_handling', label: 'leadership_media_handling' },
175
+ { value: 'legal_awareness', label: 'leadership_legal_awareness' },
176
+ { value: 'grassroots_mobilization', label: 'leadership_grassroots_mobilization' },
177
+ { value: 'digital_campaigning', label: 'leadership_digital_campaigning' },
178
+ { value: 'negotiation', label: 'leadership_negotiation' },
179
+ { value: 'event_management', label: 'leadership_event_management' },
180
+ ];
181
+ // ─── Step 06: Education ─────────────────────────────────────────────────────
182
+ /** Highest qualification options */
183
+ export const QUALIFICATION_OPTIONS = [
184
+ { value: 'CLASS_10', label: 'qualification_CLASS_10' },
185
+ { value: 'CLASS_12', label: 'qualification_CLASS_12' },
186
+ { value: 'DIPLOMA', label: 'qualification_DIPLOMA' },
187
+ { value: 'GRADUATION', label: 'qualification_GRADUATION' },
188
+ { value: 'POST_GRAD', label: 'qualification_POST_GRAD' },
189
+ { value: 'PHD', label: 'qualification_PHD' },
190
+ { value: 'POST_DOCTORATE', label: 'qualification_POST_DOCTORATE' },
191
+ { value: 'OTHER', label: 'qualification_OTHER' },
192
+ ];
193
+ // ─── Step 08: Neurodiversity ────────────────────────────────────────────────
194
+ /** Neurodiversity conditions */
195
+ export const NEURODIVERSITY_CONDITIONS_OPTIONS = [
196
+ { value: 'adhd', label: 'condition_adhd' },
197
+ { value: 'autism_spectrum', label: 'condition_autism_spectrum' },
198
+ { value: 'dyslexia', label: 'condition_dyslexia' },
199
+ { value: 'dyspraxia', label: 'condition_dyspraxia' },
200
+ { value: 'dyscalculia', label: 'condition_dyscalculia' },
201
+ { value: 'tourettes', label: 'condition_tourettes' },
202
+ { value: 'ocd', label: 'condition_ocd' },
203
+ { value: 'bipolar', label: 'condition_bipolar' },
204
+ { value: 'anxiety_disorder', label: 'condition_anxiety_disorder' },
205
+ { value: 'sensory_processing', label: 'condition_sensory_processing' },
206
+ { value: 'other', label: 'condition_other' },
207
+ { value: 'prefer_not_to_say', label: 'condition_prefer_not_to_say' },
208
+ ];
209
+ /** Sensory preferences */
210
+ export const SENSORY_PREFERENCES_OPTIONS = [
211
+ { value: 'loud_sounds', label: 'sensory_loud_sounds' },
212
+ { value: 'bright_lights', label: 'sensory_bright_lights' },
213
+ { value: 'textures', label: 'sensory_textures' },
214
+ { value: 'smells', label: 'sensory_smells' },
215
+ { value: 'quiet_environment', label: 'sensory_quiet_environment' },
216
+ { value: 'seeks_stimulation', label: 'sensory_seeks_stimulation' },
217
+ { value: 'no_specific', label: 'sensory_no_specific' },
218
+ ];
219
+ /** Support needs */
220
+ export const SUPPORT_NEEDS_OPTIONS = [
221
+ { value: 'flexible_deadlines', label: 'support_flexible_deadlines' },
222
+ { value: 'written_instructions', label: 'support_written_instructions' },
223
+ { value: 'quiet_workspace', label: 'support_quiet_workspace' },
224
+ { value: 'regular_breaks', label: 'support_regular_breaks' },
225
+ { value: 'structured_routines', label: 'support_structured_routines' },
226
+ { value: 'assistive_technology', label: 'support_assistive_technology' },
227
+ { value: 'peer_support', label: 'support_peer_support' },
228
+ { value: 'professional_support', label: 'support_professional_support' },
229
+ { value: 'no_specific', label: 'support_no_specific' },
230
+ ];
231
+ // ─── Step 09: Health ────────────────────────────────────────────────────────
232
+ /** Disability status options */
233
+ export const DISABILITY_STATUS_OPTIONS = [
234
+ { value: 'none', label: 'disability_none' },
235
+ { value: 'physical', label: 'disability_physical' },
236
+ { value: 'visual', label: 'disability_visual' },
237
+ { value: 'hearing', label: 'disability_hearing' },
238
+ { value: 'speech', label: 'disability_speech' },
239
+ { value: 'cognitive', label: 'disability_cognitive' },
240
+ { value: 'multiple', label: 'disability_multiple' },
241
+ { value: 'prefer_not_to_say', label: 'disability_prefer_not_to_say' },
242
+ ];
243
+ /** Substance use options */
244
+ export const SUBSTANCE_USE_OPTIONS = [
245
+ { value: 'none', label: 'substance_none' },
246
+ { value: 'tobacco_smoking', label: 'substance_tobacco_smoking' },
247
+ { value: 'tobacco_chewing', label: 'substance_tobacco_chewing' },
248
+ { value: 'alcohol', label: 'substance_alcohol' },
249
+ { value: 'cannabis', label: 'substance_cannabis' },
250
+ { value: 'other', label: 'substance_other' },
251
+ { value: 'prefer_not_to_say', label: 'substance_prefer_not_to_say' },
252
+ ];
253
+ // ─── Step 10: World View ────────────────────────────────────────────────────
254
+ /** LGBTQ+ statement options (reused from existing UDP) */
255
+ export const LGBTQ_STATEMENTS_OPTIONS = [
256
+ { value: 'LGBTQ_EQUAL_RIGHTS', label: 'lgbtq_LGBTQ_EQUAL_RIGHTS' },
257
+ { value: 'LGBTQ_SOCIAL_ACCEPTANCE', label: 'lgbtq_LGBTQ_SOCIAL_ACCEPTANCE' },
258
+ { value: 'LGBTQ_PRIVATE_MATTER', label: 'lgbtq_LGBTQ_PRIVATE_MATTER' },
259
+ { value: 'LGBTQ_SHOULD_NOT_BE_DISCRIMINATED', label: 'lgbtq_LGBTQ_SHOULD_NOT_BE_DISCRIMINATED' },
260
+ { value: 'LGBTQ_TRADITION_CONFLICT', label: 'lgbtq_LGBTQ_TRADITION_CONFLICT' },
261
+ { value: 'LGBTQ_NOT_COMFORTABLE', label: 'lgbtq_LGBTQ_NOT_COMFORTABLE' },
262
+ { value: 'LGBTQ_DONT_KNOW', label: 'lgbtq_LGBTQ_DONT_KNOW' },
263
+ { value: 'LGBTQ_PREFER_NOT_SAY', label: 'lgbtq_LGBTQ_PREFER_NOT_SAY' },
264
+ ];
265
+ /** Transgender inclusion statement options (reused from existing UDP) */
266
+ export const TRANSGENDER_STATEMENTS_OPTIONS = [
267
+ { value: 'TRANS_CHILD_KEEP_IN_FAMILY', label: 'trans_TRANS_CHILD_KEEP_IN_FAMILY' },
268
+ { value: 'TRANS_EQUAL_RIGHTS', label: 'trans_TRANS_EQUAL_RIGHTS' },
269
+ { value: 'TRANS_PART_OF_NORMAL_SOCIETY', label: 'trans_TRANS_PART_OF_NORMAL_SOCIETY' },
270
+ { value: 'TRANS_NO_ABANDONMENT', label: 'trans_TRANS_NO_ABANDONMENT' },
271
+ { value: 'TRANS_ONLY_SPECIAL_COMMUNITY', label: 'trans_TRANS_ONLY_SPECIAL_COMMUNITY' },
272
+ { value: 'TRANS_UNCOMFORTABLE', label: 'trans_TRANS_UNCOMFORTABLE' },
273
+ { value: 'TRANS_DONT_KNOW', label: 'trans_TRANS_DONT_KNOW' },
274
+ { value: 'TRANS_PREFER_NOT_SAY', label: 'trans_TRANS_PREFER_NOT_SAY' },
275
+ ];
276
+ /** Caste discrimination places (reused from existing UDP) */
277
+ export const CASTE_DISCRIMINATION_PLACES_OPTIONS = [
278
+ { value: 'SCHOOL_EDUCATION', label: 'discrimination_SCHOOL_EDUCATION' },
279
+ { value: 'WORKPLACE', label: 'discrimination_WORKPLACE' },
280
+ { value: 'LOCALITY', label: 'discrimination_LOCALITY' },
281
+ { value: 'GOVT_OFFICES', label: 'discrimination_GOVT_OFFICES' },
282
+ { value: 'MARKET', label: 'discrimination_MARKET' },
283
+ { value: 'RELIGIOUS_SPACE', label: 'discrimination_RELIGIOUS_SPACE' },
284
+ { value: 'OTHER', label: 'discrimination_OTHER' },
285
+ ];
286
+ // ─── Step 12: Household ─────────────────────────────────────────────────────
287
+ /** Family members options */
288
+ export const FAMILY_MEMBERS_OPTIONS = [
289
+ { value: 'father', label: 'family_father' },
290
+ { value: 'mother', label: 'family_mother' },
291
+ { value: 'step_father', label: 'family_step_father' },
292
+ { value: 'step_mother', label: 'family_step_mother' },
293
+ { value: 'wife_husband', label: 'family_wife_husband' },
294
+ { value: 'blood_brother', label: 'family_blood_brother' },
295
+ { value: 'blood_sister', label: 'family_blood_sister' },
296
+ { value: 'half_brother', label: 'family_half_brother' },
297
+ { value: 'half_sister', label: 'family_half_sister' },
298
+ { value: 'step_brother', label: 'family_step_brother' },
299
+ { value: 'step_sister', label: 'family_step_sister' },
300
+ { value: 'son', label: 'family_son' },
301
+ { value: 'daughter', label: 'family_daughter' },
302
+ { value: 'other', label: 'family_other' },
303
+ ];
304
+ /** Digital access options */
305
+ export const DIGITAL_ACCESS_OPTIONS = [
306
+ { value: 'smartphone', label: 'digital_smartphone' },
307
+ { value: 'feature_phone', label: 'digital_feature_phone' },
308
+ { value: 'computer_laptop', label: 'digital_computer_laptop' },
309
+ { value: 'internet_at_home', label: 'digital_internet_at_home' },
310
+ { value: 'no_internet', label: 'digital_no_internet' },
311
+ { value: 'no_phone', label: 'digital_no_phone' },
17
312
  ];
18
- const SECONDARY_LANGUAGE_FLUENCY_OPTIONS = [
19
- { value: 'basic', label: 'fluency_basic' },
20
- { value: 'conversational', label: 'fluency_conversational' },
21
- { value: 'professional', label: 'fluency_professional' },
22
- { value: 'native', label: 'fluency_native' },
23
- ];
24
- const ASSISTED_BY_SOURCE_OPTIONS = [
25
- { value: 'selected', label: 'assistedBySource_selected' },
26
- { value: 'manual', label: 'assistedBySource_manual' },
27
- ];
28
- // ─── Step 03: Residence ──────────────────────────────────────────────────────
29
- const DOMICILE_SOURCE_OPTIONS = [
30
- { value: 'BIRTH_PLACE', label: 'domicileSource_BIRTH_PLACE' },
31
- { value: 'HOME_NATIVE_PLACE', label: 'domicileSource_HOME_NATIVE_PLACE' },
32
- { value: 'ANCESTRAL_NATIVE_PLACE', label: 'domicileSource_ANCESTRAL_NATIVE_PLACE' },
33
- ];
34
- const AREA_TYPE_OPTIONS = [
35
- { value: 'RURAL', label: 'areaType_RURAL' },
36
- { value: 'URBAN', label: 'areaType_URBAN' },
37
- ];
38
- // ─── Step 04: Identity ───────────────────────────────────────────────────────
39
- const FAMILY_RELIGION_OPTIONS = [
40
- { value: 'HINDU', label: 'familyReligion_HINDU' },
41
- { value: 'MUSLIM', label: 'familyReligion_MUSLIM' },
42
- { value: 'CHRISTIAN', label: 'familyReligion_CHRISTIAN' },
43
- { value: 'SIKH', label: 'familyReligion_SIKH' },
44
- { value: 'BUDDHIST', label: 'familyReligion_BUDDHIST' },
45
- { value: 'JAIN', label: 'familyReligion_JAIN' },
46
- { value: 'OTHER', label: 'familyReligion_OTHER' },
47
- ];
48
- const INDIVIDUAL_RELIGION_OPTIONS = [
49
- { value: 'SAME_AS_FAMILY', label: 'individualReligion_SAME_AS_FAMILY' },
50
- { value: 'HINDU', label: 'individualReligion_HINDU' },
51
- { value: 'MUSLIM', label: 'individualReligion_MUSLIM' },
52
- { value: 'CHRISTIAN', label: 'individualReligion_CHRISTIAN' },
53
- { value: 'SIKH', label: 'individualReligion_SIKH' },
54
- { value: 'BUDDHIST', label: 'individualReligion_BUDDHIST' },
55
- { value: 'JAIN', label: 'individualReligion_JAIN' },
56
- { value: 'OTHER', label: 'individualReligion_OTHER' },
57
- ];
58
- const CASTE_CATEGORY_OPTIONS = [
59
- { value: 'SC', label: 'casteCategoryReservation_SC' },
60
- { value: 'ST', label: 'casteCategoryReservation_ST' },
61
- { value: 'OBC_NC', label: 'casteCategoryReservation_OBC_NC' },
62
- { value: 'OBC_C', label: 'casteCategoryReservation_OBC_C' },
63
- { value: 'EWS', label: 'casteCategoryReservation_EWS' },
64
- { value: 'GENERAL', label: 'casteCategoryReservation_GENERAL' },
65
- { value: 'DONT_KNOW', label: 'casteCategoryReservation_DONT_KNOW' },
66
- { value: 'PREFER_NOT_SAY', label: 'casteCategoryReservation_PREFER_NOT_SAY' },
67
- ];
68
- const MINORITY_STATUS_OPTIONS = [
69
- { value: 'NO', label: 'minorityStatus_NO' },
70
- { value: 'RELIGIOUS', label: 'minorityStatus_RELIGIOUS' },
71
- { value: 'LINGUISTIC', label: 'minorityStatus_LINGUISTIC' },
72
- { value: 'NOT_SURE', label: 'minorityStatus_NOT_SURE' },
73
- ];
74
- const FACING_CASTE_DISCRIMINATION_OPTIONS = [
75
- { value: 'YES_OFTEN', label: 'facingCasteDiscrimination_YES_OFTEN' },
76
- { value: 'YES_SOMETIMES', label: 'facingCasteDiscrimination_YES_SOMETIMES' },
77
- { value: 'NO', label: 'facingCasteDiscrimination_NO' },
78
- { value: 'PREFER_NOT_SAY', label: 'facingCasteDiscrimination_PREFER_NOT_SAY' },
79
- ];
80
- const CASTE_DISCRIMINATION_PLACES_OPTIONS = [
81
- { value: 'SCHOOL_EDUCATION', label: 'casteDiscriminationPlaces_SCHOOL_EDUCATION' },
82
- { value: 'WORKPLACE', label: 'casteDiscriminationPlaces_WORKPLACE' },
83
- { value: 'LOCALITY', label: 'casteDiscriminationPlaces_LOCALITY' },
84
- { value: 'GOVT_OFFICES', label: 'casteDiscriminationPlaces_GOVT_OFFICES' },
85
- { value: 'MARKET', label: 'casteDiscriminationPlaces_MARKET' },
86
- { value: 'RELIGIOUS_SPACE', label: 'casteDiscriminationPlaces_RELIGIOUS_SPACE' },
87
- { value: 'OTHER', label: 'casteDiscriminationPlaces_OTHER' },
88
- ];
89
- const LGBTQ_STATEMENTS_OPTIONS = [
90
- { value: 'LGBTQ_EQUAL_RIGHTS', label: 'viewOnLgbtqStatements_LGBTQ_EQUAL_RIGHTS' },
91
- { value: 'LGBTQ_SOCIAL_ACCEPTANCE', label: 'viewOnLgbtqStatements_LGBTQ_SOCIAL_ACCEPTANCE' },
92
- { value: 'LGBTQ_PRIVATE_MATTER', label: 'viewOnLgbtqStatements_LGBTQ_PRIVATE_MATTER' },
93
- {
94
- value: 'LGBTQ_SHOULD_NOT_BE_DISCRIMINATED',
95
- label: 'viewOnLgbtqStatements_LGBTQ_SHOULD_NOT_BE_DISCRIMINATED',
96
- },
97
- { value: 'LGBTQ_TRADITION_CONFLICT', label: 'viewOnLgbtqStatements_LGBTQ_TRADITION_CONFLICT' },
98
- { value: 'LGBTQ_NOT_COMFORTABLE', label: 'viewOnLgbtqStatements_LGBTQ_NOT_COMFORTABLE' },
99
- { value: 'LGBTQ_DONT_KNOW', label: 'viewOnLgbtqStatements_LGBTQ_DONT_KNOW' },
100
- { value: 'LGBTQ_PREFER_NOT_SAY', label: 'viewOnLgbtqStatements_LGBTQ_PREFER_NOT_SAY' },
101
- ];
102
- const TRANSGENDER_STATEMENTS_OPTIONS = [
103
- {
104
- value: 'TRANS_CHILD_KEEP_IN_FAMILY',
105
- label: 'viewOnTransgenderInclusionStatements_TRANS_CHILD_KEEP_IN_FAMILY',
106
- },
107
- { value: 'TRANS_EQUAL_RIGHTS', label: 'viewOnTransgenderInclusionStatements_TRANS_EQUAL_RIGHTS' },
108
- {
109
- value: 'TRANS_PART_OF_NORMAL_SOCIETY',
110
- label: 'viewOnTransgenderInclusionStatements_TRANS_PART_OF_NORMAL_SOCIETY',
111
- },
112
- {
113
- value: 'TRANS_NO_ABANDONMENT',
114
- label: 'viewOnTransgenderInclusionStatements_TRANS_NO_ABANDONMENT',
115
- },
116
- {
117
- value: 'TRANS_ONLY_SPECIAL_COMMUNITY',
118
- label: 'viewOnTransgenderInclusionStatements_TRANS_ONLY_SPECIAL_COMMUNITY',
119
- },
120
- {
121
- value: 'TRANS_UNCOMFORTABLE',
122
- label: 'viewOnTransgenderInclusionStatements_TRANS_UNCOMFORTABLE',
123
- },
124
- { value: 'TRANS_DONT_KNOW', label: 'viewOnTransgenderInclusionStatements_TRANS_DONT_KNOW' },
125
- {
126
- value: 'TRANS_PREFER_NOT_SAY',
127
- label: 'viewOnTransgenderInclusionStatements_TRANS_PREFER_NOT_SAY',
128
- },
129
- ];
130
- // ─── Step 05: Leadership ─────────────────────────────────────────────────────
131
- const DESIRE_TO_BE_LEADER_OPTIONS = [
132
- { value: 'YES_STRONGLY', label: 'desireToBeLeader_YES_STRONGLY' },
133
- { value: 'YES_MAYBE', label: 'desireToBeLeader_YES_MAYBE' },
134
- { value: 'LATER', label: 'desireToBeLeader_LATER' },
135
- { value: 'NO', label: 'desireToBeLeader_NO' },
136
- ];
137
- const DESIRED_POLITICAL_POSITION_OPTIONS = [
138
- { value: 'GRAM_PANCHAYAT_MEMBER', label: 'desiredPoliticalPosition_GRAM_PANCHAYAT_MEMBER' },
139
- { value: 'GRAM_PRADHAN', label: 'desiredPoliticalPosition_GRAM_PRADHAN' },
140
- { value: 'NAGAR_PARSHAD_COUNCILLOR', label: 'desiredPoliticalPosition_NAGAR_PARSHAD_COUNCILLOR' },
141
- { value: 'NAGAR_MAYOR', label: 'desiredPoliticalPosition_NAGAR_MAYOR' },
142
- { value: 'ZILA_PANCHAYAT_MEMBER', label: 'desiredPoliticalPosition_ZILA_PANCHAYAT_MEMBER' },
143
- { value: 'MLA', label: 'desiredPoliticalPosition_MLA' },
144
- { value: 'MP_LOK_SABHA', label: 'desiredPoliticalPosition_MP_LOK_SABHA' },
145
- { value: 'MP_RAJYA_SABHA_OR_UPPER', label: 'desiredPoliticalPosition_MP_RAJYA_SABHA_OR_UPPER' },
146
- {
147
- value: 'PARTY_ORGANISATIONAL_ROLE',
148
- label: 'desiredPoliticalPosition_PARTY_ORGANISATIONAL_ROLE',
149
- },
150
- { value: 'YOUTH_WING_LEADER', label: 'desiredPoliticalPosition_YOUTH_WING_LEADER' },
151
- { value: 'WOMEN_WING_LEADER', label: 'desiredPoliticalPosition_WOMEN_WING_LEADER' },
152
- {
153
- value: 'SOCIAL_WORKER_NON_ELECTORAL',
154
- label: 'desiredPoliticalPosition_SOCIAL_WORKER_NON_ELECTORAL',
155
- },
156
- { value: 'NOT_AIMING_NOW', label: 'desiredPoliticalPosition_NOT_AIMING_NOW' },
157
- { value: 'OTHER', label: 'desiredPoliticalPosition_OTHER' },
158
- ];
159
- const POLITICAL_PARTY_JOINING_INTENT_OPTIONS = [
160
- { value: 'YES_FULLY', label: 'politicalPartyJoiningIntent_YES_FULLY' },
161
- { value: 'YES_NEED_INFO', label: 'politicalPartyJoiningIntent_YES_NEED_INFO' },
162
- { value: 'MAYBE_LATER', label: 'politicalPartyJoiningIntent_MAYBE_LATER' },
163
- { value: 'NO', label: 'politicalPartyJoiningIntent_NO' },
164
- {
165
- value: 'NO_OTHER_PARTY_PREFERRED',
166
- label: 'politicalPartyJoiningIntent_NO_OTHER_PARTY_PREFERRED',
167
- },
168
- ];
169
- const LEADERSHIP_SKILLSET_OPTIONS = [
170
- { value: 'PUBLIC_SPEAKING', label: 'leadershipSkillset_PUBLIC_SPEAKING' },
171
- { value: 'STORYTELLER_NARRATOR', label: 'leadershipSkillset_STORYTELLER_NARRATOR' },
172
- { value: 'SINGER_POET_ARTIST', label: 'leadershipSkillset_SINGER_POET_ARTIST' },
173
- { value: 'CURRENT_AFFAIRS_KNOWLEDGE', label: 'leadershipSkillset_CURRENT_AFFAIRS_KNOWLEDGE' },
174
- { value: 'ANALYTICAL_LOGICAL', label: 'leadershipSkillset_ANALYTICAL_LOGICAL' },
175
- { value: 'NEGOTIATION', label: 'leadershipSkillset_NEGOTIATION' },
176
- { value: 'ORGANISATIONAL_SKILLS', label: 'leadershipSkillset_ORGANISATIONAL_SKILLS' },
177
- { value: 'GOOD_LOCAL_NETWORK', label: 'leadershipSkillset_GOOD_LOCAL_NETWORK' },
178
- { value: 'DIGITAL_SKILLS', label: 'leadershipSkillset_DIGITAL_SKILLS' },
179
- { value: 'FINANCIAL_PLANNING', label: 'leadershipSkillset_FINANCIAL_PLANNING' },
180
- { value: 'MOBILISE_CROWD', label: 'leadershipSkillset_MOBILISE_CROWD' },
181
- { value: 'CONFLICT_RESOLUTION', label: 'leadershipSkillset_CONFLICT_RESOLUTION' },
182
- { value: 'SOCIAL_WORK_EXPERIENCE', label: 'leadershipSkillset_SOCIAL_WORK_EXPERIENCE' },
183
- { value: 'HONESTY_INTEGRITY', label: 'leadershipSkillset_HONESTY_INTEGRITY' },
184
- { value: 'OTHER', label: 'leadershipSkillset_OTHER' },
185
- ];
186
- const POLITICAL_EXPOSURE_LEVEL_OPTIONS = [
187
- { value: 'VERY_HIGH', label: 'politicalExposureLevel_VERY_HIGH' },
188
- { value: 'MODERATE', label: 'politicalExposureLevel_MODERATE' },
189
- { value: 'BASIC', label: 'politicalExposureLevel_BASIC' },
190
- { value: 'NONE', label: 'politicalExposureLevel_NONE' },
191
- ];
192
- const PUBLIC_VISIBILITY_COMFORT_OPTIONS = [
193
- { value: 'VERY_COMFORTABLE', label: 'publicVisibilityComfort_VERY_COMFORTABLE' },
194
- { value: 'SOMEWHAT_COMFORTABLE', label: 'publicVisibilityComfort_SOMEWHAT_COMFORTABLE' },
195
- { value: 'LIMITED_VISIBILITY', label: 'publicVisibilityComfort_LIMITED_VISIBILITY' },
196
- { value: 'NOT_COMFORTABLE', label: 'publicVisibilityComfort_NOT_COMFORTABLE' },
197
- ];
198
- const LEADERSHIP_TRAINING_INTEREST_OPTIONS = [
199
- { value: 'YES', label: 'leadershipTrainingInterest_YES' },
200
- { value: 'MAYBE', label: 'leadershipTrainingInterest_MAYBE' },
201
- { value: 'NO', label: 'leadershipTrainingInterest_NO' },
202
- ];
203
- const SOCIAL_INFLUENCE_LEVEL_OPTIONS = [
204
- { value: 'UP_TO_10', label: 'socialInfluenceLevel_UP_TO_10' },
205
- { value: '10_TO_50', label: 'socialInfluenceLevel_10_TO_50' },
206
- { value: '50_TO_200', label: 'socialInfluenceLevel_50_TO_200' },
207
- { value: '200_TO_500', label: 'socialInfluenceLevel_200_TO_500' },
208
- { value: 'MORE_THAN_500', label: 'socialInfluenceLevel_MORE_THAN_500' },
209
- ];
210
- const PAST_LEADERSHIP_ROLES_OPTIONS = [
211
- { value: 'YES', label: 'pastLeadershipRoles_YES' },
212
- { value: 'NO', label: 'pastLeadershipRoles_NO' },
213
- ];
214
- // ─── Step 06: Household ──────────────────────────────────────────────────────
215
- const YES_NO_OPTIONS = [
216
- { value: 'YES', label: 'yes' },
217
- { value: 'NO', label: 'no' },
218
- ];
219
- const YES_NO_NOT_SURE_OPTIONS = [
220
- { value: 'YES', label: 'yes' },
221
- { value: 'NO', label: 'no' },
222
- { value: 'NOT_SURE', label: 'notSure' },
223
- ];
224
- const ARE_YOU_MIGRANT_OPTIONS = [
225
- { value: 'YES', label: 'areYouMigrant_YES' },
226
- { value: 'NO', label: 'areYouMigrant_NO' },
227
- ];
228
- const BLOOD_RELATIVES_OTHER_STATE_OPTIONS = [
229
- { value: 'YES', label: 'bloodRelativesOtherState_YES' },
230
- { value: 'NO', label: 'bloodRelativesOtherState_NO' },
231
- { value: 'NOT_SURE', label: 'bloodRelativesOtherState_NOT_SURE' },
232
- ];
233
- const BLOOD_RELATIVES_OTHER_COUNTRY_OPTIONS = [
234
- { value: 'YES', label: 'bloodRelativesOtherCountry_YES' },
235
- { value: 'NO', label: 'bloodRelativesOtherCountry_NO' },
236
- { value: 'NOT_SURE', label: 'bloodRelativesOtherCountry_NOT_SURE' },
237
- ];
238
- const BLOOD_RELATIVES_NRI_OPTIONS = [
239
- { value: 'YES', label: 'bloodRelativesNri_YES' },
240
- { value: 'NO', label: 'bloodRelativesNri_NO' },
241
- { value: 'NOT_SURE', label: 'bloodRelativesNri_NOT_SURE' },
242
- ];
243
- const ARE_YOU_NRI_OPTIONS = [
244
- { value: 'YES', label: 'areYouNri_YES' },
245
- { value: 'FORMER_NRI', label: 'areYouNri_FORMER_NRI' },
246
- { value: 'NO', label: 'areYouNri_NO' },
247
- ];
248
- const MARITAL_STATUS_OPTIONS = [
249
- { value: 'SINGLE', label: 'maritalStatus_SINGLE' },
250
- { value: 'ENGAGED', label: 'maritalStatus_ENGAGED' },
251
- { value: 'MARRIED', label: 'maritalStatus_MARRIED' },
252
- { value: 'DIVORCED', label: 'maritalStatus_DIVORCED' },
253
- { value: 'WIDOWED', label: 'maritalStatus_WIDOWED' },
254
- { value: 'OTHER', label: 'maritalStatus_OTHER' },
255
- ];
256
- const PLANNING_MARRIAGE_TIMELINE_OPTIONS = [
257
- { value: 'NOT_THINKING', label: 'planningMarriageTimeline_NOT_THINKING' },
258
- { value: 'WITHIN_1_YEAR', label: 'planningMarriageTimeline_WITHIN_1_YEAR' },
259
- { value: 'WITHIN_2_YEARS', label: 'planningMarriageTimeline_WITHIN_2_YEARS' },
260
- { value: 'AFTER_2_YEARS', label: 'planningMarriageTimeline_AFTER_2_YEARS' },
261
- { value: 'ALREADY_MARRIED', label: 'planningMarriageTimeline_ALREADY_MARRIED' },
262
- ];
263
- const LOOKING_FOR_MARRIAGE_PARTNER_OPTIONS = [
264
- { value: 'NO', label: 'lookingForMarriagePartner_NO' },
265
- { value: 'YES_ACTIVE', label: 'lookingForMarriagePartner_YES_ACTIVE' },
266
- { value: 'YES_CASUAL', label: 'lookingForMarriagePartner_YES_CASUAL' },
267
- { value: 'FAMILY_LOOKING', label: 'lookingForMarriagePartner_FAMILY_LOOKING' },
268
- ];
269
- const FAMILY_STRUCTURE_TYPE_OPTIONS = [
270
- { value: 'NUCLEAR', label: 'familyStructureType_NUCLEAR' },
271
- { value: 'JOINT', label: 'familyStructureType_JOINT' },
272
- { value: 'EXTENDED', label: 'familyStructureType_EXTENDED' },
273
- { value: 'SINGLE_PERSON', label: 'familyStructureType_SINGLE_PERSON' },
274
- ];
275
- const HOUSING_TYPE_OPTIONS = [
276
- { value: 'KUTCHA', label: 'housingType_KUTCHA' },
277
- { value: 'SEMI_PUCCA', label: 'housingType_SEMI_PUCCA' },
278
- { value: 'PUCCA', label: 'housingType_PUCCA' },
279
- { value: 'APARTMENT', label: 'housingType_APARTMENT' },
280
- { value: 'OTHER', label: 'housingType_OTHER' },
281
- ];
282
- const FAMILY_MEMBER_SETTLED_ELSEWHERE_OPTIONS = [
283
- { value: 'YES', label: 'familyMemberSettledElsewhere_YES' },
284
- { value: 'NO', label: 'familyMemberSettledElsewhere_NO' },
285
- { value: 'NOT_SURE', label: 'familyMemberSettledElsewhere_NOT_SURE' },
286
- ];
287
- const ANNUAL_PERSONAL_INCOME_RANGE_OPTIONS = [
288
- { value: 'NO_INCOME', label: 'annualPersonalIncomeRange_NO_INCOME' },
289
- { value: 'BELOW_1L', label: 'annualPersonalIncomeRange_BELOW_1L' },
290
- { value: '1_2L', label: 'annualPersonalIncomeRange_1_2L' },
291
- { value: '2_3L', label: 'annualPersonalIncomeRange_2_3L' },
292
- { value: '3_5L', label: 'annualPersonalIncomeRange_3_5L' },
293
- { value: '5_10L', label: 'annualPersonalIncomeRange_5_10L' },
294
- { value: 'ABOVE_10L', label: 'annualPersonalIncomeRange_ABOVE_10L' },
295
- { value: 'PREFER_NOT_SAY', label: 'annualPersonalIncomeRange_PREFER_NOT_SAY' },
296
- ];
297
- const ANNUAL_HOUSEHOLD_INCOME_RANGE_OPTIONS = [
298
- { value: 'BELOW_1L', label: 'annualHouseholdIncomeRange_BELOW_1L' },
299
- { value: '1_2L', label: 'annualHouseholdIncomeRange_1_2L' },
300
- { value: '2_3L', label: 'annualHouseholdIncomeRange_2_3L' },
301
- { value: '3_5L', label: 'annualHouseholdIncomeRange_3_5L' },
302
- { value: '5_10L', label: 'annualHouseholdIncomeRange_5_10L' },
303
- { value: '10_20L', label: 'annualHouseholdIncomeRange_10_20L' },
304
- { value: 'ABOVE_20L', label: 'annualHouseholdIncomeRange_ABOVE_20L' },
305
- { value: 'PREFER_NOT_SAY', label: 'annualHouseholdIncomeRange_PREFER_NOT_SAY' },
306
- ];
307
- const BPL_RATION_CARD_OPTIONS = [
308
- { value: 'YES', label: 'bplRationCardHolder_YES' },
309
- { value: 'NO', label: 'bplRationCardHolder_NO' },
310
- { value: 'NOT_SURE', label: 'bplRationCardHolder_NOT_SURE' },
311
- ];
312
- const HAS_LIFE_INSURANCE_OPTIONS = [
313
- { value: 'YES', label: 'hasLifeInsurance_YES' },
314
- { value: 'NO', label: 'hasLifeInsurance_NO' },
315
- { value: 'NOT_SURE', label: 'hasLifeInsurance_NOT_SURE' },
316
- ];
317
- const DIGITAL_ACCESS_OPTIONS = [
318
- { value: 'PERSONAL_SMARTPHONE', label: 'digitalAccess_PERSONAL_SMARTPHONE' },
319
- { value: 'SHARED_SMARTPHONE', label: 'digitalAccess_SHARED_SMARTPHONE' },
320
- { value: 'BASIC_PHONE', label: 'digitalAccess_BASIC_PHONE' },
321
- { value: 'HOME_WIFI', label: 'digitalAccess_HOME_WIFI' },
322
- { value: 'MOBILE_DATA', label: 'digitalAccess_MOBILE_DATA' },
323
- { value: 'COMPUTER_AT_HOME', label: 'digitalAccess_COMPUTER_AT_HOME' },
324
- { value: 'NONE', label: 'digitalAccess_NONE' },
325
- ];
326
- const DIGITAL_SKILL_LEVEL_OPTIONS = [
327
- { value: 'CANT_USE_SMARTPHONE', label: 'digitalSkillLevel_CANT_USE_SMARTPHONE' },
328
- { value: 'BASIC', label: 'digitalSkillLevel_BASIC' },
329
- { value: 'COMFORTABLE_APPS_UPI', label: 'digitalSkillLevel_COMFORTABLE_APPS_UPI' },
330
- { value: 'ADVANCED_TOOLS_CONTENT', label: 'digitalSkillLevel_ADVANCED_TOOLS_CONTENT' },
331
- ];
332
- const LITERACY_LEVEL_OPTIONS = [
333
- { value: 'CANT_READ_WRITE', label: 'literacyLevel_CANT_READ_WRITE' },
334
- { value: 'CAN_READ_ONLY', label: 'literacyLevel_CAN_READ_ONLY' },
335
- { value: 'READ_WRITE_BASIC', label: 'literacyLevel_READ_WRITE_BASIC' },
336
- { value: 'FLUENT_ONE_LANGUAGE', label: 'literacyLevel_FLUENT_ONE_LANGUAGE' },
337
- ];
338
- const CAREGIVING_RESPONSIBILITIES_OPTIONS = [
339
- { value: 'CHILDREN_UNDER_6', label: 'caregivingResponsibilities_CHILDREN_UNDER_6' },
340
- { value: 'SCHOOL_CHILDREN', label: 'caregivingResponsibilities_SCHOOL_CHILDREN' },
341
- { value: 'ELDERLY', label: 'caregivingResponsibilities_ELDERLY' },
342
- { value: 'DISABLED_MEMBER', label: 'caregivingResponsibilities_DISABLED_MEMBER' },
343
- { value: 'CHRONICALLY_ILL', label: 'caregivingResponsibilities_CHRONICALLY_ILL' },
344
- { value: 'NONE', label: 'caregivingResponsibilities_NONE' },
345
- ];
346
- const CAREGIVING_HOURS_PER_DAY_OPTIONS = [
347
- { value: 'LESS_THAN_1', label: 'caregivingHoursPerDay_LESS_THAN_1' },
348
- { value: '1_TO_3', label: 'caregivingHoursPerDay_1_TO_3' },
349
- { value: '3_TO_6', label: 'caregivingHoursPerDay_3_TO_6' },
350
- { value: 'MORE_THAN_6', label: 'caregivingHoursPerDay_MORE_THAN_6' },
351
- ];
352
- // ─── Step 07: Education ──────────────────────────────────────────────────────
353
- const HIGHEST_QUALIFICATION_OPTIONS = [
354
- { value: 'CLASS_10', label: 'highestQualification_CLASS_10' },
355
- { value: 'CLASS_12', label: 'highestQualification_CLASS_12' },
356
- { value: 'DIPLOMA', label: 'highestQualification_DIPLOMA' },
357
- { value: 'GRADUATION', label: 'highestQualification_GRADUATION' },
358
- { value: 'POST_GRAD', label: 'highestQualification_POST_GRAD' },
359
- { value: 'PHD', label: 'highestQualification_PHD' },
360
- { value: 'POST_DOCTORATE', label: 'highestQualification_POST_DOCTORATE' },
361
- { value: 'OTHER', label: 'highestQualification_OTHER' },
362
- ];
363
- // ─── Step 08: Employment ─────────────────────────────────────────────────────
364
- const EMPLOYMENT_STATUS_OPTIONS = [
365
- { value: 'EMPLOYED_FULL_TIME', label: 'employmentStatus_EMPLOYED_FULL_TIME' },
366
- { value: 'EMPLOYED_PART_TIME', label: 'employmentStatus_EMPLOYED_PART_TIME' },
367
- { value: 'SELF_EMPLOYED', label: 'employmentStatus_SELF_EMPLOYED' },
368
- { value: 'BUSINESS_OWNER', label: 'employmentStatus_BUSINESS_OWNER' },
369
- { value: 'STUDENT', label: 'employmentStatus_STUDENT' },
370
- { value: 'HOMEMAKER', label: 'employmentStatus_HOMEMAKER' },
371
- { value: 'UNEMPLOYED_SEEKING', label: 'employmentStatus_UNEMPLOYED_SEEKING' },
372
- { value: 'UNEMPLOYED_NOT_SEEKING', label: 'employmentStatus_UNEMPLOYED_NOT_SEEKING' },
373
- { value: 'RETIRED', label: 'employmentStatus_RETIRED' },
374
- ];
375
- const CURRENT_WORK_SHIFT_OPTIONS = [
376
- { value: 'MORNING', label: 'currentWorkShift_MORNING' },
377
- { value: 'EVENING', label: 'currentWorkShift_EVENING' },
378
- { value: 'NIGHT', label: 'currentWorkShift_NIGHT' },
379
- { value: 'ROTATIONAL', label: 'currentWorkShift_ROTATIONAL' },
380
- { value: 'FLEXIBLE', label: 'currentWorkShift_FLEXIBLE' },
381
- { value: 'NOT_APPLICABLE', label: 'currentWorkShift_NOT_APPLICABLE' },
382
- ];
383
- const IS_CURRENT_SHIFT_COMFORTABLE_OPTIONS = [
384
- { value: 'YES', label: 'isCurrentShiftComfortable_YES' },
385
- { value: 'NO', label: 'isCurrentShiftComfortable_NO' },
386
- { value: 'SOMETIMES', label: 'isCurrentShiftComfortable_SOMETIMES' },
387
- ];
388
- const DESIRED_SHIFT_OPTIONS = [
389
- { value: 'MORNING', label: 'desiredShift_MORNING' },
390
- { value: 'EVENING', label: 'desiredShift_EVENING' },
391
- { value: 'NIGHT', label: 'desiredShift_NIGHT' },
392
- { value: 'ROTATIONAL_OK', label: 'desiredShift_ROTATIONAL_OK' },
393
- { value: 'FLEXIBLE', label: 'desiredShift_FLEXIBLE' },
394
- { value: 'NO_PREFERENCE', label: 'desiredShift_NO_PREFERENCE' },
395
- ];
396
- const PERSONAL_INCOME_RANGE_OPTIONS = [
397
- { value: 'BELOW_5K', label: 'personalIncomeRange_BELOW_5K' },
398
- { value: '5_10K', label: 'personalIncomeRange_5_10K' },
399
- { value: '10_15K', label: 'personalIncomeRange_10_15K' },
400
- { value: '15_25K', label: 'personalIncomeRange_15_25K' },
401
- { value: '25_50K', label: 'personalIncomeRange_25_50K' },
402
- { value: 'ABOVE_50K', label: 'personalIncomeRange_ABOVE_50K' },
403
- { value: 'NO_INCOME', label: 'personalIncomeRange_NO_INCOME' },
404
- { value: 'PREFER_NOT_SAY', label: 'personalIncomeRange_PREFER_NOT_SAY' },
405
- ];
406
- // ─── Step 09: Neurodiversity ─────────────────────────────────────────────────
407
- const NEURODIVERGENT_SELF_ID_OPTIONS = [
408
- { value: 'NO', label: 'neurodivergentSelfIdentification_NO' },
409
- { value: 'YES_DIAGNOSED', label: 'neurodivergentSelfIdentification_YES_DIAGNOSED' },
410
- { value: 'YES_SELF_IDENTIFIED', label: 'neurodivergentSelfIdentification_YES_SELF_IDENTIFIED' },
411
- { value: 'NOT_SURE', label: 'neurodivergentSelfIdentification_NOT_SURE' },
412
- ];
413
- const NEURODIVERGENT_CONDITIONS_OPTIONS = [
414
- { value: 'ADHD', label: 'neurodivergentConditions_ADHD' },
415
- { value: 'ASD', label: 'neurodivergentConditions_ASD' },
416
- { value: 'DYSLEXIA', label: 'neurodivergentConditions_DYSLEXIA' },
417
- { value: 'DYSCALCULIA', label: 'neurodivergentConditions_DYSCALCULIA' },
418
- { value: 'DYSGRAPHIA', label: 'neurodivergentConditions_DYSGRAPHIA' },
419
- { value: 'DYSPRAXIA', label: 'neurodivergentConditions_DYSPRAXIA' },
420
- { value: 'TOURETTE', label: 'neurodivergentConditions_TOURETTE' },
421
- { value: 'OCD', label: 'neurodivergentConditions_OCD' },
422
- { value: 'HYPERLEXIA', label: 'neurodivergentConditions_HYPERLEXIA' },
423
- { value: 'OTHER', label: 'neurodivergentConditions_OTHER' },
424
- ];
425
- const SENSORY_SENSITIVITIES_OPTIONS = [
426
- { value: 'LOUD_NOISE', label: 'sensorySensitivities_LOUD_NOISE' },
427
- { value: 'BRIGHT_LIGHT', label: 'sensorySensitivities_BRIGHT_LIGHT' },
428
- { value: 'STRONG_SMELLS', label: 'sensorySensitivities_STRONG_SMELLS' },
429
- { value: 'TOUCH', label: 'sensorySensitivities_TOUCH' },
430
- { value: 'CROWDS', label: 'sensorySensitivities_CROWDS' },
431
- { value: 'TEMPERATURE', label: 'sensorySensitivities_TEMPERATURE' },
432
- { value: 'TEXTURE_FOOD', label: 'sensorySensitivities_TEXTURE_FOOD' },
433
- { value: 'TEXTURE_CLOTHING', label: 'sensorySensitivities_TEXTURE_CLOTHING' },
434
- { value: 'OTHER', label: 'sensorySensitivities_OTHER' },
435
- { value: 'NONE', label: 'sensorySensitivities_NONE' },
436
- ];
437
- const EXECUTIVE_FUNCTION_CHALLENGES_OPTIONS = [
438
- { value: 'PLANNING', label: 'executiveFunctionChallenges_PLANNING' },
439
- { value: 'TIME_MANAGEMENT', label: 'executiveFunctionChallenges_TIME_MANAGEMENT' },
440
- { value: 'TASK_INITIATION', label: 'executiveFunctionChallenges_TASK_INITIATION' },
441
- { value: 'TASK_SWITCHING', label: 'executiveFunctionChallenges_TASK_SWITCHING' },
442
- { value: 'EMOTIONAL_REGULATION', label: 'executiveFunctionChallenges_EMOTIONAL_REGULATION' },
443
- { value: 'WORKING_MEMORY', label: 'executiveFunctionChallenges_WORKING_MEMORY' },
444
- { value: 'ORGANIZATION', label: 'executiveFunctionChallenges_ORGANIZATION' },
445
- { value: 'IMPULSE_CONTROL', label: 'executiveFunctionChallenges_IMPULSE_CONTROL' },
446
- { value: 'NONE', label: 'executiveFunctionChallenges_NONE' },
447
- ];
448
- const LEARNING_STYLE_OPTIONS = [
449
- { value: 'VISUAL', label: 'learningStylePreference_VISUAL' },
450
- { value: 'AUDITORY', label: 'learningStylePreference_AUDITORY' },
451
- { value: 'READING_WRITING', label: 'learningStylePreference_READING_WRITING' },
452
- { value: 'HANDS_ON', label: 'learningStylePreference_HANDS_ON' },
453
- { value: 'ONE_TO_ONE', label: 'learningStylePreference_ONE_TO_ONE' },
454
- { value: 'GROUP_DISCUSSION', label: 'learningStylePreference_GROUP_DISCUSSION' },
455
- { value: 'STORYTELLING', label: 'learningStylePreference_STORYTELLING' },
456
- { value: 'REPETITION_PRACTICE', label: 'learningStylePreference_REPETITION_PRACTICE' },
457
- ];
458
- const COMMUNICATION_PREFERENCES_OPTIONS = [
459
- { value: 'PREFER_WRITTEN', label: 'communicationPreferences_PREFER_WRITTEN' },
460
- { value: 'PREFER_VOICE', label: 'communicationPreferences_PREFER_VOICE' },
461
- { value: 'NEED_MORE_TIME', label: 'communicationPreferences_NEED_MORE_TIME' },
462
- { value: 'PREFER_STEP_BY_STEP', label: 'communicationPreferences_PREFER_STEP_BY_STEP' },
463
- { value: 'PREFER_EXAMPLES', label: 'communicationPreferences_PREFER_EXAMPLES' },
464
- { value: 'PREFER_SHORT_MEETINGS', label: 'communicationPreferences_PREFER_SHORT_MEETINGS' },
465
- { value: 'PREFER_REMINDERS', label: 'communicationPreferences_PREFER_REMINDERS' },
466
- { value: 'PREFER_VISUAL_AIDS', label: 'communicationPreferences_PREFER_VISUAL_AIDS' },
467
- { value: 'PREFER_DIRECT_LANGUAGE', label: 'communicationPreferences_PREFER_DIRECT_LANGUAGE' },
468
- ];
469
- const WORKPLACE_ACCOMMODATIONS_OPTIONS = [
470
- { value: 'QUIET_SPACE', label: 'workplaceStudyAccommodations_QUIET_SPACE' },
471
- { value: 'FLEXIBLE_DEADLINES', label: 'workplaceStudyAccommodations_FLEXIBLE_DEADLINES' },
472
- { value: 'WRITTEN_INSTRUCTIONS', label: 'workplaceStudyAccommodations_WRITTEN_INSTRUCTIONS' },
473
- { value: 'EXTRA_TIME', label: 'workplaceStudyAccommodations_EXTRA_TIME' },
474
- { value: 'FREQUENT_BREAKS', label: 'workplaceStudyAccommodations_FREQUENT_BREAKS' },
475
- { value: 'REDUCED_DISTRACTIONS', label: 'workplaceStudyAccommodations_REDUCED_DISTRACTIONS' },
476
- { value: 'ASSISTIVE_TECHNOLOGY', label: 'workplaceStudyAccommodations_ASSISTIVE_TECHNOLOGY' },
477
- { value: 'CLEAR_EXPECTATIONS', label: 'workplaceStudyAccommodations_CLEAR_EXPECTATIONS' },
478
- { value: 'REGULAR_CHECK_INS', label: 'workplaceStudyAccommodations_REGULAR_CHECK_INS' },
479
- { value: 'NONE_NEEDED', label: 'workplaceStudyAccommodations_NONE_NEEDED' },
480
- ];
481
- // ─── Step 10: Psychological ──────────────────────────────────────────────────
482
- const MBTI_TYPE_OPTIONS = [
483
- { value: 'INTJ', label: 'mbtiType_INTJ' },
484
- { value: 'INTP', label: 'mbtiType_INTP' },
485
- { value: 'ENTJ', label: 'mbtiType_ENTJ' },
486
- { value: 'ENTP', label: 'mbtiType_ENTP' },
487
- { value: 'INFJ', label: 'mbtiType_INFJ' },
488
- { value: 'INFP', label: 'mbtiType_INFP' },
489
- { value: 'ENFJ', label: 'mbtiType_ENFJ' },
490
- { value: 'ENFP', label: 'mbtiType_ENFP' },
491
- { value: 'ISTJ', label: 'mbtiType_ISTJ' },
492
- { value: 'ISFJ', label: 'mbtiType_ISFJ' },
493
- { value: 'ESTJ', label: 'mbtiType_ESTJ' },
494
- { value: 'ESFJ', label: 'mbtiType_ESFJ' },
495
- { value: 'ISTP', label: 'mbtiType_ISTP' },
496
- { value: 'ISFP', label: 'mbtiType_ISFP' },
497
- { value: 'ESTP', label: 'mbtiType_ESTP' },
498
- { value: 'ESFP', label: 'mbtiType_ESFP' },
499
- { value: 'NOT_SURE', label: 'mbtiType_NOT_SURE' },
500
- ];
501
- const ENNEAGRAM_TYPE_OPTIONS = [
502
- { value: 'TYPE_1', label: 'enneagramType_TYPE_1' },
503
- { value: 'TYPE_2', label: 'enneagramType_TYPE_2' },
504
- { value: 'TYPE_3', label: 'enneagramType_TYPE_3' },
505
- { value: 'TYPE_4', label: 'enneagramType_TYPE_4' },
506
- { value: 'TYPE_5', label: 'enneagramType_TYPE_5' },
507
- { value: 'TYPE_6', label: 'enneagramType_TYPE_6' },
508
- { value: 'TYPE_7', label: 'enneagramType_TYPE_7' },
509
- { value: 'TYPE_8', label: 'enneagramType_TYPE_8' },
510
- { value: 'TYPE_9', label: 'enneagramType_TYPE_9' },
511
- { value: 'NOT_SURE', label: 'enneagramType_NOT_SURE' },
512
- ];
513
- const ATTACHMENT_STYLE_OPTIONS = [
514
- { value: 'SECURE', label: 'attachmentStyle_SECURE' },
515
- { value: 'ANXIOUS_PREOCCUPIED', label: 'attachmentStyle_ANXIOUS_PREOCCUPIED' },
516
- { value: 'DISMISSIVE_AVOIDANT', label: 'attachmentStyle_DISMISSIVE_AVOIDANT' },
517
- { value: 'FEARFUL_AVOIDANT', label: 'attachmentStyle_FEARFUL_AVOIDANT' },
518
- { value: 'NOT_SURE', label: 'attachmentStyle_NOT_SURE' },
519
- ];
520
- const DISC_PROFILE_OPTIONS = [
521
- { value: 'D', label: 'discProfile_D' },
522
- { value: 'I', label: 'discProfile_I' },
523
- { value: 'S', label: 'discProfile_S' },
524
- { value: 'C', label: 'discProfile_C' },
525
- { value: 'NOT_SURE', label: 'discProfile_NOT_SURE' },
526
- ];
527
- const ASSESSMENT_ACCURACY_OPTIONS = [
528
- { value: 'NOT_ACCURATE', label: 'assessmentAccuracyRating_NOT_ACCURATE' },
529
- { value: 'SOMEWHAT_ACCURATE', label: 'assessmentAccuracyRating_SOMEWHAT_ACCURATE' },
530
- { value: 'MOSTLY_ACCURATE', label: 'assessmentAccuracyRating_MOSTLY_ACCURATE' },
531
- { value: 'VERY_ACCURATE', label: 'assessmentAccuracyRating_VERY_ACCURATE' },
532
- ];
533
- const ASSESSMENT_DATA_CONSENT_OPTIONS = [
534
- { value: 'YES', label: 'assessmentDataConsent_YES' },
535
- { value: 'NO', label: 'assessmentDataConsent_NO' },
536
- ];
537
- // ─── Step 11: Political ──────────────────────────────────────────────────────
538
- const SELF_PARTY_ASSOCIATION_OPTIONS = [
539
- { value: 'NO', label: 'selfPartyAssociation_NO' },
540
- { value: 'YES_CURRENTLY', label: 'selfPartyAssociation_YES_CURRENTLY' },
541
- { value: 'YES_PAST', label: 'selfPartyAssociation_YES_PAST' },
542
- ];
543
- const SELF_PARTY_ROLE_OPTIONS = [
544
- { value: 'MEMBER', label: 'selfPartyRole_MEMBER' },
545
- { value: 'ACTIVE_WORKER', label: 'selfPartyRole_ACTIVE_WORKER' },
546
- { value: 'OFFICE_BEARER', label: 'selfPartyRole_OFFICE_BEARER' },
547
- { value: 'CANDIDATE', label: 'selfPartyRole_CANDIDATE' },
548
- { value: 'SPOKESPERSON', label: 'selfPartyRole_SPOKESPERSON' },
549
- { value: 'VOLUNTEER', label: 'selfPartyRole_VOLUNTEER' },
550
- { value: 'OTHER', label: 'selfPartyRole_OTHER' },
551
- ];
552
- const FAMILY_PARTY_ASSOCIATION_OPTIONS = [
553
- { value: 'NO', label: 'familyPartyAssociation_NO' },
554
- { value: 'YES_IMMEDIATE', label: 'familyPartyAssociation_YES_IMMEDIATE' },
555
- { value: 'YES_EXTENDED', label: 'familyPartyAssociation_YES_EXTENDED' },
556
- { value: 'DONT_KNOW', label: 'familyPartyAssociation_DONT_KNOW' },
557
- ];
558
- const PUBLIC_OFFICE_HISTORY_OPTIONS = [
559
- { value: 'NO', label: 'publicOfficeHistory_NO' },
560
- { value: 'YES_SELF', label: 'publicOfficeHistory_YES_SELF' },
561
- { value: 'YES_FAMILY', label: 'publicOfficeHistory_YES_FAMILY' },
562
- { value: 'YES_BOTH', label: 'publicOfficeHistory_YES_BOTH' },
563
- ];
564
- const ELECTION_CONTESTED_OPTIONS = [
565
- { value: 'NEVER', label: 'electionContested_NEVER' },
566
- { value: 'LOCAL_BODY', label: 'electionContested_LOCAL_BODY' },
567
- { value: 'STATE_ASSEMBLY', label: 'electionContested_STATE_ASSEMBLY' },
568
- { value: 'PARLIAMENT', label: 'electionContested_PARLIAMENT' },
569
- { value: 'MULTIPLE_LEVELS', label: 'electionContested_MULTIPLE_LEVELS' },
570
- ];
571
- const ELECTION_RESULT_OPTIONS = [
572
- { value: 'WON', label: 'electionResult_WON' },
573
- { value: 'LOST', label: 'electionResult_LOST' },
574
- { value: 'BOTH', label: 'electionResult_BOTH' },
575
- { value: 'NOT_APPLICABLE', label: 'electionResult_NOT_APPLICABLE' },
576
- ];
577
- const POLITICAL_NETWORK_LEVEL_OPTIONS = [
578
- { value: 'NONE', label: 'politicalNetworkLevel_NONE' },
579
- { value: 'LOCAL_WARD', label: 'politicalNetworkLevel_LOCAL_WARD' },
580
- { value: 'BLOCK_LEVEL', label: 'politicalNetworkLevel_BLOCK_LEVEL' },
581
- { value: 'DISTRICT_LEVEL', label: 'politicalNetworkLevel_DISTRICT_LEVEL' },
582
- { value: 'STATE_LEVEL', label: 'politicalNetworkLevel_STATE_LEVEL' },
583
- { value: 'NATIONAL_LEVEL', label: 'politicalNetworkLevel_NATIONAL_LEVEL' },
584
- ];
585
- const CIVIC_ORGANISATION_TYPES_OPTIONS = [
586
- { value: 'STUDENT_UNION', label: 'civicOrganisationTypes_STUDENT_UNION' },
587
- { value: 'TRADE_UNION', label: 'civicOrganisationTypes_TRADE_UNION' },
588
- { value: 'FARMERS_UNION', label: 'civicOrganisationTypes_FARMERS_UNION' },
589
- { value: 'SOCIAL_NGO', label: 'civicOrganisationTypes_SOCIAL_NGO' },
590
- { value: 'RELIGIOUS_ORGANISATION', label: 'civicOrganisationTypes_RELIGIOUS_ORGANISATION' },
591
- { value: 'CASTE_ASSOCIATION', label: 'civicOrganisationTypes_CASTE_ASSOCIATION' },
592
- { value: 'PROFESSIONAL_BODY', label: 'civicOrganisationTypes_PROFESSIONAL_BODY' },
593
- { value: 'YOUTH_WING', label: 'civicOrganisationTypes_YOUTH_WING' },
594
- { value: 'WOMENS_ORGANISATION', label: 'civicOrganisationTypes_WOMENS_ORGANISATION' },
595
- { value: 'RTIGHT_TO_INFORMATION', label: 'civicOrganisationTypes_RTIGHT_TO_INFORMATION' },
596
- { value: 'OTHER', label: 'civicOrganisationTypes_OTHER' },
597
- { value: 'NONE', label: 'civicOrganisationTypes_NONE' },
598
- ];
599
- // ─── Step 12: Electoral ──────────────────────────────────────────────────────
600
- const WILL_VOTE_OPTIONS = [
601
- { value: 'YES', label: 'willVoteThisTime_YES' },
602
- { value: 'NO', label: 'willVoteThisTime_NO' },
603
- { value: 'NOT_SURE', label: 'willVoteThisTime_NOT_SURE' },
604
- ];
605
- const VOTED_LAST_TIME_OPTIONS = [
606
- { value: 'YES', label: 'votedLastTime_YES' },
607
- { value: 'NO', label: 'votedLastTime_NO' },
608
- { value: 'NOT_ELIGIBLE_THEN', label: 'votedLastTime_NOT_ELIGIBLE_THEN' },
609
- { value: 'DONT_REMEMBER', label: 'votedLastTime_DONT_REMEMBER' },
610
- ];
611
- const VOTING_FREQUENCY_OPTIONS = [
612
- { value: 'ALWAYS', label: 'votingFrequency_ALWAYS' },
613
- { value: 'USUALLY', label: 'votingFrequency_USUALLY' },
614
- { value: 'SOMETIMES', label: 'votingFrequency_SOMETIMES' },
615
- { value: 'RARELY', label: 'votingFrequency_RARELY' },
616
- { value: 'NEVER', label: 'votingFrequency_NEVER' },
617
- ];
618
- const PRIMARY_VOTING_ISSUES_OPTIONS = [
619
- { value: 'DEVELOPMENT', label: 'primaryVotingIssues_DEVELOPMENT' },
620
- { value: 'SECURITY', label: 'primaryVotingIssues_SECURITY' },
621
- { value: 'EDUCATION', label: 'primaryVotingIssues_EDUCATION' },
622
- { value: 'HEALTHCARE', label: 'primaryVotingIssues_HEALTHCARE' },
623
- { value: 'ECONOMY', label: 'primaryVotingIssues_ECONOMY' },
624
- { value: 'CASTE_COMMUNITY', label: 'primaryVotingIssues_CASTE_COMMUNITY' },
625
- { value: 'RELIGION', label: 'primaryVotingIssues_RELIGION' },
626
- { value: 'CANDIDATE_QUALITY', label: 'primaryVotingIssues_CANDIDATE_QUALITY' },
627
- { value: 'ANTI_INCUMBENCY', label: 'primaryVotingIssues_ANTI_INCUMBENCY' },
628
- { value: 'WELFARE_SCHEMES', label: 'primaryVotingIssues_WELFARE_SCHEMES' },
629
- { value: 'CORRUPTION', label: 'primaryVotingIssues_CORRUPTION' },
630
- { value: 'ENVIRONMENT', label: 'primaryVotingIssues_ENVIRONMENT' },
631
- { value: 'WOMEN_SAFETY', label: 'primaryVotingIssues_WOMEN_SAFETY' },
632
- { value: 'LOCAL_ISSUES', label: 'primaryVotingIssues_LOCAL_ISSUES' },
633
- { value: 'PARTY_LOYALTY', label: 'primaryVotingIssues_PARTY_LOYALTY' },
634
- { value: 'OTHER', label: 'primaryVotingIssues_OTHER' },
635
- ];
636
- const POLITICAL_SPECTRUM_SELF_OPTIONS = [
637
- { value: 'EXTREME_RIGHT', label: 'politicalSpectrumSelf_EXTREME_RIGHT' },
638
- { value: 'RIGHT', label: 'politicalSpectrumSelf_RIGHT' },
639
- { value: 'CENTER_RIGHT', label: 'politicalSpectrumSelf_CENTER_RIGHT' },
640
- { value: 'CENTER', label: 'politicalSpectrumSelf_CENTER' },
641
- { value: 'CENTER_LEFT', label: 'politicalSpectrumSelf_CENTER_LEFT' },
642
- { value: 'LEFT', label: 'politicalSpectrumSelf_LEFT' },
643
- { value: 'EXTREME_LEFT', label: 'politicalSpectrumSelf_EXTREME_LEFT' },
644
- { value: 'APOLITICAL', label: 'politicalSpectrumSelf_APOLITICAL' },
645
- { value: 'DONT_KNOW', label: 'politicalSpectrumSelf_DONT_KNOW' },
646
- ];
647
- const VOTER_ID_UPDATE_PENDING_OPTIONS = [
648
- { value: 'NO', label: 'voterIdUpdatePending_NO' },
649
- { value: 'YES', label: 'voterIdUpdatePending_YES' },
650
- { value: 'NOT_SURE', label: 'voterIdUpdatePending_NOT_SURE' },
651
- ];
652
- const AADHAAR_VOTER_LINK_STATUS_OPTIONS = [
653
- { value: 'YES_LINKED', label: 'aadhaarVoterLinkStatus_YES_LINKED' },
654
- { value: 'NO_NOT_LINKED', label: 'aadhaarVoterLinkStatus_NO_NOT_LINKED' },
655
- { value: 'NOT_DONE_YET', label: 'aadhaarVoterLinkStatus_NOT_DONE_YET' },
656
- { value: 'NOT_AWARE', label: 'aadhaarVoterLinkStatus_NOT_AWARE' },
657
- ];
658
- // ─── Step 13: Health ─────────────────────────────────────────────────────────
659
- const DISABILITY_STATUS_OPTIONS = [
660
- { value: 'NONE', label: 'disabilityStatus_NONE' },
661
- { value: 'PHYSICAL', label: 'disabilityStatus_PHYSICAL' },
662
- { value: 'VISUAL', label: 'disabilityStatus_VISUAL' },
663
- { value: 'HEARING', label: 'disabilityStatus_HEARING' },
664
- { value: 'SPEECH', label: 'disabilityStatus_SPEECH' },
665
- { value: 'INTELLECTUAL', label: 'disabilityStatus_INTELLECTUAL' },
666
- { value: 'PSYCHOSOCIAL', label: 'disabilityStatus_PSYCHOSOCIAL' },
667
- { value: 'MULTIPLE', label: 'disabilityStatus_MULTIPLE' },
668
- { value: 'OTHER', label: 'disabilityStatus_OTHER' },
669
- ];
670
- const OVERALL_HEALTH_STATUS_OPTIONS = [
671
- { value: 'EXCELLENT', label: 'overallHealthStatus_EXCELLENT' },
672
- { value: 'GOOD', label: 'overallHealthStatus_GOOD' },
673
- { value: 'FAIR', label: 'overallHealthStatus_FAIR' },
674
- { value: 'POOR', label: 'overallHealthStatus_POOR' },
675
- ];
676
- const KNOWN_HEALTH_CONDITIONS_OPTIONS = [
677
- { value: 'DIABETES', label: 'knownHealthConditions_DIABETES' },
678
- { value: 'HYPERTENSION', label: 'knownHealthConditions_HYPERTENSION' },
679
- { value: 'HEART_DISEASE', label: 'knownHealthConditions_HEART_DISEASE' },
680
- { value: 'ASTHMA_COPD', label: 'knownHealthConditions_ASTHMA_COPD' },
681
- { value: 'THYROID_DISORDER', label: 'knownHealthConditions_THYROID_DISORDER' },
682
- { value: 'KIDNEY_DISEASE', label: 'knownHealthConditions_KIDNEY_DISEASE' },
683
- { value: 'LIVER_DISEASE', label: 'knownHealthConditions_LIVER_DISEASE' },
684
- { value: 'ARTHRITIS', label: 'knownHealthConditions_ARTHRITIS' },
685
- { value: 'CHRONIC_PAIN', label: 'knownHealthConditions_CHRONIC_PAIN' },
686
- { value: 'EPILEPSY', label: 'knownHealthConditions_EPILEPSY' },
687
- { value: 'CANCER', label: 'knownHealthConditions_CANCER' },
688
- { value: 'MENTAL_HEALTH_CONDITION', label: 'knownHealthConditions_MENTAL_HEALTH_CONDITION' },
689
- { value: 'OTHER', label: 'knownHealthConditions_OTHER' },
690
- { value: 'NONE', label: 'knownHealthConditions_NONE' },
691
- ];
692
- const BLOOD_GROUP_OPTIONS = [
693
- { value: 'A_POSITIVE', label: 'bloodGroup_A_POSITIVE' },
694
- { value: 'A_NEGATIVE', label: 'bloodGroup_A_NEGATIVE' },
695
- { value: 'B_POSITIVE', label: 'bloodGroup_B_POSITIVE' },
696
- { value: 'B_NEGATIVE', label: 'bloodGroup_B_NEGATIVE' },
697
- { value: 'AB_POSITIVE', label: 'bloodGroup_AB_POSITIVE' },
698
- { value: 'AB_NEGATIVE', label: 'bloodGroup_AB_NEGATIVE' },
699
- { value: 'O_POSITIVE', label: 'bloodGroup_O_POSITIVE' },
700
- { value: 'O_NEGATIVE', label: 'bloodGroup_O_NEGATIVE' },
701
- { value: 'DONT_KNOW', label: 'bloodGroup_DONT_KNOW' },
702
- ];
703
- const HAS_HEALTH_INSURANCE_OPTIONS = [
704
- { value: 'YES', label: 'hasHealthInsurance_YES' },
705
- { value: 'NO', label: 'hasHealthInsurance_NO' },
706
- { value: 'NOT_SURE', label: 'hasHealthInsurance_NOT_SURE' },
707
- ];
708
- const HAS_AYUSHMAN_BHARAT_CARD_OPTIONS = [
709
- { value: 'YES', label: 'hasAyushmanBharatCard_YES' },
710
- { value: 'NO', label: 'hasAyushmanBharatCard_NO' },
711
- { value: 'NOT_SURE', label: 'hasAyushmanBharatCard_NOT_SURE' },
712
- ];
713
- const FOOD_HABIT_TYPE_OPTIONS = [
714
- { value: 'VEGETARIAN', label: 'foodHabitType_VEGETARIAN' },
715
- { value: 'EGGETARIAN', label: 'foodHabitType_EGGETARIAN' },
716
- { value: 'NON_VEGETARIAN', label: 'foodHabitType_NON_VEGETARIAN' },
717
- { value: 'VEGAN', label: 'foodHabitType_VEGAN' },
718
- { value: 'JAIN', label: 'foodHabitType_JAIN' },
719
- { value: 'OTHER', label: 'foodHabitType_OTHER' },
720
- ];
721
- const PHYSICAL_ACTIVITY_LEVEL_OPTIONS = [
722
- { value: 'VERY_ACTIVE', label: 'physicalActivityLevel_VERY_ACTIVE' },
723
- { value: 'ACTIVE', label: 'physicalActivityLevel_ACTIVE' },
724
- { value: 'LIGHTLY_ACTIVE', label: 'physicalActivityLevel_LIGHTLY_ACTIVE' },
725
- { value: 'SEDENTARY', label: 'physicalActivityLevel_SEDENTARY' },
726
- ];
727
- const PHYSICAL_ACTIVITY_TYPES_OPTIONS = [
728
- { value: 'WALKING_RUNNING', label: 'physicalActivityTypes_WALKING_RUNNING' },
729
- { value: 'YOGA_MEDITATION', label: 'physicalActivityTypes_YOGA_MEDITATION' },
730
- { value: 'GYM_WEIGHTLIFTING', label: 'physicalActivityTypes_GYM_WEIGHTLIFTING' },
731
- { value: 'CYCLING', label: 'physicalActivityTypes_CYCLING' },
732
- { value: 'SWIMMING', label: 'physicalActivityTypes_SWIMMING' },
733
- { value: 'SPORTS_TEAM', label: 'physicalActivityTypes_SPORTS_TEAM' },
734
- { value: 'MARTIAL_ARTS', label: 'physicalActivityTypes_MARTIAL_ARTS' },
735
- { value: 'MANUAL_LABOUR', label: 'physicalActivityTypes_MANUAL_LABOUR' },
736
- { value: 'DANCE', label: 'physicalActivityTypes_DANCE' },
737
- { value: 'OTHER', label: 'physicalActivityTypes_OTHER' },
738
- ];
739
- const SLEEP_HOURS_OPTIONS = [
740
- { value: 'LESS_THAN_5', label: 'sleepHoursPerDay_LESS_THAN_5' },
741
- { value: 'FIVE_TO_SIX', label: 'sleepHoursPerDay_FIVE_TO_SIX' },
742
- { value: 'SIX_TO_SEVEN', label: 'sleepHoursPerDay_SIX_TO_SEVEN' },
743
- { value: 'SEVEN_TO_EIGHT', label: 'sleepHoursPerDay_SEVEN_TO_EIGHT' },
744
- { value: 'MORE_THAN_EIGHT', label: 'sleepHoursPerDay_MORE_THAN_EIGHT' },
745
- ];
746
- const PERCEIVED_STRESS_LEVEL_OPTIONS = [
747
- { value: 'VERY_LOW', label: 'perceivedStressLevel_VERY_LOW' },
748
- { value: 'LOW', label: 'perceivedStressLevel_LOW' },
749
- { value: 'MODERATE', label: 'perceivedStressLevel_MODERATE' },
750
- { value: 'HIGH', label: 'perceivedStressLevel_HIGH' },
751
- { value: 'VERY_HIGH', label: 'perceivedStressLevel_VERY_HIGH' },
752
- ];
753
- const TOBACCO_USE_OPTIONS = [
754
- { value: 'NEVER', label: 'tobaccoUse_NEVER' },
755
- { value: 'TRIED_QUIT', label: 'tobaccoUse_TRIED_QUIT' },
756
- { value: 'OCCASIONALLY', label: 'tobaccoUse_OCCASIONALLY' },
757
- { value: 'REGULARLY', label: 'tobaccoUse_REGULARLY' },
758
- { value: 'DAILY', label: 'tobaccoUse_DAILY' },
759
- ];
760
- const TOBACCO_TYPES_OPTIONS = [
761
- { value: 'CIGARETTES', label: 'tobaccoTypes_CIGARETTES' },
762
- { value: 'BIDI', label: 'tobaccoTypes_BIDI' },
763
- { value: 'CHEWING_TOBACCO', label: 'tobaccoTypes_CHEWING_TOBACCO' },
764
- { value: 'GUTKHA_PAN_MASALA', label: 'tobaccoTypes_GUTKHA_PAN_MASALA' },
765
- { value: 'HOOKAH', label: 'tobaccoTypes_HOOKAH' },
766
- { value: 'VAPING_E_CIGARETTE', label: 'tobaccoTypes_VAPING_E_CIGARETTE' },
767
- { value: 'OTHER', label: 'tobaccoTypes_OTHER' },
768
- ];
769
- const ALCOHOL_USE_OPTIONS = [
770
- { value: 'NEVER', label: 'alcoholUse_NEVER' },
771
- { value: 'RARELY', label: 'alcoholUse_RARELY' },
772
- { value: 'OCCASIONALLY', label: 'alcoholUse_OCCASIONALLY' },
773
- { value: 'FREQUENTLY', label: 'alcoholUse_FREQUENTLY' },
774
- { value: 'VERY_FREQUENTLY', label: 'alcoholUse_VERY_FREQUENTLY' },
775
- { value: 'QUIT', label: 'alcoholUse_QUIT' },
776
- ];
777
- const INTERESTED_IN_HEALTH_PROGRAMS_OPTIONS = [
778
- { value: 'YOGA_MEDITATION', label: 'interestedInHealthPrograms_YOGA_MEDITATION' },
779
- { value: 'FITNESS_GYM', label: 'interestedInHealthPrograms_FITNESS_GYM' },
780
- { value: 'NUTRITION_COUNSELLING', label: 'interestedInHealthPrograms_NUTRITION_COUNSELLING' },
781
- { value: 'STRESS_MANAGEMENT', label: 'interestedInHealthPrograms_STRESS_MANAGEMENT' },
782
- { value: 'ADDICTION_RECOVERY', label: 'interestedInHealthPrograms_ADDICTION_RECOVERY' },
783
- { value: 'MENTAL_HEALTH_SUPPORT', label: 'interestedInHealthPrograms_MENTAL_HEALTH_SUPPORT' },
784
- { value: 'HEALTH_CAMPS_CHECKUPS', label: 'interestedInHealthPrograms_HEALTH_CAMPS_CHECKUPS' },
785
- { value: 'FIRST_AID_TRAINING', label: 'interestedInHealthPrograms_FIRST_AID_TRAINING' },
786
- { value: 'NONE', label: 'interestedInHealthPrograms_NONE' },
787
- ];
788
- const ANIMAL_WELFARE_STATEMENTS_OPTIONS = [
789
- { value: 'ANIMAL_NO_CRUELTY', label: 'viewOnAnimalWelfareStatements_ANIMAL_NO_CRUELTY' },
790
- { value: 'ANIMAL_BASIC_RIGHTS', label: 'viewOnAnimalWelfareStatements_ANIMAL_BASIC_RIGHTS' },
791
- {
792
- value: 'ANIMAL_OK_FOR_FOOD_IF_HUMANE',
793
- label: 'viewOnAnimalWelfareStatements_ANIMAL_OK_FOR_FOOD_IF_HUMANE',
794
- },
795
- {
796
- value: 'ANIMAL_RELIGIOUS_SACRIFICE_OK',
797
- label: 'viewOnAnimalWelfareStatements_ANIMAL_RELIGIOUS_SACRIFICE_OK',
798
- },
799
- {
800
- value: 'ANIMAL_FACTORY_FARMING_CONCERN',
801
- label: 'viewOnAnimalWelfareStatements_ANIMAL_FACTORY_FARMING_CONCERN',
802
- },
803
- { value: 'ANIMAL_NEUTRAL', label: 'viewOnAnimalWelfareStatements_ANIMAL_NEUTRAL' },
804
- { value: 'ANIMAL_DONT_KNOW', label: 'viewOnAnimalWelfareStatements_ANIMAL_DONT_KNOW' },
805
- { value: 'ANIMAL_PREFER_NOT_SAY', label: 'viewOnAnimalWelfareStatements_ANIMAL_PREFER_NOT_SAY' },
806
- ];
807
- const MOBILITY_LIMITATIONS_OPTIONS = [
808
- { value: 'DIFFICULTY_WALKING', label: 'mobilityOrTravelLimitations_DIFFICULTY_WALKING' },
809
- {
810
- value: 'DIFFICULTY_CLIMBING_STAIRS',
811
- label: 'mobilityOrTravelLimitations_DIFFICULTY_CLIMBING_STAIRS',
812
- },
813
- { value: 'CANT_TRAVEL_FAR', label: 'mobilityOrTravelLimitations_CANT_TRAVEL_FAR' },
814
- {
815
- value: 'FAMILY_RESTRICTS_TRAVEL',
816
- label: 'mobilityOrTravelLimitations_FAMILY_RESTRICTS_TRAVEL',
817
- },
818
- { value: 'NO_LIMITATIONS', label: 'mobilityOrTravelLimitations_NO_LIMITATIONS' },
819
- ];
820
- // ─── Step 14: Priorities ─────────────────────────────────────────────────────
821
- const PRIORITY_CATEGORY_TAGS_OPTIONS = [
822
- { value: 'CAREER', label: 'priorityCategoryTags_CAREER' },
823
- { value: 'BUSINESS', label: 'priorityCategoryTags_BUSINESS' },
824
- { value: 'EDUCATION', label: 'priorityCategoryTags_EDUCATION' },
825
- { value: 'HEALTH', label: 'priorityCategoryTags_HEALTH' },
826
- { value: 'FAMILY', label: 'priorityCategoryTags_FAMILY' },
827
- { value: 'MARRIAGE', label: 'priorityCategoryTags_MARRIAGE' },
828
- { value: 'FINANCE', label: 'priorityCategoryTags_FINANCE' },
829
- { value: 'SPIRITUAL', label: 'priorityCategoryTags_SPIRITUAL' },
830
- { value: 'SOCIAL_SERVICE', label: 'priorityCategoryTags_SOCIAL_SERVICE' },
831
- { value: 'POLITICAL_ACTIVISM', label: 'priorityCategoryTags_POLITICAL_ACTIVISM' },
832
- { value: 'PERSONAL_GROWTH', label: 'priorityCategoryTags_PERSONAL_GROWTH' },
833
- { value: 'CREATIVE_ARTS', label: 'priorityCategoryTags_CREATIVE_ARTS' },
834
- { value: 'OTHER', label: 'priorityCategoryTags_OTHER' },
835
- ];
836
- const SKILLS_WANT_TO_LEARN_OPTIONS = [
837
- { value: 'PUBLIC_SPEAKING', label: 'skillsWantToLearn_PUBLIC_SPEAKING' },
838
- { value: 'LEADERSHIP', label: 'skillsWantToLearn_LEADERSHIP' },
839
- { value: 'DIGITAL_MARKETING', label: 'skillsWantToLearn_DIGITAL_MARKETING' },
840
- { value: 'DATA_ANALYSIS', label: 'skillsWantToLearn_DATA_ANALYSIS' },
841
- { value: 'FOREIGN_LANGUAGE', label: 'skillsWantToLearn_FOREIGN_LANGUAGE' },
842
- { value: 'FINANCIAL_LITERACY', label: 'skillsWantToLearn_FINANCIAL_LITERACY' },
843
- { value: 'LEGAL_AWARENESS', label: 'skillsWantToLearn_LEGAL_AWARENESS' },
844
- { value: 'FARMING_AGRICULTURE', label: 'skillsWantToLearn_FARMING_AGRICULTURE' },
845
- { value: 'TECHNICAL_IT', label: 'skillsWantToLearn_TECHNICAL_IT' },
846
- { value: 'TEACHING_TRAINING', label: 'skillsWantToLearn_TEACHING_TRAINING' },
847
- { value: 'SOCIAL_MEDIA_CONTENT', label: 'skillsWantToLearn_SOCIAL_MEDIA_CONTENT' },
848
- { value: 'NEGOTIATION', label: 'skillsWantToLearn_NEGOTIATION' },
849
- { value: 'FIRST_AID_HEALTH', label: 'skillsWantToLearn_FIRST_AID_HEALTH' },
850
- { value: 'CONFLICT_RESOLUTION', label: 'skillsWantToLearn_CONFLICT_RESOLUTION' },
851
- { value: 'OTHER', label: 'skillsWantToLearn_OTHER' },
852
- ];
853
- const OPEN_TO_VOLUNTEERING_OPTIONS = [
854
- { value: 'YES', label: 'openToVolunteering_YES' },
855
- { value: 'NO', label: 'openToVolunteering_NO' },
856
- { value: 'MAYBE', label: 'openToVolunteering_MAYBE' },
857
- ];
858
- const VOLUNTEERING_CAPACITY_OPTIONS = [
859
- { value: 'LESS_THAN_2_HRS', label: 'volunteeringCapacityPerWeek_LESS_THAN_2_HRS' },
860
- { value: 'TWO_TO_5_HRS', label: 'volunteeringCapacityPerWeek_TWO_TO_5_HRS' },
861
- { value: 'FIVE_TO_10_HRS', label: 'volunteeringCapacityPerWeek_FIVE_TO_10_HRS' },
862
- { value: 'MORE_THAN_10_HRS', label: 'volunteeringCapacityPerWeek_MORE_THAN_10_HRS' },
863
- { value: 'FULL_TIME', label: 'volunteeringCapacityPerWeek_FULL_TIME' },
864
- ];
865
- const HELP_NEEDED_FROM_ORG_OPTIONS = [
866
- { value: 'CAREER_GUIDANCE', label: 'helpNeededFromOrg_CAREER_GUIDANCE' },
867
- { value: 'LEGAL_SUPPORT', label: 'helpNeededFromOrg_LEGAL_SUPPORT' },
868
- { value: 'FINANCIAL_AID', label: 'helpNeededFromOrg_FINANCIAL_AID' },
869
- { value: 'HEALTH_SUPPORT', label: 'helpNeededFromOrg_HEALTH_SUPPORT' },
870
- { value: 'EDUCATION_SCHOLARSHIP', label: 'helpNeededFromOrg_EDUCATION_SCHOLARSHIP' },
871
- { value: 'LEADERSHIP_TRAINING', label: 'helpNeededFromOrg_LEADERSHIP_TRAINING' },
872
- { value: 'NETWORK_CONNECTIONS', label: 'helpNeededFromOrg_NETWORK_CONNECTIONS' },
873
- { value: 'EMOTIONAL_SUPPORT', label: 'helpNeededFromOrg_EMOTIONAL_SUPPORT' },
874
- { value: 'DIGITAL_TRAINING', label: 'helpNeededFromOrg_DIGITAL_TRAINING' },
875
- { value: 'BUSINESS_MENTORING', label: 'helpNeededFromOrg_BUSINESS_MENTORING' },
876
- { value: 'NONE', label: 'helpNeededFromOrg_NONE' },
877
- ];
878
- // ═════════════════════════════════════════════════════════════════════════════
879
- // MASTER FIELD METADATA MAP
880
- // ═════════════════════════════════════════════════════════════════════════════
881
- export const UDP_FIELD_META = {
882
- // ── Step 01: Profile Onboarding ────────────────────────────────────────────
883
- profilePhotoUrl: {
884
- key: 'profilePhotoUrl',
885
- step: 1,
886
- labelKey: 'profilePhotoUrl',
887
- descriptionKey: 'profilePhotoUrl_desc',
888
- component: 'profilePhotoUploader',
889
- },
890
- email: { key: 'email', step: 1, labelKey: 'email', component: 'emailSearch' },
891
- firstName: {
892
- key: 'firstName',
893
- step: 1,
894
- labelKey: 'firstName',
895
- component: 'input',
896
- required: true,
897
- immutable: true,
898
- successMessageKey: 'firstName_saved',
899
- },
900
- middleName: {
901
- key: 'middleName',
902
- step: 1,
903
- labelKey: 'middleName',
904
- component: 'input',
905
- immutable: true,
906
- },
907
- lastName: { key: 'lastName', step: 1, labelKey: 'lastName', component: 'input', immutable: true },
908
- gender: {
909
- key: 'gender',
910
- step: 1,
911
- labelKey: 'gender',
912
- component: 'genderSelector',
913
- options: GENDER_OPTIONS,
914
- immutable: true,
915
- },
916
- dateOfBirth: {
917
- key: 'dateOfBirth',
918
- step: 1,
919
- labelKey: 'dateOfBirth',
920
- component: 'input',
921
- immutable: true,
922
- },
923
- aadhaarNumber: {
924
- key: 'aadhaarNumber',
925
- step: 1,
926
- labelKey: 'aadhaarNumber',
927
- descriptionKey: 'aadhaarNumber_desc',
928
- component: 'aadhaar',
929
- },
930
- assistedByVolunteer: {
931
- key: 'assistedByVolunteer',
932
- step: 1,
933
- labelKey: 'assistedByVolunteer',
934
- descriptionKey: 'assistedByVolunteer_desc',
935
- component: 'volunteerSearchSelect',
936
- },
937
- primaryLanguage: {
938
- key: 'primaryLanguage',
939
- step: 1,
940
- labelKey: 'primaryLanguage',
941
- component: 'languageChips',
942
- },
943
- secondaryLanguages: {
944
- key: 'secondaryLanguages',
945
- step: 1,
946
- labelKey: 'secondaryLanguages',
947
- descriptionKey: 'secondaryLanguages_desc',
948
- component: 'secondaryLanguages',
949
- },
950
- // ── Step 02: Contact Details ───────────────────────────────────────────────
951
- phonePrimary: {
952
- key: 'phonePrimary',
953
- step: 2,
954
- labelKey: 'phonePrimary',
955
- component: 'input',
956
- immutable: true,
957
- },
958
- whatsappSameAsPrimary: {
959
- key: 'whatsappSameAsPrimary',
960
- step: 2,
961
- labelKey: 'whatsappSameAsPrimary',
962
- component: 'checkbox',
963
- },
964
- whatsappNumber: {
965
- key: 'whatsappNumber',
966
- step: 2,
967
- labelKey: 'whatsappNumber',
968
- component: 'input',
969
- },
970
- 'socialMedia.facebook': {
971
- key: 'socialMedia.facebook',
972
- step: 2,
973
- labelKey: 'socialMedia_facebook',
974
- component: 'input',
975
- },
976
- 'socialMedia.twitter': {
977
- key: 'socialMedia.twitter',
978
- step: 2,
979
- labelKey: 'socialMedia_twitter',
980
- component: 'input',
981
- },
982
- 'socialMedia.instagram': {
983
- key: 'socialMedia.instagram',
984
- step: 2,
985
- labelKey: 'socialMedia_instagram',
986
- component: 'input',
987
- },
988
- 'socialMedia.linkedin': {
989
- key: 'socialMedia.linkedin',
990
- step: 2,
991
- labelKey: 'socialMedia_linkedin',
992
- component: 'input',
993
- },
994
- 'socialMedia.youtube': {
995
- key: 'socialMedia.youtube',
996
- step: 2,
997
- labelKey: 'socialMedia_youtube',
998
- component: 'input',
999
- },
1000
- 'emergencyContact.contactName': {
1001
- key: 'emergencyContact.contactName',
1002
- step: 2,
1003
- labelKey: 'emergencyContact_contactName',
1004
- component: 'input',
1005
- },
1006
- 'emergencyContact.contactRelation': {
1007
- key: 'emergencyContact.contactRelation',
1008
- step: 2,
1009
- labelKey: 'emergencyContact_contactRelation',
1010
- component: 'input',
1011
- },
1012
- 'emergencyContact.contactPhone': {
1013
- key: 'emergencyContact.contactPhone',
1014
- step: 2,
1015
- labelKey: 'emergencyContact_contactPhone',
1016
- component: 'input',
1017
- },
1018
- // ── Step 03: Residence ─────────────────────────────────────────────────────
1019
- domicileSource: {
1020
- key: 'domicileSource',
1021
- step: 3,
1022
- labelKey: 'domicileSource',
1023
- component: 'select',
1024
- options: DOMICILE_SOURCE_OPTIONS,
1025
- },
1026
- birthPlace: { key: 'birthPlace', step: 3, labelKey: 'birthPlace', component: 'input' },
1027
- homeNativePlace: {
1028
- key: 'homeNativePlace',
1029
- step: 3,
1030
- labelKey: 'homeNativePlace',
1031
- component: 'input',
1032
- },
1033
- ancestralNativePlace: {
1034
- key: 'ancestralNativePlace',
1035
- step: 3,
1036
- labelKey: 'ancestralNativePlace',
1037
- component: 'input',
1038
- },
1039
- // ── Step 04: Identity ──────────────────────────────────────────────────────
1040
- familyReligion: {
1041
- key: 'familyReligion',
1042
- step: 4,
1043
- labelKey: 'familyReligion',
1044
- component: 'radio',
1045
- options: FAMILY_RELIGION_OPTIONS,
1046
- },
1047
- individualReligion: {
1048
- key: 'individualReligion',
1049
- step: 4,
1050
- labelKey: 'individualReligion',
1051
- component: 'radio',
1052
- options: INDIVIDUAL_RELIGION_OPTIONS,
1053
- },
1054
- casteCommunity: {
1055
- key: 'casteCommunity',
1056
- step: 4,
1057
- labelKey: 'casteCommunity',
1058
- component: 'input',
1059
- },
1060
- tribalOrIndigenousAffiliation: {
1061
- key: 'tribalOrIndigenousAffiliation',
1062
- step: 4,
1063
- labelKey: 'tribalOrIndigenousAffiliation',
1064
- component: 'input',
1065
- },
1066
- casteCategoryReservation: {
1067
- key: 'casteCategoryReservation',
1068
- step: 4,
1069
- labelKey: 'casteCategoryReservation',
1070
- component: 'radio',
1071
- options: CASTE_CATEGORY_OPTIONS,
1072
- },
1073
- minorityStatus: {
1074
- key: 'minorityStatus',
1075
- step: 4,
1076
- labelKey: 'minorityStatus',
1077
- component: 'radio',
1078
- options: MINORITY_STATUS_OPTIONS,
1079
- },
1080
- facingCasteDiscrimination: {
1081
- key: 'facingCasteDiscrimination',
1082
- step: 4,
1083
- labelKey: 'facingCasteDiscrimination',
1084
- descriptionKey: 'facingCasteDiscrimination_desc',
1085
- component: 'radio',
1086
- options: FACING_CASTE_DISCRIMINATION_OPTIONS,
1087
- },
1088
- casteDiscriminationType: {
1089
- key: 'casteDiscriminationType',
1090
- step: 4,
1091
- labelKey: 'casteDiscriminationType',
1092
- component: 'textarea',
1093
- },
1094
- casteDiscriminationPlaces: {
1095
- key: 'casteDiscriminationPlaces',
1096
- step: 4,
1097
- labelKey: 'casteDiscriminationPlaces',
1098
- component: 'multiCheckbox',
1099
- options: CASTE_DISCRIMINATION_PLACES_OPTIONS,
1100
- },
1101
- viewOnLgbtqStatements: {
1102
- key: 'viewOnLgbtqStatements',
1103
- step: 4,
1104
- labelKey: 'viewOnLgbtqStatements',
1105
- component: 'multiCheckbox',
1106
- options: LGBTQ_STATEMENTS_OPTIONS,
1107
- },
1108
- viewOnLgbtqOpinion: {
1109
- key: 'viewOnLgbtqOpinion',
1110
- step: 4,
1111
- labelKey: 'viewOnLgbtqOpinion',
1112
- component: 'textarea',
1113
- },
1114
- viewOnTransgenderInclusionStatements: {
1115
- key: 'viewOnTransgenderInclusionStatements',
1116
- step: 4,
1117
- labelKey: 'viewOnTransgenderInclusionStatements',
1118
- component: 'multiCheckbox',
1119
- options: TRANSGENDER_STATEMENTS_OPTIONS,
1120
- },
1121
- viewOnTransgenderInclusionOpinion: {
1122
- key: 'viewOnTransgenderInclusionOpinion',
1123
- step: 4,
1124
- labelKey: 'viewOnTransgenderInclusionOpinion',
1125
- component: 'textarea',
1126
- },
1127
- // ── Step 05: Leadership ────────────────────────────────────────────────────
1128
- desireToBeLeader: {
1129
- key: 'desireToBeLeader',
1130
- step: 5,
1131
- labelKey: 'desireToBeLeader',
1132
- component: 'radio',
1133
- options: DESIRE_TO_BE_LEADER_OPTIONS,
1134
- },
1135
- desiredPoliticalPosition: {
1136
- key: 'desiredPoliticalPosition',
1137
- step: 5,
1138
- labelKey: 'desiredPoliticalPosition',
1139
- component: 'multiCheckbox',
1140
- options: DESIRED_POLITICAL_POSITION_OPTIONS,
1141
- },
1142
- politicalPartyJoiningIntent: {
1143
- key: 'politicalPartyJoiningIntent',
1144
- step: 5,
1145
- labelKey: 'politicalPartyJoiningIntent',
1146
- component: 'radio',
1147
- options: POLITICAL_PARTY_JOINING_INTENT_OPTIONS,
1148
- },
1149
- preferredPartyIfNotUs: {
1150
- key: 'preferredPartyIfNotUs',
1151
- step: 5,
1152
- labelKey: 'preferredPartyIfNotUs',
1153
- component: 'input',
1154
- },
1155
- visionChangesYouWillBring: {
1156
- key: 'visionChangesYouWillBring',
1157
- step: 5,
1158
- labelKey: 'visionChangesYouWillBring',
1159
- component: 'textarea',
1160
- },
1161
- whyJoinMovement: {
1162
- key: 'whyJoinMovement',
1163
- step: 5,
1164
- labelKey: 'whyJoinMovement',
1165
- component: 'textarea',
1166
- },
1167
- leadershipSkillset: {
1168
- key: 'leadershipSkillset',
1169
- step: 5,
1170
- labelKey: 'leadershipSkillset',
1171
- component: 'multiCheckbox',
1172
- options: LEADERSHIP_SKILLSET_OPTIONS,
1173
- },
1174
- politicalExposureLevel: {
1175
- key: 'politicalExposureLevel',
1176
- step: 5,
1177
- labelKey: 'politicalExposureLevel',
1178
- component: 'radio',
1179
- options: POLITICAL_EXPOSURE_LEVEL_OPTIONS,
1180
- },
1181
- publicVisibilityComfort: {
1182
- key: 'publicVisibilityComfort',
1183
- step: 5,
1184
- labelKey: 'publicVisibilityComfort',
1185
- component: 'radio',
1186
- options: PUBLIC_VISIBILITY_COMFORT_OPTIONS,
1187
- },
1188
- leadershipTrainingInterest: {
1189
- key: 'leadershipTrainingInterest',
1190
- step: 5,
1191
- labelKey: 'leadershipTrainingInterest',
1192
- component: 'radio',
1193
- options: LEADERSHIP_TRAINING_INTEREST_OPTIONS,
1194
- },
1195
- socialInfluenceLevel: {
1196
- key: 'socialInfluenceLevel',
1197
- step: 5,
1198
- labelKey: 'socialInfluenceLevel',
1199
- component: 'radio',
1200
- options: SOCIAL_INFLUENCE_LEVEL_OPTIONS,
1201
- },
1202
- pastLeadershipRoles: {
1203
- key: 'pastLeadershipRoles',
1204
- step: 5,
1205
- labelKey: 'pastLeadershipRoles',
1206
- component: 'radio',
1207
- options: PAST_LEADERSHIP_ROLES_OPTIONS,
1208
- },
1209
- previousLeadershipDescription: {
1210
- key: 'previousLeadershipDescription',
1211
- step: 5,
1212
- labelKey: 'previousLeadershipDescription',
1213
- component: 'textarea',
1214
- },
1215
- leadershipAchievements: {
1216
- key: 'leadershipAchievements',
1217
- step: 5,
1218
- labelKey: 'leadershipAchievements',
1219
- component: 'textarea',
1220
- },
1221
- // ── Step 06: Household ─────────────────────────────────────────────────────
1222
- areYouMigrant: {
1223
- key: 'areYouMigrant',
1224
- step: 6,
1225
- labelKey: 'areYouMigrant',
1226
- component: 'radio',
1227
- options: ARE_YOU_MIGRANT_OPTIONS,
1228
- },
1229
- migrantFromStateDistrict: {
1230
- key: 'migrantFromStateDistrict',
1231
- step: 6,
1232
- labelKey: 'migrantFromStateDistrict',
1233
- component: 'input',
1234
- },
1235
- bloodRelativesOtherState: {
1236
- key: 'bloodRelativesOtherState',
1237
- step: 6,
1238
- labelKey: 'bloodRelativesOtherState',
1239
- component: 'radio',
1240
- options: BLOOD_RELATIVES_OTHER_STATE_OPTIONS,
1241
- },
1242
- bloodRelativesOtherCountry: {
1243
- key: 'bloodRelativesOtherCountry',
1244
- step: 6,
1245
- labelKey: 'bloodRelativesOtherCountry',
1246
- component: 'radio',
1247
- options: BLOOD_RELATIVES_OTHER_COUNTRY_OPTIONS,
1248
- },
1249
- bloodRelativesNri: {
1250
- key: 'bloodRelativesNri',
1251
- step: 6,
1252
- labelKey: 'bloodRelativesNri',
1253
- component: 'radio',
1254
- options: BLOOD_RELATIVES_NRI_OPTIONS,
1255
- },
1256
- areYouNri: {
1257
- key: 'areYouNri',
1258
- step: 6,
1259
- labelKey: 'areYouNri',
1260
- component: 'radio',
1261
- options: ARE_YOU_NRI_OPTIONS,
1262
- },
1263
- internationalMigrationHistory: {
1264
- key: 'internationalMigrationHistory',
1265
- step: 6,
1266
- labelKey: 'internationalMigrationHistory',
1267
- component: 'textarea',
1268
- },
1269
- maritalStatus: {
1270
- key: 'maritalStatus',
1271
- step: 6,
1272
- labelKey: 'maritalStatus',
1273
- component: 'radio',
1274
- options: MARITAL_STATUS_OPTIONS,
1275
- },
1276
- planningMarriageTimeline: {
1277
- key: 'planningMarriageTimeline',
1278
- step: 6,
1279
- labelKey: 'planningMarriageTimeline',
1280
- component: 'radio',
1281
- options: PLANNING_MARRIAGE_TIMELINE_OPTIONS,
1282
- },
1283
- lookingForMarriagePartner: {
1284
- key: 'lookingForMarriagePartner',
1285
- step: 6,
1286
- labelKey: 'lookingForMarriagePartner',
1287
- component: 'radio',
1288
- options: LOOKING_FOR_MARRIAGE_PARTNER_OPTIONS,
1289
- },
1290
- familyStructureType: {
1291
- key: 'familyStructureType',
1292
- step: 6,
1293
- labelKey: 'familyStructureType',
1294
- component: 'radio',
1295
- options: FAMILY_STRUCTURE_TYPE_OPTIONS,
1296
- },
1297
- householdSize: { key: 'householdSize', step: 6, labelKey: 'householdSize', component: 'input' },
1298
- housingType: {
1299
- key: 'housingType',
1300
- step: 6,
1301
- labelKey: 'housingType',
1302
- component: 'radio',
1303
- options: HOUSING_TYPE_OPTIONS,
1304
- },
1305
- familyMemberSettledElsewhere: {
1306
- key: 'familyMemberSettledElsewhere',
1307
- step: 6,
1308
- labelKey: 'familyMemberSettledElsewhere',
1309
- component: 'radio',
1310
- options: FAMILY_MEMBER_SETTLED_ELSEWHERE_OPTIONS,
1311
- },
1312
- annualPersonalIncomeRange: {
1313
- key: 'annualPersonalIncomeRange',
1314
- step: 6,
1315
- labelKey: 'annualPersonalIncomeRange',
1316
- component: 'radio',
1317
- options: ANNUAL_PERSONAL_INCOME_RANGE_OPTIONS,
1318
- },
1319
- annualHouseholdIncomeRange: {
1320
- key: 'annualHouseholdIncomeRange',
1321
- step: 6,
1322
- labelKey: 'annualHouseholdIncomeRange',
1323
- component: 'radio',
1324
- options: ANNUAL_HOUSEHOLD_INCOME_RANGE_OPTIONS,
1325
- },
1326
- bplRationCardHolder: {
1327
- key: 'bplRationCardHolder',
1328
- step: 6,
1329
- labelKey: 'bplRationCardHolder',
1330
- component: 'radio',
1331
- options: BPL_RATION_CARD_OPTIONS,
1332
- },
1333
- hasLifeInsurance: {
1334
- key: 'hasLifeInsurance',
1335
- step: 6,
1336
- labelKey: 'hasLifeInsurance',
1337
- component: 'radio',
1338
- options: HAS_LIFE_INSURANCE_OPTIONS,
1339
- },
1340
- lifeInsuranceDetails: {
1341
- key: 'lifeInsuranceDetails',
1342
- step: 6,
1343
- labelKey: 'lifeInsuranceDetails',
1344
- component: 'textarea',
1345
- },
1346
- digitalAccess: {
1347
- key: 'digitalAccess',
1348
- step: 6,
1349
- labelKey: 'digitalAccess',
1350
- component: 'multiCheckbox',
1351
- options: DIGITAL_ACCESS_OPTIONS,
1352
- },
1353
- digitalSkillLevel: {
1354
- key: 'digitalSkillLevel',
1355
- step: 6,
1356
- labelKey: 'digitalSkillLevel',
1357
- component: 'radio',
1358
- options: DIGITAL_SKILL_LEVEL_OPTIONS,
1359
- },
1360
- literacyLevel: {
1361
- key: 'literacyLevel',
1362
- step: 6,
1363
- labelKey: 'literacyLevel',
1364
- component: 'radio',
1365
- options: LITERACY_LEVEL_OPTIONS,
1366
- },
1367
- caregivingResponsibilities: {
1368
- key: 'caregivingResponsibilities',
1369
- step: 6,
1370
- labelKey: 'caregivingResponsibilities',
1371
- component: 'multiCheckbox',
1372
- options: CAREGIVING_RESPONSIBILITIES_OPTIONS,
1373
- },
1374
- caregivingHoursPerDay: {
1375
- key: 'caregivingHoursPerDay',
1376
- step: 6,
1377
- labelKey: 'caregivingHoursPerDay',
1378
- component: 'radio',
1379
- options: CAREGIVING_HOURS_PER_DAY_OPTIONS,
1380
- },
1381
- // ── Step 07: Education ─────────────────────────────────────────────────────
1382
- highestQualification: {
1383
- key: 'highestQualification',
1384
- step: 7,
1385
- labelKey: 'highestQualification',
1386
- component: 'radio',
1387
- options: HIGHEST_QUALIFICATION_OPTIONS,
1388
- },
1389
- // ── Step 08: Employment ────────────────────────────────────────────────────
1390
- employmentStatus: {
1391
- key: 'employmentStatus',
1392
- step: 8,
1393
- labelKey: 'employmentStatus',
1394
- component: 'radio',
1395
- options: EMPLOYMENT_STATUS_OPTIONS,
1396
- },
1397
- employedSince: { key: 'employedSince', step: 8, labelKey: 'employedSince', component: 'input' },
1398
- jobOccupationType: {
1399
- key: 'jobOccupationType',
1400
- step: 8,
1401
- labelKey: 'jobOccupationType',
1402
- component: 'input',
1403
- },
1404
- currentWorkShift: {
1405
- key: 'currentWorkShift',
1406
- step: 8,
1407
- labelKey: 'currentWorkShift',
1408
- component: 'radio',
1409
- options: CURRENT_WORK_SHIFT_OPTIONS,
1410
- },
1411
- isCurrentShiftComfortable: {
1412
- key: 'isCurrentShiftComfortable',
1413
- step: 8,
1414
- labelKey: 'isCurrentShiftComfortable',
1415
- component: 'radio',
1416
- options: IS_CURRENT_SHIFT_COMFORTABLE_OPTIONS,
1417
- },
1418
- desiredShift: {
1419
- key: 'desiredShift',
1420
- step: 8,
1421
- labelKey: 'desiredShift',
1422
- component: 'radio',
1423
- options: DESIRED_SHIFT_OPTIONS,
1424
- },
1425
- personalIncomeRange: {
1426
- key: 'personalIncomeRange',
1427
- step: 8,
1428
- labelKey: 'personalIncomeRange',
1429
- component: 'radio',
1430
- options: PERSONAL_INCOME_RANGE_OPTIONS,
1431
- },
1432
- workExperienceSummary: {
1433
- key: 'workExperienceSummary',
1434
- step: 8,
1435
- labelKey: 'workExperienceSummary',
1436
- component: 'textarea',
1437
- },
1438
- // ── Step 09: Neurodiversity ────────────────────────────────────────────────
1439
- neurodivergentSelfIdentification: {
1440
- key: 'neurodivergentSelfIdentification',
1441
- step: 9,
1442
- labelKey: 'neurodivergentSelfIdentification',
1443
- component: 'radio',
1444
- options: NEURODIVERGENT_SELF_ID_OPTIONS,
1445
- },
1446
- neurodivergentConditions: {
1447
- key: 'neurodivergentConditions',
1448
- step: 9,
1449
- labelKey: 'neurodivergentConditions',
1450
- component: 'multiCheckbox',
1451
- options: NEURODIVERGENT_CONDITIONS_OPTIONS,
1452
- },
1453
- neurodiversityDiagnosisSource: {
1454
- key: 'neurodiversityDiagnosisSource',
1455
- step: 9,
1456
- labelKey: 'neurodiversityDiagnosisSource',
1457
- component: 'input',
1458
- },
1459
- sensorySensitivities: {
1460
- key: 'sensorySensitivities',
1461
- step: 9,
1462
- labelKey: 'sensorySensitivities',
1463
- component: 'multiCheckbox',
1464
- options: SENSORY_SENSITIVITIES_OPTIONS,
1465
- },
1466
- executiveFunctionChallenges: {
1467
- key: 'executiveFunctionChallenges',
1468
- step: 9,
1469
- labelKey: 'executiveFunctionChallenges',
1470
- component: 'multiCheckbox',
1471
- options: EXECUTIVE_FUNCTION_CHALLENGES_OPTIONS,
1472
- },
1473
- learningStylePreference: {
1474
- key: 'learningStylePreference',
1475
- step: 9,
1476
- labelKey: 'learningStylePreference',
1477
- component: 'multiCheckbox',
1478
- options: LEARNING_STYLE_OPTIONS,
1479
- },
1480
- communicationPreferences: {
1481
- key: 'communicationPreferences',
1482
- step: 9,
1483
- labelKey: 'communicationPreferences',
1484
- component: 'multiCheckbox',
1485
- options: COMMUNICATION_PREFERENCES_OPTIONS,
1486
- },
1487
- workplaceStudyAccommodations: {
1488
- key: 'workplaceStudyAccommodations',
1489
- step: 9,
1490
- labelKey: 'workplaceStudyAccommodations',
1491
- component: 'multiCheckbox',
1492
- options: WORKPLACE_ACCOMMODATIONS_OPTIONS,
1493
- },
1494
- neurodiversitySupportNeeds: {
1495
- key: 'neurodiversitySupportNeeds',
1496
- step: 9,
1497
- labelKey: 'neurodiversitySupportNeeds',
1498
- component: 'textarea',
1499
- },
1500
- // ── Step 10: Psychological ─────────────────────────────────────────────────
1501
- mbtiType: {
1502
- key: 'mbtiType',
1503
- step: 10,
1504
- labelKey: 'mbtiType',
1505
- component: 'radio',
1506
- options: MBTI_TYPE_OPTIONS,
1507
- },
1508
- mbtiTestSource: {
1509
- key: 'mbtiTestSource',
1510
- step: 10,
1511
- labelKey: 'mbtiTestSource',
1512
- component: 'input',
1513
- },
1514
- mbtiTestYear: { key: 'mbtiTestYear', step: 10, labelKey: 'mbtiTestYear', component: 'input' },
1515
- enneagramType: {
1516
- key: 'enneagramType',
1517
- step: 10,
1518
- labelKey: 'enneagramType',
1519
- component: 'radio',
1520
- options: ENNEAGRAM_TYPE_OPTIONS,
1521
- },
1522
- enneagramWing: { key: 'enneagramWing', step: 10, labelKey: 'enneagramWing', component: 'input' },
1523
- enneagramSource: {
1524
- key: 'enneagramSource',
1525
- step: 10,
1526
- labelKey: 'enneagramSource',
1527
- component: 'input',
1528
- },
1529
- attachmentStyle: {
1530
- key: 'attachmentStyle',
1531
- step: 10,
1532
- labelKey: 'attachmentStyle',
1533
- component: 'radio',
1534
- options: ATTACHMENT_STYLE_OPTIONS,
1535
- },
1536
- discProfile: {
1537
- key: 'discProfile',
1538
- step: 10,
1539
- labelKey: 'discProfile',
1540
- component: 'radio',
1541
- options: DISC_PROFILE_OPTIONS,
1542
- },
1543
- psychopathyScaleResult: {
1544
- key: 'psychopathyScaleResult',
1545
- step: 10,
1546
- labelKey: 'psychopathyScaleResult',
1547
- component: 'input',
1548
- },
1549
- narcissismScaleResult: {
1550
- key: 'narcissismScaleResult',
1551
- step: 10,
1552
- labelKey: 'narcissismScaleResult',
1553
- component: 'input',
1554
- },
1555
- assessmentAccuracyRating: {
1556
- key: 'assessmentAccuracyRating',
1557
- step: 10,
1558
- labelKey: 'assessmentAccuracyRating',
1559
- component: 'radio',
1560
- options: ASSESSMENT_ACCURACY_OPTIONS,
1561
- },
1562
- assessmentDataConsent: {
1563
- key: 'assessmentDataConsent',
1564
- step: 10,
1565
- labelKey: 'assessmentDataConsent',
1566
- component: 'radio',
1567
- options: ASSESSMENT_DATA_CONSENT_OPTIONS,
1568
- },
1569
- assessmentNotes: {
1570
- key: 'assessmentNotes',
1571
- step: 10,
1572
- labelKey: 'assessmentNotes',
1573
- component: 'textarea',
1574
- },
1575
- // ── Step 11: Political ─────────────────────────────────────────────────────
1576
- selfPartyAssociation: {
1577
- key: 'selfPartyAssociation',
1578
- step: 11,
1579
- labelKey: 'selfPartyAssociation',
1580
- component: 'radio',
1581
- options: SELF_PARTY_ASSOCIATION_OPTIONS,
1582
- },
1583
- selfPartyName: { key: 'selfPartyName', step: 11, labelKey: 'selfPartyName', component: 'input' },
1584
- selfPartyRole: {
1585
- key: 'selfPartyRole',
1586
- step: 11,
1587
- labelKey: 'selfPartyRole',
1588
- component: 'radio',
1589
- options: SELF_PARTY_ROLE_OPTIONS,
1590
- },
1591
- selfPartyDuration: {
1592
- key: 'selfPartyDuration',
1593
- step: 11,
1594
- labelKey: 'selfPartyDuration',
1595
- component: 'input',
1596
- },
1597
- selfPartyDetails: {
1598
- key: 'selfPartyDetails',
1599
- step: 11,
1600
- labelKey: 'selfPartyDetails',
1601
- component: 'textarea',
1602
- },
1603
- familyPartyAssociation: {
1604
- key: 'familyPartyAssociation',
1605
- step: 11,
1606
- labelKey: 'familyPartyAssociation',
1607
- component: 'radio',
1608
- options: FAMILY_PARTY_ASSOCIATION_OPTIONS,
1609
- },
1610
- familyPartyDetails: {
1611
- key: 'familyPartyDetails',
1612
- step: 11,
1613
- labelKey: 'familyPartyDetails',
1614
- component: 'textarea',
1615
- },
1616
- publicOfficeHistory: {
1617
- key: 'publicOfficeHistory',
1618
- step: 11,
1619
- labelKey: 'publicOfficeHistory',
1620
- component: 'radio',
1621
- options: PUBLIC_OFFICE_HISTORY_OPTIONS,
1622
- },
1623
- publicOfficeDetails: {
1624
- key: 'publicOfficeDetails',
1625
- step: 11,
1626
- labelKey: 'publicOfficeDetails',
1627
- component: 'textarea',
1628
- },
1629
- electionContested: {
1630
- key: 'electionContested',
1631
- step: 11,
1632
- labelKey: 'electionContested',
1633
- component: 'radio',
1634
- options: ELECTION_CONTESTED_OPTIONS,
1635
- },
1636
- electionResult: {
1637
- key: 'electionResult',
1638
- step: 11,
1639
- labelKey: 'electionResult',
1640
- component: 'radio',
1641
- options: ELECTION_RESULT_OPTIONS,
1642
- },
1643
- politicalNetworkLevel: {
1644
- key: 'politicalNetworkLevel',
1645
- step: 11,
1646
- labelKey: 'politicalNetworkLevel',
1647
- component: 'radio',
1648
- options: POLITICAL_NETWORK_LEVEL_OPTIONS,
1649
- },
1650
- civicOrganisationTypes: {
1651
- key: 'civicOrganisationTypes',
1652
- step: 11,
1653
- labelKey: 'civicOrganisationTypes',
1654
- component: 'multiCheckbox',
1655
- options: CIVIC_ORGANISATION_TYPES_OPTIONS,
1656
- },
1657
- civicOrganisationDetails: {
1658
- key: 'civicOrganisationDetails',
1659
- step: 11,
1660
- labelKey: 'civicOrganisationDetails',
1661
- component: 'textarea',
1662
- },
1663
- // ── Step 12: Electoral ─────────────────────────────────────────────────────
1664
- epicNumber: { key: 'epicNumber', step: 12, labelKey: 'epicNumber', component: 'input' },
1665
- willVoteThisTime: {
1666
- key: 'willVoteThisTime',
1667
- step: 12,
1668
- labelKey: 'willVoteThisTime',
1669
- component: 'radio',
1670
- options: WILL_VOTE_OPTIONS,
1671
- },
1672
- votedLastTime: {
1673
- key: 'votedLastTime',
1674
- step: 12,
1675
- labelKey: 'votedLastTime',
1676
- component: 'radio',
1677
- options: VOTED_LAST_TIME_OPTIONS,
1678
- },
1679
- votingFrequency: {
1680
- key: 'votingFrequency',
1681
- step: 12,
1682
- labelKey: 'votingFrequency',
1683
- component: 'radio',
1684
- options: VOTING_FREQUENCY_OPTIONS,
1685
- },
1686
- primaryVotingIssues: {
1687
- key: 'primaryVotingIssues',
1688
- step: 12,
1689
- labelKey: 'primaryVotingIssues',
1690
- component: 'multiCheckbox',
1691
- options: PRIMARY_VOTING_ISSUES_OPTIONS,
1692
- },
1693
- politicalSpectrumSelf: {
1694
- key: 'politicalSpectrumSelf',
1695
- step: 12,
1696
- labelKey: 'politicalSpectrumSelf',
1697
- component: 'radio',
1698
- options: POLITICAL_SPECTRUM_SELF_OPTIONS,
1699
- },
1700
- voterIdUpdatePending: {
1701
- key: 'voterIdUpdatePending',
1702
- step: 12,
1703
- labelKey: 'voterIdUpdatePending',
1704
- component: 'radio',
1705
- options: VOTER_ID_UPDATE_PENDING_OPTIONS,
1706
- },
1707
- voterIdUpdateDetails: {
1708
- key: 'voterIdUpdateDetails',
1709
- step: 12,
1710
- labelKey: 'voterIdUpdateDetails',
1711
- component: 'input',
1712
- },
1713
- aadhaarVoterLinkStatus: {
1714
- key: 'aadhaarVoterLinkStatus',
1715
- step: 12,
1716
- labelKey: 'aadhaarVoterLinkStatus',
1717
- component: 'radio',
1718
- options: AADHAAR_VOTER_LINK_STATUS_OPTIONS,
1719
- },
1720
- mostHonestPersonLocality: {
1721
- key: 'mostHonestPersonLocality',
1722
- step: 12,
1723
- labelKey: 'mostHonestPersonLocality',
1724
- component: 'input',
1725
- },
1726
- mostIntellectualPersonLocality: {
1727
- key: 'mostIntellectualPersonLocality',
1728
- step: 12,
1729
- labelKey: 'mostIntellectualPersonLocality',
1730
- component: 'input',
1731
- },
1732
- mostInfluentialPersonLocality: {
1733
- key: 'mostInfluentialPersonLocality',
1734
- step: 12,
1735
- labelKey: 'mostInfluentialPersonLocality',
1736
- component: 'input',
1737
- },
1738
- pollingBoothNameOrCode: {
1739
- key: 'pollingBoothNameOrCode',
1740
- step: 12,
1741
- labelKey: 'pollingBoothNameOrCode',
1742
- component: 'input',
1743
- },
1744
- localElectionConstituency: {
1745
- key: 'localElectionConstituency',
1746
- step: 12,
1747
- labelKey: 'localElectionConstituency',
1748
- component: 'input',
1749
- },
1750
- assemblyConstituency: {
1751
- key: 'assemblyConstituency',
1752
- step: 12,
1753
- labelKey: 'assemblyConstituency',
1754
- component: 'input',
1755
- },
1756
- parliamentaryConstituency: {
1757
- key: 'parliamentaryConstituency',
1758
- step: 12,
1759
- labelKey: 'parliamentaryConstituency',
1760
- component: 'input',
1761
- },
1762
- // ── Step 13: Health ────────────────────────────────────────────────────────
1763
- disabilityStatus: {
1764
- key: 'disabilityStatus',
1765
- step: 13,
1766
- labelKey: 'disabilityStatus',
1767
- component: 'radio',
1768
- options: DISABILITY_STATUS_OPTIONS,
1769
- },
1770
- disabilityDetails: {
1771
- key: 'disabilityDetails',
1772
- step: 13,
1773
- labelKey: 'disabilityDetails',
1774
- component: 'textarea',
1775
- },
1776
- overallHealthStatus: {
1777
- key: 'overallHealthStatus',
1778
- step: 13,
1779
- labelKey: 'overallHealthStatus',
1780
- component: 'radio',
1781
- options: OVERALL_HEALTH_STATUS_OPTIONS,
1782
- },
1783
- knownHealthConditions: {
1784
- key: 'knownHealthConditions',
1785
- step: 13,
1786
- labelKey: 'knownHealthConditions',
1787
- component: 'multiCheckbox',
1788
- options: KNOWN_HEALTH_CONDITIONS_OPTIONS,
1789
- },
1790
- knownHealthConditionsDetails: {
1791
- key: 'knownHealthConditionsDetails',
1792
- step: 13,
1793
- labelKey: 'knownHealthConditionsDetails',
1794
- component: 'textarea',
1795
- },
1796
- currentMedications: {
1797
- key: 'currentMedications',
1798
- step: 13,
1799
- labelKey: 'currentMedications',
1800
- component: 'textarea',
1801
- },
1802
- bloodGroup: {
1803
- key: 'bloodGroup',
1804
- step: 13,
1805
- labelKey: 'bloodGroup',
1806
- component: 'radio',
1807
- options: BLOOD_GROUP_OPTIONS,
1808
- },
1809
- lastHealthCheckupYear: {
1810
- key: 'lastHealthCheckupYear',
1811
- step: 13,
1812
- labelKey: 'lastHealthCheckupYear',
1813
- component: 'input',
1814
- },
1815
- hasHealthInsurance: {
1816
- key: 'hasHealthInsurance',
1817
- step: 13,
1818
- labelKey: 'hasHealthInsurance',
1819
- component: 'radio',
1820
- options: HAS_HEALTH_INSURANCE_OPTIONS,
1821
- },
1822
- healthInsuranceDetails: {
1823
- key: 'healthInsuranceDetails',
1824
- step: 13,
1825
- labelKey: 'healthInsuranceDetails',
1826
- component: 'textarea',
1827
- },
1828
- hasAyushmanBharatCard: {
1829
- key: 'hasAyushmanBharatCard',
1830
- step: 13,
1831
- labelKey: 'hasAyushmanBharatCard',
1832
- component: 'radio',
1833
- options: HAS_AYUSHMAN_BHARAT_CARD_OPTIONS,
1834
- },
1835
- foodHabitType: {
1836
- key: 'foodHabitType',
1837
- step: 13,
1838
- labelKey: 'foodHabitType',
1839
- component: 'radio',
1840
- options: FOOD_HABIT_TYPE_OPTIONS,
1841
- },
1842
- foodHabitNotes: {
1843
- key: 'foodHabitNotes',
1844
- step: 13,
1845
- labelKey: 'foodHabitNotes',
1846
- component: 'textarea',
1847
- },
1848
- physicalActivityLevel: {
1849
- key: 'physicalActivityLevel',
1850
- step: 13,
1851
- labelKey: 'physicalActivityLevel',
1852
- component: 'radio',
1853
- options: PHYSICAL_ACTIVITY_LEVEL_OPTIONS,
1854
- },
1855
- physicalActivityTypes: {
1856
- key: 'physicalActivityTypes',
1857
- step: 13,
1858
- labelKey: 'physicalActivityTypes',
1859
- component: 'multiCheckbox',
1860
- options: PHYSICAL_ACTIVITY_TYPES_OPTIONS,
1861
- },
1862
- sleepHoursPerDay: {
1863
- key: 'sleepHoursPerDay',
1864
- step: 13,
1865
- labelKey: 'sleepHoursPerDay',
1866
- component: 'radio',
1867
- options: SLEEP_HOURS_OPTIONS,
1868
- },
1869
- perceivedStressLevel: {
1870
- key: 'perceivedStressLevel',
1871
- step: 13,
1872
- labelKey: 'perceivedStressLevel',
1873
- component: 'radio',
1874
- options: PERCEIVED_STRESS_LEVEL_OPTIONS,
1875
- },
1876
- stressMainCauses: {
1877
- key: 'stressMainCauses',
1878
- step: 13,
1879
- labelKey: 'stressMainCauses',
1880
- component: 'textarea',
1881
- },
1882
- tobaccoUse: {
1883
- key: 'tobaccoUse',
1884
- step: 13,
1885
- labelKey: 'tobaccoUse',
1886
- component: 'radio',
1887
- options: TOBACCO_USE_OPTIONS,
1888
- },
1889
- tobaccoTypes: {
1890
- key: 'tobaccoTypes',
1891
- step: 13,
1892
- labelKey: 'tobaccoTypes',
1893
- component: 'multiCheckbox',
1894
- options: TOBACCO_TYPES_OPTIONS,
1895
- },
1896
- alcoholUse: {
1897
- key: 'alcoholUse',
1898
- step: 13,
1899
- labelKey: 'alcoholUse',
1900
- component: 'radio',
1901
- options: ALCOHOL_USE_OPTIONS,
1902
- },
1903
- interestedInHealthPrograms: {
1904
- key: 'interestedInHealthPrograms',
1905
- step: 13,
1906
- labelKey: 'interestedInHealthPrograms',
1907
- component: 'multiCheckbox',
1908
- options: INTERESTED_IN_HEALTH_PROGRAMS_OPTIONS,
1909
- },
1910
- viewOnAnimalWelfareStatements: {
1911
- key: 'viewOnAnimalWelfareStatements',
1912
- step: 13,
1913
- labelKey: 'viewOnAnimalWelfareStatements',
1914
- component: 'multiCheckbox',
1915
- options: ANIMAL_WELFARE_STATEMENTS_OPTIONS,
1916
- },
1917
- viewOnAnimalCrueltyOpinion: {
1918
- key: 'viewOnAnimalCrueltyOpinion',
1919
- step: 13,
1920
- labelKey: 'viewOnAnimalCrueltyOpinion',
1921
- component: 'textarea',
1922
- },
1923
- mobilityOrTravelLimitations: {
1924
- key: 'mobilityOrTravelLimitations',
1925
- step: 13,
1926
- labelKey: 'mobilityOrTravelLimitations',
1927
- component: 'multiCheckbox',
1928
- options: MOBILITY_LIMITATIONS_OPTIONS,
1929
- },
1930
- // ── Step 14: Priorities ────────────────────────────────────────────────────
1931
- topPrioritiesThisYear: {
1932
- key: 'topPrioritiesThisYear',
1933
- step: 14,
1934
- labelKey: 'topPrioritiesThisYear',
1935
- component: 'textarea',
1936
- },
1937
- priorityCategoryTags: {
1938
- key: 'priorityCategoryTags',
1939
- step: 14,
1940
- labelKey: 'priorityCategoryTags',
1941
- component: 'multiCheckbox',
1942
- options: PRIORITY_CATEGORY_TAGS_OPTIONS,
1943
- },
1944
- fiveYearVision: {
1945
- key: 'fiveYearVision',
1946
- step: 14,
1947
- labelKey: 'fiveYearVision',
1948
- component: 'textarea',
1949
- },
1950
- biggestPersonalChallenge: {
1951
- key: 'biggestPersonalChallenge',
1952
- step: 14,
1953
- labelKey: 'biggestPersonalChallenge',
1954
- component: 'textarea',
1955
- },
1956
- skillsWantToLearn: {
1957
- key: 'skillsWantToLearn',
1958
- step: 14,
1959
- labelKey: 'skillsWantToLearn',
1960
- component: 'multiCheckbox',
1961
- options: SKILLS_WANT_TO_LEARN_OPTIONS,
1962
- },
1963
- alignmentWithMovement: {
1964
- key: 'alignmentWithMovement',
1965
- step: 14,
1966
- labelKey: 'alignmentWithMovement',
1967
- component: 'textarea',
1968
- },
1969
- openToVolunteering: {
1970
- key: 'openToVolunteering',
1971
- step: 14,
1972
- labelKey: 'openToVolunteering',
1973
- component: 'radio',
1974
- options: OPEN_TO_VOLUNTEERING_OPTIONS,
1975
- },
1976
- volunteeringCapacityPerWeek: {
1977
- key: 'volunteeringCapacityPerWeek',
1978
- step: 14,
1979
- labelKey: 'volunteeringCapacityPerWeek',
1980
- component: 'radio',
1981
- options: VOLUNTEERING_CAPACITY_OPTIONS,
1982
- },
1983
- helpNeededFromOrg: {
1984
- key: 'helpNeededFromOrg',
1985
- step: 14,
1986
- labelKey: 'helpNeededFromOrg',
1987
- component: 'multiCheckbox',
1988
- options: HELP_NEEDED_FROM_ORG_OPTIONS,
1989
- },
1990
- personalMessage: {
1991
- key: 'personalMessage',
1992
- step: 14,
1993
- labelKey: 'personalMessage',
1994
- component: 'textarea',
1995
- },
1996
- };
1997
313
  //# sourceMappingURL=field-meta.js.map