dating-schema 0.28.0 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/profile.d.ts CHANGED
@@ -2068,6 +2068,14 @@ export declare const fullProfileSchema: z.ZodObject<{
2068
2068
  hardPreferences: z.ZodOptional<z.ZodArray<z.ZodString>>;
2069
2069
  softFilters: z.ZodOptional<z.ZodArray<z.ZodString>>;
2070
2070
  }, z.core.$strip>;
2071
+ /**
2072
+ * createProfileSchema — validation for profile creation API.
2073
+ *
2074
+ * Uses z.string() for all option fields (no enums) so that options can be
2075
+ * added/removed in field definitions without republishing the schema.
2076
+ * Valid options are defined in profile-fields/*.ts and enforced by the UI
2077
+ * via getFieldOptions(). Mongoose stores any string value.
2078
+ */
2071
2079
  export declare const createProfileSchema: z.ZodObject<{
2072
2080
  photos: z.ZodArray<z.ZodObject<{
2073
2081
  url: z.ZodString;
@@ -2078,38 +2086,8 @@ export declare const createProfileSchema: z.ZodObject<{
2078
2086
  }, z.core.$strip>>;
2079
2087
  displayName: z.ZodString;
2080
2088
  dateOfBirth: z.ZodCoercedDate<unknown>;
2081
- gender: z.ZodEnum<{
2082
- non_binary: "non_binary";
2083
- prefer_not_to_say: "prefer_not_to_say";
2084
- man: "man";
2085
- woman: "woman";
2086
- trans_man: "trans_man";
2087
- trans_woman: "trans_woman";
2088
- genderfluid: "genderfluid";
2089
- genderqueer: "genderqueer";
2090
- agender: "agender";
2091
- bigender: "bigender";
2092
- pangender: "pangender";
2093
- androgynous: "androgynous";
2094
- intersex: "intersex";
2095
- gender_nonconforming: "gender_nonconforming";
2096
- two_spirit: "two_spirit";
2097
- hijra: "hijra";
2098
- other: "other";
2099
- }>;
2100
- pronouns: z.ZodEnum<{
2101
- prefer_not_to_say: "prefer_not_to_say";
2102
- other: "other";
2103
- he_him: "he_him";
2104
- she_her: "she_her";
2105
- they_them: "they_them";
2106
- he_they: "he_they";
2107
- she_they: "she_they";
2108
- ze_zir: "ze_zir";
2109
- xe_xem: "xe_xem";
2110
- any_pronouns: "any_pronouns";
2111
- ask_me: "ask_me";
2112
- }>;
2089
+ gender: z.ZodString;
2090
+ pronouns: z.ZodString;
2113
2091
  currentCity: z.ZodObject<{
2114
2092
  display: z.ZodString;
2115
2093
  coordinates: z.ZodOptional<z.ZodObject<{
@@ -2118,628 +2096,45 @@ export declare const createProfileSchema: z.ZodObject<{
2118
2096
  }, z.core.$strip>>;
2119
2097
  }, z.core.$strip>;
2120
2098
  hometown: z.ZodString;
2121
- relationshipIntent: z.ZodEnum<{
2122
- life_partner: "life_partner";
2123
- long_term: "long_term";
2124
- long_term_open_to_short: "long_term_open_to_short";
2125
- short_term_open_to_long: "short_term_open_to_long";
2126
- casual_dating: "casual_dating";
2127
- hookup: "hookup";
2128
- companionship: "companionship";
2129
- ethical_non_monogamy: "ethical_non_monogamy";
2130
- activity_partner: "activity_partner";
2131
- new_friends: "new_friends";
2132
- figuring_out: "figuring_out";
2133
- }>;
2134
- sexualOrientation: z.ZodEnum<{
2135
- prefer_not_to_say: "prefer_not_to_say";
2136
- straight: "straight";
2137
- gay: "gay";
2138
- lesbian: "lesbian";
2139
- bisexual: "bisexual";
2140
- pansexual: "pansexual";
2141
- asexual: "asexual";
2142
- demisexual: "demisexual";
2143
- aromantic: "aromantic";
2144
- graysexual: "graysexual";
2145
- omnisexual: "omnisexual";
2146
- fluid: "fluid";
2147
- queer: "queer";
2148
- questioning: "questioning";
2149
- homoflexible: "homoflexible";
2150
- heteroflexible: "heteroflexible";
2151
- sapiosexual: "sapiosexual";
2152
- }>;
2153
- relationshipStructure: z.ZodEnum<{
2154
- prefer_not_to_say: "prefer_not_to_say";
2155
- ethical_non_monogamy: "ethical_non_monogamy";
2156
- figuring_out: "figuring_out";
2157
- monogamy: "monogamy";
2158
- open_relationship: "open_relationship";
2159
- polyamory: "polyamory";
2160
- relationship_anarchy: "relationship_anarchy";
2161
- open_to_exploring: "open_to_exploring";
2162
- }>;
2099
+ relationshipIntent: z.ZodString;
2100
+ sexualOrientation: z.ZodString;
2101
+ relationshipStructure: z.ZodString;
2163
2102
  bio: z.ZodString;
2164
- preferredGenders: z.ZodArray<z.ZodEnum<{
2165
- non_binary: "non_binary";
2166
- prefer_not_to_say: "prefer_not_to_say";
2167
- man: "man";
2168
- woman: "woman";
2169
- trans_man: "trans_man";
2170
- trans_woman: "trans_woman";
2171
- genderfluid: "genderfluid";
2172
- genderqueer: "genderqueer";
2173
- agender: "agender";
2174
- bigender: "bigender";
2175
- pangender: "pangender";
2176
- androgynous: "androgynous";
2177
- intersex: "intersex";
2178
- gender_nonconforming: "gender_nonconforming";
2179
- two_spirit: "two_spirit";
2180
- hijra: "hijra";
2181
- other: "other";
2182
- }>>;
2183
- familyReligion: z.ZodEnum<{
2184
- prefer_not_to_say: "prefer_not_to_say";
2185
- other: "other";
2186
- spiritual: "spiritual";
2187
- hindu: "hindu";
2188
- muslim_sunni: "muslim_sunni";
2189
- muslim_shia: "muslim_shia";
2190
- muslim_sufi: "muslim_sufi";
2191
- muslim_other: "muslim_other";
2192
- christian_catholic: "christian_catholic";
2193
- christian_protestant: "christian_protestant";
2194
- christian_other: "christian_other";
2195
- sikh: "sikh";
2196
- jain_digambar: "jain_digambar";
2197
- jain_shwetambar: "jain_shwetambar";
2198
- buddhist: "buddhist";
2199
- parsi_zoroastrian: "parsi_zoroastrian";
2200
- jewish: "jewish";
2201
- bahai: "bahai";
2202
- atheist: "atheist";
2203
- agnostic: "agnostic";
2204
- no_religion: "no_religion";
2205
- inter_religion: "inter_religion";
2206
- }>;
2207
- motherTongue: z.ZodEnum<{
2208
- other: "other";
2209
- hindi: "hindi";
2210
- english: "english";
2211
- bengali: "bengali";
2212
- telugu: "telugu";
2213
- marathi: "marathi";
2214
- tamil: "tamil";
2215
- urdu: "urdu";
2216
- gujarati: "gujarati";
2217
- kannada: "kannada";
2218
- odia: "odia";
2219
- malayalam: "malayalam";
2220
- punjabi: "punjabi";
2221
- assamese: "assamese";
2222
- maithili: "maithili";
2223
- bhojpuri: "bhojpuri";
2224
- rajasthani: "rajasthani";
2225
- chhattisgarhi: "chhattisgarhi";
2226
- haryanvi: "haryanvi";
2227
- tulu: "tulu";
2228
- sanskrit: "sanskrit";
2229
- sindhi: "sindhi";
2230
- kashmiri: "kashmiri";
2231
- nepali: "nepali";
2232
- konkani: "konkani";
2233
- dogri: "dogri";
2234
- manipuri: "manipuri";
2235
- bodo: "bodo";
2236
- santali: "santali";
2237
- }>;
2238
- relationshipStatus: z.ZodEnum<{
2239
- prefer_not_to_say: "prefer_not_to_say";
2240
- never_married: "never_married";
2241
- divorced: "divorced";
2242
- widowed: "widowed";
2243
- separated: "separated";
2244
- dating: "dating";
2245
- married: "married";
2246
- awaiting_divorce: "awaiting_divorce";
2247
- enm: "enm";
2248
- its_complicated: "its_complicated";
2249
- }>;
2250
- hometownState: z.ZodOptional<z.ZodEnum<{
2251
- prefer_not_to_say: "prefer_not_to_say";
2252
- andhra_pradesh: "andhra_pradesh";
2253
- arunachal_pradesh: "arunachal_pradesh";
2254
- assam: "assam";
2255
- bihar: "bihar";
2256
- chhattisgarh: "chhattisgarh";
2257
- goa: "goa";
2258
- gujarat: "gujarat";
2259
- haryana: "haryana";
2260
- himachal_pradesh: "himachal_pradesh";
2261
- jharkhand: "jharkhand";
2262
- karnataka: "karnataka";
2263
- kerala: "kerala";
2264
- madhya_pradesh: "madhya_pradesh";
2265
- maharashtra: "maharashtra";
2266
- manipur: "manipur";
2267
- meghalaya: "meghalaya";
2268
- mizoram: "mizoram";
2269
- nagaland: "nagaland";
2270
- odisha: "odisha";
2271
- punjab: "punjab";
2272
- rajasthan: "rajasthan";
2273
- sikkim: "sikkim";
2274
- tamil_nadu: "tamil_nadu";
2275
- telangana: "telangana";
2276
- tripura: "tripura";
2277
- uttar_pradesh: "uttar_pradesh";
2278
- uttarakhand: "uttarakhand";
2279
- west_bengal: "west_bengal";
2280
- delhi: "delhi";
2281
- jammu_kashmir: "jammu_kashmir";
2282
- ladakh: "ladakh";
2283
- chandigarh: "chandigarh";
2284
- puducherry: "puducherry";
2285
- andaman_nicobar: "andaman_nicobar";
2286
- dadra_nagar_haveli: "dadra_nagar_haveli";
2287
- lakshadweep: "lakshadweep";
2288
- international: "international";
2289
- }>>;
2103
+ preferredGenders: z.ZodArray<z.ZodString>;
2104
+ familyReligion: z.ZodString;
2105
+ motherTongue: z.ZodString;
2106
+ relationshipStatus: z.ZodString;
2107
+ hometownState: z.ZodOptional<z.ZodString>;
2290
2108
  hometownStateId: z.ZodOptional<z.ZodString>;
2291
2109
  hometownDistrict: z.ZodOptional<z.ZodString>;
2292
2110
  hometownDistrictId: z.ZodOptional<z.ZodString>;
2293
2111
  myStory: z.ZodOptional<z.ZodString>;
2294
- personalReligion: z.ZodOptional<z.ZodEnum<{
2295
- prefer_not_to_say: "prefer_not_to_say";
2296
- other: "other";
2297
- spiritual: "spiritual";
2298
- hindu: "hindu";
2299
- muslim_sunni: "muslim_sunni";
2300
- muslim_shia: "muslim_shia";
2301
- muslim_sufi: "muslim_sufi";
2302
- muslim_other: "muslim_other";
2303
- christian_catholic: "christian_catholic";
2304
- christian_protestant: "christian_protestant";
2305
- christian_other: "christian_other";
2306
- sikh: "sikh";
2307
- jain_digambar: "jain_digambar";
2308
- jain_shwetambar: "jain_shwetambar";
2309
- buddhist: "buddhist";
2310
- parsi_zoroastrian: "parsi_zoroastrian";
2311
- jewish: "jewish";
2312
- bahai: "bahai";
2313
- atheist: "atheist";
2314
- agnostic: "agnostic";
2315
- no_religion: "no_religion";
2316
- inter_religion: "inter_religion";
2317
- }>>;
2112
+ personalReligion: z.ZodOptional<z.ZodString>;
2318
2113
  height: z.ZodOptional<z.ZodNumber>;
2319
2114
  weight: z.ZodOptional<z.ZodNumber>;
2320
- bodyBuild: z.ZodOptional<z.ZodEnum<{
2321
- prefer_not_to_say: "prefer_not_to_say";
2322
- slim: "slim";
2323
- lean: "lean";
2324
- athletic: "athletic";
2325
- average: "average";
2326
- curvy: "curvy";
2327
- stocky: "stocky";
2328
- heavy: "heavy";
2329
- }>>;
2330
- complexion: z.ZodOptional<z.ZodEnum<{
2331
- prefer_not_to_say: "prefer_not_to_say";
2332
- very_fair: "very_fair";
2333
- fair: "fair";
2334
- wheatish: "wheatish";
2335
- wheatish_medium: "wheatish_medium";
2336
- olive: "olive";
2337
- medium: "medium";
2338
- dark: "dark";
2339
- very_dark: "very_dark";
2340
- }>>;
2341
- educationLevel: z.ZodOptional<z.ZodEnum<{
2342
- prefer_not_to_say: "prefer_not_to_say";
2343
- below_10th: "below_10th";
2344
- high_school: "high_school";
2345
- iti_vocational: "iti_vocational";
2346
- diploma: "diploma";
2347
- associate: "associate";
2348
- in_college: "in_college";
2349
- bachelors: "bachelors";
2350
- in_grad_school: "in_grad_school";
2351
- masters: "masters";
2352
- doctorate: "doctorate";
2353
- professional: "professional";
2354
- self_taught: "self_taught";
2355
- }>>;
2356
- institutionTier: z.ZodOptional<z.ZodEnum<{
2357
- prefer_not_to_say: "prefer_not_to_say";
2358
- tier1_elite: "tier1_elite";
2359
- tier2_reputed: "tier2_reputed";
2360
- tier3_regional: "tier3_regional";
2361
- open_distance: "open_distance";
2362
- }>>;
2363
- cognitiveBand: z.ZodOptional<z.ZodEnum<{
2364
- prefer_not_to_say: "prefer_not_to_say";
2365
- "1_tradition_faith": "1_tradition_faith";
2366
- "2_faith_curious": "2_faith_curious";
2367
- "3_multiplicity_open": "3_multiplicity_open";
2368
- "4_pragmatic_flexible": "4_pragmatic_flexible";
2369
- "5_evidence_reasoning": "5_evidence_reasoning";
2370
- "6_critical_reflective": "6_critical_reflective";
2371
- "7_skeptic_optimize": "7_skeptic_optimize";
2372
- }>>;
2373
- politicalOrientation: z.ZodOptional<z.ZodEnum<{
2374
- prefer_not_to_say: "prefer_not_to_say";
2375
- far_left: "far_left";
2376
- left: "left";
2377
- centre_left: "centre_left";
2378
- centrist: "centrist";
2379
- centre_right: "centre_right";
2380
- right: "right";
2381
- far_right: "far_right";
2382
- libertarian: "libertarian";
2383
- apolitical: "apolitical";
2384
- }>>;
2385
- profession: z.ZodOptional<z.ZodEnum<{
2386
- prefer_not_to_say: "prefer_not_to_say";
2387
- other: "other";
2388
- it_software: "it_software";
2389
- engineering: "engineering";
2390
- healthcare_doctor: "healthcare_doctor";
2391
- healthcare_nursing: "healthcare_nursing";
2392
- healthcare_pharma: "healthcare_pharma";
2393
- psychology_therapy: "psychology_therapy";
2394
- education_teaching: "education_teaching";
2395
- science_research: "science_research";
2396
- finance_banking: "finance_banking";
2397
- chartered_accountant: "chartered_accountant";
2398
- business_management: "business_management";
2399
- arts_entertainment: "arts_entertainment";
2400
- media_communication: "media_communication";
2401
- design_creative: "design_creative";
2402
- civil_services: "civil_services";
2403
- government_public: "government_public";
2404
- defence_military: "defence_military";
2405
- police_law_enforcement: "police_law_enforcement";
2406
- legal: "legal";
2407
- skilled_trades: "skilled_trades";
2408
- transport_logistics: "transport_logistics";
2409
- hospitality_travel: "hospitality_travel";
2410
- beauty_wellness: "beauty_wellness";
2411
- agriculture_farming: "agriculture_farming";
2412
- real_estate: "real_estate";
2413
- retail_ecommerce: "retail_ecommerce";
2414
- manufacturing: "manufacturing";
2415
- merchant_navy: "merchant_navy";
2416
- ngo_social_work: "ngo_social_work";
2417
- religious_spiritual: "religious_spiritual";
2418
- freelancer_gig: "freelancer_gig";
2419
- content_creator: "content_creator";
2420
- self_employed: "self_employed";
2421
- student: "student";
2422
- homemaker: "homemaker";
2423
- retired: "retired";
2424
- not_working: "not_working";
2425
- differently_abled_pension: "differently_abled_pension";
2426
- }>>;
2427
- careerStage: z.ZodOptional<z.ZodEnum<{
2428
- prefer_not_to_say: "prefer_not_to_say";
2429
- student: "student";
2430
- retired: "retired";
2431
- just_starting: "just_starting";
2432
- mid_career: "mid_career";
2433
- senior: "senior";
2434
- entrepreneur: "entrepreneur";
2435
- freelancer: "freelancer";
2436
- career_break: "career_break";
2437
- }>>;
2438
- incomeRange: z.ZodOptional<z.ZodEnum<{
2439
- prefer_not_to_say: "prefer_not_to_say";
2440
- under_3l: "under_3l";
2441
- "3l_6l": "3l_6l";
2442
- "6l_10l": "6l_10l";
2443
- "10l_15l": "10l_15l";
2444
- "15l_25l": "15l_25l";
2445
- "25l_50l": "25l_50l";
2446
- "50l_1cr": "50l_1cr";
2447
- above_1cr: "above_1cr";
2448
- }>>;
2449
- familyValues: z.ZodOptional<z.ZodEnum<{
2450
- prefer_not_to_say: "prefer_not_to_say";
2451
- moderate: "moderate";
2452
- orthodox: "orthodox";
2453
- liberal: "liberal";
2454
- very_liberal: "very_liberal";
2455
- }>>;
2456
- scientificTemper: z.ZodOptional<z.ZodEnum<{
2457
- prefer_not_to_say: "prefer_not_to_say";
2458
- strongly_scientific: "strongly_scientific";
2459
- mostly_scientific: "mostly_scientific";
2460
- balanced: "balanced";
2461
- mostly_intuitive: "mostly_intuitive";
2462
- strongly_intuitive: "strongly_intuitive";
2463
- }>>;
2464
- hobbies: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2465
- other: "other";
2466
- photography: "photography";
2467
- painting: "painting";
2468
- drawing: "drawing";
2469
- writing: "writing";
2470
- crafts: "crafts";
2471
- pottery: "pottery";
2472
- knitting: "knitting";
2473
- woodworking: "woodworking";
2474
- blogging: "blogging";
2475
- vlogging: "vlogging";
2476
- calligraphy: "calligraphy";
2477
- graphic_design: "graphic_design";
2478
- filmmaking: "filmmaking";
2479
- embroidery: "embroidery";
2480
- origami: "origami";
2481
- candle_making: "candle_making";
2482
- resin_art: "resin_art";
2483
- mehndi_art: "mehndi_art";
2484
- rangoli: "rangoli";
2485
- gym: "gym";
2486
- running: "running";
2487
- cycling: "cycling";
2488
- swimming: "swimming";
2489
- yoga: "yoga";
2490
- martial_arts: "martial_arts";
2491
- rock_climbing: "rock_climbing";
2492
- hiking: "hiking";
2493
- skating: "skating";
2494
- skateboarding: "skateboarding";
2495
- surfing: "surfing";
2496
- skiing: "skiing";
2497
- cricket: "cricket";
2498
- football: "football";
2499
- badminton: "badminton";
2500
- tennis: "tennis";
2501
- basketball: "basketball";
2502
- table_tennis: "table_tennis";
2503
- archery: "archery";
2504
- horse_riding: "horse_riding";
2505
- volleyball: "volleyball";
2506
- hockey: "hockey";
2507
- kabaddi: "kabaddi";
2508
- kho_kho: "kho_kho";
2509
- wrestling: "wrestling";
2510
- boxing: "boxing";
2511
- crossfit: "crossfit";
2512
- pilates: "pilates";
2513
- calisthenics: "calisthenics";
2514
- trekking: "trekking";
2515
- paragliding: "paragliding";
2516
- golf: "golf";
2517
- singing: "singing";
2518
- playing_instrument: "playing_instrument";
2519
- dancing: "dancing";
2520
- karaoke: "karaoke";
2521
- dj: "dj";
2522
- stand_up_comedy: "stand_up_comedy";
2523
- theater: "theater";
2524
- classical_dance: "classical_dance";
2525
- beatboxing: "beatboxing";
2526
- music_production: "music_production";
2527
- poetry_slam: "poetry_slam";
2528
- rapping: "rapping";
2529
- open_mic: "open_mic";
2530
- movies: "movies";
2531
- anime: "anime";
2532
- reading: "reading";
2533
- podcasts: "podcasts";
2534
- gaming: "gaming";
2535
- board_games: "board_games";
2536
- binge_watching: "binge_watching";
2537
- k_drama: "k_drama";
2538
- bollywood: "bollywood";
2539
- documentaries: "documentaries";
2540
- manga: "manga";
2541
- comic_books: "comic_books";
2542
- true_crime: "true_crime";
2543
- stand_up_specials: "stand_up_specials";
2544
- quiz_trivia: "quiz_trivia";
2545
- chess: "chess";
2546
- carrom: "carrom";
2547
- ludo: "ludo";
2548
- card_games: "card_games";
2549
- escape_rooms: "escape_rooms";
2550
- memes: "memes";
2551
- cooking: "cooking";
2552
- baking: "baking";
2553
- coffee: "coffee";
2554
- tea: "tea";
2555
- wine_tasting: "wine_tasting";
2556
- street_food: "street_food";
2557
- fine_dining: "fine_dining";
2558
- food_photography: "food_photography";
2559
- food_blogging: "food_blogging";
2560
- mixology: "mixology";
2561
- craft_beer: "craft_beer";
2562
- home_brewing: "home_brewing";
2563
- regional_cuisines: "regional_cuisines";
2564
- healthy_eating: "healthy_eating";
2565
- meal_prep: "meal_prep";
2566
- chocolate: "chocolate";
2567
- desserts: "desserts";
2568
- spice_lover: "spice_lover";
2569
- traveling: "traveling";
2570
- camping: "camping";
2571
- backpacking: "backpacking";
2572
- road_trips: "road_trips";
2573
- scuba_diving: "scuba_diving";
2574
- bird_watching: "bird_watching";
2575
- fishing: "fishing";
2576
- gardening: "gardening";
2577
- stargazing: "stargazing";
2578
- solo_travel: "solo_travel";
2579
- heritage_tourism: "heritage_tourism";
2580
- mountain_biking: "mountain_biking";
2581
- wildlife_safari: "wildlife_safari";
2582
- train_journeys: "train_journeys";
2583
- bike_rides: "bike_rides";
2584
- beach_hopping: "beach_hopping";
2585
- snorkeling: "snorkeling";
2586
- kayaking: "kayaking";
2587
- rafting: "rafting";
2588
- nature_walks: "nature_walks";
2589
- van_life: "van_life";
2590
- meditation: "meditation";
2591
- spirituality_practice: "spirituality_practice";
2592
- astrology_hobby: "astrology_hobby";
2593
- tarot: "tarot";
2594
- journaling: "journaling";
2595
- self_improvement: "self_improvement";
2596
- ayurveda: "ayurveda";
2597
- pranayama: "pranayama";
2598
- gratitude_practice: "gratitude_practice";
2599
- therapy: "therapy";
2600
- manifestation: "manifestation";
2601
- sound_healing: "sound_healing";
2602
- aromatherapy: "aromatherapy";
2603
- volunteering: "volunteering";
2604
- activism: "activism";
2605
- mentoring: "mentoring";
2606
- networking: "networking";
2607
- pet_care: "pet_care";
2608
- community_service: "community_service";
2609
- ngo_work: "ngo_work";
2610
- animal_rescue: "animal_rescue";
2611
- teaching: "teaching";
2612
- public_speaking: "public_speaking";
2613
- debate: "debate";
2614
- model_un: "model_un";
2615
- parenting: "parenting";
2616
- coding: "coding";
2617
- investing: "investing";
2618
- entrepreneurship: "entrepreneurship";
2619
- languages: "languages";
2620
- science: "science";
2621
- ai_ml: "ai_ml";
2622
- crypto_web3: "crypto_web3";
2623
- stock_trading: "stock_trading";
2624
- robotics: "robotics";
2625
- astronomy: "astronomy";
2626
- history: "history";
2627
- philosophy: "philosophy";
2628
- psychology: "psychology";
2629
- online_courses: "online_courses";
2630
- open_source: "open_source";
2631
- electronics: "electronics";
2632
- data_science: "data_science";
2633
- interior_design: "interior_design";
2634
- fashion: "fashion";
2635
- skincare: "skincare";
2636
- thrifting: "thrifting";
2637
- bowling: "bowling";
2638
- makeup: "makeup";
2639
- grooming: "grooming";
2640
- plant_parenting: "plant_parenting";
2641
- minimalism: "minimalism";
2642
- sustainable_living: "sustainable_living";
2643
- home_decor: "home_decor";
2644
- nail_art: "nail_art";
2645
- tattoos: "tattoos";
2646
- collecting: "collecting";
2647
- shopping: "shopping";
2648
- car_bikes: "car_bikes";
2649
- clubbing: "clubbing";
2650
- bar_hopping: "bar_hopping";
2651
- house_parties: "house_parties";
2652
- live_music: "live_music";
2653
- pub_quiz: "pub_quiz";
2654
- hookah: "hookah";
2655
- late_night_drives: "late_night_drives";
2656
- cafe_hopping: "cafe_hopping";
2657
- rooftop_chilling: "rooftop_chilling";
2658
- diy: "diy";
2659
- }>>>;
2660
- diet: z.ZodOptional<z.ZodEnum<{
2661
- prefer_not_to_say: "prefer_not_to_say";
2662
- other: "other";
2663
- vegetarian: "vegetarian";
2664
- vegan: "vegan";
2665
- eggetarian: "eggetarian";
2666
- non_vegetarian: "non_vegetarian";
2667
- pescatarian: "pescatarian";
2668
- occasionally_non_veg: "occasionally_non_veg";
2669
- flexitarian: "flexitarian";
2670
- jain: "jain";
2671
- sattvic: "sattvic";
2672
- no_onion_no_garlic: "no_onion_no_garlic";
2673
- halal: "halal";
2674
- kosher: "kosher";
2675
- }>>;
2676
- smoking: z.ZodOptional<z.ZodEnum<{
2677
- prefer_not_to_say: "prefer_not_to_say";
2678
- never: "never";
2679
- socially: "socially";
2680
- when_drinking: "when_drinking";
2681
- regularly: "regularly";
2682
- trying_to_quit: "trying_to_quit";
2683
- vaping: "vaping";
2684
- hookah_socially: "hookah_socially";
2685
- }>>;
2686
- alcohol: z.ZodOptional<z.ZodEnum<{
2687
- prefer_not_to_say: "prefer_not_to_say";
2688
- never: "never";
2689
- socially: "socially";
2690
- regularly: "regularly";
2691
- sober: "sober";
2692
- rarely: "rarely";
2693
- on_special_occasions: "on_special_occasions";
2694
- }>>;
2115
+ bodyBuild: z.ZodOptional<z.ZodString>;
2116
+ complexion: z.ZodOptional<z.ZodString>;
2117
+ educationLevel: z.ZodOptional<z.ZodString>;
2118
+ institutionTier: z.ZodOptional<z.ZodString>;
2119
+ cognitiveBand: z.ZodOptional<z.ZodString>;
2120
+ politicalOrientation: z.ZodOptional<z.ZodString>;
2121
+ profession: z.ZodOptional<z.ZodString>;
2122
+ careerStage: z.ZodOptional<z.ZodString>;
2123
+ incomeRange: z.ZodOptional<z.ZodString>;
2124
+ familyValues: z.ZodOptional<z.ZodString>;
2125
+ scientificTemper: z.ZodOptional<z.ZodString>;
2126
+ hobbies: z.ZodOptional<z.ZodArray<z.ZodString>>;
2127
+ diet: z.ZodOptional<z.ZodString>;
2128
+ smoking: z.ZodOptional<z.ZodString>;
2129
+ alcohol: z.ZodOptional<z.ZodString>;
2695
2130
  favouriteBooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
2696
2131
  favouriteShows: z.ZodOptional<z.ZodArray<z.ZodString>>;
2697
2132
  idols: z.ZodOptional<z.ZodArray<z.ZodString>>;
2698
2133
  favouriteYoutubeChannels: z.ZodOptional<z.ZodArray<z.ZodString>>;
2699
- mbtiType: z.ZodOptional<z.ZodEnum<{
2700
- prefer_not_to_say: "prefer_not_to_say";
2701
- INTJ: "INTJ";
2702
- INTP: "INTP";
2703
- ENTJ: "ENTJ";
2704
- ENTP: "ENTP";
2705
- INFJ: "INFJ";
2706
- INFP: "INFP";
2707
- ENFJ: "ENFJ";
2708
- ENFP: "ENFP";
2709
- ISTJ: "ISTJ";
2710
- ISFJ: "ISFJ";
2711
- ESTJ: "ESTJ";
2712
- ESFJ: "ESFJ";
2713
- ISTP: "ISTP";
2714
- ISFP: "ISFP";
2715
- ESTP: "ESTP";
2716
- ESFP: "ESFP";
2717
- dont_know: "dont_know";
2718
- }>>;
2719
- attachmentStyle: z.ZodOptional<z.ZodEnum<{
2720
- prefer_not_to_say: "prefer_not_to_say";
2721
- secure: "secure";
2722
- anxious: "anxious";
2723
- avoidant: "avoidant";
2724
- fearful_avoidant: "fearful_avoidant";
2725
- still_figuring_out: "still_figuring_out";
2726
- }>>;
2727
- loveLanguage: z.ZodOptional<z.ZodEnum<{
2728
- prefer_not_to_say: "prefer_not_to_say";
2729
- words_of_affirmation: "words_of_affirmation";
2730
- quality_time: "quality_time";
2731
- receiving_gifts: "receiving_gifts";
2732
- acts_of_service: "acts_of_service";
2733
- physical_touch: "physical_touch";
2734
- }>>;
2735
- conflictStyle: z.ZodOptional<z.ZodEnum<{
2736
- prefer_not_to_say: "prefer_not_to_say";
2737
- talk_it_out: "talk_it_out";
2738
- cool_off_first: "cool_off_first";
2739
- avoid_conflict: "avoid_conflict";
2740
- compromise: "compromise";
2741
- need_mediator: "need_mediator";
2742
- }>>;
2134
+ mbtiType: z.ZodOptional<z.ZodString>;
2135
+ attachmentStyle: z.ZodOptional<z.ZodString>;
2136
+ loveLanguage: z.ZodOptional<z.ZodString>;
2137
+ conflictStyle: z.ZodOptional<z.ZodString>;
2743
2138
  oceanOpenness: z.ZodOptional<z.ZodNumber>;
2744
2139
  oceanConscientiousness: z.ZodOptional<z.ZodNumber>;
2745
2140
  oceanExtraversion: z.ZodOptional<z.ZodNumber>;