@deina-labs/deina-core 1.0.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/README.md +154 -0
- package/dist/archetype-card.d.ts +5 -0
- package/dist/archetype-card.d.ts.map +1 -0
- package/dist/archetype-card.js +239 -0
- package/dist/archetype-card.js.map +1 -0
- package/dist/archetypes.d.ts +3 -0
- package/dist/archetypes.d.ts.map +1 -0
- package/dist/archetypes.js +47 -0
- package/dist/archetypes.js.map +1 -0
- package/dist/classify.d.ts +9 -0
- package/dist/classify.d.ts.map +1 -0
- package/dist/classify.js +327 -0
- package/dist/classify.js.map +1 -0
- package/dist/coaching.d.ts +4 -0
- package/dist/coaching.d.ts.map +1 -0
- package/dist/coaching.js +107 -0
- package/dist/coaching.js.map +1 -0
- package/dist/deinas.d.ts +10 -0
- package/dist/deinas.d.ts.map +1 -0
- package/dist/deinas.js +55 -0
- package/dist/deinas.js.map +1 -0
- package/dist/fun-facts.d.ts +8 -0
- package/dist/fun-facts.d.ts.map +1 -0
- package/dist/fun-facts.js +30 -0
- package/dist/fun-facts.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/dist/onboarding-content.d.ts +94 -0
- package/dist/onboarding-content.d.ts.map +1 -0
- package/dist/onboarding-content.js +96 -0
- package/dist/onboarding-content.js.map +1 -0
- package/dist/quiz-questions.d.ts +40 -0
- package/dist/quiz-questions.d.ts.map +1 -0
- package/dist/quiz-questions.js +336 -0
- package/dist/quiz-questions.js.map +1 -0
- package/dist/types.d.ts +23 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +33 -0
- package/src/archetype-card.ts +248 -0
- package/src/archetypes.ts +54 -0
- package/src/classify.ts +336 -0
- package/src/coaching.ts +115 -0
- package/src/deinas.ts +77 -0
- package/src/fun-facts.ts +38 -0
- package/src/index.ts +38 -0
- package/src/onboarding-content.ts +102 -0
- package/src/quiz-questions.ts +479 -0
- package/src/types.ts +24 -0
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
// --- Type definitions ---
|
|
2
|
+
|
|
3
|
+
export type StandardQuality =
|
|
4
|
+
| 'physicalAttraction'
|
|
5
|
+
| 'emotionalStability'
|
|
6
|
+
| 'emotionalAvailability'
|
|
7
|
+
| 'communicationFrequency'
|
|
8
|
+
| 'initiativeAndEffort'
|
|
9
|
+
| 'followThrough'
|
|
10
|
+
| 'financialResponsibility'
|
|
11
|
+
| 'lifestyleAlignment'
|
|
12
|
+
| 'longTermGoals'
|
|
13
|
+
| 'weeklyConsistency';
|
|
14
|
+
|
|
15
|
+
export type TimelineQuestionKey =
|
|
16
|
+
| 'firstDateWindow'
|
|
17
|
+
| 'secondDateWindow'
|
|
18
|
+
| 'preFirstDatePreferences'
|
|
19
|
+
| 'communicationCadence'
|
|
20
|
+
| 'exclusivityExpectation'
|
|
21
|
+
| 'intentionClarity'
|
|
22
|
+
| 'meetFriendsFamily'
|
|
23
|
+
| 'progressionPace';
|
|
24
|
+
|
|
25
|
+
export type MindsetQuestionKey =
|
|
26
|
+
| 'standardsConfidence'
|
|
27
|
+
| 'effortInterpretation'
|
|
28
|
+
| 'comparativeAttraction'
|
|
29
|
+
| 'behavioralAdjustment'
|
|
30
|
+
| 'scarcityMindset'
|
|
31
|
+
| 'ambiguityTolerance'
|
|
32
|
+
| 'statusComparison'
|
|
33
|
+
| 'emotionalInvestmentSpeed'
|
|
34
|
+
| 'fearOfLosingConnection'
|
|
35
|
+
| 'fulfillmentOutsideDating'
|
|
36
|
+
| 'validationSensitivity'
|
|
37
|
+
| 'relationshipRole';
|
|
38
|
+
|
|
39
|
+
export type EnforcementQuestionKey =
|
|
40
|
+
| 'cancelDowngrade'
|
|
41
|
+
| 'noFollowUpResponse'
|
|
42
|
+
| 'effortDecreaseDowngrade'
|
|
43
|
+
| 'exclusivityNotDiscussed'
|
|
44
|
+
| 'redFlagSpeed'
|
|
45
|
+
| 'disappointmentResponse';
|
|
46
|
+
|
|
47
|
+
export type TradeOffQuestionKey =
|
|
48
|
+
| 'consistencyVsChemistry'
|
|
49
|
+
| 'stabilityVsIntensity'
|
|
50
|
+
| 'financialStatusVsCharacter'
|
|
51
|
+
| 'speedVsCertainty'
|
|
52
|
+
| 'independenceVsIntegration'
|
|
53
|
+
| 'ambitionVsPresence'
|
|
54
|
+
| 'toleratedFlaw'
|
|
55
|
+
| 'attractionKiller'
|
|
56
|
+
| 'pastPattern'
|
|
57
|
+
| 'earlyDatingTendency';
|
|
58
|
+
|
|
59
|
+
export interface MindsetQuestion {
|
|
60
|
+
key: MindsetQuestionKey;
|
|
61
|
+
question: string;
|
|
62
|
+
type: 'scale' | 'options';
|
|
63
|
+
options?: string[];
|
|
64
|
+
scaleMinLabel?: string;
|
|
65
|
+
scaleMaxLabel?: string;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// --- Standards ---
|
|
69
|
+
|
|
70
|
+
export interface StandardQuestion {
|
|
71
|
+
key: StandardQuality;
|
|
72
|
+
label: string;
|
|
73
|
+
description: string;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export const STANDARDS_QUALITIES: StandardQuestion[] = [
|
|
77
|
+
{
|
|
78
|
+
key: 'physicalAttraction',
|
|
79
|
+
label: 'Physical Attraction',
|
|
80
|
+
description:
|
|
81
|
+
'When deciding whether to pursue someone seriously, how important is feeling strong physical attraction and chemistry?',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
key: 'emotionalStability',
|
|
85
|
+
label: 'Emotional Stability',
|
|
86
|
+
description:
|
|
87
|
+
'When disagreements or stressful situations come up, how important is it that he stays calm, grounded, and emotionally regulated?',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
key: 'emotionalAvailability',
|
|
91
|
+
label: 'Emotional Availability',
|
|
92
|
+
description:
|
|
93
|
+
'As a relationship develops, how important is it that he openly expresses his feelings and is clear about his relationship intentions?',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
key: 'communicationFrequency',
|
|
97
|
+
label: 'Communication Frequency',
|
|
98
|
+
description:
|
|
99
|
+
"When you're getting to know someone, how important is consistent communication so you feel connected and secure?",
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
key: 'initiativeAndEffort',
|
|
103
|
+
label: 'Initiative & Effort',
|
|
104
|
+
description:
|
|
105
|
+
'As dating progresses, how important is it that he takes initiative — planning dates, making effort, and showing increasing investment over time?',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
key: 'followThrough',
|
|
109
|
+
label: 'Follow-Through',
|
|
110
|
+
description:
|
|
111
|
+
'When someone makes plans or says they will do something, how important is it that they reliably follow through?',
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
key: 'financialResponsibility',
|
|
115
|
+
label: 'Financial Responsibility',
|
|
116
|
+
description:
|
|
117
|
+
'When evaluating long-term compatibility, how important is financial stability and responsible money management?',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
key: 'lifestyleAlignment',
|
|
121
|
+
label: 'Lifestyle Alignment',
|
|
122
|
+
description:
|
|
123
|
+
'How important is it that your routines, habits, social life, and lifestyle naturally align?',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
key: 'longTermGoals',
|
|
127
|
+
label: 'Long-Term Goals',
|
|
128
|
+
description:
|
|
129
|
+
'When considering a serious relationship, how important is alignment on long-term goals such as commitment, marriage, or children?',
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
key: 'weeklyConsistency',
|
|
133
|
+
label: 'Weekly Consistency',
|
|
134
|
+
description:
|
|
135
|
+
'As a relationship develops, how important is seeing each other consistently — at least once per week?',
|
|
136
|
+
},
|
|
137
|
+
];
|
|
138
|
+
|
|
139
|
+
// --- Timeline ---
|
|
140
|
+
|
|
141
|
+
export interface TimelineQuestion {
|
|
142
|
+
key: TimelineQuestionKey;
|
|
143
|
+
question: string;
|
|
144
|
+
options: string[];
|
|
145
|
+
multiSelect?: boolean;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export const TIMELINE_QUESTIONS: TimelineQuestion[] = [
|
|
149
|
+
{
|
|
150
|
+
key: 'firstDateWindow',
|
|
151
|
+
question:
|
|
152
|
+
'When you first start talking to someone, how soon do you expect the first date to happen?',
|
|
153
|
+
options: ['3–5 days', '1 week', '2 weeks', '3–4 weeks', 'No expectation'],
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
key: 'secondDateWindow',
|
|
157
|
+
question:
|
|
158
|
+
'After a good first date, how soon would you expect a second date to be planned?',
|
|
159
|
+
options: ['3–5 days', '1 week', '2 weeks', 'No specific expectation'],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
key: 'preFirstDatePreferences',
|
|
163
|
+
question:
|
|
164
|
+
'Before meeting someone in person for the first time, what helps you feel comfortable moving forward?',
|
|
165
|
+
options: ['A call or FaceTime', 'A clear plan', 'Consistent texting', 'Not important'],
|
|
166
|
+
multiSelect: true,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
key: 'communicationCadence',
|
|
170
|
+
question:
|
|
171
|
+
"When you're getting to know someone new, what level of communication makes you feel secure and interested?",
|
|
172
|
+
options: ['Daily', 'Every other day', '2–3 times per week', 'Only when planning'],
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
key: 'exclusivityExpectation',
|
|
176
|
+
question:
|
|
177
|
+
'As a relationship develops, when would you expect exclusivity to be discussed or established?',
|
|
178
|
+
options: ['3–5 dates', '6–8 dates', '2 months', '3 months', 'No fixed expectation'],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
key: 'intentionClarity',
|
|
182
|
+
question:
|
|
183
|
+
'By when do you expect clarity about whether someone is looking for a serious relationship?',
|
|
184
|
+
options: [
|
|
185
|
+
'Before date 2',
|
|
186
|
+
'Within 1 month',
|
|
187
|
+
'Within 2 months',
|
|
188
|
+
'After 3 months',
|
|
189
|
+
'No defined timeline',
|
|
190
|
+
],
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
key: 'meetFriendsFamily',
|
|
194
|
+
question:
|
|
195
|
+
"In a developing relationship, when does it feel appropriate to begin meeting each other's friends or family?",
|
|
196
|
+
options: [
|
|
197
|
+
'1–2 months',
|
|
198
|
+
'3 months',
|
|
199
|
+
'6 months',
|
|
200
|
+
'Only after exclusivity',
|
|
201
|
+
'Not important',
|
|
202
|
+
],
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
key: 'progressionPace',
|
|
206
|
+
question:
|
|
207
|
+
'Which description best reflects the relationship pace that feels most natural to you?',
|
|
208
|
+
options: [
|
|
209
|
+
'Fast and intentional',
|
|
210
|
+
'Structured and steady',
|
|
211
|
+
'Gradual over time',
|
|
212
|
+
'Undefined / organic',
|
|
213
|
+
],
|
|
214
|
+
},
|
|
215
|
+
];
|
|
216
|
+
|
|
217
|
+
// --- Mindset ---
|
|
218
|
+
|
|
219
|
+
export const MINDSET_QUESTIONS: MindsetQuestion[] = [
|
|
220
|
+
{
|
|
221
|
+
key: 'standardsConfidence',
|
|
222
|
+
question:
|
|
223
|
+
'When you really like someone, how confident do you usually feel that your standards are reasonable and deserved?',
|
|
224
|
+
type: 'scale',
|
|
225
|
+
scaleMinLabel: "I often worry I'm asking for too much",
|
|
226
|
+
scaleMaxLabel: 'I feel confident my standards are valid',
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
key: 'effortInterpretation',
|
|
230
|
+
question:
|
|
231
|
+
'If someone you like begins putting in less effort, what is your most common first thought?',
|
|
232
|
+
type: 'options',
|
|
233
|
+
options: [
|
|
234
|
+
"Maybe I'm expecting too much",
|
|
235
|
+
"Maybe they're just busy",
|
|
236
|
+
'I notice the shift and start evaluating the situation',
|
|
237
|
+
'I lose interest quickly',
|
|
238
|
+
],
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
key: 'comparativeAttraction',
|
|
242
|
+
question:
|
|
243
|
+
'When dating someone you find extremely attractive, how likely are you to feel they may have more options than you?',
|
|
244
|
+
type: 'scale',
|
|
245
|
+
scaleMinLabel: 'Very likely',
|
|
246
|
+
scaleMaxLabel: 'Not at all',
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
key: 'behavioralAdjustment',
|
|
250
|
+
question:
|
|
251
|
+
'When you feel very attracted to someone, how often do you find yourself adjusting your behavior to keep their interest?',
|
|
252
|
+
type: 'scale',
|
|
253
|
+
scaleMinLabel: 'Very often',
|
|
254
|
+
scaleMaxLabel: 'Rarely',
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
key: 'scarcityMindset',
|
|
258
|
+
question:
|
|
259
|
+
'When you meet someone who seems like a great match, how often do you feel pressure to make the connection work?',
|
|
260
|
+
type: 'scale',
|
|
261
|
+
scaleMinLabel: 'Very often',
|
|
262
|
+
scaleMaxLabel: 'Rarely',
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
key: 'ambiguityTolerance',
|
|
266
|
+
question:
|
|
267
|
+
"When someone you're dating becomes less responsive or harder to read, what tends to happen internally?",
|
|
268
|
+
type: 'options',
|
|
269
|
+
options: [
|
|
270
|
+
'I start replaying conversations and wondering what I might have done wrong',
|
|
271
|
+
'I assume they may be losing interest and begin worrying about where things stand',
|
|
272
|
+
'I notice the shift and start paying closer attention to their behavior',
|
|
273
|
+
"I don't think about it much unless the pattern continues",
|
|
274
|
+
],
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
key: 'statusComparison',
|
|
278
|
+
question:
|
|
279
|
+
"If someone you're dating is highly attractive, successful, or socially impressive, how likely are you to feel pressure to 'match their level'?",
|
|
280
|
+
type: 'scale',
|
|
281
|
+
scaleMinLabel: 'Very likely',
|
|
282
|
+
scaleMaxLabel: 'Not at all',
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
key: 'emotionalInvestmentSpeed',
|
|
286
|
+
question:
|
|
287
|
+
'When you meet someone you feel strong chemistry with, how quickly do you usually become emotionally invested?',
|
|
288
|
+
type: 'options',
|
|
289
|
+
options: [
|
|
290
|
+
'Very quickly',
|
|
291
|
+
'Somewhat quickly',
|
|
292
|
+
'Gradually over time',
|
|
293
|
+
'Slowly and cautiously',
|
|
294
|
+
],
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
key: 'fearOfLosingConnection',
|
|
298
|
+
question:
|
|
299
|
+
'When you sense someone pulling away slightly, how strong is your instinct to try to restore the connection?',
|
|
300
|
+
type: 'scale',
|
|
301
|
+
scaleMinLabel: 'Very strong',
|
|
302
|
+
scaleMaxLabel: 'Very weak',
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
key: 'fulfillmentOutsideDating',
|
|
306
|
+
question:
|
|
307
|
+
"When you're not actively dating someone, how fulfilled does your life typically feel?",
|
|
308
|
+
type: 'scale',
|
|
309
|
+
scaleMinLabel: 'I often feel something important is missing',
|
|
310
|
+
scaleMaxLabel: 'My life feels full and satisfying',
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
key: 'validationSensitivity',
|
|
314
|
+
question:
|
|
315
|
+
"When someone you're attracted to shows strong interest in you, how much does it affect your attraction to them?",
|
|
316
|
+
type: 'scale',
|
|
317
|
+
scaleMinLabel: 'It increases my attraction significantly',
|
|
318
|
+
scaleMaxLabel: "It doesn't change my attraction much",
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
key: 'relationshipRole',
|
|
322
|
+
question:
|
|
323
|
+
'When you imagine being in a relationship right now, what role does it most feel like it would play in your life?',
|
|
324
|
+
type: 'options',
|
|
325
|
+
options: [
|
|
326
|
+
'It would enhance a life that already feels full and satisfying',
|
|
327
|
+
'It would add companionship and shared experiences to my life',
|
|
328
|
+
'It would fill a gap I currently feel in my life',
|
|
329
|
+
'It would make me feel more secure, valued, or "chosen"',
|
|
330
|
+
],
|
|
331
|
+
},
|
|
332
|
+
];
|
|
333
|
+
|
|
334
|
+
// --- Enforcement ---
|
|
335
|
+
|
|
336
|
+
export interface EnforcementQuestion {
|
|
337
|
+
key: EnforcementQuestionKey;
|
|
338
|
+
question: string;
|
|
339
|
+
options: string[];
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export const ENFORCEMENT_QUESTIONS: EnforcementQuestion[] = [
|
|
343
|
+
{
|
|
344
|
+
key: 'cancelDowngrade',
|
|
345
|
+
question:
|
|
346
|
+
'If someone cancels plans last minute without a strong reason, how many times does it take before you mentally downgrade their reliability?',
|
|
347
|
+
options: ['1 time', '2 times', '3+ times', 'Only if it becomes a pattern', 'I rarely downgrade'],
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
key: 'noFollowUpResponse',
|
|
351
|
+
question:
|
|
352
|
+
"After a date, if he doesn't follow up within about 24–48 hours, what is your typical reaction?",
|
|
353
|
+
options: [
|
|
354
|
+
'Lose interest immediately',
|
|
355
|
+
'Mentally downgrade',
|
|
356
|
+
'Ask directly',
|
|
357
|
+
'Wait it out',
|
|
358
|
+
'Do nothing',
|
|
359
|
+
],
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
key: 'effortDecreaseDowngrade',
|
|
363
|
+
question:
|
|
364
|
+
'If his effort noticeably decreases after the first few dates, how quickly do you start reassessing the situation?',
|
|
365
|
+
options: ['First sign', 'Second sign', 'Clear pattern', 'I rarely downgrade'],
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
key: 'exclusivityNotDiscussed',
|
|
369
|
+
question:
|
|
370
|
+
"If exclusivity hasn't been discussed by the timeline that feels right to you, what do you usually do next?",
|
|
371
|
+
options: ['End it', 'Initiate conversation', 'Give extra time', 'Continue casually'],
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
key: 'redFlagSpeed',
|
|
375
|
+
question:
|
|
376
|
+
'When early red flags appear while dating someone, how quickly do you tend to act on them?',
|
|
377
|
+
options: ['Immediately', 'After confirmation', 'After repeated behavior', 'Only if severe'],
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
key: 'disappointmentResponse',
|
|
381
|
+
question:
|
|
382
|
+
'When someone disappoints you while dating, what is your most natural response?',
|
|
383
|
+
options: ['Address directly', 'Withdraw', 'Reduce investment', 'Increase effort', 'Overthink'],
|
|
384
|
+
},
|
|
385
|
+
];
|
|
386
|
+
|
|
387
|
+
// --- Trade-offs ---
|
|
388
|
+
|
|
389
|
+
export interface TradeOffQuestion {
|
|
390
|
+
key: TradeOffQuestionKey;
|
|
391
|
+
question: string;
|
|
392
|
+
options: string[];
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
export const TRADEOFF_QUESTIONS: TradeOffQuestion[] = [
|
|
396
|
+
{
|
|
397
|
+
key: 'consistencyVsChemistry',
|
|
398
|
+
question: 'Early in dating, if you had to choose, which matters more?',
|
|
399
|
+
options: [
|
|
400
|
+
'Strong chemistry even if effort is inconsistent',
|
|
401
|
+
'Consistent effort even if chemistry builds slowly',
|
|
402
|
+
],
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
key: 'stabilityVsIntensity',
|
|
406
|
+
question:
|
|
407
|
+
'Which emotional style do you generally feel more drawn to in a partner?',
|
|
408
|
+
options: ['Calm and emotionally steady', 'Deeply expressive and intense'],
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
key: 'financialStatusVsCharacter',
|
|
412
|
+
question:
|
|
413
|
+
'When it comes to money habits, which situation feels more comfortable in a partner?',
|
|
414
|
+
options: [
|
|
415
|
+
'Earns significantly but spends freely',
|
|
416
|
+
'Earns moderately but financially disciplined',
|
|
417
|
+
],
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
key: 'speedVsCertainty',
|
|
421
|
+
question: 'When a new relationship begins, which pace feels more natural?',
|
|
422
|
+
options: [
|
|
423
|
+
'Fast progression with strong momentum',
|
|
424
|
+
'Slower progression with careful evaluation',
|
|
425
|
+
],
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
key: 'independenceVsIntegration',
|
|
429
|
+
question: 'In an ideal relationship dynamic, which balance feels right?',
|
|
430
|
+
options: ['Strong independence', 'Lives integrate quickly'],
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
key: 'ambitionVsPresence',
|
|
434
|
+
question: 'Which type of partner appeals more?',
|
|
435
|
+
options: ['Highly career-focused', 'Prioritizes presence and availability'],
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
key: 'toleratedFlaw',
|
|
439
|
+
question:
|
|
440
|
+
'Looking back on dating experiences, which flaw do you tend to tolerate the longest?',
|
|
441
|
+
options: [
|
|
442
|
+
'Slow texting',
|
|
443
|
+
'Slower commitment pace',
|
|
444
|
+
'Work-focused schedule',
|
|
445
|
+
'Low emotional expression',
|
|
446
|
+
],
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
key: 'attractionKiller',
|
|
450
|
+
question: 'Which behavior makes you lose attraction the fastest?',
|
|
451
|
+
options: [
|
|
452
|
+
'Passive energy',
|
|
453
|
+
'Insecurity',
|
|
454
|
+
'Hot-and-cold behavior',
|
|
455
|
+
'Avoiding commitment conversations',
|
|
456
|
+
],
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
key: 'pastPattern',
|
|
460
|
+
question:
|
|
461
|
+
'Looking back honestly at your past relationships, which description feels closest to your pattern?',
|
|
462
|
+
options: [
|
|
463
|
+
'Choosing potential over proof',
|
|
464
|
+
'Staying too long',
|
|
465
|
+
'Leaving too early',
|
|
466
|
+
'Over-investing early',
|
|
467
|
+
],
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
key: 'earlyDatingTendency',
|
|
471
|
+
question: 'When dating someone new, which pattern best describes you?',
|
|
472
|
+
options: [
|
|
473
|
+
'Focus on one person quickly',
|
|
474
|
+
'Keep multiple options open',
|
|
475
|
+
'Get attached quickly',
|
|
476
|
+
'Stay emotionally guarded',
|
|
477
|
+
],
|
|
478
|
+
},
|
|
479
|
+
];
|
package/src/types.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface DatingArchetype {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
traits: [string, string, string, string];
|
|
5
|
+
description: string;
|
|
6
|
+
signatureLine: string;
|
|
7
|
+
rarityNote?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface ArchetypeCoaching {
|
|
11
|
+
name: string;
|
|
12
|
+
signatureLine: string;
|
|
13
|
+
traits: string[];
|
|
14
|
+
pitfalls: string[];
|
|
15
|
+
coachingDirective: string;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface UserPreferences {
|
|
19
|
+
standards: Record<string, number>;
|
|
20
|
+
timeline_answers: Record<string, string>;
|
|
21
|
+
mindset_answers: Record<string, string>;
|
|
22
|
+
enforcement_answers: Record<string, string>;
|
|
23
|
+
trade_off_answers: Record<string, string>;
|
|
24
|
+
}
|