udp-schema 2.7.0 → 2.9.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 (41) hide show
  1. package/dist/helpers.d.ts.map +1 -1
  2. package/dist/helpers.js +10 -3
  3. package/dist/helpers.js.map +1 -1
  4. package/dist/index.d.ts +1 -1
  5. package/dist/index.d.ts.map +1 -1
  6. package/dist/index.js +1 -1
  7. package/dist/index.js.map +1 -1
  8. package/dist/onboarding-config.d.ts.map +1 -1
  9. package/dist/onboarding-config.js +14 -0
  10. package/dist/onboarding-config.js.map +1 -1
  11. package/dist/onboarding-form.d.ts +64 -6
  12. package/dist/onboarding-form.d.ts.map +1 -1
  13. package/dist/profile-fields/01-profile.d.ts +81 -9
  14. package/dist/profile-fields/01-profile.d.ts.map +1 -1
  15. package/dist/profile-fields/01-profile.js +107 -12
  16. package/dist/profile-fields/01-profile.js.map +1 -1
  17. package/dist/profile-fields/02-political.d.ts +188 -2
  18. package/dist/profile-fields/02-political.d.ts.map +1 -1
  19. package/dist/profile-fields/02-political.js +146 -4
  20. package/dist/profile-fields/02-political.js.map +1 -1
  21. package/dist/profile-fields/index.d.ts +1 -1
  22. package/dist/profile-fields/index.d.ts.map +1 -1
  23. package/dist/profile-fields/index.js +1 -1
  24. package/dist/profile-fields/index.js.map +1 -1
  25. package/dist/profile-fields/types.d.ts +9 -1
  26. package/dist/profile-fields/types.d.ts.map +1 -1
  27. package/dist/profile-fields/types.js.map +1 -1
  28. package/dist/progress-fields.d.ts.map +1 -1
  29. package/dist/progress-fields.js +2 -0
  30. package/dist/progress-fields.js.map +1 -1
  31. package/dist/step-01.schema.d.ts +15 -4
  32. package/dist/step-01.schema.d.ts.map +1 -1
  33. package/dist/step-01.schema.js +31 -4
  34. package/dist/step-01.schema.js.map +1 -1
  35. package/dist/step-02.schema.d.ts +47 -0
  36. package/dist/step-02.schema.d.ts.map +1 -1
  37. package/dist/step-02.schema.js +56 -4
  38. package/dist/step-02.schema.js.map +1 -1
  39. package/dist/step-10.schema.d.ts +1 -1
  40. package/dist/step-12.schema.d.ts +1 -1
  41. package/package.json +1 -1
@@ -155,21 +155,116 @@ export const languageOptions = [
155
155
  { value: 'santali', label: 'Santali (ᱥᱟᱱᱛᱟᱲᱤ)' },
156
156
  { value: 'other', label: 'Other' },
157
157
  ];
158
+ /**
159
+ * Reservation / caste category — exhaustive list per Government of India
160
+ * and state-level backward-class classifications.
161
+ *
162
+ * References:
163
+ * - Articles 341 / 342 (SC / ST)
164
+ * - Mandal Commission + 77th Amendment (OBC)
165
+ * - 103rd Amendment, 2019 (EWS)
166
+ * - State lists: MBC (Tamil Nadu, Bihar), SEBC (Maharashtra, Gujarat, etc.),
167
+ * SBC (Karnataka), DNT / NT / VJNT (Maharashtra, MP, and others)
168
+ */
158
169
  export const reservationOptions = [
159
- { value: 'SC', label: 'Scheduled Caste (SC)' },
160
- { value: 'ST', label: 'Scheduled Tribe (ST)' },
161
- { value: 'OBC_NC', label: 'OBC (Non-Creamy Layer)' },
162
- { value: 'OBC_C', label: 'OBC (Creamy Layer)' },
163
- { value: 'EWS', label: 'Economically Weaker Section (EWS)' },
164
- { value: 'GENERAL', label: 'General' },
165
- { value: 'DONT_KNOW', label: "Don't know" },
166
- { value: 'PREFER_NOT_SAY', label: 'Prefer not to say' },
170
+ {
171
+ value: 'SC',
172
+ label: 'Scheduled Caste (SC)',
173
+ description: 'Listed in the Presidential Order under Article 341',
174
+ },
175
+ {
176
+ value: 'ST',
177
+ label: 'Scheduled Tribe (ST)',
178
+ description: 'Listed in the Presidential Order under Article 342',
179
+ },
180
+ {
181
+ value: 'OBC_NCL',
182
+ label: 'OBC — Non-Creamy Layer',
183
+ description: 'Other Backward Class, eligible for reservation',
184
+ },
185
+ {
186
+ value: 'OBC_CL',
187
+ label: 'OBC — Creamy Layer',
188
+ description: 'Other Backward Class, income above the creamy-layer threshold',
189
+ },
190
+ {
191
+ value: 'MBC',
192
+ label: 'Most Backward Class (MBC)',
193
+ description: 'State sub-category of OBC (e.g., Tamil Nadu, Bihar)',
194
+ },
195
+ {
196
+ value: 'SEBC',
197
+ label: 'Socially & Educationally Backward Class (SEBC)',
198
+ description: 'State-notified SEBC (e.g., Maharashtra, Gujarat)',
199
+ },
200
+ {
201
+ value: 'SBC',
202
+ label: 'Special Backward Class (SBC)',
203
+ description: 'State-notified special backward category',
204
+ },
205
+ {
206
+ value: 'DNT_NT',
207
+ label: 'Denotified / Nomadic Tribes (DNT / NT / VJNT)',
208
+ description: 'Denotified, Nomadic, and Semi-Nomadic communities',
209
+ },
210
+ {
211
+ value: 'EWS',
212
+ label: 'Economically Weaker Section (EWS)',
213
+ description: '10% reservation for unreserved categories (103rd Amendment)',
214
+ },
215
+ { value: 'GENERAL', label: 'General / Unreserved', description: 'No reservation category' },
216
+ { value: 'DONT_KNOW', label: "Don't know", description: 'Not sure of the category' },
217
+ { value: 'PREFER_NOT_TO_SAY', label: 'Prefer not to say', description: 'Keep this private' },
167
218
  ];
