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