dating-schema 0.10.0 → 0.12.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.
@@ -1 +1 @@
1
- {"version":3,"file":"01-hero-identity.d.ts","sourceRoot":"","sources":["../../src/profile-fields/01-hero-identity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,YAAY,EAAE,UAsP1B,CAAC"}
1
+ {"version":3,"file":"01-hero-identity.d.ts","sourceRoot":"","sources":["../../src/profile-fields/01-hero-identity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,YAAY,EAAE,UA0Z1B,CAAC"}
@@ -49,17 +49,75 @@ export const heroIdentity = {
49
49
  isOnboarding: true,
50
50
  prefillFrom: 'user.gender',
51
51
  options: [
52
- { value: 'man', label: 'Man' },
53
- { value: 'woman', label: 'Woman' },
54
- { value: 'non_binary', label: 'Non-binary' },
55
- { value: 'trans_man', label: 'Trans Man' },
56
- { value: 'trans_woman', label: 'Trans Woman' },
57
- { value: 'genderfluid', label: 'Genderfluid' },
58
- { value: 'genderqueer', label: 'Genderqueer' },
59
- { value: 'agender', label: 'Agender' },
60
- { value: 'two_spirit', label: 'Two-Spirit' },
61
- { value: 'other', label: 'Other' },
62
- { value: 'prefer_not_to_say', label: 'Prefer not to say' },
52
+ { value: 'man', label: 'Man', description: 'Identify as male' },
53
+ { value: 'woman', label: 'Woman', description: 'Identify as female' },
54
+ {
55
+ value: 'non_binary',
56
+ label: 'Non-binary',
57
+ description: 'Neither exclusively male nor female',
58
+ },
59
+ {
60
+ value: 'trans_man',
61
+ label: 'Trans Man',
62
+ description: 'Assigned female at birth, identify as male',
63
+ },
64
+ {
65
+ value: 'trans_woman',
66
+ label: 'Trans Woman',
67
+ description: 'Assigned male at birth, identify as female',
68
+ },
69
+ {
70
+ value: 'genderfluid',
71
+ label: 'Genderfluid',
72
+ description: 'Gender identity shifts over time',
73
+ },
74
+ {
75
+ value: 'genderqueer',
76
+ label: 'Genderqueer',
77
+ description: 'Outside the traditional gender binary',
78
+ },
79
+ { value: 'agender', label: 'Agender', description: 'No gender identity or gender-neutral' },
80
+ {
81
+ value: 'bigender',
82
+ label: 'Bigender',
83
+ description: 'Identify as two genders simultaneously or alternating',
84
+ },
85
+ {
86
+ value: 'pangender',
87
+ label: 'Pangender',
88
+ description: 'Identify with all genders or many gender identities',
89
+ },
90
+ {
91
+ value: 'androgynous',
92
+ label: 'Androgynous',
93
+ description: 'Blend of masculine and feminine expression',
94
+ },
95
+ {
96
+ value: 'intersex',
97
+ label: 'Intersex',
98
+ description: "Born with sex characteristics that don't fit typical male/female",
99
+ },
100
+ {
101
+ value: 'gender_nonconforming',
102
+ label: 'Gender Non-conforming',
103
+ description: "Expression doesn't align with conventional expectations",
104
+ },
105
+ {
106
+ value: 'two_spirit',
107
+ label: 'Two-Spirit',
108
+ description: 'Indigenous identity encompassing multiple genders',
109
+ },
110
+ {
111
+ value: 'hijra',
112
+ label: 'Hijra',
113
+ description: 'South Asian third-gender identity — legally recognized in India',
114
+ },
115
+ { value: 'other', label: 'Other', description: 'Another identity not listed here' },
116
+ {
117
+ value: 'prefer_not_to_say',
118
+ label: 'Prefer not to say',
119
+ description: 'Keep this private',
120
+ },
63
121
  ],
64
122
  },
65
123
  {
@@ -71,13 +129,25 @@ export const heroIdentity = {
71
129
  isFilter: false,
72
130
  isOnboarding: true,
73
131
  options: [
74
- { value: 'he_him', label: 'He/Him' },
75
- { value: 'she_her', label: 'She/Her' },
76
- { value: 'they_them', label: 'They/Them' },
77
- { value: 'ze_zir', label: 'Ze/Zir' },
78
- { value: 'xe_xem', label: 'Xe/Xem' },
79
- { value: 'other', label: 'Other' },
80
- { value: 'prefer_not_to_say', label: 'Prefer not to say' },
132
+ { value: 'he_him', label: 'He/Him', description: 'Masculine pronouns' },
133
+ { value: 'she_her', label: 'She/Her', description: 'Feminine pronouns' },
134
+ { value: 'they_them', label: 'They/Them', description: 'Gender-neutral pronouns' },
135
+ { value: 'he_they', label: 'He/They', description: 'Use either he/him or they/them' },
136
+ { value: 'she_they', label: 'She/They', description: 'Use either she/her or they/them' },
137
+ { value: 'ze_zir', label: 'Ze/Zir', description: 'Neopronouns — ze laughed, I called zir' },
138
+ { value: 'xe_xem', label: 'Xe/Xem', description: 'Neopronouns — xe laughed, I called xem' },
139
+ {
140
+ value: 'any_pronouns',
141
+ label: 'Any Pronouns',
142
+ description: 'Comfortable with all pronouns',
143
+ },
144
+ { value: 'ask_me', label: 'Ask Me', description: 'Prefer to be asked in person' },
145
+ { value: 'other', label: 'Other', description: 'Pronouns not listed here' },
146
+ {
147
+ value: 'prefer_not_to_say',
148
+ label: 'Prefer not to say',
149
+ description: 'Keep this private',
150
+ },
81
151
  ],
82
152
  },
83
153
  {
@@ -128,34 +198,58 @@ export const heroIdentity = {
128
198
  options: [
129
199
  {
130
200
  value: 'life_partner',
131
- label: 'Life partner',
132
- description: 'Marriage-minded, looking for a spouse',
201
+ label: 'Life Partner / Marriage',
202
+ description: 'Ready to settle down — looking for a spouse or lifelong commitment',
133
203
  },
134
204
  {
135
205
  value: 'long_term',
136
- label: 'Long-term relationship',
137
- description: 'Serious committed relationship',
206
+ label: 'Long-term Relationship',
207
+ description: 'Serious & committed, but not necessarily leading to marriage',
138
208
  },
139
209
  {
140
210
  value: 'long_term_open_to_short',
141
- label: 'Long-term, open to short',
142
- description: 'Prefer long-term but open to see where it goes',
211
+ label: 'Long-term, Open to Short',
212
+ description: 'Ideally something serious, but open to seeing where things go',
143
213
  },
144
214
  {
145
215
  value: 'short_term_open_to_long',
146
- label: 'Short-term, open to long',
147
- description: 'Casual for now but open to something serious',
216
+ label: 'Short-term, Open to Long',
217
+ description: "Keeping it light for now, but won't say no if it turns serious",
218
+ },
219
+ {
220
+ value: 'casual_dating',
221
+ label: 'Casual Dating',
222
+ description: 'Going on dates & having fun — no commitment pressure',
223
+ },
224
+ {
225
+ value: 'hookup',
226
+ label: 'Hookups / Physical Intimacy',
227
+ description: 'Purely physical connection — no strings attached',
228
+ },
229
+ {
230
+ value: 'companionship',
231
+ label: 'Companionship',
232
+ description: 'Emotional connection & company — without traditional relationship labels',
233
+ },
234
+ {
235
+ value: 'ethical_non_monogamy',
236
+ label: 'ENM / Poly Partner',
237
+ description: 'Looking for additional partner(s) in an ethically non-monogamous setup',
148
238
  },
149
239
  {
150
- value: 'short_term_fun',
151
- label: 'Short-term fun',
152
- description: 'Casual dating, no pressure',
240
+ value: 'activity_partner',
241
+ label: 'Activity Partner',
242
+ description: 'Someone to share hobbies & experiences with — hiking, travel, concerts etc.',
243
+ },
244
+ {
245
+ value: 'new_friends',
246
+ label: 'New Friends',
247
+ description: 'Platonic friendships — no romantic expectations',
153
248
  },
154
- { value: 'new_friends', label: 'New friends', description: 'Looking for friendship first' },
155
249
  {
156
250
  value: 'figuring_out',
157
- label: 'Still figuring it out',
158
- description: 'Not sure yet, exploring',
251
+ label: 'Still Figuring It Out',
252
+ description: 'Not sure yet — just exploring and seeing what clicks',
159
253
  },
160
254
  ],
161
255
  },
@@ -168,19 +262,75 @@ export const heroIdentity = {
168
262
  isFilter: true,
169
263
  isOnboarding: true,
170
264
  options: [
171
- { value: 'straight', label: 'Straight' },
172
- { value: 'gay', label: 'Gay' },
173
- { value: 'lesbian', label: 'Lesbian' },
174
- { value: 'bisexual', label: 'Bisexual' },
175
- { value: 'pansexual', label: 'Pansexual' },
176
- { value: 'asexual', label: 'Asexual' },
177
- { value: 'demisexual', label: 'Demisexual' },
178
- { value: 'queer', label: 'Queer' },
179
- { value: 'questioning', label: 'Questioning' },
180
- { value: 'homoflexible', label: 'Homoflexible' },
181
- { value: 'heteroflexible', label: 'Heteroflexible' },
182
- { value: 'sapiosexual', label: 'Sapiosexual' },
183
- { value: 'prefer_not_to_say', label: 'Prefer not to say' },
265
+ { value: 'straight', label: 'Straight', description: 'Attracted to the opposite gender' },
266
+ { value: 'gay', label: 'Gay', description: 'Men attracted to men' },
267
+ { value: 'lesbian', label: 'Lesbian', description: 'Women attracted to women' },
268
+ { value: 'bisexual', label: 'Bisexual', description: 'Attracted to both men and women' },
269
+ {
270
+ value: 'pansexual',
271
+ label: 'Pansexual',
272
+ description: 'Attracted to people regardless of gender',
273
+ },
274
+ {
275
+ value: 'asexual',
276
+ label: 'Asexual',
277
+ description: 'Little or no sexual attraction to anyone',
278
+ },
279
+ {
280
+ value: 'demisexual',
281
+ label: 'Demisexual',
282
+ description: 'Sexual attraction only after emotional bond',
283
+ },
284
+ {
285
+ value: 'aromantic',
286
+ label: 'Aromantic',
287
+ description: 'Little or no romantic attraction — may still feel sexual attraction',
288
+ },
289
+ {
290
+ value: 'graysexual',
291
+ label: 'Graysexual',
292
+ description: 'Rarely experiences sexual attraction — between asexual and sexual',
293
+ },
294
+ {
295
+ value: 'omnisexual',
296
+ label: 'Omnisexual',
297
+ description: 'Attracted to all genders, but gender plays a role in attraction',
298
+ },
299
+ {
300
+ value: 'fluid',
301
+ label: 'Fluid',
302
+ description: 'Sexual orientation shifts over time or context',
303
+ },
304
+ {
305
+ value: 'queer',
306
+ label: 'Queer',
307
+ description: 'Umbrella term for non-straight identities',
308
+ },
309
+ {
310
+ value: 'questioning',
311
+ label: 'Questioning',
312
+ description: 'Still exploring your orientation',
313
+ },
314
+ {
315
+ value: 'homoflexible',
316
+ label: 'Homoflexible',
317
+ description: 'Mostly same-gender attracted, occasionally not',
318
+ },
319
+ {
320
+ value: 'heteroflexible',
321
+ label: 'Heteroflexible',
322
+ description: 'Mostly opposite-gender attracted, occasionally not',
323
+ },
324
+ {
325
+ value: 'sapiosexual',
326
+ label: 'Sapiosexual',
327
+ description: 'Attracted primarily to intelligence',
328
+ },
329
+ {
330
+ value: 'prefer_not_to_say',
331
+ label: 'Prefer not to say',
332
+ description: 'Keep this private',
333
+ },
184
334
  ],
185
335
  },
186
336
  {
@@ -204,13 +354,26 @@ export const heroIdentity = {
204
354
  description: 'Committed primary partner, open to others',
205
355
  },
206
356
  { value: 'polyamory', label: 'Polyamory', description: 'Multiple loving relationships' },
357
+ {
358
+ value: 'relationship_anarchy',
359
+ label: 'Relationship Anarchy',
360
+ description: 'No hierarchy — each relationship defined on its own terms',
361
+ },
207
362
  {
208
363
  value: 'open_to_exploring',
209
364
  label: 'Open to exploring',
210
365
  description: 'Flexible, willing to discuss',
211
366
  },
212
- { value: 'figuring_out', label: 'Figuring out my relationship type' },
213
- { value: 'prefer_not_to_say', label: 'Prefer not to say' },
367
+ {
368
+ value: 'figuring_out',
369
+ label: 'Figuring out my relationship type',
370
+ description: 'Still learning what works for you',
371
+ },
372
+ {
373
+ value: 'prefer_not_to_say',
374
+ label: 'Prefer not to say',
375
+ description: 'Keep this private',
376
+ },
214
377
  ],
215
378
  },
216
379
  {
@@ -1 +1 @@
1
- {"version":3,"file":"01-hero-identity.js","sourceRoot":"","sources":["../../src/profile-fields/01-hero-identity.ts"],"names":[],"mappings":"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","sourcesContent":["import type { FieldGroup } from './types.js';\n\nexport const heroIdentity: FieldGroup = {\n key: 'hero_identity',\n label: 'Hero & Identity',\n description: 'Core identity shown in the hero section of your profile.',\n tier: 1,\n fields: [\n {\n order: 1,\n key: 'photos',\n label: 'Photos',\n type: 'image_upload',\n min: 2,\n max: 6,\n tier: 1,\n isFilter: false,\n isOnboarding: true,\n description: 'Upload 2-6 photos. Your first photo is your first impression.',\n },\n {\n order: 2,\n key: 'displayName',\n label: 'Display Name',\n type: 'text',\n maxLength: 50,\n tier: 1,\n isFilter: false,\n isOnboarding: true,\n prefillFrom: 'user.firstName + user.lastName',\n description: 'Your name as shown to others.',\n },\n {\n order: 3,\n key: 'dateOfBirth',\n label: 'Date of Birth',\n type: 'date',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.dateOfBirth',\n description: 'Your age is computed from this. Only age is shown, not the date.',\n },\n {\n order: 4,\n key: 'gender',\n label: 'Gender',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.gender',\n options: [\n { value: 'man', label: 'Man' },\n { value: 'woman', label: 'Woman' },\n { value: 'non_binary', label: 'Non-binary' },\n { value: 'trans_man', label: 'Trans Man' },\n { value: 'trans_woman', label: 'Trans Woman' },\n { value: 'genderfluid', label: 'Genderfluid' },\n { value: 'genderqueer', label: 'Genderqueer' },\n { value: 'agender', label: 'Agender' },\n { value: 'two_spirit', label: 'Two-Spirit' },\n { value: 'other', label: 'Other' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 5,\n key: 'pronouns',\n label: 'Pronouns',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: true,\n options: [\n { value: 'he_him', label: 'He/Him' },\n { value: 'she_her', label: 'She/Her' },\n { value: 'they_them', label: 'They/Them' },\n { value: 'ze_zir', label: 'Ze/Zir' },\n { value: 'xe_xem', label: 'Xe/Xem' },\n { value: 'other', label: 'Other' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 6,\n key: 'currentCity',\n label: 'Current City',\n type: 'location',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.currentLocationDisplay',\n description: 'Where you currently live.',\n },\n {\n order: 7,\n key: 'hometown',\n label: 'Hometown / Native Place',\n type: 'text',\n maxLength: 100,\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.hometown',\n description: \"Where you're originally from.\",\n },\n {\n order: 8,\n key: 'searchRadius',\n label: 'Search Radius',\n type: 'range_slider',\n min: 1,\n max: 500,\n unit: 'km',\n default: 50,\n tier: 'internal',\n isFilter: true,\n isOnboarding: false,\n description: 'How far to search for matches.',\n },\n {\n order: 9,\n key: 'relationshipIntent',\n label: 'Relationship Intent',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n options: [\n {\n value: 'life_partner',\n label: 'Life partner',\n description: 'Marriage-minded, looking for a spouse',\n },\n {\n value: 'long_term',\n label: 'Long-term relationship',\n description: 'Serious committed relationship',\n },\n {\n value: 'long_term_open_to_short',\n label: 'Long-term, open to short',\n description: 'Prefer long-term but open to see where it goes',\n },\n {\n value: 'short_term_open_to_long',\n label: 'Short-term, open to long',\n description: 'Casual for now but open to something serious',\n },\n {\n value: 'short_term_fun',\n label: 'Short-term fun',\n description: 'Casual dating, no pressure',\n },\n { value: 'new_friends', label: 'New friends', description: 'Looking for friendship first' },\n {\n value: 'figuring_out',\n label: 'Still figuring it out',\n description: 'Not sure yet, exploring',\n },\n ],\n },\n {\n order: 10,\n key: 'sexualOrientation',\n label: 'Sexual Orientation',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n options: [\n { value: 'straight', label: 'Straight' },\n { value: 'gay', label: 'Gay' },\n { value: 'lesbian', label: 'Lesbian' },\n { value: 'bisexual', label: 'Bisexual' },\n { value: 'pansexual', label: 'Pansexual' },\n { value: 'asexual', label: 'Asexual' },\n { value: 'demisexual', label: 'Demisexual' },\n { value: 'queer', label: 'Queer' },\n { value: 'questioning', label: 'Questioning' },\n { value: 'homoflexible', label: 'Homoflexible' },\n { value: 'heteroflexible', label: 'Heteroflexible' },\n { value: 'sapiosexual', label: 'Sapiosexual' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 11,\n key: 'relationshipStructure',\n label: 'Relationship Structure',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n options: [\n { value: 'monogamy', label: 'Monogamy', description: 'One committed partner' },\n {\n value: 'ethical_non_monogamy',\n label: 'Ethical non-monogamy',\n description: 'Open with honesty and consent',\n },\n {\n value: 'open_relationship',\n label: 'Open relationship',\n description: 'Committed primary partner, open to others',\n },\n { value: 'polyamory', label: 'Polyamory', description: 'Multiple loving relationships' },\n {\n value: 'open_to_exploring',\n label: 'Open to exploring',\n description: 'Flexible, willing to discuss',\n },\n { value: 'figuring_out', label: 'Figuring out my relationship type' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 12,\n key: 'mbtiType',\n label: 'MBTI Personality Type',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n isOnboardingOptional: true,\n options: [\n { value: 'INTJ', label: 'INTJ — The Architect' },\n { value: 'INTP', label: 'INTP — The Logician' },\n { value: 'ENTJ', label: 'ENTJ — The Commander' },\n { value: 'ENTP', label: 'ENTP — The Debater' },\n { value: 'INFJ', label: 'INFJ — The Advocate' },\n { value: 'INFP', label: 'INFP — The Mediator' },\n { value: 'ENFJ', label: 'ENFJ — The Protagonist' },\n { value: 'ENFP', label: 'ENFP — The Campaigner' },\n { value: 'ISTJ', label: 'ISTJ — The Logistician' },\n { value: 'ISFJ', label: 'ISFJ — The Defender' },\n { value: 'ESTJ', label: 'ESTJ — The Executive' },\n { value: 'ESFJ', label: 'ESFJ — The Consul' },\n { value: 'ISTP', label: 'ISTP — The Virtuoso' },\n { value: 'ISFP', label: 'ISFP — The Adventurer' },\n { value: 'ESTP', label: 'ESTP — The Entrepreneur' },\n { value: 'ESFP', label: 'ESFP — The Entertainer' },\n { value: 'dont_know', label: \"Don't know yet\" },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n ],\n};\n"]}
1
+ {"version":3,"file":"01-hero-identity.js","sourceRoot":"","sources":["../../src/profile-fields/01-hero-identity.ts"],"names":[],"mappings":"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","sourcesContent":["import type { FieldGroup } from './types.js';\n\nexport const heroIdentity: FieldGroup = {\n key: 'hero_identity',\n label: 'Hero & Identity',\n description: 'Core identity shown in the hero section of your profile.',\n tier: 1,\n fields: [\n {\n order: 1,\n key: 'photos',\n label: 'Photos',\n type: 'image_upload',\n min: 2,\n max: 6,\n tier: 1,\n isFilter: false,\n isOnboarding: true,\n description: 'Upload 2-6 photos. Your first photo is your first impression.',\n },\n {\n order: 2,\n key: 'displayName',\n label: 'Display Name',\n type: 'text',\n maxLength: 50,\n tier: 1,\n isFilter: false,\n isOnboarding: true,\n prefillFrom: 'user.firstName + user.lastName',\n description: 'Your name as shown to others.',\n },\n {\n order: 3,\n key: 'dateOfBirth',\n label: 'Date of Birth',\n type: 'date',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.dateOfBirth',\n description: 'Your age is computed from this. Only age is shown, not the date.',\n },\n {\n order: 4,\n key: 'gender',\n label: 'Gender',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.gender',\n options: [\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 {\n value: 'genderfluid',\n label: 'Genderfluid',\n description: 'Gender identity shifts over time',\n },\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 {\n value: 'prefer_not_to_say',\n label: 'Prefer not to say',\n description: 'Keep this private',\n },\n ],\n },\n {\n order: 5,\n key: 'pronouns',\n label: 'Pronouns',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: true,\n options: [\n { value: 'he_him', label: 'He/Him', description: 'Masculine pronouns' },\n { value: 'she_her', label: 'She/Her', description: 'Feminine pronouns' },\n { value: 'they_them', label: 'They/Them', description: 'Gender-neutral pronouns' },\n { value: 'he_they', label: 'He/They', description: 'Use either he/him or they/them' },\n { value: 'she_they', label: 'She/They', description: 'Use either she/her or they/them' },\n { value: 'ze_zir', label: 'Ze/Zir', description: 'Neopronouns — ze laughed, I called zir' },\n { value: 'xe_xem', label: 'Xe/Xem', description: 'Neopronouns — xe laughed, I called xem' },\n {\n value: 'any_pronouns',\n label: 'Any Pronouns',\n description: 'Comfortable with all pronouns',\n },\n { value: 'ask_me', label: 'Ask Me', description: 'Prefer to be asked in person' },\n { value: 'other', label: 'Other', description: 'Pronouns not listed here' },\n {\n value: 'prefer_not_to_say',\n label: 'Prefer not to say',\n description: 'Keep this private',\n },\n ],\n },\n {\n order: 6,\n key: 'currentCity',\n label: 'Current City',\n type: 'location',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.currentLocationDisplay',\n description: 'Where you currently live.',\n },\n {\n order: 7,\n key: 'hometown',\n label: 'Hometown / Native Place',\n type: 'text',\n maxLength: 100,\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n prefillFrom: 'user.hometown',\n description: \"Where you're originally from.\",\n },\n {\n order: 8,\n key: 'searchRadius',\n label: 'Search Radius',\n type: 'range_slider',\n min: 1,\n max: 500,\n unit: 'km',\n default: 50,\n tier: 'internal',\n isFilter: true,\n isOnboarding: false,\n description: 'How far to search for matches.',\n },\n {\n order: 9,\n key: 'relationshipIntent',\n label: 'Relationship Intent',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n options: [\n {\n value: 'life_partner',\n label: 'Life Partner / Marriage',\n description: 'Ready to settle down — looking for a spouse or lifelong commitment',\n },\n {\n value: 'long_term',\n label: 'Long-term Relationship',\n description: 'Serious & committed, but not necessarily leading to marriage',\n },\n {\n value: 'long_term_open_to_short',\n label: 'Long-term, Open to Short',\n description: 'Ideally something serious, but open to seeing where things go',\n },\n {\n value: 'short_term_open_to_long',\n label: 'Short-term, Open to Long',\n description: \"Keeping it light for now, but won't say no if it turns serious\",\n },\n {\n value: 'casual_dating',\n label: 'Casual Dating',\n description: 'Going on dates & having fun — no commitment pressure',\n },\n {\n value: 'hookup',\n label: 'Hookups / Physical Intimacy',\n description: 'Purely physical connection — no strings attached',\n },\n {\n value: 'companionship',\n label: 'Companionship',\n description: 'Emotional connection & company — without traditional relationship labels',\n },\n {\n value: 'ethical_non_monogamy',\n label: 'ENM / Poly Partner',\n description: 'Looking for additional partner(s) in an ethically non-monogamous setup',\n },\n {\n value: 'activity_partner',\n label: 'Activity Partner',\n description:\n 'Someone to share hobbies & experiences with — hiking, travel, concerts etc.',\n },\n {\n value: 'new_friends',\n label: 'New Friends',\n description: 'Platonic friendships — no romantic expectations',\n },\n {\n value: 'figuring_out',\n label: 'Still Figuring It Out',\n description: 'Not sure yet — just exploring and seeing what clicks',\n },\n ],\n },\n {\n order: 10,\n key: 'sexualOrientation',\n label: 'Sexual Orientation',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n options: [\n { value: 'straight', label: 'Straight', description: 'Attracted to the opposite gender' },\n { value: 'gay', label: 'Gay', description: 'Men attracted to men' },\n { value: 'lesbian', label: 'Lesbian', description: 'Women attracted to women' },\n { value: 'bisexual', label: 'Bisexual', description: 'Attracted to both men and women' },\n {\n value: 'pansexual',\n label: 'Pansexual',\n description: 'Attracted to people regardless of gender',\n },\n {\n value: 'asexual',\n label: 'Asexual',\n description: 'Little or no sexual attraction to anyone',\n },\n {\n value: 'demisexual',\n label: 'Demisexual',\n description: 'Sexual attraction only after emotional bond',\n },\n {\n value: 'aromantic',\n label: 'Aromantic',\n description: 'Little or no romantic attraction — may still feel sexual attraction',\n },\n {\n value: 'graysexual',\n label: 'Graysexual',\n description: 'Rarely experiences sexual attraction — between asexual and sexual',\n },\n {\n value: 'omnisexual',\n label: 'Omnisexual',\n description: 'Attracted to all genders, but gender plays a role in attraction',\n },\n {\n value: 'fluid',\n label: 'Fluid',\n description: 'Sexual orientation shifts over time or context',\n },\n {\n value: 'queer',\n label: 'Queer',\n description: 'Umbrella term for non-straight identities',\n },\n {\n value: 'questioning',\n label: 'Questioning',\n description: 'Still exploring your orientation',\n },\n {\n value: 'homoflexible',\n label: 'Homoflexible',\n description: 'Mostly same-gender attracted, occasionally not',\n },\n {\n value: 'heteroflexible',\n label: 'Heteroflexible',\n description: 'Mostly opposite-gender attracted, occasionally not',\n },\n {\n value: 'sapiosexual',\n label: 'Sapiosexual',\n description: 'Attracted primarily to intelligence',\n },\n {\n value: 'prefer_not_to_say',\n label: 'Prefer not to say',\n description: 'Keep this private',\n },\n ],\n },\n {\n order: 11,\n key: 'relationshipStructure',\n label: 'Relationship Structure',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n options: [\n { value: 'monogamy', label: 'Monogamy', description: 'One committed partner' },\n {\n value: 'ethical_non_monogamy',\n label: 'Ethical non-monogamy',\n description: 'Open with honesty and consent',\n },\n {\n value: 'open_relationship',\n label: 'Open relationship',\n description: 'Committed primary partner, open to others',\n },\n { value: 'polyamory', label: 'Polyamory', description: 'Multiple loving relationships' },\n {\n value: 'relationship_anarchy',\n label: 'Relationship Anarchy',\n description: 'No hierarchy — each relationship defined on its own terms',\n },\n {\n value: 'open_to_exploring',\n label: 'Open to exploring',\n description: 'Flexible, willing to discuss',\n },\n {\n value: 'figuring_out',\n label: 'Figuring out my relationship type',\n description: 'Still learning what works for you',\n },\n {\n value: 'prefer_not_to_say',\n label: 'Prefer not to say',\n description: 'Keep this private',\n },\n ],\n },\n {\n order: 12,\n key: 'mbtiType',\n label: 'MBTI Personality Type',\n type: 'single_select',\n tier: 1,\n isFilter: true,\n isOnboarding: true,\n isOnboardingOptional: true,\n options: [\n { value: 'INTJ', label: 'INTJ — The Architect' },\n { value: 'INTP', label: 'INTP — The Logician' },\n { value: 'ENTJ', label: 'ENTJ — The Commander' },\n { value: 'ENTP', label: 'ENTP — The Debater' },\n { value: 'INFJ', label: 'INFJ — The Advocate' },\n { value: 'INFP', label: 'INFP — The Mediator' },\n { value: 'ENFJ', label: 'ENFJ — The Protagonist' },\n { value: 'ENFP', label: 'ENFP — The Campaigner' },\n { value: 'ISTJ', label: 'ISTJ — The Logistician' },\n { value: 'ISFJ', label: 'ISFJ — The Defender' },\n { value: 'ESTJ', label: 'ESTJ — The Executive' },\n { value: 'ESFJ', label: 'ESFJ — The Consul' },\n { value: 'ISTP', label: 'ISTP — The Virtuoso' },\n { value: 'ISFP', label: 'ISFP — The Adventurer' },\n { value: 'ESTP', label: 'ESTP — The Entrepreneur' },\n { value: 'ESFP', label: 'ESFP — The Entertainer' },\n { value: 'dont_know', label: \"Don't know yet\" },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n ],\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"03-basics.d.ts","sourceRoot":"","sources":["../../src/profile-fields/03-basics.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAoD7C,eAAO,MAAM,MAAM,EAAE,UAydpB,CAAC"}
1
+ {"version":3,"file":"03-basics.d.ts","sourceRoot":"","sources":["../../src/profile-fields/03-basics.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAuG7C,eAAO,MAAM,MAAM,EAAE,UA0tBpB,CAAC"}