219
+ /**
220
+ * Minority status — per Ministry of Minority Affairs, Government of India.
221
+ * 6 religious minorities are centrally notified. Linguistic minorities are
222
+ * defined at the state level (mother tongue ≠ majority language of the state).
223
+ */
168
224
  export const minorityOptions = [
169
- { value: 'NO', label: 'No' },
170
- { value: 'RELIGIOUS', label: 'Yes — Religious minority' },
171
- { value: 'LINGUISTIC', label: 'Yes — Linguistic minority' },
172
- { value: 'NOT_SURE', label: 'Not sure' },
225
+ { value: 'NO', label: 'No', description: 'Not a minority community' },
226
+ {
227
+ value: 'MUSLIM',
228
+ label: 'Religious Minority Muslim',
229
+ description: 'Centrally notified religious minority',
230
+ },
231
+ {
232
+ value: 'CHRISTIAN',
233
+ label: 'Religious Minority — Christian',
234
+ description: 'Centrally notified religious minority',
235
+ },
236
+ {
237
+ value: 'SIKH',
238
+ label: 'Religious Minority — Sikh',
239
+ description: 'Centrally notified religious minority',
240
+ },
241
+ {
242
+ value: 'BUDDHIST',
243
+ label: 'Religious Minority — Buddhist',
244
+ description: 'Centrally notified religious minority',
245
+ },
246
+ {
247
+ value: 'JAIN',
248
+ label: 'Religious Minority — Jain',
249
+ description: 'Centrally notified religious minority (2014)',
250
+ },
251
+ {
252
+ value: 'PARSI',
253
+ label: 'Religious Minority — Parsi / Zoroastrian',
254
+ description: 'Centrally notified religious minority',
255
+ },
256
+ {
257
+ value: 'LINGUISTIC',
258
+ label: 'Linguistic Minority',
259
+ description: 'Mother tongue is not the majority language of your state',
260
+ },
261
+ {
262
+ value: 'BOTH',
263
+ label: 'Both religious and linguistic minority',
264
+ description: 'Belongs to a religious minority AND a linguistic minority',
265
+ },
266
+ { value: 'NOT_SURE', label: 'Not sure', description: "Don't know if you're a minority" },
267
+ { value: 'PREFER_NOT_TO_SAY', label: 'Prefer not to say', description: 'Keep this private' },
173
268
  ];
174
269
  // ─── Field Group ────────────────────────────────────────────────────────────
