dating-schema 0.25.0 → 0.27.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
@@ -4819,55 +4819,642 @@ export declare const updateProfileSchema: z.ZodObject<{
4819
4819
  softFilters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
4820
4820
  }, z.core.$strip>;
4821
4821
  export declare const onboardingFormSchema: z.ZodObject<{
4822
- displayName: z.ZodString;
4823
- dateOfBirth: z.ZodString;
4824
- gender: z.ZodString;
4825
- pronouns: z.ZodString;
4826
- relationshipStatus: z.ZodString;
4827
- relationshipIntent: z.ZodString;
4828
- sexualOrientation: z.ZodString;
4829
- preferredGenders: z.ZodArray<z.ZodString>;
4830
- relationshipStructure: z.ZodString;
4831
- educationLevel: z.ZodString;
4832
- institutionTier: z.ZodString;
4833
- cognitiveBand: z.ZodString;
4834
- politicalOrientation: z.ZodString;
4835
- profession: z.ZodString;
4836
- careerStage: z.ZodString;
4837
- incomeRange: z.ZodString;
4838
- height: z.ZodString;
4839
- weight: z.ZodString;
4840
- bodyBuild: z.ZodString;
4841
- complexion: z.ZodString;
4842
- currentCity: z.ZodString;
4843
- hometown: z.ZodString;
4844
- hometownState: z.ZodString;
4845
- hometownStateId: z.ZodString;
4846
- hometownDistrict: z.ZodString;
4847
- hometownDistrictId: z.ZodString;
4848
- familyReligion: z.ZodString;
4849
- personalReligion: z.ZodString;
4850
- sameAsFamily: z.ZodBoolean;
4851
- motherTongue: z.ZodString;
4852
- familyValues: z.ZodString;
4853
- hobbies: z.ZodArray<z.ZodString>;
4854
- diet: z.ZodString;
4855
- smoking: z.ZodString;
4856
- alcohol: z.ZodString;
4857
- bio: z.ZodString;
4858
- myStory: z.ZodString;
4859
- favouriteBooks: z.ZodArray<z.ZodString>;
4860
- favouriteShows: z.ZodArray<z.ZodString>;
4861
- idols: z.ZodArray<z.ZodString>;
4862
- mbtiType: z.ZodString;
4863
- attachmentStyle: z.ZodString;
4864
- loveLanguage: z.ZodString;
4865
- conflictStyle: z.ZodString;
4866
- oceanOpenness: z.ZodOptional<z.ZodNumber>;
4867
- oceanConscientiousness: z.ZodOptional<z.ZodNumber>;
4868
- oceanExtraversion: z.ZodOptional<z.ZodNumber>;
4869
- oceanAgreeableness: z.ZodOptional<z.ZodNumber>;
4870
- oceanNeuroticism: z.ZodOptional<z.ZodNumber>;
4822
+ displayName: z.ZodNonOptional<z.ZodOptional<z.ZodString>>;
4823
+ gender: z.ZodOptional<z.ZodEnum<{
4824
+ non_binary: "non_binary";
4825
+ prefer_not_to_say: "prefer_not_to_say";
4826
+ man: "man";
4827
+ woman: "woman";
4828
+ trans_man: "trans_man";
4829
+ trans_woman: "trans_woman";
4830
+ genderfluid: "genderfluid";
4831
+ genderqueer: "genderqueer";
4832
+ agender: "agender";
4833
+ bigender: "bigender";
4834
+ pangender: "pangender";
4835
+ androgynous: "androgynous";
4836
+ intersex: "intersex";
4837
+ gender_nonconforming: "gender_nonconforming";
4838
+ two_spirit: "two_spirit";
4839
+ hijra: "hijra";
4840
+ other: "other";
4841
+ }>>;
4842
+ pronouns: z.ZodOptional<z.ZodEnum<{
4843
+ prefer_not_to_say: "prefer_not_to_say";
4844
+ other: "other";
4845
+ he_him: "he_him";
4846
+ she_her: "she_her";
4847
+ they_them: "they_them";
4848
+ he_they: "he_they";
4849
+ she_they: "she_they";
4850
+ ze_zir: "ze_zir";
4851
+ xe_xem: "xe_xem";
4852
+ any_pronouns: "any_pronouns";
4853
+ ask_me: "ask_me";
4854
+ }>>;
4855
+ hometown: z.ZodOptional<z.ZodString>;
4856
+ relationshipIntent: z.ZodOptional<z.ZodEnum<{
4857
+ life_partner: "life_partner";
4858
+ long_term: "long_term";
4859
+ long_term_open_to_short: "long_term_open_to_short";
4860
+ short_term_open_to_long: "short_term_open_to_long";
4861
+ casual_dating: "casual_dating";
4862
+ hookup: "hookup";
4863
+ companionship: "companionship";
4864
+ ethical_non_monogamy: "ethical_non_monogamy";
4865
+ activity_partner: "activity_partner";
4866
+ new_friends: "new_friends";
4867
+ figuring_out: "figuring_out";
4868
+ }>>;
4869
+ sexualOrientation: z.ZodOptional<z.ZodEnum<{
4870
+ prefer_not_to_say: "prefer_not_to_say";
4871
+ straight: "straight";
4872
+ gay: "gay";
4873
+ lesbian: "lesbian";
4874
+ bisexual: "bisexual";
4875
+ pansexual: "pansexual";
4876
+ asexual: "asexual";
4877
+ demisexual: "demisexual";
4878
+ aromantic: "aromantic";
4879
+ graysexual: "graysexual";
4880
+ omnisexual: "omnisexual";
4881
+ fluid: "fluid";
4882
+ queer: "queer";
4883
+ questioning: "questioning";
4884
+ homoflexible: "homoflexible";
4885
+ heteroflexible: "heteroflexible";
4886
+ sapiosexual: "sapiosexual";
4887
+ }>>;
4888
+ relationshipStructure: z.ZodOptional<z.ZodEnum<{
4889
+ prefer_not_to_say: "prefer_not_to_say";
4890
+ ethical_non_monogamy: "ethical_non_monogamy";
4891
+ figuring_out: "figuring_out";
4892
+ monogamy: "monogamy";
4893
+ open_relationship: "open_relationship";
4894
+ polyamory: "polyamory";
4895
+ relationship_anarchy: "relationship_anarchy";
4896
+ open_to_exploring: "open_to_exploring";
4897
+ }>>;
4898
+ mbtiType: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
4899
+ prefer_not_to_say: "prefer_not_to_say";
4900
+ INTJ: "INTJ";
4901
+ INTP: "INTP";
4902
+ ENTJ: "ENTJ";
4903
+ ENTP: "ENTP";
4904
+ INFJ: "INFJ";
4905
+ INFP: "INFP";
4906
+ ENFJ: "ENFJ";
4907
+ ENFP: "ENFP";
4908
+ ISTJ: "ISTJ";
4909
+ ISFJ: "ISFJ";
4910
+ ESTJ: "ESTJ";
4911
+ ESFJ: "ESFJ";
4912
+ ISTP: "ISTP";
4913
+ ISFP: "ISFP";
4914
+ ESTP: "ESTP";
4915
+ ESFP: "ESFP";
4916
+ dont_know: "dont_know";
4917
+ }>>>;
4918
+ bio: z.ZodOptional<z.ZodString>;
4919
+ prompts: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
4920
+ prompt: z.ZodString;
4921
+ answer: z.ZodString;
4922
+ }, z.core.$strip>>>>;
4923
+ bodyBuild: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
4924
+ prefer_not_to_say: "prefer_not_to_say";
4925
+ slim: "slim";
4926
+ lean: "lean";
4927
+ athletic: "athletic";
4928
+ average: "average";
4929
+ curvy: "curvy";
4930
+ stocky: "stocky";
4931
+ heavy: "heavy";
4932
+ }>>>;
4933
+ complexion: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
4934
+ prefer_not_to_say: "prefer_not_to_say";
4935
+ very_fair: "very_fair";
4936
+ fair: "fair";
4937
+ wheatish: "wheatish";
4938
+ wheatish_medium: "wheatish_medium";
4939
+ olive: "olive";
4940
+ medium: "medium";
4941
+ dark: "dark";
4942
+ very_dark: "very_dark";
4943
+ }>>>;
4944
+ familyReligion: z.ZodOptional<z.ZodEnum<{
4945
+ prefer_not_to_say: "prefer_not_to_say";
4946
+ other: "other";
4947
+ spiritual: "spiritual";
4948
+ hindu: "hindu";
4949
+ muslim_sunni: "muslim_sunni";
4950
+ muslim_shia: "muslim_shia";
4951
+ muslim_sufi: "muslim_sufi";
4952
+ muslim_other: "muslim_other";
4953
+ christian_catholic: "christian_catholic";
4954
+ christian_protestant: "christian_protestant";
4955
+ christian_other: "christian_other";
4956
+ sikh: "sikh";
4957
+ jain_digambar: "jain_digambar";
4958
+ jain_shwetambar: "jain_shwetambar";
4959
+ buddhist: "buddhist";
4960
+ parsi_zoroastrian: "parsi_zoroastrian";
4961
+ jewish: "jewish";
4962
+ bahai: "bahai";
4963
+ atheist: "atheist";
4964
+ agnostic: "agnostic";
4965
+ no_religion: "no_religion";
4966
+ inter_religion: "inter_religion";
4967
+ }>>;
4968
+ personalReligion: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
4969
+ prefer_not_to_say: "prefer_not_to_say";
4970
+ other: "other";
4971
+ spiritual: "spiritual";
4972
+ hindu: "hindu";
4973
+ muslim_sunni: "muslim_sunni";
4974
+ muslim_shia: "muslim_shia";
4975
+ muslim_sufi: "muslim_sufi";
4976
+ muslim_other: "muslim_other";
4977
+ christian_catholic: "christian_catholic";
4978
+ christian_protestant: "christian_protestant";
4979
+ christian_other: "christian_other";
4980
+ sikh: "sikh";
4981
+ jain_digambar: "jain_digambar";
4982
+ jain_shwetambar: "jain_shwetambar";
4983
+ buddhist: "buddhist";
4984
+ parsi_zoroastrian: "parsi_zoroastrian";
4985
+ jewish: "jewish";
4986
+ bahai: "bahai";
4987
+ atheist: "atheist";
4988
+ agnostic: "agnostic";
4989
+ no_religion: "no_religion";
4990
+ inter_religion: "inter_religion";
4991
+ }>>>;
4992
+ motherTongue: z.ZodOptional<z.ZodEnum<{
4993
+ other: "other";
4994
+ hindi: "hindi";
4995
+ english: "english";
4996
+ bengali: "bengali";
4997
+ telugu: "telugu";
4998
+ marathi: "marathi";
4999
+ tamil: "tamil";
5000
+ urdu: "urdu";
5001
+ gujarati: "gujarati";
5002
+ kannada: "kannada";
5003
+ odia: "odia";
5004
+ malayalam: "malayalam";
5005
+ punjabi: "punjabi";
5006
+ assamese: "assamese";
5007
+ maithili: "maithili";
5008
+ bhojpuri: "bhojpuri";
5009
+ rajasthani: "rajasthani";
5010
+ chhattisgarhi: "chhattisgarhi";
5011
+ haryanvi: "haryanvi";
5012
+ tulu: "tulu";
5013
+ sanskrit: "sanskrit";
5014
+ sindhi: "sindhi";
5015
+ kashmiri: "kashmiri";
5016
+ nepali: "nepali";
5017
+ konkani: "konkani";
5018
+ dogri: "dogri";
5019
+ manipuri: "manipuri";
5020
+ bodo: "bodo";
5021
+ santali: "santali";
5022
+ }>>;
5023
+ educationLevel: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5024
+ prefer_not_to_say: "prefer_not_to_say";
5025
+ below_10th: "below_10th";
5026
+ high_school: "high_school";
5027
+ iti_vocational: "iti_vocational";
5028
+ diploma: "diploma";
5029
+ associate: "associate";
5030
+ in_college: "in_college";
5031
+ bachelors: "bachelors";
5032
+ in_grad_school: "in_grad_school";
5033
+ masters: "masters";
5034
+ doctorate: "doctorate";
5035
+ professional: "professional";
5036
+ self_taught: "self_taught";
5037
+ }>>>;
5038
+ institutionTier: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5039
+ prefer_not_to_say: "prefer_not_to_say";
5040
+ tier1_elite: "tier1_elite";
5041
+ tier2_reputed: "tier2_reputed";
5042
+ tier3_regional: "tier3_regional";
5043
+ open_distance: "open_distance";
5044
+ }>>>;
5045
+ profession: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5046
+ prefer_not_to_say: "prefer_not_to_say";
5047
+ other: "other";
5048
+ it_software: "it_software";
5049
+ engineering: "engineering";
5050
+ healthcare_doctor: "healthcare_doctor";
5051
+ healthcare_nursing: "healthcare_nursing";
5052
+ healthcare_pharma: "healthcare_pharma";
5053
+ psychology_therapy: "psychology_therapy";
5054
+ education_teaching: "education_teaching";
5055
+ science_research: "science_research";
5056
+ finance_banking: "finance_banking";
5057
+ chartered_accountant: "chartered_accountant";
5058
+ business_management: "business_management";
5059
+ arts_entertainment: "arts_entertainment";
5060
+ media_communication: "media_communication";
5061
+ design_creative: "design_creative";
5062
+ civil_services: "civil_services";
5063
+ government_public: "government_public";
5064
+ defence_military: "defence_military";
5065
+ police_law_enforcement: "police_law_enforcement";
5066
+ legal: "legal";
5067
+ skilled_trades: "skilled_trades";
5068
+ transport_logistics: "transport_logistics";
5069
+ hospitality_travel: "hospitality_travel";
5070
+ beauty_wellness: "beauty_wellness";
5071
+ agriculture_farming: "agriculture_farming";
5072
+ real_estate: "real_estate";
5073
+ retail_ecommerce: "retail_ecommerce";
5074
+ manufacturing: "manufacturing";
5075
+ merchant_navy: "merchant_navy";
5076
+ ngo_social_work: "ngo_social_work";
5077
+ religious_spiritual: "religious_spiritual";
5078
+ freelancer_gig: "freelancer_gig";
5079
+ content_creator: "content_creator";
5080
+ self_employed: "self_employed";
5081
+ student: "student";
5082
+ homemaker: "homemaker";
5083
+ retired: "retired";
5084
+ not_working: "not_working";
5085
+ differently_abled_pension: "differently_abled_pension";
5086
+ }>>>;
5087
+ relationshipStatus: z.ZodOptional<z.ZodEnum<{
5088
+ prefer_not_to_say: "prefer_not_to_say";
5089
+ never_married: "never_married";
5090
+ divorced: "divorced";
5091
+ widowed: "widowed";
5092
+ separated: "separated";
5093
+ dating: "dating";
5094
+ married: "married";
5095
+ awaiting_divorce: "awaiting_divorce";
5096
+ enm: "enm";
5097
+ its_complicated: "its_complicated";
5098
+ }>>;
5099
+ diet: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5100
+ prefer_not_to_say: "prefer_not_to_say";
5101
+ other: "other";
5102
+ vegetarian: "vegetarian";
5103
+ vegan: "vegan";
5104
+ eggetarian: "eggetarian";
5105
+ non_vegetarian: "non_vegetarian";
5106
+ pescatarian: "pescatarian";
5107
+ occasionally_non_veg: "occasionally_non_veg";
5108
+ flexitarian: "flexitarian";
5109
+ jain: "jain";
5110
+ sattvic: "sattvic";
5111
+ no_onion_no_garlic: "no_onion_no_garlic";
5112
+ halal: "halal";
5113
+ kosher: "kosher";
5114
+ }>>>;
5115
+ smoking: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5116
+ prefer_not_to_say: "prefer_not_to_say";
5117
+ never: "never";
5118
+ socially: "socially";
5119
+ when_drinking: "when_drinking";
5120
+ regularly: "regularly";
5121
+ trying_to_quit: "trying_to_quit";
5122
+ vaping: "vaping";
5123
+ hookah_socially: "hookah_socially";
5124
+ }>>>;
5125
+ alcohol: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5126
+ prefer_not_to_say: "prefer_not_to_say";
5127
+ never: "never";
5128
+ socially: "socially";
5129
+ regularly: "regularly";
5130
+ sober: "sober";
5131
+ rarely: "rarely";
5132
+ on_special_occasions: "on_special_occasions";
5133
+ }>>>;
5134
+ preferredAgeRange: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
5135
+ attachmentStyle: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5136
+ prefer_not_to_say: "prefer_not_to_say";
5137
+ secure: "secure";
5138
+ anxious: "anxious";
5139
+ avoidant: "avoidant";
5140
+ fearful_avoidant: "fearful_avoidant";
5141
+ still_figuring_out: "still_figuring_out";
5142
+ }>>>;
5143
+ scientificTemper: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5144
+ prefer_not_to_say: "prefer_not_to_say";
5145
+ strongly_scientific: "strongly_scientific";
5146
+ mostly_scientific: "mostly_scientific";
5147
+ balanced: "balanced";
5148
+ mostly_intuitive: "mostly_intuitive";
5149
+ strongly_intuitive: "strongly_intuitive";
5150
+ }>>>;
5151
+ hobbies: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
5152
+ other: "other";
5153
+ photography: "photography";
5154
+ painting: "painting";
5155
+ drawing: "drawing";
5156
+ writing: "writing";
5157
+ crafts: "crafts";
5158
+ pottery: "pottery";
5159
+ knitting: "knitting";
5160
+ woodworking: "woodworking";
5161
+ blogging: "blogging";
5162
+ vlogging: "vlogging";
5163
+ calligraphy: "calligraphy";
5164
+ graphic_design: "graphic_design";
5165
+ filmmaking: "filmmaking";
5166
+ embroidery: "embroidery";
5167
+ origami: "origami";
5168
+ candle_making: "candle_making";
5169
+ resin_art: "resin_art";
5170
+ mehndi_art: "mehndi_art";
5171
+ rangoli: "rangoli";
5172
+ gym: "gym";
5173
+ running: "running";
5174
+ cycling: "cycling";
5175
+ swimming: "swimming";
5176
+ yoga: "yoga";
5177
+ martial_arts: "martial_arts";
5178
+ rock_climbing: "rock_climbing";
5179
+ hiking: "hiking";
5180
+ skating: "skating";
5181
+ skateboarding: "skateboarding";
5182
+ surfing: "surfing";
5183
+ skiing: "skiing";
5184
+ cricket: "cricket";
5185
+ football: "football";
5186
+ badminton: "badminton";
5187
+ tennis: "tennis";
5188
+ basketball: "basketball";
5189
+ table_tennis: "table_tennis";
5190
+ archery: "archery";
5191
+ horse_riding: "horse_riding";
5192
+ volleyball: "volleyball";
5193
+ hockey: "hockey";
5194
+ kabaddi: "kabaddi";
5195
+ kho_kho: "kho_kho";
5196
+ wrestling: "wrestling";
5197
+ boxing: "boxing";
5198
+ crossfit: "crossfit";
5199
+ pilates: "pilates";
5200
+ calisthenics: "calisthenics";
5201
+ trekking: "trekking";
5202
+ paragliding: "paragliding";
5203
+ golf: "golf";
5204
+ singing: "singing";
5205
+ playing_instrument: "playing_instrument";
5206
+ dancing: "dancing";
5207
+ karaoke: "karaoke";
5208
+ dj: "dj";
5209
+ stand_up_comedy: "stand_up_comedy";
5210
+ theater: "theater";
5211
+ classical_dance: "classical_dance";
5212
+ beatboxing: "beatboxing";
5213
+ music_production: "music_production";
5214
+ poetry_slam: "poetry_slam";
5215
+ rapping: "rapping";
5216
+ open_mic: "open_mic";
5217
+ movies: "movies";
5218
+ anime: "anime";
5219
+ reading: "reading";
5220
+ podcasts: "podcasts";
5221
+ gaming: "gaming";
5222
+ board_games: "board_games";
5223
+ binge_watching: "binge_watching";
5224
+ k_drama: "k_drama";
5225
+ bollywood: "bollywood";
5226
+ documentaries: "documentaries";
5227
+ manga: "manga";
5228
+ comic_books: "comic_books";
5229
+ true_crime: "true_crime";
5230
+ stand_up_specials: "stand_up_specials";
5231
+ quiz_trivia: "quiz_trivia";
5232
+ chess: "chess";
5233
+ carrom: "carrom";
5234
+ ludo: "ludo";
5235
+ card_games: "card_games";
5236
+ escape_rooms: "escape_rooms";
5237
+ memes: "memes";
5238
+ cooking: "cooking";
5239
+ baking: "baking";
5240
+ coffee: "coffee";
5241
+ tea: "tea";
5242
+ wine_tasting: "wine_tasting";
5243
+ street_food: "street_food";
5244
+ fine_dining: "fine_dining";
5245
+ food_photography: "food_photography";
5246
+ food_blogging: "food_blogging";
5247
+ mixology: "mixology";
5248
+ craft_beer: "craft_beer";
5249
+ home_brewing: "home_brewing";
5250
+ regional_cuisines: "regional_cuisines";
5251
+ healthy_eating: "healthy_eating";
5252
+ meal_prep: "meal_prep";
5253
+ chocolate: "chocolate";
5254
+ desserts: "desserts";
5255
+ spice_lover: "spice_lover";
5256
+ traveling: "traveling";
5257
+ camping: "camping";
5258
+ backpacking: "backpacking";
5259
+ road_trips: "road_trips";
5260
+ scuba_diving: "scuba_diving";
5261
+ bird_watching: "bird_watching";
5262
+ fishing: "fishing";
5263
+ gardening: "gardening";
5264
+ stargazing: "stargazing";
5265
+ solo_travel: "solo_travel";
5266
+ heritage_tourism: "heritage_tourism";
5267
+ mountain_biking: "mountain_biking";
5268
+ wildlife_safari: "wildlife_safari";
5269
+ train_journeys: "train_journeys";
5270
+ bike_rides: "bike_rides";
5271
+ beach_hopping: "beach_hopping";
5272
+ snorkeling: "snorkeling";
5273
+ kayaking: "kayaking";
5274
+ rafting: "rafting";
5275
+ nature_walks: "nature_walks";
5276
+ van_life: "van_life";
5277
+ meditation: "meditation";
5278
+ spirituality_practice: "spirituality_practice";
5279
+ astrology_hobby: "astrology_hobby";
5280
+ tarot: "tarot";
5281
+ journaling: "journaling";
5282
+ self_improvement: "self_improvement";
5283
+ ayurveda: "ayurveda";
5284
+ pranayama: "pranayama";
5285
+ gratitude_practice: "gratitude_practice";
5286
+ therapy: "therapy";
5287
+ manifestation: "manifestation";
5288
+ sound_healing: "sound_healing";
5289
+ aromatherapy: "aromatherapy";
5290
+ volunteering: "volunteering";
5291
+ activism: "activism";
5292
+ mentoring: "mentoring";
5293
+ networking: "networking";
5294
+ pet_care: "pet_care";
5295
+ community_service: "community_service";
5296
+ ngo_work: "ngo_work";
5297
+ animal_rescue: "animal_rescue";
5298
+ teaching: "teaching";
5299
+ public_speaking: "public_speaking";
5300
+ debate: "debate";
5301
+ model_un: "model_un";
5302
+ parenting: "parenting";
5303
+ coding: "coding";
5304
+ investing: "investing";
5305
+ entrepreneurship: "entrepreneurship";
5306
+ languages: "languages";
5307
+ science: "science";
5308
+ ai_ml: "ai_ml";
5309
+ crypto_web3: "crypto_web3";
5310
+ stock_trading: "stock_trading";
5311
+ robotics: "robotics";
5312
+ astronomy: "astronomy";
5313
+ history: "history";
5314
+ philosophy: "philosophy";
5315
+ psychology: "psychology";
5316
+ online_courses: "online_courses";
5317
+ open_source: "open_source";
5318
+ electronics: "electronics";
5319
+ data_science: "data_science";
5320
+ interior_design: "interior_design";
5321
+ fashion: "fashion";
5322
+ skincare: "skincare";
5323
+ thrifting: "thrifting";
5324
+ bowling: "bowling";
5325
+ makeup: "makeup";
5326
+ grooming: "grooming";
5327
+ plant_parenting: "plant_parenting";
5328
+ minimalism: "minimalism";
5329
+ sustainable_living: "sustainable_living";
5330
+ home_decor: "home_decor";
5331
+ nail_art: "nail_art";
5332
+ tattoos: "tattoos";
5333
+ collecting: "collecting";
5334
+ shopping: "shopping";
5335
+ car_bikes: "car_bikes";
5336
+ clubbing: "clubbing";
5337
+ bar_hopping: "bar_hopping";
5338
+ house_parties: "house_parties";
5339
+ live_music: "live_music";
5340
+ pub_quiz: "pub_quiz";
5341
+ hookah: "hookah";
5342
+ late_night_drives: "late_night_drives";
5343
+ cafe_hopping: "cafe_hopping";
5344
+ rooftop_chilling: "rooftop_chilling";
5345
+ diy: "diy";
5346
+ }>>>>;
5347
+ favouriteBooks: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
5348
+ favouriteShows: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
5349
+ favouriteYoutubeChannels: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
5350
+ idols: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
5351
+ politicalOrientation: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5352
+ prefer_not_to_say: "prefer_not_to_say";
5353
+ far_left: "far_left";
5354
+ left: "left";
5355
+ centre_left: "centre_left";
5356
+ centrist: "centrist";
5357
+ centre_right: "centre_right";
5358
+ right: "right";
5359
+ far_right: "far_right";
5360
+ libertarian: "libertarian";
5361
+ apolitical: "apolitical";
5362
+ }>>>;
5363
+ careerStage: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5364
+ prefer_not_to_say: "prefer_not_to_say";
5365
+ student: "student";
5366
+ retired: "retired";
5367
+ just_starting: "just_starting";
5368
+ mid_career: "mid_career";
5369
+ senior: "senior";
5370
+ entrepreneur: "entrepreneur";
5371
+ freelancer: "freelancer";
5372
+ career_break: "career_break";
5373
+ }>>>;
5374
+ loveLanguage: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5375
+ prefer_not_to_say: "prefer_not_to_say";
5376
+ words_of_affirmation: "words_of_affirmation";
5377
+ quality_time: "quality_time";
5378
+ receiving_gifts: "receiving_gifts";
5379
+ acts_of_service: "acts_of_service";
5380
+ physical_touch: "physical_touch";
5381
+ }>>>;
5382
+ cognitiveBand: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5383
+ prefer_not_to_say: "prefer_not_to_say";
5384
+ "1_tradition_faith": "1_tradition_faith";
5385
+ "2_faith_curious": "2_faith_curious";
5386
+ "3_multiplicity_open": "3_multiplicity_open";
5387
+ "4_pragmatic_flexible": "4_pragmatic_flexible";
5388
+ "5_evidence_reasoning": "5_evidence_reasoning";
5389
+ "6_critical_reflective": "6_critical_reflective";
5390
+ "7_skeptic_optimize": "7_skeptic_optimize";
5391
+ }>>>;
5392
+ conflictStyle: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5393
+ prefer_not_to_say: "prefer_not_to_say";
5394
+ talk_it_out: "talk_it_out";
5395
+ cool_off_first: "cool_off_first";
5396
+ avoid_conflict: "avoid_conflict";
5397
+ compromise: "compromise";
5398
+ need_mediator: "need_mediator";
5399
+ }>>>;
5400
+ familyValues: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5401
+ prefer_not_to_say: "prefer_not_to_say";
5402
+ moderate: "moderate";
5403
+ orthodox: "orthodox";
5404
+ liberal: "liberal";
5405
+ very_liberal: "very_liberal";
5406
+ }>>>;
5407
+ incomeRange: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
5408
+ prefer_not_to_say: "prefer_not_to_say";
5409
+ under_3l: "under_3l";
5410
+ "3l_6l": "3l_6l";
5411
+ "6l_10l": "6l_10l";
5412
+ "10l_15l": "10l_15l";
5413
+ "15l_25l": "15l_25l";
5414
+ "25l_50l": "25l_50l";
5415
+ "50l_1cr": "50l_1cr";
5416
+ above_1cr: "above_1cr";
5417
+ }>>>;
5418
+ myStory: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5419
+ preferredGenders: z.ZodOptional<z.ZodArray<z.ZodEnum<{
5420
+ non_binary: "non_binary";
5421
+ prefer_not_to_say: "prefer_not_to_say";
5422
+ man: "man";
5423
+ woman: "woman";
5424
+ trans_man: "trans_man";
5425
+ trans_woman: "trans_woman";
5426
+ genderfluid: "genderfluid";
5427
+ genderqueer: "genderqueer";
5428
+ agender: "agender";
5429
+ bigender: "bigender";
5430
+ pangender: "pangender";
5431
+ androgynous: "androgynous";
5432
+ intersex: "intersex";
5433
+ gender_nonconforming: "gender_nonconforming";
5434
+ two_spirit: "two_spirit";
5435
+ hijra: "hijra";
5436
+ other: "other";
5437
+ }>>>;
5438
+ oceanOpenness: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
5439
+ oceanConscientiousness: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
5440
+ oceanExtraversion: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
5441
+ oceanAgreeableness: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
5442
+ oceanNeuroticism: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
5443
+ fieldVisibility: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<{
5444
+ private: "private";
5445
+ public: "public";
5446
+ on_match: "on_match";
5447
+ trust_gate: "trust_gate";
5448
+ }>>>>;
5449
+ dateOfBirth: z.ZodOptional<z.ZodString>;
5450
+ height: z.ZodOptional<z.ZodString>;
5451
+ weight: z.ZodOptional<z.ZodString>;
5452
+ currentCity: z.ZodOptional<z.ZodString>;
5453
+ sameAsFamily: z.ZodOptional<z.ZodBoolean>;
5454
+ hometownState: z.ZodOptional<z.ZodString>;
5455
+ hometownStateId: z.ZodOptional<z.ZodString>;
5456
+ hometownDistrict: z.ZodOptional<z.ZodString>;
5457
+ hometownDistrictId: z.ZodOptional<z.ZodString>;
4871
5458
  }, z.core.$strip>;
4872
5459
  export type FullProfileData = z.infer<typeof fullProfileSchema>;
4873
5460
  /**