@deina-labs/deina-core 1.1.4 → 1.1.8
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/answer-confirmations.d.ts.map +1 -1
- package/dist/answer-confirmations.js +2 -12
- package/dist/answer-confirmations.js.map +1 -1
- package/dist/classify.d.ts +1 -1
- package/dist/classify.d.ts.map +1 -1
- package/dist/classify.js +10 -58
- package/dist/classify.js.map +1 -1
- package/dist/fun-facts.d.ts.map +1 -1
- package/dist/fun-facts.js +0 -1
- package/dist/fun-facts.js.map +1 -1
- package/dist/quiz-questions.d.ts +4 -4
- package/dist/quiz-questions.d.ts.map +1 -1
- package/dist/quiz-questions.js +159 -175
- package/dist/quiz-questions.js.map +1 -1
- package/dist/section-hooks.d.ts.map +1 -1
- package/dist/section-hooks.js +1 -33
- package/dist/section-hooks.js.map +1 -1
- package/package.json +1 -1
- package/src/answer-confirmations.ts +2 -22
- package/src/classify.ts +10 -62
- package/src/fun-facts.ts +0 -1
- package/src/quiz-questions.ts +165 -196
- package/src/section-hooks.ts +1 -34
package/src/quiz-questions.ts
CHANGED
|
@@ -4,21 +4,16 @@ export type StandardQuality =
|
|
|
4
4
|
| 'physicalAttraction'
|
|
5
5
|
| 'emotionalStability'
|
|
6
6
|
| 'emotionalAvailability'
|
|
7
|
-
| 'communicationFrequency'
|
|
8
7
|
| 'initiativeAndEffort'
|
|
9
|
-
| 'followThrough'
|
|
10
8
|
| 'financialResponsibility'
|
|
11
9
|
| 'lifestyleAlignment'
|
|
12
|
-
| 'longTermGoals'
|
|
13
|
-
| 'weeklyConsistency';
|
|
10
|
+
| 'longTermGoals';
|
|
14
11
|
|
|
15
12
|
export type TimelineQuestionKey =
|
|
16
13
|
| 'firstDateWindow'
|
|
17
14
|
| 'secondDateWindow'
|
|
18
15
|
| 'preFirstDatePreferences'
|
|
19
16
|
| 'communicationCadence'
|
|
20
|
-
| 'exclusivityExpectation'
|
|
21
|
-
| 'intentionClarity'
|
|
22
17
|
| 'meetFriendsFamily'
|
|
23
18
|
| 'progressionPace';
|
|
24
19
|
|
|
@@ -27,9 +22,6 @@ export type MindsetQuestionKey =
|
|
|
27
22
|
| 'effortInterpretation'
|
|
28
23
|
| 'comparativeAttraction'
|
|
29
24
|
| 'behavioralAdjustment'
|
|
30
|
-
| 'scarcityMindset'
|
|
31
|
-
| 'ambiguityTolerance'
|
|
32
|
-
| 'statusComparison'
|
|
33
25
|
| 'emotionalInvestmentSpeed'
|
|
34
26
|
| 'fearOfLosingConnection'
|
|
35
27
|
| 'fulfillmentOutsideDating'
|
|
@@ -48,13 +40,11 @@ export type TradeOffQuestionKey =
|
|
|
48
40
|
| 'consistencyVsChemistry'
|
|
49
41
|
| 'stabilityVsIntensity'
|
|
50
42
|
| 'financialStatusVsCharacter'
|
|
51
|
-
| 'speedVsCertainty'
|
|
52
43
|
| 'independenceVsIntegration'
|
|
53
44
|
| 'ambitionVsPresence'
|
|
54
45
|
| 'toleratedFlaw'
|
|
55
46
|
| 'attractionKiller'
|
|
56
|
-
| 'pastPattern'
|
|
57
|
-
| 'earlyDatingTendency';
|
|
47
|
+
| 'pastPattern';
|
|
58
48
|
|
|
59
49
|
export interface MindsetQuestion {
|
|
60
50
|
key: MindsetQuestionKey;
|
|
@@ -82,91 +72,82 @@ export const STANDARDS_QUALITIES: StandardQuestion[] = [
|
|
|
82
72
|
key: 'physicalAttraction',
|
|
83
73
|
label: 'Physical Attraction',
|
|
84
74
|
description:
|
|
85
|
-
'
|
|
75
|
+
'How much does physical attraction control whether you give someone a real chance?',
|
|
86
76
|
scaleMinLabel: 'I give anyone a shot',
|
|
87
|
-
scaleMaxLabel: 'No attraction, no chance'
|
|
77
|
+
scaleMaxLabel: 'No attraction, no chance'
|
|
88
78
|
},
|
|
89
79
|
{
|
|
90
80
|
key: 'emotionalStability',
|
|
91
81
|
label: 'Emotional Stability',
|
|
92
82
|
description:
|
|
93
|
-
'
|
|
94
|
-
|
|
95
|
-
|
|
83
|
+
'Do you need him to stay calm when things get tense?',
|
|
84
|
+
type: 'options',
|
|
85
|
+
options: [
|
|
86
|
+
'Yes, always',
|
|
87
|
+
'It depends on the situation',
|
|
88
|
+
'No, I can handle it',
|
|
89
|
+
],
|
|
96
90
|
},
|
|
97
91
|
{
|
|
98
92
|
key: 'emotionalAvailability',
|
|
99
93
|
label: 'Emotional Availability',
|
|
100
94
|
description:
|
|
101
|
-
'
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
description:
|
|
109
|
-
'How much does inconsistent communication mess with your head — or have you trained yourself not to care?',
|
|
110
|
-
scaleMinLabel: 'Doesn\'t bother me',
|
|
111
|
-
scaleMaxLabel: 'It drives me crazy',
|
|
95
|
+
'Do you need him to be emotionally open with you?',
|
|
96
|
+
type: 'options',
|
|
97
|
+
options: [
|
|
98
|
+
'Yes, completely',
|
|
99
|
+
'Somewhat',
|
|
100
|
+
'No, I don\'t need that',
|
|
101
|
+
],
|
|
112
102
|
},
|
|
113
103
|
{
|
|
114
104
|
key: 'initiativeAndEffort',
|
|
115
105
|
label: 'Initiative & Effort',
|
|
116
106
|
description:
|
|
117
|
-
'
|
|
118
|
-
scaleMinLabel: 'I\'ll do the work',
|
|
119
|
-
scaleMaxLabel: 'He needs to step up',
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
key: 'followThrough',
|
|
123
|
-
label: 'Follow-Through',
|
|
124
|
-
description:
|
|
125
|
-
'He said he\'d call. He didn\'t. What do you actually do?',
|
|
107
|
+
'Do you need him to take the lead?',
|
|
126
108
|
type: 'options',
|
|
127
109
|
options: [
|
|
128
|
-
'
|
|
129
|
-
'
|
|
130
|
-
'I
|
|
131
|
-
'I start pulling back without telling him why',
|
|
110
|
+
'Yes, always',
|
|
111
|
+
'Sometimes',
|
|
112
|
+
'No, I\'m fine leading',
|
|
132
113
|
],
|
|
133
114
|
},
|
|
134
115
|
{
|
|
135
116
|
key: 'financialResponsibility',
|
|
136
117
|
label: 'Financial Responsibility',
|
|
137
118
|
description:
|
|
138
|
-
'
|
|
139
|
-
|
|
140
|
-
|
|
119
|
+
'Does his money situation matter to you?',
|
|
120
|
+
type: 'options',
|
|
121
|
+
options: [
|
|
122
|
+
'Yes, it\'s a deal breaker',
|
|
123
|
+
'It matters but it\'s not everything',
|
|
124
|
+
'No, it doesn\'t matter',
|
|
125
|
+
],
|
|
141
126
|
},
|
|
142
127
|
{
|
|
143
128
|
key: 'lifestyleAlignment',
|
|
144
129
|
label: 'Lifestyle Alignment',
|
|
145
130
|
description:
|
|
146
|
-
'
|
|
147
|
-
|
|
148
|
-
|
|
131
|
+
'Do you need your lives to fit together?',
|
|
132
|
+
type: 'options',
|
|
133
|
+
options: [
|
|
134
|
+
'Yes, completely',
|
|
135
|
+
'On the big things',
|
|
136
|
+
'No, differences are fine',
|
|
137
|
+
],
|
|
149
138
|
},
|
|
150
139
|
{
|
|
151
140
|
key: 'longTermGoals',
|
|
152
141
|
label: 'Long-Term Goals',
|
|
153
142
|
description:
|
|
154
|
-
|
|
143
|
+
"You're months in and he still hasn't mentioned the future. What do you do?",
|
|
155
144
|
type: 'options',
|
|
156
145
|
options: [
|
|
157
|
-
'I bring it up
|
|
146
|
+
'I bring it up',
|
|
158
147
|
'I drop hints and hope he gets it',
|
|
159
148
|
'I wait for him to bring it up',
|
|
160
|
-
|
|
161
|
-
]
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
key: 'weeklyConsistency',
|
|
165
|
-
label: 'Weekly Consistency',
|
|
166
|
-
description:
|
|
167
|
-
'How much does it bother you when you go a whole week without seeing him — or have you convinced yourself that\'s normal?',
|
|
168
|
-
scaleMinLabel: 'Space is healthy',
|
|
169
|
-
scaleMaxLabel: 'I need to see him',
|
|
149
|
+
"I avoid it because I'm scared of what he'll say"
|
|
150
|
+
]
|
|
170
151
|
},
|
|
171
152
|
];
|
|
172
153
|
|
|
@@ -183,69 +164,67 @@ export const TIMELINE_QUESTIONS: TimelineQuestion[] = [
|
|
|
183
164
|
{
|
|
184
165
|
key: 'firstDateWindow',
|
|
185
166
|
question:
|
|
186
|
-
'How long are you willing to text
|
|
187
|
-
options: [
|
|
167
|
+
'How long are you willing to text before you need a real date?',
|
|
168
|
+
options: [
|
|
169
|
+
'3–5 days',
|
|
170
|
+
'1 week',
|
|
171
|
+
'2 weeks',
|
|
172
|
+
'3–4 weeks',
|
|
173
|
+
"I don't push for it"
|
|
174
|
+
]
|
|
188
175
|
},
|
|
189
176
|
{
|
|
190
177
|
key: 'secondDateWindow',
|
|
191
178
|
question:
|
|
192
179
|
'After a first date that went well, how long can you wait before the silence starts getting to you?',
|
|
193
|
-
options: ['3–5 days', '1 week', '2 weeks', 'I try not to think about it']
|
|
180
|
+
options: ['3–5 days', '1 week', '2 weeks', 'I try not to think about it']
|
|
194
181
|
},
|
|
195
182
|
{
|
|
196
183
|
key: 'preFirstDatePreferences',
|
|
197
184
|
question:
|
|
198
|
-
'Before meeting him in person, what do you actually need to feel safe
|
|
199
|
-
options: [
|
|
200
|
-
|
|
185
|
+
'Before meeting him in person, what do you actually need to feel safe?',
|
|
186
|
+
options: [
|
|
187
|
+
'A call or FaceTime',
|
|
188
|
+
'A clear plan',
|
|
189
|
+
'Consistent texting',
|
|
190
|
+
"I don't need anything"
|
|
191
|
+
],
|
|
192
|
+
multiSelect: true
|
|
201
193
|
},
|
|
202
194
|
{
|
|
203
195
|
key: 'communicationCadence',
|
|
204
196
|
question:
|
|
205
197
|
'How often do you need to hear from someone before the anxiety kicks in?',
|
|
206
|
-
options: ['Daily', 'Every other day', '2–3 times per week', 'Only when there\'s a plan'],
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
key: 'exclusivityExpectation',
|
|
210
|
-
question:
|
|
211
|
-
'How long can you date someone without knowing where you stand — before it starts eating at you?',
|
|
212
|
-
options: ['3–5 dates', '6–8 dates', '2 months', '3 months', 'I avoid bringing it up'],
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
key: 'intentionClarity',
|
|
216
|
-
question:
|
|
217
|
-
'How long do you let someone keep things vague before you demand to know what they actually want?',
|
|
218
198
|
options: [
|
|
219
|
-
'
|
|
220
|
-
'
|
|
221
|
-
'
|
|
222
|
-
'
|
|
223
|
-
|
|
224
|
-
],
|
|
199
|
+
'Daily',
|
|
200
|
+
'Every other day',
|
|
201
|
+
'2–3 times per week',
|
|
202
|
+
"Only when there's a plan"
|
|
203
|
+
]
|
|
225
204
|
},
|
|
226
205
|
{
|
|
227
206
|
key: 'meetFriendsFamily',
|
|
228
207
|
question:
|
|
229
|
-
'How long into dating before you need to exist in his real life
|
|
208
|
+
'How long into dating before you need to exist in his real life?',
|
|
230
209
|
options: [
|
|
231
210
|
'1–2 months',
|
|
232
211
|
'3 months',
|
|
233
212
|
'6 months',
|
|
234
213
|
'Only after exclusivity',
|
|
235
|
-
|
|
236
|
-
]
|
|
214
|
+
"I don't push for it"
|
|
215
|
+
]
|
|
237
216
|
},
|
|
238
217
|
{
|
|
239
218
|
key: 'progressionPace',
|
|
240
219
|
question:
|
|
241
|
-
'What pace do you actually move at
|
|
220
|
+
'What pace do you actually move at when dating?',
|
|
242
221
|
options: [
|
|
243
|
-
|
|
222
|
+
"I move fast when I'm excited",
|
|
244
223
|
'I try to stay structured',
|
|
245
224
|
'I let things unfold slowly',
|
|
246
|
-
'I go with whatever he sets'
|
|
247
|
-
]
|
|
248
|
-
}
|
|
225
|
+
'I go with whatever he sets'
|
|
226
|
+
]
|
|
227
|
+
}
|
|
249
228
|
];
|
|
250
229
|
|
|
251
230
|
// --- Mindset ---
|
|
@@ -254,66 +233,38 @@ export const MINDSET_QUESTIONS: MindsetQuestion[] = [
|
|
|
254
233
|
{
|
|
255
234
|
key: 'standardsConfidence',
|
|
256
235
|
question:
|
|
257
|
-
'When you really like someone, do your standards hold
|
|
236
|
+
'When you really like someone, do your standards hold?',
|
|
258
237
|
type: 'scale',
|
|
259
238
|
scaleMinLabel: 'I start doubting what I deserve',
|
|
260
|
-
scaleMaxLabel:
|
|
239
|
+
scaleMaxLabel: "My standards don't move"
|
|
261
240
|
},
|
|
262
241
|
{
|
|
263
242
|
key: 'effortInterpretation',
|
|
264
243
|
question:
|
|
265
|
-
|
|
244
|
+
"He used to text you back fast. Now he takes hours. What's your first instinct?",
|
|
266
245
|
type: 'options',
|
|
267
246
|
options: [
|
|
268
247
|
'I probably did something wrong',
|
|
269
|
-
|
|
248
|
+
"He's just busy, I shouldn't overthink it",
|
|
270
249
|
'I notice it and start watching more closely',
|
|
271
|
-
'I match his energy and pull back'
|
|
272
|
-
]
|
|
250
|
+
'I match his energy and pull back'
|
|
251
|
+
]
|
|
273
252
|
},
|
|
274
253
|
{
|
|
275
254
|
key: 'comparativeAttraction',
|
|
276
255
|
question:
|
|
277
|
-
|
|
256
|
+
"When he's more attractive than your usual type, how often do you feel like you need to try harder to keep him?",
|
|
278
257
|
type: 'scale',
|
|
279
258
|
scaleMinLabel: 'Almost always',
|
|
280
|
-
scaleMaxLabel: 'Never — I know my worth'
|
|
259
|
+
scaleMaxLabel: 'Never — I know my worth'
|
|
281
260
|
},
|
|
282
261
|
{
|
|
283
262
|
key: 'behavioralAdjustment',
|
|
284
263
|
question:
|
|
285
264
|
'How often do you become a different version of yourself to keep someone interested?',
|
|
286
265
|
type: 'scale',
|
|
287
|
-
scaleMinLabel:
|
|
288
|
-
scaleMaxLabel:
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
key: 'scarcityMindset',
|
|
292
|
-
question:
|
|
293
|
-
'When you finally meet someone who feels right, how much pressure do you put on yourself not to lose them?',
|
|
294
|
-
type: 'scale',
|
|
295
|
-
scaleMinLabel: 'A lot — good ones are rare',
|
|
296
|
-
scaleMaxLabel: 'None — the right one won\'t leave',
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
key: 'ambiguityTolerance',
|
|
300
|
-
question:
|
|
301
|
-
'He\'s been dry all day. No explanation. What happens in your head?',
|
|
302
|
-
type: 'options',
|
|
303
|
-
options: [
|
|
304
|
-
'I replay everything trying to figure out what I did',
|
|
305
|
-
'I convince myself he\'s losing interest and start spiraling',
|
|
306
|
-
'I notice it but wait to see if it\'s a pattern',
|
|
307
|
-
'I genuinely don\'t think about it',
|
|
308
|
-
],
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
key: 'statusComparison',
|
|
312
|
-
question:
|
|
313
|
-
'When he\'s more successful, better looking, or more popular than you — do you feel like you need to earn your place?',
|
|
314
|
-
type: 'scale',
|
|
315
|
-
scaleMinLabel: 'Yes — I feel the pressure',
|
|
316
|
-
scaleMaxLabel: 'No — I belong wherever I am',
|
|
266
|
+
scaleMinLabel: "More than I'd like to admit",
|
|
267
|
+
scaleMaxLabel: "I don't change for anyone"
|
|
317
268
|
},
|
|
318
269
|
{
|
|
319
270
|
key: 'emotionalInvestmentSpeed',
|
|
@@ -321,35 +272,35 @@ export const MINDSET_QUESTIONS: MindsetQuestion[] = [
|
|
|
321
272
|
'You had one amazing date. How fast are you already imagining a future with him?',
|
|
322
273
|
type: 'options',
|
|
323
274
|
options: [
|
|
324
|
-
'Immediately
|
|
325
|
-
'Pretty fast
|
|
275
|
+
'Immediately',
|
|
276
|
+
'Pretty fast',
|
|
326
277
|
'I enjoy it but stay grounded',
|
|
327
|
-
|
|
328
|
-
]
|
|
278
|
+
"I don't let myself go there yet"
|
|
279
|
+
]
|
|
329
280
|
},
|
|
330
281
|
{
|
|
331
282
|
key: 'fearOfLosingConnection',
|
|
332
283
|
question:
|
|
333
|
-
|
|
284
|
+
"He's pulling away. You can feel it. How strong is the urge to chase?",
|
|
334
285
|
type: 'scale',
|
|
335
|
-
scaleMinLabel:
|
|
336
|
-
scaleMaxLabel: 'I let him go without a fight'
|
|
286
|
+
scaleMinLabel: "I'd do almost anything to fix it",
|
|
287
|
+
scaleMaxLabel: 'I let him go without a fight'
|
|
337
288
|
},
|
|
338
289
|
{
|
|
339
290
|
key: 'fulfillmentOutsideDating',
|
|
340
291
|
question:
|
|
341
|
-
'When you\'re single and no one is texting you
|
|
292
|
+
'When you\'re single and no one is texting you, how does your life feel?',
|
|
342
293
|
type: 'scale',
|
|
343
294
|
scaleMinLabel: 'Like something important is missing',
|
|
344
|
-
scaleMaxLabel: 'Full and complete on its own'
|
|
295
|
+
scaleMaxLabel: 'Full and complete on its own'
|
|
345
296
|
},
|
|
346
297
|
{
|
|
347
298
|
key: 'validationSensitivity',
|
|
348
299
|
question:
|
|
349
|
-
'When someone you like suddenly shows heavy interest
|
|
300
|
+
'When someone you like suddenly shows heavy interest, does it make you like them more?',
|
|
350
301
|
type: 'scale',
|
|
351
302
|
scaleMinLabel: 'It hooks me instantly',
|
|
352
|
-
scaleMaxLabel:
|
|
303
|
+
scaleMaxLabel: "It doesn't change how I feel"
|
|
353
304
|
},
|
|
354
305
|
{
|
|
355
306
|
key: 'relationshipRole',
|
|
@@ -357,12 +308,12 @@ export const MINDSET_QUESTIONS: MindsetQuestion[] = [
|
|
|
357
308
|
'If you got into a relationship tomorrow, what would it really be for?',
|
|
358
309
|
type: 'options',
|
|
359
310
|
options: [
|
|
360
|
-
|
|
361
|
-
|
|
311
|
+
"It would add to a life that's already good",
|
|
312
|
+
"It would give me companionship I'm missing",
|
|
362
313
|
'It would fill a void I feel right now',
|
|
363
|
-
'It would finally make me feel chosen'
|
|
364
|
-
]
|
|
365
|
-
}
|
|
314
|
+
'It would finally make me feel chosen'
|
|
315
|
+
]
|
|
316
|
+
}
|
|
366
317
|
];
|
|
367
318
|
|
|
368
319
|
// --- Enforcement ---
|
|
@@ -378,44 +329,71 @@ export const ENFORCEMENT_QUESTIONS: EnforcementQuestion[] = [
|
|
|
378
329
|
key: 'cancelDowngrade',
|
|
379
330
|
question:
|
|
380
331
|
'He cancels on you last minute. Again. How many times do you let it slide before you actually do something about it?',
|
|
381
|
-
options: [
|
|
332
|
+
options: [
|
|
333
|
+
'Once',
|
|
334
|
+
'Twice',
|
|
335
|
+
'3+ times before I react',
|
|
336
|
+
"Only when it's clearly a pattern",
|
|
337
|
+
'I usually let it go'
|
|
338
|
+
]
|
|
382
339
|
},
|
|
383
340
|
{
|
|
384
341
|
key: 'noFollowUpResponse',
|
|
385
342
|
question:
|
|
386
|
-
'Great date. Then silence for two days. What do you actually do
|
|
343
|
+
'Great date. Then silence for two days. What do you actually do?',
|
|
387
344
|
options: [
|
|
388
345
|
'I lose interest on the spot',
|
|
389
346
|
'I mentally mark it against him',
|
|
390
347
|
'I text him and ask directly',
|
|
391
348
|
'I wait and hope he reaches out',
|
|
392
|
-
|
|
393
|
-
]
|
|
349
|
+
"I pretend I didn't notice"
|
|
350
|
+
]
|
|
394
351
|
},
|
|
395
352
|
{
|
|
396
353
|
key: 'effortDecreaseDowngrade',
|
|
397
354
|
question:
|
|
398
|
-
|
|
399
|
-
options: [
|
|
355
|
+
"His effort drops after the first few dates. The texts get shorter. The plans stop. How long do you pretend it's fine?",
|
|
356
|
+
options: [
|
|
357
|
+
'I catch it immediately',
|
|
358
|
+
'I give it one more chance',
|
|
359
|
+
'I wait for a clear pattern',
|
|
360
|
+
"I usually don't pull back"
|
|
361
|
+
]
|
|
400
362
|
},
|
|
401
363
|
{
|
|
402
364
|
key: 'exclusivityNotDiscussed',
|
|
403
365
|
question:
|
|
404
|
-
|
|
405
|
-
options: [
|
|
366
|
+
"You've been dating for a while and he still hasn't brought up exclusivity. What do you actually do?",
|
|
367
|
+
options: [
|
|
368
|
+
'I walk away',
|
|
369
|
+
'I bring it up myself',
|
|
370
|
+
'I give him more time',
|
|
371
|
+
'I keep going and hope it comes up'
|
|
372
|
+
]
|
|
406
373
|
},
|
|
407
374
|
{
|
|
408
375
|
key: 'redFlagSpeed',
|
|
409
376
|
question:
|
|
410
377
|
'You see a red flag early. Something feels off. How long do you ignore it because everything else feels good?',
|
|
411
|
-
options: [
|
|
378
|
+
options: [
|
|
379
|
+
'I act immediately',
|
|
380
|
+
'I wait to see it again before deciding',
|
|
381
|
+
'I need a pattern before I act',
|
|
382
|
+
"Only if it's something serious"
|
|
383
|
+
]
|
|
412
384
|
},
|
|
413
385
|
{
|
|
414
386
|
key: 'disappointmentResponse',
|
|
415
387
|
question:
|
|
416
|
-
|
|
417
|
-
options: [
|
|
418
|
-
|
|
388
|
+
"He disappoints you. Not a dealbreaker, but it stings. What's your real reaction?",
|
|
389
|
+
options: [
|
|
390
|
+
'I tell him directly',
|
|
391
|
+
'I go quiet and pull back',
|
|
392
|
+
'I lower my expectations',
|
|
393
|
+
'I try harder to make it work',
|
|
394
|
+
'I overthink it for days'
|
|
395
|
+
]
|
|
396
|
+
}
|
|
419
397
|
];
|
|
420
398
|
|
|
421
399
|
// --- Trade-offs ---
|
|
@@ -429,81 +407,72 @@ export interface TradeOffQuestion {
|
|
|
429
407
|
export const TRADEOFF_QUESTIONS: TradeOffQuestion[] = [
|
|
430
408
|
{
|
|
431
409
|
key: 'consistencyVsChemistry',
|
|
432
|
-
question: 'You can only pick one. Which one wins
|
|
410
|
+
question: 'You can only pick one. Which one wins every time?',
|
|
433
411
|
options: [
|
|
434
|
-
|
|
435
|
-
'Consistent effort, even if the spark is slow'
|
|
436
|
-
]
|
|
412
|
+
"Intense chemistry, even if he's inconsistent",
|
|
413
|
+
'Consistent effort, even if the spark is slow'
|
|
414
|
+
]
|
|
437
415
|
},
|
|
438
416
|
{
|
|
439
417
|
key: 'stabilityVsIntensity',
|
|
440
|
-
question: 'Which one do you actually choose
|
|
441
|
-
options: ['The calm, stable one', 'The passionate, intense one']
|
|
418
|
+
question: 'Which one do you actually choose?',
|
|
419
|
+
options: ['The calm, stable one', 'The passionate, intense one']
|
|
442
420
|
},
|
|
443
421
|
{
|
|
444
422
|
key: 'financialStatusVsCharacter',
|
|
445
|
-
question: '
|
|
423
|
+
question: 'Which one would you actually pick?',
|
|
446
424
|
options: [
|
|
447
425
|
'Makes great money but spends recklessly',
|
|
448
|
-
'Makes less but is financially responsible'
|
|
449
|
-
]
|
|
450
|
-
},
|
|
451
|
-
{
|
|
452
|
-
key: 'speedVsCertainty',
|
|
453
|
-
question: 'When something new starts, which version of you shows up?',
|
|
454
|
-
options: [
|
|
455
|
-
'I dive in fast when the energy is right',
|
|
456
|
-
'I slow down and evaluate before committing',
|
|
457
|
-
],
|
|
426
|
+
'Makes less but is financially responsible'
|
|
427
|
+
]
|
|
458
428
|
},
|
|
459
429
|
{
|
|
460
430
|
key: 'independenceVsIntegration',
|
|
461
431
|
question: 'In a relationship, which one actually sounds like you?',
|
|
462
|
-
options: [
|
|
432
|
+
options: [
|
|
433
|
+
'I need my own space and identity',
|
|
434
|
+
'I want our lives to merge quickly'
|
|
435
|
+
]
|
|
463
436
|
},
|
|
464
437
|
{
|
|
465
438
|
key: 'ambitionVsPresence',
|
|
466
439
|
question: 'Which absence would hurt more?',
|
|
467
|
-
options: [
|
|
440
|
+
options: [
|
|
441
|
+
"He's always around but has no ambition",
|
|
442
|
+
"He's ambitious but never available"
|
|
443
|
+
]
|
|
468
444
|
},
|
|
469
445
|
{
|
|
470
446
|
key: 'toleratedFlaw',
|
|
471
|
-
question:
|
|
447
|
+
question:
|
|
448
|
+
'Which of these have you let slide the longest?',
|
|
472
449
|
options: [
|
|
473
450
|
'Bad at texting back',
|
|
474
|
-
|
|
451
|
+
"Won't commit at your pace",
|
|
475
452
|
'Always busy with work',
|
|
476
|
-
'Emotionally shut down'
|
|
477
|
-
]
|
|
453
|
+
'Emotionally shut down'
|
|
454
|
+
]
|
|
478
455
|
},
|
|
479
456
|
{
|
|
480
457
|
key: 'attractionKiller',
|
|
481
|
-
question:
|
|
458
|
+
question:
|
|
459
|
+
'Which one makes you lose interest the fastest?',
|
|
482
460
|
options: [
|
|
483
461
|
'No drive or initiative',
|
|
484
462
|
'Constant insecurity',
|
|
485
463
|
'Hot and cold behavior',
|
|
486
|
-
'Refuses to talk about where things are going'
|
|
487
|
-
]
|
|
464
|
+
'Refuses to talk about where things are going'
|
|
465
|
+
]
|
|
488
466
|
},
|
|
489
467
|
{
|
|
490
468
|
key: 'pastPattern',
|
|
491
|
-
question:
|
|
469
|
+
question:
|
|
470
|
+
'Be honest about your track record. Which pattern keeps showing up?',
|
|
492
471
|
options: [
|
|
493
472
|
'I fall for potential instead of proof',
|
|
494
473
|
'I stay way past the expiration date',
|
|
495
474
|
'I leave before giving it a real chance',
|
|
496
|
-
'I give too much too soon'
|
|
497
|
-
]
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
key: 'earlyDatingTendency',
|
|
501
|
-
question: 'When someone new enters the picture, which version of you takes over?',
|
|
502
|
-
options: [
|
|
503
|
-
'I lock in on one person immediately',
|
|
504
|
-
'I keep my options open',
|
|
505
|
-
'I get emotionally attached too fast',
|
|
506
|
-
'I keep a wall up no matter what',
|
|
507
|
-
],
|
|
475
|
+
'I give too much too soon'
|
|
476
|
+
]
|
|
508
477
|
},
|
|
509
478
|
];
|