175
270
  export const profile = {
@@ -1 +1 @@
1
- {"version":3,"file":"01-profile.js","sourceRoot":"","sources":["../../src/profile-fields/01-profile.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * Step 01 — Profile fields.\n *\n * Rich field definitions with options and descriptions,\n * matching the dating-schema profile-fields pattern.\n */\n\nimport type { FieldGroup } from './types.js';\n\n// ─── Shared option arrays (exported for reuse) ─────────────────────────────\n\n/**\n * Gender options — matches dating-schema (01-hero-identity.ts) EXACTLY.\n * Keep in sync with dating so both products share the same enum + copy.\n */\nexport const genderOptions = [\n { value: 'man', label: 'Man', description: 'Identify as male' },\n { value: 'woman', label: 'Woman', description: 'Identify as female' },\n {\n value: 'non_binary',\n label: 'Non-binary',\n description: 'Neither exclusively male nor female',\n },\n {\n value: 'trans_man',\n label: 'Trans Man',\n description: 'Assigned female at birth, identify as male',\n },\n {\n value: 'trans_woman',\n label: 'Trans Woman',\n description: 'Assigned male at birth, identify as female',\n },\n { value: 'genderfluid', label: 'Genderfluid', description: 'Gender identity shifts over time' },\n {\n value: 'genderqueer',\n label: 'Genderqueer',\n description: 'Outside the traditional gender binary',\n },\n { value: 'agender', label: 'Agender', description: 'No gender identity or gender-neutral' },\n {\n value: 'bigender',\n label: 'Bigender',\n description: 'Identify as two genders simultaneously or alternating',\n },\n {\n value: 'pangender',\n label: 'Pangender',\n description: 'Identify with all genders or many gender identities',\n },\n {\n value: 'androgynous',\n label: 'Androgynous',\n description: 'Blend of masculine and feminine expression',\n },\n {\n value: 'intersex',\n label: 'Intersex',\n description: \"Born with sex characteristics that don't fit typical male/female\",\n },\n {\n value: 'gender_nonconforming',\n label: 'Gender Non-conforming',\n description: \"Expression doesn't align with conventional expectations\",\n },\n {\n value: 'two_spirit',\n label: 'Two-Spirit',\n description: 'Indigenous identity encompassing multiple genders',\n },\n {\n value: 'hijra',\n label: 'Hijra',\n description: 'South Asian third-gender identity — legally recognized in India',\n },\n { value: 'other', label: 'Other', description: 'Another identity not listed here' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say', description: 'Keep this private' },\n] as const;\n\nexport const religionOptions = [\n { value: 'hindu', label: 'Hindu', description: 'Sanatana Dharma traditions' },\n { value: 'muslim_sunni', label: 'Muslim (Sunni)', description: 'Largest branch of Islam' },\n { value: 'muslim_shia', label: 'Muslim (Shia)', description: 'Second-largest branch of Islam' },\n { value: 'muslim_sufi', label: 'Muslim (Sufi)', description: 'Mystical Islamic tradition' },\n { value: 'muslim_other', label: 'Muslim (Other)', description: 'Ahmadiyya or other traditions' },\n {\n value: 'christian_catholic',\n label: 'Christian (Catholic)',\n description: 'Roman Catholic tradition',\n },\n {\n value: 'christian_protestant',\n label: 'Christian (Protestant)',\n description: 'Baptist, Methodist, Pentecostal, etc.',\n },\n {\n value: 'christian_other',\n label: 'Christian (Other)',\n description: 'Orthodox, Syrian, or other traditions',\n },\n { value: 'sikh', label: 'Sikh', description: 'Founded by Guru Nanak' },\n { value: 'jain_digambar', label: 'Jain (Digambar)', description: 'Sky-clad Jain tradition' },\n {\n value: 'jain_shwetambar',\n label: 'Jain (Shwetambar)',\n description: 'White-clad Jain tradition',\n },\n { value: 'buddhist', label: 'Buddhist', description: \"Followers of the Buddha's teachings\" },\n {\n value: 'parsi_zoroastrian',\n label: 'Parsi / Zoroastrian',\n description: 'Ancient Persian faith',\n },\n { value: 'jewish', label: 'Jewish', description: 'Judaism — Abrahamic faith' },\n { value: 'bahai', label: \"Baha'i\", description: 'Unity of all religions and humanity' },\n {\n value: 'spiritual',\n label: 'Spiritual but not religious',\n description: 'Personal spiritual practice',\n },\n { value: 'atheist', label: 'Atheist', description: 'No belief in deities' },\n { value: 'agnostic', label: 'Agnostic', description: 'Uncertain about higher power' },\n { value: 'no_religion', label: 'No Religion', description: 'Simply non-religious' },\n {\n value: 'inter_religion',\n label: 'Inter-Religion / Multi-faith',\n description: 'Multi-faith background',\n },\n { value: 'other', label: 'Other', description: 'A faith not listed above' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\nexport const languageOptions = [\n { value: 'hindi', label: 'Hindi (हिन्दी)' },\n { value: 'english', label: 'English' },\n { value: 'bengali', label: 'Bengali (বাংলা)' },\n { value: 'telugu', label: 'Telugu (తెలుగు)' },\n { value: 'marathi', label: 'Marathi (मराठी)' },\n { value: 'tamil', label: 'Tamil (தமிழ்)' },\n { value: 'urdu', label: 'Urdu (اردو)' },\n { value: 'gujarati', label: 'Gujarati (ગુજરાતી)' },\n { value: 'kannada', label: 'Kannada (ಕನ್ನಡ)' },\n { value: 'odia', label: 'Odia (ଓଡ଼ିଆ)' },\n { value: 'malayalam', label: 'Malayalam (മലയാളം)' },\n { value: 'punjabi', label: 'Punjabi (ਪੰਜਾਬੀ)' },\n { value: 'assamese', label: 'Assamese (অসমীয়া)' },\n { value: 'maithili', label: 'Maithili (मैथिली)' },\n { value: 'bhojpuri', label: 'Bhojpuri (भोजपुरी)' },\n { value: 'rajasthani', label: 'Rajasthani (राजस्थानी)' },\n { value: 'chhattisgarhi', label: 'Chhattisgarhi (छत्तीसगढ़ी)' },\n { value: 'haryanvi', label: 'Haryanvi (हरियाणवी)' },\n { value: 'tulu', label: 'Tulu (ತುಳು)' },\n { value: 'sanskrit', label: 'Sanskrit (संस्कृतम्)' },\n { value: 'sindhi', label: 'Sindhi (سنڌي)' },\n { value: 'kashmiri', label: 'Kashmiri (कॉशुर)' },\n { value: 'nepali', label: 'Nepali (नेपाली)' },\n { value: 'konkani', label: 'Konkani (कोंकणी)' },\n { value: 'dogri', label: 'Dogri (डोगरी)' },\n { value: 'manipuri', label: 'Manipuri (মৈতৈলোন্)' },\n { value: 'bodo', label: 'Bodo (बड़ो)' },\n { value: 'santali', label: 'Santali (ᱥᱟᱱᱛᱟᱲᱤ)' },\n { value: 'other', label: 'Other' },\n] as const;\n\nexport const reservationOptions = [\n { value: 'SC', label: 'Scheduled Caste (SC)' },\n { value: 'ST', label: 'Scheduled Tribe (ST)' },\n { value: 'OBC_NC', label: 'OBC (Non-Creamy Layer)' },\n { value: 'OBC_C', label: 'OBC (Creamy Layer)' },\n { value: 'EWS', label: 'Economically Weaker Section (EWS)' },\n { value: 'GENERAL', label: 'General' },\n { value: 'DONT_KNOW', label: \"Don't know\" },\n { value: 'PREFER_NOT_SAY', label: 'Prefer not to say' },\n] as const;\n\nexport const minorityOptions = [\n { value: 'NO', label: 'No' },\n { value: 'RELIGIOUS', label: 'Yes — Religious minority' },\n { value: 'LINGUISTIC', label: 'Yes — Linguistic minority' },\n { value: 'NOT_SURE', label: 'Not sure' },\n] as const;\n\n// ─── Field Group ────────────────────────────────────────────────────────────\n\nexport const profile: FieldGroup = {\n key: 'profile',\n label: 'Profile',\n description: 'Basic personal information — name, gender, date of birth, language, and religion.',\n step: 1,\n fields: [\n {\n order: 1,\n key: 'fullName',\n label: 'Full Name',\n type: 'object',\n step: 1,\n isOnboarding: true,\n description: 'First, middle, and last name as per Aadhaar or other govt ID',\n },\n {\n order: 4,\n key: 'gender',\n label: 'Gender',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...genderOptions],\n },\n {\n order: 5,\n key: 'dateOfBirth',\n label: 'Date of Birth',\n type: 'date',\n step: 1,\n isOnboarding: true,\n },\n {\n order: 6,\n key: 'whatsappNumber',\n label: 'WhatsApp Number',\n type: 'text',\n step: 1,\n isOnboarding: true,\n optional: true,\n description: 'Include country code',\n },\n {\n order: 7,\n key: 'primaryLanguage',\n label: 'Primary Language',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...languageOptions],\n },\n {\n order: 8,\n key: 'secondaryLanguages',\n label: 'Secondary Languages',\n type: 'multi_select',\n step: 1,\n isOnboarding: true,\n optional: true,\n options: [...languageOptions],\n maxSelect: 10,\n },\n {\n order: 9,\n key: 'familyReligion',\n label: 'Family Religion',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...religionOptions],\n },\n {\n order: 10,\n key: 'personalReligion',\n label: 'Personal Religion',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n optional: true,\n options: [...religionOptions],\n },\n {\n order: 11,\n key: 'reservationStatus',\n label: 'Reservation Category',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...reservationOptions],\n sensitive: true,\n },\n {\n order: 12,\n key: 'minorityStatus',\n label: 'Minority Status',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...minorityOptions],\n },\n ],\n};\n"]}
1
+ {"version":3,"file":"01-profile.js","sourceRoot":"","sources":["../../src/profile-fields/01-profile.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * Step 01 — Profile fields.\n *\n * Rich field definitions with options and descriptions,\n * matching the dating-schema profile-fields pattern.\n */\n\nimport type { FieldGroup } from './types.js';\n\n// ─── Shared option arrays (exported for reuse) ─────────────────────────────\n\n/**\n * Gender options — matches dating-schema (01-hero-identity.ts) EXACTLY.\n * Keep in sync with dating so both products share the same enum + copy.\n */\nexport const genderOptions = [\n { value: 'man', label: 'Man', description: 'Identify as male' },\n { value: 'woman', label: 'Woman', description: 'Identify as female' },\n {\n value: 'non_binary',\n label: 'Non-binary',\n description: 'Neither exclusively male nor female',\n },\n {\n value: 'trans_man',\n label: 'Trans Man',\n description: 'Assigned female at birth, identify as male',\n },\n {\n value: 'trans_woman',\n label: 'Trans Woman',\n description: 'Assigned male at birth, identify as female',\n },\n { value: 'genderfluid', label: 'Genderfluid', description: 'Gender identity shifts over time' },\n {\n value: 'genderqueer',\n label: 'Genderqueer',\n description: 'Outside the traditional gender binary',\n },\n { value: 'agender', label: 'Agender', description: 'No gender identity or gender-neutral' },\n {\n value: 'bigender',\n label: 'Bigender',\n description: 'Identify as two genders simultaneously or alternating',\n },\n {\n value: 'pangender',\n label: 'Pangender',\n description: 'Identify with all genders or many gender identities',\n },\n {\n value: 'androgynous',\n label: 'Androgynous',\n description: 'Blend of masculine and feminine expression',\n },\n {\n value: 'intersex',\n label: 'Intersex',\n description: \"Born with sex characteristics that don't fit typical male/female\",\n },\n {\n value: 'gender_nonconforming',\n label: 'Gender Non-conforming',\n description: \"Expression doesn't align with conventional expectations\",\n },\n {\n value: 'two_spirit',\n label: 'Two-Spirit',\n description: 'Indigenous identity encompassing multiple genders',\n },\n {\n value: 'hijra',\n label: 'Hijra',\n description: 'South Asian third-gender identity — legally recognized in India',\n },\n { value: 'other', label: 'Other', description: 'Another identity not listed here' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say', description: 'Keep this private' },\n] as const;\n\nexport const religionOptions = [\n { value: 'hindu', label: 'Hindu', description: 'Sanatana Dharma traditions' },\n { value: 'muslim_sunni', label: 'Muslim (Sunni)', description: 'Largest branch of Islam' },\n { value: 'muslim_shia', label: 'Muslim (Shia)', description: 'Second-largest branch of Islam' },\n { value: 'muslim_sufi', label: 'Muslim (Sufi)', description: 'Mystical Islamic tradition' },\n { value: 'muslim_other', label: 'Muslim (Other)', description: 'Ahmadiyya or other traditions' },\n {\n value: 'christian_catholic',\n label: 'Christian (Catholic)',\n description: 'Roman Catholic tradition',\n },\n {\n value: 'christian_protestant',\n label: 'Christian (Protestant)',\n description: 'Baptist, Methodist, Pentecostal, etc.',\n },\n {\n value: 'christian_other',\n label: 'Christian (Other)',\n description: 'Orthodox, Syrian, or other traditions',\n },\n { value: 'sikh', label: 'Sikh', description: 'Founded by Guru Nanak' },\n { value: 'jain_digambar', label: 'Jain (Digambar)', description: 'Sky-clad Jain tradition' },\n {\n value: 'jain_shwetambar',\n label: 'Jain (Shwetambar)',\n description: 'White-clad Jain tradition',\n },\n { value: 'buddhist', label: 'Buddhist', description: \"Followers of the Buddha's teachings\" },\n {\n value: 'parsi_zoroastrian',\n label: 'Parsi / Zoroastrian',\n description: 'Ancient Persian faith',\n },\n { value: 'jewish', label: 'Jewish', description: 'Judaism — Abrahamic faith' },\n { value: 'bahai', label: \"Baha'i\", description: 'Unity of all religions and humanity' },\n {\n value: 'spiritual',\n label: 'Spiritual but not religious',\n description: 'Personal spiritual practice',\n },\n { value: 'atheist', label: 'Atheist', description: 'No belief in deities' },\n { value: 'agnostic', label: 'Agnostic', description: 'Uncertain about higher power' },\n { value: 'no_religion', label: 'No Religion', description: 'Simply non-religious' },\n {\n value: 'inter_religion',\n label: 'Inter-Religion / Multi-faith',\n description: 'Multi-faith background',\n },\n { value: 'other', label: 'Other', description: 'A faith not listed above' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\nexport const languageOptions = [\n { value: 'hindi', label: 'Hindi (हिन्दी)' },\n { value: 'english', label: 'English' },\n { value: 'bengali', label: 'Bengali (বাংলা)' },\n { value: 'telugu', label: 'Telugu (తెలుగు)' },\n { value: 'marathi', label: 'Marathi (मराठी)' },\n { value: 'tamil', label: 'Tamil (தமிழ்)' },\n { value: 'urdu', label: 'Urdu (اردو)' },\n { value: 'gujarati', label: 'Gujarati (ગુજરાતી)' },\n { value: 'kannada', label: 'Kannada (ಕನ್ನಡ)' },\n { value: 'odia', label: 'Odia (ଓଡ଼ିଆ)' },\n { value: 'malayalam', label: 'Malayalam (മലയാളം)' },\n { value: 'punjabi', label: 'Punjabi (ਪੰਜਾਬੀ)' },\n { value: 'assamese', label: 'Assamese (অসমীয়া)' },\n { value: 'maithili', label: 'Maithili (मैथिली)' },\n { value: 'bhojpuri', label: 'Bhojpuri (भोजपुरी)' },\n { value: 'rajasthani', label: 'Rajasthani (राजस्थानी)' },\n { value: 'chhattisgarhi', label: 'Chhattisgarhi (छत्तीसगढ़ी)' },\n { value: 'haryanvi', label: 'Haryanvi (हरियाणवी)' },\n { value: 'tulu', label: 'Tulu (ತುಳು)' },\n { value: 'sanskrit', label: 'Sanskrit (संस्कृतम्)' },\n { value: 'sindhi', label: 'Sindhi (سنڌي)' },\n { value: 'kashmiri', label: 'Kashmiri (कॉशुर)' },\n { value: 'nepali', label: 'Nepali (नेपाली)' },\n { value: 'konkani', label: 'Konkani (कोंकणी)' },\n { value: 'dogri', label: 'Dogri (डोगरी)' },\n { value: 'manipuri', label: 'Manipuri (মৈতৈলোন্)' },\n { value: 'bodo', label: 'Bodo (बड़ो)' },\n { value: 'santali', label: 'Santali (ᱥᱟᱱᱛᱟᱲᱤ)' },\n { value: 'other', label: 'Other' },\n] as const;\n\n/**\n * Reservation / caste category — exhaustive list per Government of India\n * and state-level backward-class classifications.\n *\n * References:\n * - Articles 341 / 342 (SC / ST)\n * - Mandal Commission + 77th Amendment (OBC)\n * - 103rd Amendment, 2019 (EWS)\n * - State lists: MBC (Tamil Nadu, Bihar), SEBC (Maharashtra, Gujarat, etc.),\n * SBC (Karnataka), DNT / NT / VJNT (Maharashtra, MP, and others)\n */\nexport const reservationOptions = [\n {\n value: 'SC',\n label: 'Scheduled Caste (SC)',\n description: 'Listed in the Presidential Order under Article 341',\n },\n {\n value: 'ST',\n label: 'Scheduled Tribe (ST)',\n description: 'Listed in the Presidential Order under Article 342',\n },\n {\n value: 'OBC_NCL',\n label: 'OBC — Non-Creamy Layer',\n description: 'Other Backward Class, eligible for reservation',\n },\n {\n value: 'OBC_CL',\n label: 'OBC — Creamy Layer',\n description: 'Other Backward Class, income above the creamy-layer threshold',\n },\n {\n value: 'MBC',\n label: 'Most Backward Class (MBC)',\n description: 'State sub-category of OBC (e.g., Tamil Nadu, Bihar)',\n },\n {\n value: 'SEBC',\n label: 'Socially & Educationally Backward Class (SEBC)',\n description: 'State-notified SEBC (e.g., Maharashtra, Gujarat)',\n },\n {\n value: 'SBC',\n label: 'Special Backward Class (SBC)',\n description: 'State-notified special backward category',\n },\n {\n value: 'DNT_NT',\n label: 'Denotified / Nomadic Tribes (DNT / NT / VJNT)',\n description: 'Denotified, Nomadic, and Semi-Nomadic communities',\n },\n {\n value: 'EWS',\n label: 'Economically Weaker Section (EWS)',\n description: '10% reservation for unreserved categories (103rd Amendment)',\n },\n { value: 'GENERAL', label: 'General / Unreserved', description: 'No reservation category' },\n { value: 'DONT_KNOW', label: \"Don't know\", description: 'Not sure of the category' },\n { value: 'PREFER_NOT_TO_SAY', label: 'Prefer not to say', description: 'Keep this private' },\n] as const;\n\n/**\n * Minority status — per Ministry of Minority Affairs, Government of India.\n * 6 religious minorities are centrally notified. Linguistic minorities are\n * defined at the state level (mother tongue ≠ majority language of the state).\n */\nexport const minorityOptions = [\n { value: 'NO', label: 'No', description: 'Not a minority community' },\n {\n value: 'MUSLIM',\n label: 'Religious Minority — Muslim',\n description: 'Centrally notified religious minority',\n },\n {\n value: 'CHRISTIAN',\n label: 'Religious Minority — Christian',\n description: 'Centrally notified religious minority',\n },\n {\n value: 'SIKH',\n label: 'Religious Minority — Sikh',\n description: 'Centrally notified religious minority',\n },\n {\n value: 'BUDDHIST',\n label: 'Religious Minority — Buddhist',\n description: 'Centrally notified religious minority',\n },\n {\n value: 'JAIN',\n label: 'Religious Minority — Jain',\n description: 'Centrally notified religious minority (2014)',\n },\n {\n value: 'PARSI',\n label: 'Religious Minority — Parsi / Zoroastrian',\n description: 'Centrally notified religious minority',\n },\n {\n value: 'LINGUISTIC',\n label: 'Linguistic Minority',\n description: 'Mother tongue is not the majority language of your state',\n },\n {\n value: 'BOTH',\n label: 'Both religious and linguistic minority',\n description: 'Belongs to a religious minority AND a linguistic minority',\n },\n { value: 'NOT_SURE', label: 'Not sure', description: \"Don't know if you're a minority\" },\n { value: 'PREFER_NOT_TO_SAY', label: 'Prefer not to say', description: 'Keep this private' },\n] as const;\n\n// ─── Field Group ────────────────────────────────────────────────────────────\n\nexport const profile: FieldGroup = {\n key: 'profile',\n label: 'Profile',\n description: 'Basic personal information — name, gender, date of birth, language, and religion.',\n step: 1,\n fields: [\n {\n order: 1,\n key: 'fullName',\n label: 'Full Name',\n type: 'object',\n step: 1,\n isOnboarding: true,\n description: 'First, middle, and last name as per Aadhaar or other govt ID',\n },\n {\n order: 4,\n key: 'gender',\n label: 'Gender',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...genderOptions],\n },\n {\n order: 5,\n key: 'dateOfBirth',\n label: 'Date of Birth',\n type: 'date',\n step: 1,\n isOnboarding: true,\n },\n {\n order: 6,\n key: 'whatsappNumber',\n label: 'WhatsApp Number',\n type: 'text',\n step: 1,\n isOnboarding: true,\n optional: true,\n description: 'Include country code',\n },\n {\n order: 7,\n key: 'primaryLanguage',\n label: 'Primary Language',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...languageOptions],\n },\n {\n order: 8,\n key: 'secondaryLanguages',\n label: 'Secondary Languages',\n type: 'multi_select',\n step: 1,\n isOnboarding: true,\n optional: true,\n options: [...languageOptions],\n maxSelect: 10,\n },\n {\n order: 9,\n key: 'familyReligion',\n label: 'Family Religion',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...religionOptions],\n },\n {\n order: 10,\n key: 'personalReligion',\n label: 'Personal Religion',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n optional: true,\n options: [...religionOptions],\n },\n {\n order: 11,\n key: 'reservationStatus',\n label: 'Reservation Category',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...reservationOptions],\n sensitive: true,\n },\n {\n order: 12,\n key: 'minorityStatus',\n label: 'Minority Status',\n type: 'single_select',\n step: 1,\n isOnboarding: true,\n options: [...minorityOptions],\n },\n ],\n};\n"]}
@@ -39,6 +39,11 @@ export declare const politicalSpectrumOptions: readonly [{
39
39
  readonly value: "prefer_not_to_say";
40
40
  readonly label: "Prefer not to say";
41
41
  }];
42
+ /**
43
+ * Indian political parties — exhaustive list of nationally- or state-recognized
44
+ * parties active as of 2026. Ordered roughly by national visibility; state /
45
+ * regional parties follow. Includes post-2023 splits (NCP-SP, Shiv Sena UBT).
46
+ */
42
47
  export declare const partyOptions: readonly [{
43
48
  readonly value: "bjp";
44
49
  readonly label: "BJP";
@@ -65,13 +70,25 @@ export declare const partyOptions: readonly [{
65
70
  readonly label: "AIADMK";
66
71
  }, {
67
72
  readonly value: "ncp";
68
- readonly label: "NCP";
73
+ readonly label: "NCP (Ajit Pawar)";
74
+ }, {
75
+ readonly value: "ncp_sp";
76
+ readonly label: "NCP (Sharad Pawar)";
69
77
  }, {
70
78
  readonly value: "shiv_sena";
71
- readonly label: "Shiv Sena";
79
+ readonly label: "Shiv Sena (Shinde)";
80
+ }, {
81
+ readonly value: "shiv_sena_ubt";
82
+ readonly label: "Shiv Sena (UBT)";
83
+ }, {
84
+ readonly value: "aimim";
85
+ readonly label: "AIMIM";
72
86
  }, {
73
87
  readonly value: "jdu";
74
88
  readonly label: "JD(U)";
89
+ }, {
90
+ readonly value: "jds";
91
+ readonly label: "JD(S)";
75
92
  }, {
76
93
  readonly value: "rjd";
77
94
  readonly label: "RJD";
@@ -87,12 +104,42 @@ export declare const partyOptions: readonly [{
87
104
  }, {
88
105
  readonly value: "tdp";
89
106
  readonly label: "TDP";
107
+ }, {
108
+ readonly value: "brs";
109
+ readonly label: "BRS (Bharat Rashtra Samithi)";
90
110
  }, {
91
111
  readonly value: "bjd";
92
112
  readonly label: "BJD";
93
113
  }, {
94
114
  readonly value: "jmm";
95
115
  readonly label: "JMM";
116
+ }, {
117
+ readonly value: "sad";
118
+ readonly label: "Shiromani Akali Dal (SAD)";
119
+ }, {
120
+ readonly value: "rld";
121
+ readonly label: "Rashtriya Lok Dal (RLD)";
122
+ }, {
123
+ readonly value: "aiudf";
124
+ readonly label: "AIUDF";
125
+ }, {
126
+ readonly value: "jkn";
127
+ readonly label: "J&K National Conference";
128
+ }, {
129
+ readonly value: "inld";
130
+ readonly label: "Indian National Lok Dal (INLD)";
131
+ }, {
132
+ readonly value: "iuml";
133
+ readonly label: "Indian Union Muslim League (IUML)";
134
+ }, {
135
+ readonly value: "mns";
136
+ readonly label: "Maharashtra Navnirman Sena (MNS)";
137
+ }, {
138
+ readonly value: "agp";
139
+ readonly label: "Asom Gana Parishad (AGP)";
140
+ }, {
141
+ readonly value: "independent";
142
+ readonly label: "Independent candidate";
96
143
  }, {
97
144
  readonly value: "none";
98
145
  readonly label: "No party affiliation";
@@ -103,12 +150,21 @@ export declare const partyOptions: readonly [{
103
150
  readonly value: "prefer_not_to_say";
104
151
  readonly label: "Prefer not to say";
105
152
  }];
153
+ /**
154
+ * Civic-engagement categories — expanded to cover organizational forms
155
+ * common in Indian political/social life, including ideological networks
156
+ * (RSS / Sangh), farmers' bodies, women's collectives, student unions,
157
+ * and party youth wings.
158
+ */
106
159
  export declare const civicEngagementOptions: readonly [{
107
160
  readonly value: "ngo";
108
161
  readonly label: "NGO / Non-profit";
109
162
  }, {
110
163
  readonly value: "trade_union";
111
164
  readonly label: "Trade Union";
165
+ }, {
166
+ readonly value: "farmers_organization";
167
+ readonly label: "Farmers' Organization / Kisan Sangathan";
112
168
  }, {
113
169
  readonly value: "cooperative";
114
170
  readonly label: "Cooperative Society";
@@ -118,9 +174,21 @@ export declare const civicEngagementOptions: readonly [{
118
174
  }, {
119
175
  readonly value: "self_help_group";
120
176
  readonly label: "Self Help Group (SHG)";
177
+ }, {
178
+ readonly value: "womens_collective";
179
+ readonly label: "Women's Collective / Mahila Mandal";
121
180
  }, {
122
181
  readonly value: "youth_club";
123
182
  readonly label: "Youth Club";
183
+ }, {
184
+ readonly value: "student_union";
185
+ readonly label: "Student Union";
186
+ }, {
187
+ readonly value: "political_party_youth_wing";
188
+ readonly label: "Political Party Youth Wing (BJYM / IYC / etc.)";
189
+ }, {
190
+ readonly value: "rss_swayamsevak";
191
+ readonly label: "RSS / Swayamsevak (Sangh network)";
124
192
  }, {
125
193
  readonly value: "religious_organization";
126
194
  readonly label: "Religious Organization";
@@ -130,12 +198,130 @@ export declare const civicEngagementOptions: readonly [{
130
198
  }, {
131
199
  readonly value: "professional_body";
132
200
  readonly label: "Professional Body";
201
+ }, {
202
+ readonly value: "environmental_group";
203
+ readonly label: "Environmental Group";
204
+ }, {
205
+ readonly value: "cultural_association";
206
+ readonly label: "Cultural Association";
207
+ }, {
208
+ readonly value: "alumni_association";
209
+ readonly label: "Alumni Association";
210
+ }, {
211
+ readonly value: "none";
212
+ readonly label: "None";
213
+ }, {
214
+ readonly value: "other";
215
+ readonly label: "Other";
216
+ }];
217
+ /**
218
+ * Nature of the respondent's association with their political party.
219
+ * Differentiates card-carrying members from sympathizers and office-bearers.
220
+ */
221
+ export declare const partyAssociationRoleOptions: readonly [{
222
+ readonly value: "member";
223
+ readonly label: "Member";
224
+ readonly description: "Primary / card-carrying member of the party";
225
+ }, {
226
+ readonly value: "active_worker";
227
+ readonly label: "Active Worker";
228
+ readonly description: "Campaigning, organizing, and on-ground work";
229
+ }, {
230
+ readonly value: "office_bearer";
231
+ readonly label: "Office Bearer";
232
+ readonly description: "Hold an official post in the party";
233
+ }, {
234
+ readonly value: "candidate";
235
+ readonly label: "Candidate";
236
+ readonly description: "Contested or planning to contest on this party ticket";
237
+ }, {
238
+ readonly value: "spokesperson";
239
+ readonly label: "Spokesperson";
240
+ readonly description: "Represent the party publicly or in media";
241
+ }, {
242
+ readonly value: "volunteer";
243
+ readonly label: "Volunteer";
244
+ readonly description: "Occasional volunteer work without formal membership";
245
+ }, {
246
+ readonly value: "sympathizer";
247
+ readonly label: "Sympathizer";
248
+ readonly description: "Support the party but no formal role";
133
249
  }, {
134
250
  readonly value: "none";
135
251
  readonly label: "None";
252
+ readonly description: "No formal association";
253
+ }, {
254
+ readonly value: "prefer_not_to_say";
255
+ readonly label: "Prefer not to say";
256
+ }];
257
+ /**
258
+ * Family / relatives in politics — captures intergenerational political
259
+ * involvement that shapes political consciousness in India.
260
+ */
261
+ export declare const relativesInPoliticsOptions: readonly [{
262
+ readonly value: "none";
263
+ readonly label: "No one";
264
+ readonly description: "No relatives are in politics";
265
+ }, {
266
+ readonly value: "immediate_family";
267
+ readonly label: "Immediate family";
268
+ readonly description: "Parents, siblings, spouse, or children";
269
+ }, {
270
+ readonly value: "extended_family";
271
+ readonly label: "Extended family";
272
+ readonly description: "Uncles, aunts, cousins, or in-laws";
273
+ }, {
274
+ readonly value: "both";
275
+ readonly label: "Both immediate and extended";
276
+ }, {
277
+ readonly value: "dont_know";
278
+ readonly label: "Don't know";
279
+ }, {
280
+ readonly value: "prefer_not_to_say";
281
+ readonly label: "Prefer not to say";
282
+ }];
283
+ /**
284
+ * Levels of elected / appointed office — used for both office held and
285
+ * election contested, so the two use the same enum.
286
+ */
287
+ export declare const officeElectionLevelOptions: readonly [{
288
+ readonly value: "panchayat";
289
+ readonly label: "Panchayat / Gram";
290
+ }, {
291
+ readonly value: "ward";
292
+ readonly label: "Ward / Nagar Palika";
293
+ }, {
294
+ readonly value: "municipality";
295
+ readonly label: "Municipality";
296
+ }, {
297
+ readonly value: "block";
298
+ readonly label: "Block / Tehsil";
299
+ }, {
300
+ readonly value: "district";
301
+ readonly label: "District / Zila Parishad";
302
+ }, {
303
+ readonly value: "assembly";
304
+ readonly label: "State Assembly (MLA)";
305
+ }, {
306
+ readonly value: "parliament";
307
+ readonly label: "Parliament (MP)";
136
308
  }, {
137
309
  readonly value: "other";
138
310
  readonly label: "Other";
139
311
  }];
312
+ /** Outcome of an election the respondent contested. */
313
+ export declare const electionResultOptions: readonly [{
314
+ readonly value: "won";
315
+ readonly label: "Won";
316
+ }, {
317
+ readonly value: "lost";
318
+ readonly label: "Lost";
319
+ }, {
320
+ readonly value: "withdrew";
321
+ readonly label: "Withdrew before voting";
322
+ }, {
323
+ readonly value: "ongoing";
324
+ readonly label: "Currently contesting";
325
+ }];
140
326
  export declare const politicalAssociation: FieldGroup;
141
327
  //# sourceMappingURL=02-political.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"02-political.d.ts","sourceRoot":"","sources":["../../src/profile-fields/02-political.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgD3B,CAAC;AAEX,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBf,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYzB,CAAC;AAEX,eAAO,MAAM,oBAAoB,EAAE,UAyDlC,CAAC"}
1
+ {"version":3,"file":"02-political.d.ts","sourceRoot":"","sources":["../../src/profile-fields/02-political.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgD3B,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCf,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBzB,CAAC;AAEX;;;GAGG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsC9B,CAAC;AAEX;;;GAGG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;EAe7B,CAAC;AAEX;;;GAGG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;EAS7B,CAAC;AAEX,uDAAuD;AACvD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EAKxB,CAAC;AAEX,eAAO,MAAM,oBAAoB,EAAE,UAkFlC,CAAC"}