@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
package/dist/classify.js
ADDED
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import { DATING_ARCHETYPES } from './archetypes.js';
|
|
2
|
+
export function classifyArchetype(answers) {
|
|
3
|
+
const scores = {};
|
|
4
|
+
DATING_ARCHETYPES.forEach((a) => (scores[a.id] = 0));
|
|
5
|
+
const { standards, timelineAnswers, mindsetAnswers, enforcementAnswers, tradeOffAnswers } = answers;
|
|
6
|
+
// --- Standards signals ---
|
|
7
|
+
const stdValues = Object.values(standards).filter((v) => v !== null);
|
|
8
|
+
const avgStandard = stdValues.length > 0 ? stdValues.reduce((a, b) => a + b, 0) / stdValues.length : 3;
|
|
9
|
+
if (avgStandard >= 4.2) {
|
|
10
|
+
scores['the-strategic-dater'] += 3;
|
|
11
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
12
|
+
}
|
|
13
|
+
else if (avgStandard >= 3.5) {
|
|
14
|
+
scores['the-hopeful-romantic'] += 3;
|
|
15
|
+
scores['the-intentional-builder'] += 1;
|
|
16
|
+
}
|
|
17
|
+
else if (avgStandard <= 2.5) {
|
|
18
|
+
scores['the-independent-chooser'] += 3;
|
|
19
|
+
scores['the-compassionate-partner'] += 2;
|
|
20
|
+
}
|
|
21
|
+
const emotionalAvg = ((standards.emotionalStability ?? 3) + (standards.emotionalAvailability ?? 3)) / 2;
|
|
22
|
+
if (emotionalAvg >= 4.5) {
|
|
23
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
24
|
+
}
|
|
25
|
+
const effortAvg = ((standards.initiativeAndEffort ?? 3) + (standards.followThrough ?? 3)) / 2;
|
|
26
|
+
if (effortAvg >= 4.5) {
|
|
27
|
+
scores['the-intentional-builder'] += 2;
|
|
28
|
+
scores['the-strategic-dater'] += 1;
|
|
29
|
+
}
|
|
30
|
+
// --- Timeline signals ---
|
|
31
|
+
const pace = timelineAnswers?.progressionPace;
|
|
32
|
+
if (pace === 'Fast and intentional') {
|
|
33
|
+
scores['the-compassionate-partner'] += 3;
|
|
34
|
+
scores['the-strategic-dater'] += 1;
|
|
35
|
+
}
|
|
36
|
+
else if (pace === 'Structured and steady') {
|
|
37
|
+
scores['the-strategic-dater'] += 3;
|
|
38
|
+
scores['the-intentional-builder'] += 1;
|
|
39
|
+
}
|
|
40
|
+
else if (pace === 'Gradual over time') {
|
|
41
|
+
scores['the-hopeful-romantic'] += 2;
|
|
42
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
43
|
+
}
|
|
44
|
+
else if (pace === 'Undefined / organic') {
|
|
45
|
+
scores['the-independent-chooser'] += 4;
|
|
46
|
+
}
|
|
47
|
+
const exclusivity = timelineAnswers?.exclusivityExpectation;
|
|
48
|
+
if (exclusivity === '3–5 dates') {
|
|
49
|
+
scores['the-compassionate-partner'] += 2;
|
|
50
|
+
scores['the-strategic-dater'] += 1;
|
|
51
|
+
}
|
|
52
|
+
else if (exclusivity === 'No fixed expectation') {
|
|
53
|
+
scores['the-independent-chooser'] += 3;
|
|
54
|
+
}
|
|
55
|
+
else if (exclusivity === '2 months' || exclusivity === '3 months') {
|
|
56
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
57
|
+
scores['the-intentional-builder'] += 1;
|
|
58
|
+
}
|
|
59
|
+
const commCadence = timelineAnswers?.communicationCadence;
|
|
60
|
+
if (commCadence === 'Daily') {
|
|
61
|
+
scores['the-compassionate-partner'] += 2;
|
|
62
|
+
}
|
|
63
|
+
else if (commCadence === 'Only when planning') {
|
|
64
|
+
scores['the-independent-chooser'] += 2;
|
|
65
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
66
|
+
}
|
|
67
|
+
// --- Enforcement signals ---
|
|
68
|
+
const cancelDowngrade = enforcementAnswers?.cancelDowngrade;
|
|
69
|
+
if (cancelDowngrade === '1 time') {
|
|
70
|
+
scores['the-strategic-dater'] += 3;
|
|
71
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
72
|
+
}
|
|
73
|
+
else if (cancelDowngrade === 'I rarely downgrade') {
|
|
74
|
+
scores['the-compassionate-partner'] += 2;
|
|
75
|
+
scores['the-independent-chooser'] += 2;
|
|
76
|
+
}
|
|
77
|
+
else if (cancelDowngrade === 'Only if it becomes a pattern') {
|
|
78
|
+
scores['the-hopeful-romantic'] += 2;
|
|
79
|
+
}
|
|
80
|
+
const redFlagSpeed = enforcementAnswers?.redFlagSpeed;
|
|
81
|
+
if (redFlagSpeed === 'Immediately') {
|
|
82
|
+
scores['the-strategic-dater'] += 2;
|
|
83
|
+
scores['the-thoughtful-evaluator'] += 3;
|
|
84
|
+
}
|
|
85
|
+
else if (redFlagSpeed === 'After confirmation') {
|
|
86
|
+
scores['the-intentional-builder'] += 3;
|
|
87
|
+
}
|
|
88
|
+
else if (redFlagSpeed === 'Only if severe') {
|
|
89
|
+
scores['the-compassionate-partner'] += 2;
|
|
90
|
+
scores['the-independent-chooser'] += 1;
|
|
91
|
+
}
|
|
92
|
+
const disappointment = enforcementAnswers?.disappointmentResponse;
|
|
93
|
+
if (disappointment === 'Address directly') {
|
|
94
|
+
scores['the-strategic-dater'] += 2;
|
|
95
|
+
scores['the-hopeful-romantic'] += 1;
|
|
96
|
+
}
|
|
97
|
+
else if (disappointment === 'Withdraw') {
|
|
98
|
+
scores['the-thoughtful-evaluator'] += 3;
|
|
99
|
+
}
|
|
100
|
+
else if (disappointment === 'Increase effort') {
|
|
101
|
+
scores['the-compassionate-partner'] += 3;
|
|
102
|
+
}
|
|
103
|
+
else if (disappointment === 'Overthink') {
|
|
104
|
+
scores['the-intentional-builder'] += 2;
|
|
105
|
+
}
|
|
106
|
+
else if (disappointment === 'Reduce investment') {
|
|
107
|
+
scores['the-independent-chooser'] += 2;
|
|
108
|
+
}
|
|
109
|
+
// --- Mindset signals ---
|
|
110
|
+
if (mindsetAnswers) {
|
|
111
|
+
const stdConf = mindsetAnswers.standardsConfidence
|
|
112
|
+
? Number(mindsetAnswers.standardsConfidence)
|
|
113
|
+
: null;
|
|
114
|
+
if (stdConf !== null) {
|
|
115
|
+
if (stdConf >= 4) {
|
|
116
|
+
scores['the-strategic-dater'] += 2;
|
|
117
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
118
|
+
}
|
|
119
|
+
else if (stdConf <= 2) {
|
|
120
|
+
scores['the-compassionate-partner'] += 2;
|
|
121
|
+
scores['the-independent-chooser'] += 1;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
const effort = mindsetAnswers.effortInterpretation;
|
|
125
|
+
if (effort === "Maybe I'm expecting too much") {
|
|
126
|
+
scores['the-compassionate-partner'] += 2;
|
|
127
|
+
}
|
|
128
|
+
else if (effort === 'I notice the shift and start evaluating the situation') {
|
|
129
|
+
scores['the-intentional-builder'] += 2;
|
|
130
|
+
scores['the-strategic-dater'] += 1;
|
|
131
|
+
}
|
|
132
|
+
else if (effort === 'I lose interest quickly') {
|
|
133
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
134
|
+
}
|
|
135
|
+
const behAdj = mindsetAnswers.behavioralAdjustment
|
|
136
|
+
? Number(mindsetAnswers.behavioralAdjustment)
|
|
137
|
+
: null;
|
|
138
|
+
if (behAdj !== null) {
|
|
139
|
+
if (behAdj <= 2) {
|
|
140
|
+
scores['the-compassionate-partner'] += 2;
|
|
141
|
+
}
|
|
142
|
+
else if (behAdj >= 4) {
|
|
143
|
+
scores['the-strategic-dater'] += 1;
|
|
144
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
const scarcity = mindsetAnswers.scarcityMindset
|
|
148
|
+
? Number(mindsetAnswers.scarcityMindset)
|
|
149
|
+
: null;
|
|
150
|
+
if (scarcity !== null) {
|
|
151
|
+
if (scarcity <= 2) {
|
|
152
|
+
scores['the-compassionate-partner'] += 2;
|
|
153
|
+
scores['the-hopeful-romantic'] += 1;
|
|
154
|
+
}
|
|
155
|
+
else if (scarcity >= 4) {
|
|
156
|
+
scores['the-independent-chooser'] += 2;
|
|
157
|
+
scores['the-strategic-dater'] += 1;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
const ambiguity = mindsetAnswers.ambiguityTolerance;
|
|
161
|
+
if (ambiguity ===
|
|
162
|
+
'I start replaying conversations and wondering what I might have done wrong') {
|
|
163
|
+
scores['the-compassionate-partner'] += 2;
|
|
164
|
+
scores['the-intentional-builder'] += 1;
|
|
165
|
+
}
|
|
166
|
+
else if (ambiguity ===
|
|
167
|
+
'I assume they may be losing interest and begin worrying about where things stand') {
|
|
168
|
+
scores['the-hopeful-romantic'] += 1;
|
|
169
|
+
scores['the-intentional-builder'] += 1;
|
|
170
|
+
}
|
|
171
|
+
else if (ambiguity === 'I notice the shift and start paying closer attention to their behavior') {
|
|
172
|
+
scores['the-intentional-builder'] += 2;
|
|
173
|
+
}
|
|
174
|
+
else if (ambiguity === "I don't think about it much unless the pattern continues") {
|
|
175
|
+
scores['the-independent-chooser'] += 2;
|
|
176
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
177
|
+
}
|
|
178
|
+
const investSpeed = mindsetAnswers.emotionalInvestmentSpeed;
|
|
179
|
+
if (investSpeed === 'Very quickly') {
|
|
180
|
+
scores['the-compassionate-partner'] += 3;
|
|
181
|
+
}
|
|
182
|
+
else if (investSpeed === 'Somewhat quickly') {
|
|
183
|
+
scores['the-compassionate-partner'] += 1;
|
|
184
|
+
scores['the-hopeful-romantic'] += 1;
|
|
185
|
+
}
|
|
186
|
+
else if (investSpeed === 'Gradually over time') {
|
|
187
|
+
scores['the-hopeful-romantic'] += 1;
|
|
188
|
+
scores['the-intentional-builder'] += 1;
|
|
189
|
+
}
|
|
190
|
+
else if (investSpeed === 'Slowly and cautiously') {
|
|
191
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
192
|
+
scores['the-strategic-dater'] += 1;
|
|
193
|
+
}
|
|
194
|
+
const fearLoss = mindsetAnswers.fearOfLosingConnection
|
|
195
|
+
? Number(mindsetAnswers.fearOfLosingConnection)
|
|
196
|
+
: null;
|
|
197
|
+
if (fearLoss !== null) {
|
|
198
|
+
if (fearLoss <= 2) {
|
|
199
|
+
scores['the-compassionate-partner'] += 2;
|
|
200
|
+
}
|
|
201
|
+
else if (fearLoss >= 4) {
|
|
202
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
203
|
+
scores['the-independent-chooser'] += 1;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
const fulfillment = mindsetAnswers.fulfillmentOutsideDating
|
|
207
|
+
? Number(mindsetAnswers.fulfillmentOutsideDating)
|
|
208
|
+
: null;
|
|
209
|
+
if (fulfillment !== null) {
|
|
210
|
+
if (fulfillment <= 2) {
|
|
211
|
+
scores['the-compassionate-partner'] += 2;
|
|
212
|
+
}
|
|
213
|
+
else if (fulfillment >= 4) {
|
|
214
|
+
scores['the-independent-chooser'] += 2;
|
|
215
|
+
scores['the-strategic-dater'] += 1;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
const validation = mindsetAnswers.validationSensitivity
|
|
219
|
+
? Number(mindsetAnswers.validationSensitivity)
|
|
220
|
+
: null;
|
|
221
|
+
if (validation !== null) {
|
|
222
|
+
if (validation <= 2) {
|
|
223
|
+
scores['the-compassionate-partner'] += 2;
|
|
224
|
+
scores['the-hopeful-romantic'] += 1;
|
|
225
|
+
}
|
|
226
|
+
else if (validation >= 4) {
|
|
227
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
228
|
+
scores['the-strategic-dater'] += 1;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
const relRole = mindsetAnswers.relationshipRole;
|
|
232
|
+
if (relRole === 'It would enhance a life that already feels full and satisfying') {
|
|
233
|
+
scores['the-strategic-dater'] += 2;
|
|
234
|
+
scores['the-independent-chooser'] += 1;
|
|
235
|
+
}
|
|
236
|
+
else if (relRole === 'It would add companionship and shared experiences to my life') {
|
|
237
|
+
scores['the-hopeful-romantic'] += 2;
|
|
238
|
+
}
|
|
239
|
+
else if (relRole === 'It would fill a gap I currently feel in my life') {
|
|
240
|
+
scores['the-compassionate-partner'] += 2;
|
|
241
|
+
}
|
|
242
|
+
else if (relRole === 'It would make me feel more secure, valued, or "chosen"') {
|
|
243
|
+
scores['the-compassionate-partner'] += 3;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
// --- Trade-off signals ---
|
|
247
|
+
const chemistry = tradeOffAnswers?.consistencyVsChemistry;
|
|
248
|
+
if (chemistry === 'Strong chemistry even if effort is inconsistent') {
|
|
249
|
+
scores['the-compassionate-partner'] += 3;
|
|
250
|
+
}
|
|
251
|
+
else {
|
|
252
|
+
scores['the-strategic-dater'] += 2;
|
|
253
|
+
scores['the-intentional-builder'] += 1;
|
|
254
|
+
}
|
|
255
|
+
const stability = tradeOffAnswers?.stabilityVsIntensity;
|
|
256
|
+
if (stability === 'Deeply expressive and intense') {
|
|
257
|
+
scores['the-compassionate-partner'] += 2;
|
|
258
|
+
scores['the-hopeful-romantic'] += 1;
|
|
259
|
+
}
|
|
260
|
+
else {
|
|
261
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
262
|
+
scores['the-strategic-dater'] += 1;
|
|
263
|
+
}
|
|
264
|
+
const independence = tradeOffAnswers?.independenceVsIntegration;
|
|
265
|
+
if (independence === 'Strong independence') {
|
|
266
|
+
scores['the-independent-chooser'] += 3;
|
|
267
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
268
|
+
}
|
|
269
|
+
else {
|
|
270
|
+
scores['the-compassionate-partner'] += 2;
|
|
271
|
+
scores['the-hopeful-romantic'] += 1;
|
|
272
|
+
}
|
|
273
|
+
const pastPattern = tradeOffAnswers?.pastPattern;
|
|
274
|
+
if (pastPattern === 'Choosing potential over proof') {
|
|
275
|
+
scores['the-compassionate-partner'] += 2;
|
|
276
|
+
scores['the-hopeful-romantic'] += 1;
|
|
277
|
+
}
|
|
278
|
+
else if (pastPattern === 'Staying too long') {
|
|
279
|
+
scores['the-hopeful-romantic'] += 2;
|
|
280
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
281
|
+
}
|
|
282
|
+
else if (pastPattern === 'Leaving too early') {
|
|
283
|
+
scores['the-thoughtful-evaluator'] += 2;
|
|
284
|
+
scores['the-strategic-dater'] += 1;
|
|
285
|
+
}
|
|
286
|
+
else if (pastPattern === 'Over-investing early') {
|
|
287
|
+
scores['the-compassionate-partner'] += 3;
|
|
288
|
+
}
|
|
289
|
+
const earlyDating = tradeOffAnswers?.earlyDatingTendency;
|
|
290
|
+
if (earlyDating === 'Focus on one person quickly') {
|
|
291
|
+
scores['the-compassionate-partner'] += 2;
|
|
292
|
+
}
|
|
293
|
+
else if (earlyDating === 'Keep multiple options') {
|
|
294
|
+
scores['the-strategic-dater'] += 2;
|
|
295
|
+
scores['the-intentional-builder'] += 1;
|
|
296
|
+
}
|
|
297
|
+
else if (earlyDating === 'Get attached fast') {
|
|
298
|
+
scores['the-compassionate-partner'] += 3;
|
|
299
|
+
}
|
|
300
|
+
else if (earlyDating === 'Stay emotionally guarded') {
|
|
301
|
+
scores['the-thoughtful-evaluator'] += 3;
|
|
302
|
+
}
|
|
303
|
+
const attractionKiller = tradeOffAnswers?.attractionKiller;
|
|
304
|
+
if (attractionKiller === 'Passive energy') {
|
|
305
|
+
scores['the-compassionate-partner'] += 1;
|
|
306
|
+
scores['the-strategic-dater'] += 1;
|
|
307
|
+
}
|
|
308
|
+
else if (attractionKiller === 'Hot and cold behavior') {
|
|
309
|
+
scores['the-intentional-builder'] += 2;
|
|
310
|
+
scores['the-thoughtful-evaluator'] += 1;
|
|
311
|
+
}
|
|
312
|
+
else if (attractionKiller === 'Avoiding commitment talks') {
|
|
313
|
+
scores['the-strategic-dater'] += 2;
|
|
314
|
+
scores['the-hopeful-romantic'] += 1;
|
|
315
|
+
}
|
|
316
|
+
// Find highest scoring archetype
|
|
317
|
+
let maxScore = 0;
|
|
318
|
+
let archetypeId = 'the-hopeful-romantic'; // default fallback
|
|
319
|
+
for (const [id, score] of Object.entries(scores)) {
|
|
320
|
+
if (score > maxScore) {
|
|
321
|
+
maxScore = score;
|
|
322
|
+
archetypeId = id;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
return DATING_ARCHETYPES.find((a) => a.id === archetypeId) ?? DATING_ARCHETYPES[1];
|
|
326
|
+
}
|
|
327
|
+
//# sourceMappingURL=classify.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"classify.js","sourceRoot":"","sources":["../src/classify.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEpD,MAAM,UAAU,iBAAiB,CAAC,OAMjC;IACC,MAAM,MAAM,GAA2B,EAAE,CAAC;IAC1C,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAErD,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,cAAc,EAAE,kBAAkB,EAAE,eAAe,EAAE,GACvF,OAAO,CAAC;IAEV,4BAA4B;IAC5B,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAe,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC;IAClF,MAAM,WAAW,GACf,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;IAErF,IAAI,WAAW,IAAI,GAAG,EAAE,CAAC;QACvB,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,IAAI,WAAW,IAAI,GAAG,EAAE,CAAC;QAC9B,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;QACpC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;SAAM,IAAI,WAAW,IAAI,GAAG,EAAE,CAAC;QAC9B,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACvC,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;IAED,MAAM,YAAY,GAChB,CAAC,CAAC,SAAS,CAAC,kBAAkB,IAAI,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IACrF,IAAI,YAAY,IAAI,GAAG,EAAE,CAAC;QACxB,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;IAED,MAAM,SAAS,GACb,CAAC,CAAC,SAAS,CAAC,mBAAmB,IAAI,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,aAAa,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IAC9E,IAAI,SAAS,IAAI,GAAG,EAAE,CAAC;QACrB,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACvC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;IAED,2BAA2B;IAC3B,MAAM,IAAI,GAAG,eAAe,EAAE,eAAe,CAAC;IAC9C,IAAI,IAAI,KAAK,sBAAsB,EAAE,CAAC;QACpC,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;SAAM,IAAI,IAAI,KAAK,uBAAuB,EAAE,CAAC;QAC5C,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;SAAM,IAAI,IAAI,KAAK,mBAAmB,EAAE,CAAC;QACxC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;QACpC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,IAAI,IAAI,KAAK,qBAAqB,EAAE,CAAC;QAC1C,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;IAED,MAAM,WAAW,GAAG,eAAe,EAAE,sBAAsB,CAAC;IAC5D,IAAI,WAAW,KAAK,WAAW,EAAE,CAAC;QAChC,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;SAAM,IAAI,WAAW,KAAK,sBAAsB,EAAE,CAAC;QAClD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;SAAM,IAAI,WAAW,KAAK,UAAU,IAAI,WAAW,KAAK,UAAU,EAAE,CAAC;QACpE,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;QACxC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;IAED,MAAM,WAAW,GAAG,eAAe,EAAE,oBAAoB,CAAC;IAC1D,IAAI,WAAW,KAAK,OAAO,EAAE,CAAC;QAC5B,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;SAAM,IAAI,WAAW,KAAK,oBAAoB,EAAE,CAAC;QAChD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACvC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;IAED,8BAA8B;IAC9B,MAAM,eAAe,GAAG,kBAAkB,EAAE,eAAe,CAAC;IAC5D,IAAI,eAAe,KAAK,QAAQ,EAAE,CAAC;QACjC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,IAAI,eAAe,KAAK,oBAAoB,EAAE,CAAC;QACpD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;SAAM,IAAI,eAAe,KAAK,8BAA8B,EAAE,CAAC;QAC9D,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;IAED,MAAM,YAAY,GAAG,kBAAkB,EAAE,YAAY,CAAC;IACtD,IAAI,YAAY,KAAK,aAAa,EAAE,CAAC;QACnC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,IAAI,YAAY,KAAK,oBAAoB,EAAE,CAAC;QACjD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;SAAM,IAAI,YAAY,KAAK,gBAAgB,EAAE,CAAC;QAC7C,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;IAED,MAAM,cAAc,GAAG,kBAAkB,EAAE,sBAAsB,CAAC;IAClE,IAAI,cAAc,KAAK,kBAAkB,EAAE,CAAC;QAC1C,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;SAAM,IAAI,cAAc,KAAK,UAAU,EAAE,CAAC;QACzC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,IAAI,cAAc,KAAK,iBAAiB,EAAE,CAAC;QAChD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;SAAM,IAAI,cAAc,KAAK,WAAW,EAAE,CAAC;QAC1C,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;SAAM,IAAI,cAAc,KAAK,mBAAmB,EAAE,CAAC;QAClD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;IAED,0BAA0B;IAC1B,IAAI,cAAc,EAAE,CAAC;QACnB,MAAM,OAAO,GAAG,cAAc,CAAC,mBAAmB;YAChD,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,mBAAmB,CAAC;YAC5C,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,OAAO,KAAK,IAAI,EAAE,CAAC;YACrB,IAAI,OAAO,IAAI,CAAC,EAAE,CAAC;gBACjB,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;gBACnC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;YAC1C,CAAC;iBAAM,IAAI,OAAO,IAAI,CAAC,EAAE,CAAC;gBACxB,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;gBACzC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;YACzC,CAAC;QACH,CAAC;QAED,MAAM,MAAM,GAAG,cAAc,CAAC,oBAAoB,CAAC;QACnD,IAAI,MAAM,KAAK,8BAA8B,EAAE,CAAC;YAC9C,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAC3C,CAAC;aAAM,IAAI,MAAM,KAAK,uDAAuD,EAAE,CAAC;YAC9E,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;YACvC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACrC,CAAC;aAAM,IAAI,MAAM,KAAK,yBAAyB,EAAE,CAAC;YAChD,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;QAC1C,CAAC;QAED,MAAM,MAAM,GAAG,cAAc,CAAC,oBAAoB;YAChD,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,oBAAoB,CAAC;YAC7C,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,MAAM,KAAK,IAAI,EAAE,CAAC;YACpB,IAAI,MAAM,IAAI,CAAC,EAAE,CAAC;gBAChB,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;YAC3C,CAAC;iBAAM,IAAI,MAAM,IAAI,CAAC,EAAE,CAAC;gBACvB,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;gBACnC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;YAC1C,CAAC;QACH,CAAC;QAED,MAAM,QAAQ,GAAG,cAAc,CAAC,eAAe;YAC7C,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,eAAe,CAAC;YACxC,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;YACtB,IAAI,QAAQ,IAAI,CAAC,EAAE,CAAC;gBAClB,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;gBACzC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;YACtC,CAAC;iBAAM,IAAI,QAAQ,IAAI,CAAC,EAAE,CAAC;gBACzB,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;gBACvC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;YACrC,CAAC;QACH,CAAC;QAED,MAAM,SAAS,GAAG,cAAc,CAAC,kBAAkB,CAAC;QACpD,IACE,SAAS;YACT,4EAA4E,EAC5E,CAAC;YACD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;YACzC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACzC,CAAC;aAAM,IACL,SAAS;YACT,kFAAkF,EAClF,CAAC;YACD,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;YACpC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACzC,CAAC;aAAM,IACL,SAAS,KAAK,wEAAwE,EACtF,CAAC;YACD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACzC,CAAC;aAAM,IACL,SAAS,KAAK,0DAA0D,EACxE,CAAC;YACD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;YACvC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;QAC1C,CAAC;QAED,MAAM,WAAW,GAAG,cAAc,CAAC,wBAAwB,CAAC;QAC5D,IAAI,WAAW,KAAK,cAAc,EAAE,CAAC;YACnC,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAC3C,CAAC;aAAM,IAAI,WAAW,KAAK,kBAAkB,EAAE,CAAC;YAC9C,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;YACzC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;QACtC,CAAC;aAAM,IAAI,WAAW,KAAK,qBAAqB,EAAE,CAAC;YACjD,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;YACpC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACzC,CAAC;aAAM,IAAI,WAAW,KAAK,uBAAuB,EAAE,CAAC;YACnD,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;YACxC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACrC,CAAC;QAED,MAAM,QAAQ,GAAG,cAAc,CAAC,sBAAsB;YACpD,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,sBAAsB,CAAC;YAC/C,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;YACtB,IAAI,QAAQ,IAAI,CAAC,EAAE,CAAC;gBAClB,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;YAC3C,CAAC;iBAAM,IAAI,QAAQ,IAAI,CAAC,EAAE,CAAC;gBACzB,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;gBACxC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;YACzC,CAAC;QACH,CAAC;QAED,MAAM,WAAW,GAAG,cAAc,CAAC,wBAAwB;YACzD,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,wBAAwB,CAAC;YACjD,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,WAAW,KAAK,IAAI,EAAE,CAAC;YACzB,IAAI,WAAW,IAAI,CAAC,EAAE,CAAC;gBACrB,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;YAC3C,CAAC;iBAAM,IAAI,WAAW,IAAI,CAAC,EAAE,CAAC;gBAC5B,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;gBACvC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;YACrC,CAAC;QACH,CAAC;QAED,MAAM,UAAU,GAAG,cAAc,CAAC,qBAAqB;YACrD,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,qBAAqB,CAAC;YAC9C,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,UAAU,KAAK,IAAI,EAAE,CAAC;YACxB,IAAI,UAAU,IAAI,CAAC,EAAE,CAAC;gBACpB,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;gBACzC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;YACtC,CAAC;iBAAM,IAAI,UAAU,IAAI,CAAC,EAAE,CAAC;gBAC3B,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;gBACxC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;YACrC,CAAC;QACH,CAAC;QAED,MAAM,OAAO,GAAG,cAAc,CAAC,gBAAgB,CAAC;QAChD,IAAI,OAAO,KAAK,gEAAgE,EAAE,CAAC;YACjF,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;YACnC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACzC,CAAC;aAAM,IACL,OAAO,KAAK,8DAA8D,EAC1E,CAAC;YACD,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;QACtC,CAAC;aAAM,IAAI,OAAO,KAAK,iDAAiD,EAAE,CAAC;YACzE,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAC3C,CAAC;aAAM,IACL,OAAO,KAAK,wDAAwD,EACpE,CAAC;YACD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAC3C,CAAC;IACH,CAAC;IAED,4BAA4B;IAC5B,MAAM,SAAS,GAAG,eAAe,EAAE,sBAAsB,CAAC;IAC1D,IAAI,SAAS,KAAK,iDAAiD,EAAE,CAAC;QACpE,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;SAAM,CAAC;QACN,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;IAED,MAAM,SAAS,GAAG,eAAe,EAAE,oBAAoB,CAAC;IACxD,IAAI,SAAS,KAAK,+BAA+B,EAAE,CAAC;QAClD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;SAAM,CAAC;QACN,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;QACxC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;IAED,MAAM,YAAY,GAAG,eAAe,EAAE,yBAAyB,CAAC;IAChE,IAAI,YAAY,KAAK,qBAAqB,EAAE,CAAC;QAC3C,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACvC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,CAAC;QACN,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;IAED,MAAM,WAAW,GAAG,eAAe,EAAE,WAAW,CAAC;IACjD,IAAI,WAAW,KAAK,+BAA+B,EAAE,CAAC;QACpD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;SAAM,IAAI,WAAW,KAAK,kBAAkB,EAAE,CAAC;QAC9C,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;QACpC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,IAAI,WAAW,KAAK,mBAAmB,EAAE,CAAC;QAC/C,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;QACxC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;SAAM,IAAI,WAAW,KAAK,sBAAsB,EAAE,CAAC;QAClD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;IAED,MAAM,WAAW,GAAG,eAAe,EAAE,mBAAmB,CAAC;IACzD,IAAI,WAAW,KAAK,6BAA6B,EAAE,CAAC;QAClD,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;SAAM,IAAI,WAAW,KAAK,uBAAuB,EAAE,CAAC;QACnD,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;IACzC,CAAC;SAAM,IAAI,WAAW,KAAK,mBAAmB,EAAE,CAAC;QAC/C,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;SAAM,IAAI,WAAW,KAAK,0BAA0B,EAAE,CAAC;QACtD,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;IAED,MAAM,gBAAgB,GAAG,eAAe,EAAE,gBAAgB,CAAC;IAC3D,IAAI,gBAAgB,KAAK,gBAAgB,EAAE,CAAC;QAC1C,MAAM,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC;QACzC,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;SAAM,IAAI,gBAAgB,KAAK,uBAAuB,EAAE,CAAC;QACxD,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;QACvC,MAAM,CAAC,0BAA0B,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;SAAM,IAAI,gBAAgB,KAAK,2BAA2B,EAAE,CAAC;QAC5D,MAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACnC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC;IAED,iCAAiC;IACjC,IAAI,QAAQ,GAAG,CAAC,CAAC;IACjB,IAAI,WAAW,GAAG,sBAAsB,CAAC,CAAC,mBAAmB;IAE7D,KAAK,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;QACjD,IAAI,KAAK,GAAG,QAAQ,EAAE,CAAC;YACrB,QAAQ,GAAG,KAAK,CAAC;YACjB,WAAW,GAAG,EAAE,CAAC;QACnB,CAAC;IACH,CAAC;IAED,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,WAAW,CAAC,IAAI,iBAAiB,CAAC,CAAC,CAAC,CAAC;AACrF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"coaching.d.ts","sourceRoot":"","sources":["../src/coaching.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEpD,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAiGhE,CAAC;AAEF,wBAAgB,qBAAqB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAapF"}
|
package/dist/coaching.js
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
export const ARCHETYPE_COACHING = {
|
|
2
|
+
'the-strategic-dater': {
|
|
3
|
+
name: 'The Strategic Dater',
|
|
4
|
+
signatureLine: 'You trust patterns more than promises.',
|
|
5
|
+
traits: [
|
|
6
|
+
'Approaches relationships with clarity and intention',
|
|
7
|
+
'Pays close attention to consistency and effort over time',
|
|
8
|
+
'Evaluates behavior carefully before investing emotionally',
|
|
9
|
+
],
|
|
10
|
+
pitfalls: [
|
|
11
|
+
'Instinct to analyze connections quickly can make slower-building chemistry easy to overlook',
|
|
12
|
+
'May dismiss promising connections that do not check every box immediately',
|
|
13
|
+
'Can come across as transactional when evaluating early connections',
|
|
14
|
+
],
|
|
15
|
+
coachingDirective: 'Watch for her cutting off someone who might just need a little more time. If she is evaluating too clinically, gently remind her that real connection sometimes looks messy at first. Flag when she is being rigid about timelines at the expense of someone who is genuinely showing effort.',
|
|
16
|
+
},
|
|
17
|
+
'the-hopeful-romantic': {
|
|
18
|
+
name: 'The Hopeful Romantic',
|
|
19
|
+
signatureLine: 'You believe the right connection can change everything.',
|
|
20
|
+
traits: [
|
|
21
|
+
'Approaches dating with warmth and emotional openness',
|
|
22
|
+
'Builds connection quickly and creates meaningful relationships',
|
|
23
|
+
'Naturally willing to explore where a relationship might lead',
|
|
24
|
+
],
|
|
25
|
+
pitfalls: [
|
|
26
|
+
'May assume long-term compatibility before consistent effort is proven',
|
|
27
|
+
'Can see potential too easily and stay slightly longer than warranted',
|
|
28
|
+
'Sometimes second-guesses instincts when head and heart conflict',
|
|
29
|
+
],
|
|
30
|
+
coachingDirective: 'Watch for her giving one too many chances when the data already shows a clear pattern. If she is debating between her gut and the \'logical\' answer, remind her that her instinct IS the data. Flag when she is rationalizing someone staying on the roster when the behavior has already spoken.',
|
|
31
|
+
},
|
|
32
|
+
'the-thoughtful-evaluator': {
|
|
33
|
+
name: 'The Thoughtful Evaluator',
|
|
34
|
+
signatureLine: "You watch what people do — not just what they say.",
|
|
35
|
+
traits: [
|
|
36
|
+
'Prefers to understand someone fully before investing emotionally',
|
|
37
|
+
'Observes patterns carefully and allows compatibility to reveal itself',
|
|
38
|
+
'Protected from emotionally chaotic relationships by patience',
|
|
39
|
+
],
|
|
40
|
+
pitfalls: [
|
|
41
|
+
'Cautious approach can slow the emotional momentum of promising connections',
|
|
42
|
+
'Past experiences may dictate current decisions',
|
|
43
|
+
'Can mistake vulnerability for weakness',
|
|
44
|
+
],
|
|
45
|
+
coachingDirective: "Watch for her shutting down someone who is actually showing consistent, genuine effort just because they triggered a past wound. If she is pulling away when someone gets close, name the pattern gently. Flag when she confuses healthy caution with emotional avoidance — there is a difference between protecting herself and punishing someone for someone else's mistakes.",
|
|
46
|
+
},
|
|
47
|
+
'the-compassionate-partner': {
|
|
48
|
+
name: 'The Compassionate Partner',
|
|
49
|
+
signatureLine: "You see the good in people — sometimes before they've earned it.",
|
|
50
|
+
traits: [
|
|
51
|
+
'Naturally invests in building emotional connection',
|
|
52
|
+
'Empathy and emotional intelligence create strong bonds',
|
|
53
|
+
'Brings warmth and stability to relationships',
|
|
54
|
+
],
|
|
55
|
+
pitfalls: [
|
|
56
|
+
'Desire to understand and support can lead to giving too many chances',
|
|
57
|
+
'Chemistry can override red flag detection',
|
|
58
|
+
'Over-investing before someone has matched that energy',
|
|
59
|
+
],
|
|
60
|
+
coachingDirective: 'Watch for her pouring energy into someone who has not matched it yet. If chemistry is high but effort is low, call that out directly. Flag when she is making excuses for inconsistent behavior because the highs feel so good. Remind her that intensity is not the same as investment, and someone who is truly into her will not need her to carry the momentum.',
|
|
61
|
+
},
|
|
62
|
+
'the-independent-chooser': {
|
|
63
|
+
name: 'The Independent Chooser',
|
|
64
|
+
signatureLine: "You don't need a relationship — you choose one.",
|
|
65
|
+
traits: [
|
|
66
|
+
'Approaches dating from a place of stability rather than urgency',
|
|
67
|
+
'Life already feels full — relationships are chosen, not needed',
|
|
68
|
+
'Evaluates partners with clarity and strong standards',
|
|
69
|
+
],
|
|
70
|
+
pitfalls: [
|
|
71
|
+
'Independence can make it harder for others to earn emotional access',
|
|
72
|
+
'May avoid necessary relationship conversations',
|
|
73
|
+
'Can confuse avoidance with independence',
|
|
74
|
+
],
|
|
75
|
+
coachingDirective: "Watch for her letting things drift when a direct conversation would clarify everything. If she is calling it 'going with the flow' but nothing is actually progressing, name that. Flag when her independence is actually keeping her from the connection she wants — sometimes asking for what you need is not pressure, it is clarity.",
|
|
76
|
+
},
|
|
77
|
+
'the-intentional-builder': {
|
|
78
|
+
name: 'The Intentional Builder',
|
|
79
|
+
signatureLine: "You're not just dating — you're building something.",
|
|
80
|
+
traits: [
|
|
81
|
+
'Approaches dating with a clear desire to build a meaningful partnership',
|
|
82
|
+
'Values consistency, emotional maturity, and shared vision',
|
|
83
|
+
'Identifies partners who are serious about building something lasting',
|
|
84
|
+
],
|
|
85
|
+
pitfalls: [
|
|
86
|
+
'Focus on long-term potential can make connections feel important too early',
|
|
87
|
+
'May over-analyze minor inconsistencies',
|
|
88
|
+
'Can create anxiety by tracking behavior too closely',
|
|
89
|
+
],
|
|
90
|
+
coachingDirective: 'Watch for her spiraling over a text reply time or a minor inconsistency that could just be someone having a busy week. If she is building a case against someone based on micro-signals rather than actual patterns, ground her in what actually matters. Flag when her analysis is creating problems that do not exist — not every shift means something.',
|
|
91
|
+
},
|
|
92
|
+
};
|
|
93
|
+
export function buildArchetypeContext(archetypeId) {
|
|
94
|
+
if (!archetypeId)
|
|
95
|
+
return '';
|
|
96
|
+
const coaching = ARCHETYPE_COACHING[archetypeId];
|
|
97
|
+
if (!coaching)
|
|
98
|
+
return '';
|
|
99
|
+
return `Her Dating Psychology Profile:
|
|
100
|
+
Traits: ${coaching.traits.join('. ')}.
|
|
101
|
+
Pitfalls to watch for: ${coaching.pitfalls.join('. ')}.
|
|
102
|
+
|
|
103
|
+
COACHING DIRECTIVE (important):
|
|
104
|
+
${coaching.coachingDirective}
|
|
105
|
+
When you see her exhibiting one of these pitfalls in real time — name the behavior, not the label. Be specific about what she is doing. NEVER use the archetype name or any label like "Strategic Dater", "Compassionate Partner", etc. Just describe the pattern you see.`;
|
|
106
|
+
}
|
|
107
|
+
//# sourceMappingURL=coaching.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"coaching.js","sourceRoot":"","sources":["../src/coaching.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAsC;IACnE,qBAAqB,EAAE;QACrB,IAAI,EAAE,qBAAqB;QAC3B,aAAa,EAAE,wCAAwC;QACvD,MAAM,EAAE;YACN,qDAAqD;YACrD,0DAA0D;YAC1D,2DAA2D;SAC5D;QACD,QAAQ,EAAE;YACR,6FAA6F;YAC7F,2EAA2E;YAC3E,oEAAoE;SACrE;QACD,iBAAiB,EACf,+RAA+R;KAClS;IACD,sBAAsB,EAAE;QACtB,IAAI,EAAE,sBAAsB;QAC5B,aAAa,EAAE,yDAAyD;QACxE,MAAM,EAAE;YACN,sDAAsD;YACtD,gEAAgE;YAChE,8DAA8D;SAC/D;QACD,QAAQ,EAAE;YACR,uEAAuE;YACvE,sEAAsE;YACtE,iEAAiE;SAClE;QACD,iBAAiB,EACf,oSAAoS;KACvS;IACD,0BAA0B,EAAE;QAC1B,IAAI,EAAE,0BAA0B;QAChC,aAAa,EAAE,oDAAoD;QACnE,MAAM,EAAE;YACN,kEAAkE;YAClE,uEAAuE;YACvE,8DAA8D;SAC/D;QACD,QAAQ,EAAE;YACR,4EAA4E;YAC5E,gDAAgD;YAChD,wCAAwC;SACzC;QACD,iBAAiB,EACf,iXAAiX;KACpX;IACD,2BAA2B,EAAE;QAC3B,IAAI,EAAE,2BAA2B;QACjC,aAAa,EAAE,kEAAkE;QACjF,MAAM,EAAE;YACN,oDAAoD;YACpD,wDAAwD;YACxD,8CAA8C;SAC/C;QACD,QAAQ,EAAE;YACR,sEAAsE;YACtE,2CAA2C;YAC3C,uDAAuD;SACxD;QACD,iBAAiB,EACf,qWAAqW;KACxW;IACD,yBAAyB,EAAE;QACzB,IAAI,EAAE,yBAAyB;QAC/B,aAAa,EAAE,iDAAiD;QAChE,MAAM,EAAE;YACN,iEAAiE;YACjE,gEAAgE;YAChE,sDAAsD;SACvD;QACD,QAAQ,EAAE;YACR,qEAAqE;YACrE,gDAAgD;YAChD,yCAAyC;SAC1C;QACD,iBAAiB,EACf,0UAA0U;KAC7U;IACD,yBAAyB,EAAE;QACzB,IAAI,EAAE,yBAAyB;QAC/B,aAAa,EAAE,qDAAqD;QACpE,MAAM,EAAE;YACN,yEAAyE;YACzE,2DAA2D;YAC3D,sEAAsE;SACvE;QACD,QAAQ,EAAE;YACR,4EAA4E;YAC5E,wCAAwC;YACxC,qDAAqD;SACtD;QACD,iBAAiB,EACf,4VAA4V;KAC/V;CACF,CAAC;AAEF,MAAM,UAAU,qBAAqB,CAAC,WAAsC;IAC1E,IAAI,CAAC,WAAW;QAAE,OAAO,EAAE,CAAC;IAE5B,MAAM,QAAQ,GAAG,kBAAkB,CAAC,WAAW,CAAC,CAAC;IACjD,IAAI,CAAC,QAAQ;QAAE,OAAO,EAAE,CAAC;IAEzB,OAAO;UACC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC;yBACX,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC;;;EAGnD,QAAQ,CAAC,iBAAiB;2QAC+O,CAAC;AAC5Q,CAAC"}
|
package/dist/deinas.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface DeinaCharacter {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
tone: string;
|
|
5
|
+
description: string;
|
|
6
|
+
systemPromptModifier: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const DEINA_CHARACTERS: DeinaCharacter[];
|
|
9
|
+
export declare function getDeinaById(id: string | null | undefined): DeinaCharacter;
|
|
10
|
+
//# sourceMappingURL=deinas.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deinas.d.ts","sourceRoot":"","sources":["../src/deinas.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB,EAAE,MAAM,CAAC;CAC9B;AAED,eAAO,MAAM,gBAAgB,EAAE,cAAc,EAgE5C,CAAC;AAEF,wBAAgB,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,cAAc,CAE1E"}
|
package/dist/deinas.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export const DEINA_CHARACTERS = [
|
|
2
|
+
{
|
|
3
|
+
id: 'black',
|
|
4
|
+
name: 'Zara',
|
|
5
|
+
tone: 'The Straight Shooter',
|
|
6
|
+
description: 'No sugarcoating, no excuses. Zara tells you what you need to hear so you stop wasting your own time.',
|
|
7
|
+
systemPromptModifier: "You are direct, bold, and unapologetic. You cut through excuses with sharp clarity. You say what others are thinking but won't say. Your tone is confident and empowering — like a best friend who refuses to let her settle.",
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
id: 'blonde',
|
|
11
|
+
name: 'Chloe',
|
|
12
|
+
tone: 'The Optimistic Strategist',
|
|
13
|
+
description: 'Chloe sees the best in people but never loses sight of your standards. Hopeful, smart, and always three steps ahead.',
|
|
14
|
+
systemPromptModifier: 'You are warm, optimistic, and strategically minded. You help her see the bright side while keeping her grounded in her standards. You frame advice as exciting possibilities rather than warnings. Your tone is encouraging and energizing.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
id: 'asian',
|
|
18
|
+
name: 'Mei',
|
|
19
|
+
tone: 'The Calm Analyst',
|
|
20
|
+
description: 'Mei brings clarity through calm observation. She reads patterns others miss and helps you see the full picture.',
|
|
21
|
+
systemPromptModifier: 'You are calm, observant, and analytical. You notice subtle patterns in behavior and communication. You present insights with quiet confidence, never rushing to judgment. Your tone is measured and thoughtful — like a wise friend who listens deeply before speaking.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
id: 'latina',
|
|
25
|
+
name: 'Valentina',
|
|
26
|
+
tone: 'The Passionate Protector',
|
|
27
|
+
description: 'Valentina feels everything deeply and fiercely protects your heart. She matches your energy and never lets you dim your fire.',
|
|
28
|
+
systemPromptModifier: 'You are passionate, emotionally expressive, and fiercely protective. You validate feelings before offering perspective. You champion her self-worth with intensity and warmth. Your tone is spirited and heartfelt — you feel alongside her while keeping her focused.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: 'muslim',
|
|
32
|
+
name: 'Amira',
|
|
33
|
+
tone: 'The Grounded Sage',
|
|
34
|
+
description: 'Amira leads with wisdom and patience. She helps you find peace in the process and trust your own timing.',
|
|
35
|
+
systemPromptModifier: "You are wise, patient, and deeply grounded. You offer perspective rooted in self-respect and inner peace. You remind her that her worth isn't defined by anyone else's actions. Your tone is serene and reassuring — like guidance from someone who has seen it all and found clarity.",
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
id: 'indian',
|
|
39
|
+
name: 'Priya',
|
|
40
|
+
tone: 'The Empathic Realist',
|
|
41
|
+
description: 'Priya balances deep empathy with honest reality checks. She understands your feelings and gently steers you toward what serves you.',
|
|
42
|
+
systemPromptModifier: 'You are empathetic, nurturing, and gently honest. You always acknowledge her emotions first before guiding her toward clarity. You balance compassion with practical truth. Your tone is soft but firm — you hold space for her feelings while nudging her toward what she deserves.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
id: 'brunnete',
|
|
46
|
+
name: 'Sienna',
|
|
47
|
+
tone: 'The Witty Confidante',
|
|
48
|
+
description: 'Sienna keeps it real with humor and charm. She makes hard truths easier to swallow and turns dating chaos into clarity.',
|
|
49
|
+
systemPromptModifier: 'You are witty, charming, and refreshingly candid. You use light humor to deliver real talk. You make difficult conversations feel less heavy without minimizing them. Your tone is playful but perceptive — like a friend who makes you laugh while helping you see clearly.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
export function getDeinaById(id) {
|
|
53
|
+
return DEINA_CHARACTERS.find((d) => d.id === id) ?? DEINA_CHARACTERS[0];
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=deinas.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deinas.js","sourceRoot":"","sources":["../src/deinas.ts"],"names":[],"mappings":"AAQA,MAAM,CAAC,MAAM,gBAAgB,GAAqB;IAChD;QACE,EAAE,EAAE,OAAO;QACX,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,sBAAsB;QAC5B,WAAW,EACT,sGAAsG;QACxG,oBAAoB,EAClB,+NAA+N;KAClO;IACD;QACE,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,2BAA2B;QACjC,WAAW,EACT,sHAAsH;QACxH,oBAAoB,EAClB,6OAA6O;KAChP;IACD;QACE,EAAE,EAAE,OAAO;QACX,IAAI,EAAE,KAAK;QACX,IAAI,EAAE,kBAAkB;QACxB,WAAW,EACT,iHAAiH;QACnH,oBAAoB,EAClB,yQAAyQ;KAC5Q;IACD;QACE,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,0BAA0B;QAChC,WAAW,EACT,+HAA+H;QACjI,oBAAoB,EAClB,wQAAwQ;KAC3Q;IACD;QACE,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,mBAAmB;QACzB,WAAW,EACT,0GAA0G;QAC5G,oBAAoB,EAClB,wRAAwR;KAC3R;IACD;QACE,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,sBAAsB;QAC5B,WAAW,EACT,qIAAqI;QACvI,oBAAoB,EAClB,sRAAsR;KACzR;IACD;QACE,EAAE,EAAE,UAAU;QACd,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,sBAAsB;QAC5B,WAAW,EACT,yHAAyH;QAC3H,oBAAoB,EAClB,8QAA8Q;KACjR;CACF,CAAC;AAEF,MAAM,UAAU,YAAY,CAAC,EAA6B;IACxD,OAAO,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,IAAI,gBAAgB,CAAC,CAAC,CAAC,CAAC;AAC1E,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fun-facts.d.ts","sourceRoot":"","sources":["../src/fun-facts.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAqBxD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAQhD,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export const ONBOARDING_FUN_FACTS = {
|
|
2
|
+
'after-standards': {
|
|
3
|
+
heading: 'Most people have a clear sense of their standards.',
|
|
4
|
+
body: 'The challenge often appears later — when attraction, chemistry, and real behavior enter the picture.',
|
|
5
|
+
},
|
|
6
|
+
'after-timeline': {
|
|
7
|
+
heading: 'When two people have very different expectations about timing,',
|
|
8
|
+
body: 'confusion often appears long before either person realizes why.',
|
|
9
|
+
},
|
|
10
|
+
'after-mindset': {
|
|
11
|
+
heading: 'Dating decisions are shaped not only by what we want in a partner,',
|
|
12
|
+
body: 'but by how we see ourselves in the dynamic.',
|
|
13
|
+
},
|
|
14
|
+
'after-enforcement': {
|
|
15
|
+
heading: 'Many relationship patterns come not from what people want —',
|
|
16
|
+
body: 'but from what they tolerate longer than they should.',
|
|
17
|
+
},
|
|
18
|
+
'after-trade-offs': {
|
|
19
|
+
heading: 'The choices we make in these moments often reveal more about our dating patterns',
|
|
20
|
+
body: 'than our stated preferences.',
|
|
21
|
+
},
|
|
22
|
+
};
|
|
23
|
+
export const SECTION_HINTS = {
|
|
24
|
+
'mindset:ambiguityTolerance': 'This one tends to be revealing — go with your gut.',
|
|
25
|
+
'mindset:relationshipRole': 'There are no wrong answers here — only honest ones.',
|
|
26
|
+
'enforcement:disappointmentResponse': 'Think about how you usually react in the moment — not how you wish you reacted.',
|
|
27
|
+
'tradeoff:toleratedFlaw': 'Be honest with yourself here — this tends to reveal more than most people expect.',
|
|
28
|
+
'tradeoff:pastPattern': 'Looking back honestly at your past relationships…',
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=fun-facts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fun-facts.js","sourceRoot":"","sources":["../src/fun-facts.ts"],"names":[],"mappings":"AAMA,MAAM,CAAC,MAAM,oBAAoB,GAA4B;IAC3D,iBAAiB,EAAE;QACjB,OAAO,EAAE,oDAAoD;QAC7D,IAAI,EAAE,sGAAsG;KAC7G;IACD,gBAAgB,EAAE;QAChB,OAAO,EAAE,gEAAgE;QACzE,IAAI,EAAE,iEAAiE;KACxE;IACD,eAAe,EAAE;QACf,OAAO,EAAE,oEAAoE;QAC7E,IAAI,EAAE,6CAA6C;KACpD;IACD,mBAAmB,EAAE;QACnB,OAAO,EAAE,6DAA6D;QACtE,IAAI,EAAE,sDAAsD;KAC7D;IACD,kBAAkB,EAAE;QAClB,OAAO,EAAE,kFAAkF;QAC3F,IAAI,EAAE,8BAA8B;KACrC;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAA2B;IACnD,4BAA4B,EAAE,oDAAoD;IAClF,0BAA0B,EAAE,qDAAqD;IACjF,oCAAoC,EAClC,iFAAiF;IACnF,wBAAwB,EACtB,mFAAmF;IACrF,sBAAsB,EAAE,mDAAmD;CAC5E,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type { DatingArchetype, ArchetypeCoaching, UserPreferences } from './types.js';
|
|
2
|
+
export type { FunFact } from './fun-facts.js';
|
|
3
|
+
export type { StandardQuality, TimelineQuestionKey, MindsetQuestionKey, EnforcementQuestionKey, TradeOffQuestionKey, MindsetQuestion, StandardQuestion, TimelineQuestion, EnforcementQuestion, TradeOffQuestion, } from './quiz-questions.js';
|
|
4
|
+
export { DATING_ARCHETYPES } from './archetypes.js';
|
|
5
|
+
export { ARCHETYPE_COACHING, buildArchetypeContext } from './coaching.js';
|
|
6
|
+
export { classifyArchetype } from './classify.js';
|
|
7
|
+
export { STANDARDS_QUALITIES, TIMELINE_QUESTIONS, MINDSET_QUESTIONS, ENFORCEMENT_QUESTIONS, TRADEOFF_QUESTIONS, } from './quiz-questions.js';
|
|
8
|
+
export { renderArchetypePage, renderNotFoundPage, escapeHtml } from './archetype-card.js';
|
|
9
|
+
export { ONBOARDING_FUN_FACTS, SECTION_HINTS } from './fun-facts.js';
|
|
10
|
+
export { DISCLAIMER_CONTENT, ABOUT_YOU_CONTENT, SECTION_INTROS, ARCHETYPE_REVEAL_CONTENT, MEET_DEINA_CONTENT, CHOOSE_DEINA_CONTENT, ACCOUNT_CREATION_CONTENT, } from './onboarding-content.js';
|
|
11
|
+
export type { DeinaCharacter } from './deinas.js';
|
|
12
|
+
export { DEINA_CHARACTERS, getDeinaById } from './deinas.js';
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,eAAe,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AACtF,YAAY,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EACV,eAAe,EACf,mBAAmB,EACnB,kBAAkB,EAClB,sBAAsB,EACtB,mBAAmB,EACnB,eAAe,EACf,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,GACjB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EACL,mBAAmB,EACnB,kBAAkB,EAClB,iBAAiB,EACjB,qBAAqB,EACrB,kBAAkB,GACnB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC1F,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,EACL,kBAAkB,EAClB,iBAAiB,EACjB,cAAc,EACd,wBAAwB,EACxB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,GACzB,MAAM,yBAAyB,CAAC;AACjC,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { DATING_ARCHETYPES } from './archetypes.js';
|
|
2
|
+
export { ARCHETYPE_COACHING, buildArchetypeContext } from './coaching.js';
|
|
3
|
+
export { classifyArchetype } from './classify.js';
|
|
4
|
+
export { STANDARDS_QUALITIES, TIMELINE_QUESTIONS, MINDSET_QUESTIONS, ENFORCEMENT_QUESTIONS, TRADEOFF_QUESTIONS, } from './quiz-questions.js';
|
|
5
|
+
export { renderArchetypePage, renderNotFoundPage, escapeHtml } from './archetype-card.js';
|
|
6
|
+
export { ONBOARDING_FUN_FACTS, SECTION_HINTS } from './fun-facts.js';
|
|
7
|
+
export { DISCLAIMER_CONTENT, ABOUT_YOU_CONTENT, SECTION_INTROS, ARCHETYPE_REVEAL_CONTENT, MEET_DEINA_CONTENT, CHOOSE_DEINA_CONTENT, ACCOUNT_CREATION_CONTENT, } from './onboarding-content.js';
|
|
8
|
+
export { DEINA_CHARACTERS, getDeinaById } from './deinas.js';
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EACL,mBAAmB,EACnB,kBAAkB,EAClB,iBAAiB,EACjB,qBAAqB,EACrB,kBAAkB,GACnB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC1F,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,EACL,kBAAkB,EAClB,iBAAiB,EACjB,cAAc,EACd,wBAAwB,EACxB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,GACzB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC"}
|