athena-xai-chat 1.0.79 → 1.0.80

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.
@@ -0,0 +1,313 @@
1
+ const e = [
2
+ {
3
+ id: "general",
4
+ title: "Saint-Valentin – Questionnaire",
5
+ opening_message: `Find your #LoveLanguageAtManor
6
+ Quel est le langage de l’amour de la personne qui compte pour toi ?
7
+ Découvre-le en seulement 5 questions et trouve le cadeau idéal pour la Saint-Valentin!
8
+ (Une seule réponse possible par question.)`,
9
+ start_node: "quiz.q1",
10
+ finish_when: [
11
+ "quiz.q1",
12
+ "quiz.q3",
13
+ "quiz.q5",
14
+ "quiz.q7",
15
+ "quiz.q8"
16
+ ],
17
+ derive: [],
18
+ nodes: [
19
+ {
20
+ id: "quiz.q1",
21
+ type: "question",
22
+ text_variants: [
23
+ "Qu’est-ce qui fait le plus sourire la personne qui t’est chère au quotidien?"
24
+ ],
25
+ input: {
26
+ kind: "single_choice"
27
+ },
28
+ options: [
29
+ {
30
+ id: "q1_words_of_affirmation",
31
+ label: "Un compliment sincère ou un doux message",
32
+ follow_ups: [],
33
+ next: "quiz.q3",
34
+ tag: "words_of_affirmation",
35
+ set: {
36
+ "quiz.q1": "words_of_affirmation"
37
+ }
38
+ },
39
+ {
40
+ id: "q1_quality_time",
41
+ label: "Les moments choisis passés à deux",
42
+ follow_ups: [],
43
+ next: "quiz.q3",
44
+ tag: "quality_time",
45
+ set: {
46
+ "quiz.q1": "quality_time"
47
+ }
48
+ },
49
+ {
50
+ id: "q1_gifts",
51
+ label: "Un petit quelque chose à offrir",
52
+ follow_ups: [],
53
+ next: "quiz.q3",
54
+ tag: "receiving_gifts",
55
+ set: {
56
+ "quiz.q1": "receiving_gifts"
57
+ }
58
+ },
59
+ {
60
+ id: "q1_acts_of_service",
61
+ label: "Quand tu lui apportes ton aide ou ton soutien",
62
+ follow_ups: [],
63
+ next: "quiz.q3",
64
+ tag: "acts_of_service",
65
+ set: {
66
+ "quiz.q1": "acts_of_service"
67
+ }
68
+ },
69
+ {
70
+ id: "q1_physical_touch",
71
+ label: "Un câlin spontané",
72
+ follow_ups: [],
73
+ next: "quiz.q3",
74
+ tag: "physical_touch",
75
+ set: {
76
+ "quiz.q1": "physical_touch"
77
+ }
78
+ }
79
+ ]
80
+ },
81
+ {
82
+ id: "quiz.q3",
83
+ type: "question",
84
+ text_variants: [
85
+ "Vous passez une journée ensemble en ville. Qu’est-ce qui fait le plus plaisir à la personne qui compte pour toi ?"
86
+ ],
87
+ input: {
88
+ kind: "single_choice"
89
+ },
90
+ options: [
91
+ {
92
+ id: "q3_gifts",
93
+ label: "Flâner ensemble et choisir de petites attentions pleines de sens",
94
+ follow_ups: [],
95
+ next: "quiz.q5",
96
+ tag: "receiving_gifts",
97
+ set: {
98
+ "quiz.q3": "receiving_gifts"
99
+ }
100
+ },
101
+ {
102
+ id: "q3_quality_time",
103
+ label: "Prendre son temps, boire un café et passer du temps ensemble",
104
+ follow_ups: [],
105
+ next: "quiz.q5",
106
+ tag: "quality_time",
107
+ set: {
108
+ "quiz.q3": "quality_time"
109
+ }
110
+ },
111
+ {
112
+ id: "q3_words_of_affirmation",
113
+ label: "Parler beaucoup, rire et tout se raconter",
114
+ follow_ups: [],
115
+ next: "quiz.q5",
116
+ tag: "words_of_affirmation",
117
+ set: {
118
+ "quiz.q3": "words_of_affirmation"
119
+ }
120
+ },
121
+ {
122
+ id: "q3_acts_of_service",
123
+ label: "Tout planifier, prendre des décisions",
124
+ follow_ups: [],
125
+ next: "quiz.q5",
126
+ tag: "acts_of_service",
127
+ set: {
128
+ "quiz.q3": "acts_of_service"
129
+ }
130
+ },
131
+ {
132
+ id: "q3_physical_touch",
133
+ label: "Se tenir la main, se faire des câlins, se rapprocher",
134
+ follow_ups: [],
135
+ next: "quiz.q5",
136
+ tag: "physical_touch",
137
+ set: {
138
+ "quiz.q3": "physical_touch"
139
+ }
140
+ }
141
+ ]
142
+ },
143
+ {
144
+ id: "quiz.q5",
145
+ type: "question",
146
+ text_variants: [
147
+ "Quelle phrase toucherait le plus la personne qui compte pour toi ?"
148
+ ],
149
+ input: {
150
+ kind: "single_choice"
151
+ },
152
+ options: [
153
+ {
154
+ id: "q5_gifts",
155
+ label: "«J’ai quelque chose pour toi.»",
156
+ follow_ups: [],
157
+ next: "quiz.q7",
158
+ tag: "receiving_gifts",
159
+ set: {
160
+ "quiz.q5": "receiving_gifts"
161
+ }
162
+ },
163
+ {
164
+ id: "q5_quality_time",
165
+ label: "«Juste nous deux, dans notre bulle.»",
166
+ follow_ups: [],
167
+ next: "quiz.q7",
168
+ tag: "quality_time",
169
+ set: {
170
+ "quiz.q5": "quality_time"
171
+ }
172
+ },
173
+ {
174
+ id: "q5_words_of_affirmation",
175
+ label: "«J’apprécie chez toi la façon dont tu…»",
176
+ follow_ups: [],
177
+ next: "quiz.q7",
178
+ tag: "words_of_affirmation",
179
+ set: {
180
+ "quiz.q5": "words_of_affirmation"
181
+ }
182
+ },
183
+ {
184
+ id: "q5_acts_of_service",
185
+ label: "«Je suis là pour toi.»",
186
+ follow_ups: [],
187
+ next: "quiz.q7",
188
+ tag: "acts_of_service",
189
+ set: {
190
+ "quiz.q5": "acts_of_service"
191
+ }
192
+ },
193
+ {
194
+ id: "q5_physical_touch",
195
+ label: "«J’aime te sentir près de moi.»",
196
+ follow_ups: [],
197
+ next: "quiz.q7",
198
+ tag: "physical_touch",
199
+ set: {
200
+ "quiz.q5": "physical_touch"
201
+ }
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ id: "quiz.q7",
207
+ type: "question",
208
+ text_variants: [
209
+ "À qui s’adresse ton cadeau?"
210
+ ],
211
+ input: {
212
+ kind: "single_choice"
213
+ },
214
+ options: [
215
+ {
216
+ id: "q7_une_femme",
217
+ label: "Une femme",
218
+ follow_ups: [],
219
+ next: "quiz.q8",
220
+ set: {
221
+ "quiz.q7": "female"
222
+ }
223
+ },
224
+ {
225
+ id: "q7_un_homme",
226
+ label: "Un homme",
227
+ follow_ups: [],
228
+ next: "quiz.q8",
229
+ set: {
230
+ "quiz.q7": "male"
231
+ }
232
+ },
233
+ {
234
+ id: "q7_afficher_toutes_les_idees_cade",
235
+ label: "Afficher toutes les idées cadeaux",
236
+ follow_ups: [],
237
+ next: "quiz.q8",
238
+ set: {
239
+ "quiz.q7": "all"
240
+ }
241
+ }
242
+ ]
243
+ },
244
+ {
245
+ id: "quiz.q8",
246
+ type: "question",
247
+ text_variants: [
248
+ "Quel est ton budget?"
249
+ ],
250
+ input: {
251
+ kind: "single_choice"
252
+ },
253
+ options: [
254
+ {
255
+ id: "q8_0_20",
256
+ label: "Moins de 20 CHF",
257
+ follow_ups: [],
258
+ next: "quiz.end",
259
+ set: {
260
+ "quiz.q8": "0-20"
261
+ }
262
+ },
263
+ {
264
+ id: "q8_20_50",
265
+ label: "CHF 20 à 50",
266
+ follow_ups: [],
267
+ next: "quiz.end",
268
+ set: {
269
+ "quiz.q8": "20-50"
270
+ }
271
+ },
272
+ {
273
+ id: "q8_50_100",
274
+ label: "CHF 50 à 100",
275
+ follow_ups: [],
276
+ next: "quiz.end",
277
+ set: {
278
+ "quiz.q8": "50-100"
279
+ }
280
+ },
281
+ {
282
+ id: "q8_100_",
283
+ label: "Plus de CHF 100",
284
+ follow_ups: [],
285
+ next: "quiz.end",
286
+ set: {
287
+ "quiz.q8": "100+"
288
+ }
289
+ },
290
+ {
291
+ id: "q8_voir_toutes_les_idees_cadeaux",
292
+ label: "Voir toutes les idées cadeaux",
293
+ follow_ups: [],
294
+ next: "quiz.end",
295
+ set: {
296
+ "quiz.q8": "all"
297
+ }
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ id: "quiz.end",
303
+ type: "end",
304
+ text_variants: [
305
+ "Merci ! Tes idées cadeaux arrivent tout de suite."
306
+ ]
307
+ }
308
+ ]
309
+ }
310
+ ];
311
+ export {
312
+ e as default
313
+ };
@@ -0,0 +1,313 @@
1
+ const i = [
2
+ {
3
+ id: "general",
4
+ title: "San Valentino – Questionario",
5
+ opening_message: `Find your #LoveLanguageAtManor
6
+ Quale linguaggio dell’amore parla la tua persona cara?
7
+ Scoprilo con sole 5 domande e trova il regalo perfetto per San Valentino!
8
+ (Per ogni domanda è possibile dare una sola risposta.)`,
9
+ start_node: "quiz.q1",
10
+ finish_when: [
11
+ "quiz.q1",
12
+ "quiz.q3",
13
+ "quiz.q5",
14
+ "quiz.q7",
15
+ "quiz.q8"
16
+ ],
17
+ derive: [],
18
+ nodes: [
19
+ {
20
+ id: "quiz.q1",
21
+ type: "question",
22
+ text_variants: [
23
+ "Cosa riesce a far spuntare un sorriso sul volto della tua persona cara nella vita di tutti i giorni?"
24
+ ],
25
+ input: {
26
+ kind: "single_choice"
27
+ },
28
+ options: [
29
+ {
30
+ id: "q1_words_of_affirmation",
31
+ label: "Un complimento sincero o un messaggio affettuoso",
32
+ follow_ups: [],
33
+ next: "quiz.q3",
34
+ tag: "words_of_affirmation",
35
+ set: {
36
+ "quiz.q1": "words_of_affirmation"
37
+ }
38
+ },
39
+ {
40
+ id: "q1_quality_time",
41
+ label: "Quando scegliete di trascorrere un po’ di tempo insieme",
42
+ follow_ups: [],
43
+ next: "quiz.q3",
44
+ tag: "quality_time",
45
+ set: {
46
+ "quiz.q1": "quality_time"
47
+ }
48
+ },
49
+ {
50
+ id: "q1_gifts",
51
+ label: "Un piccolo regalo",
52
+ follow_ups: [],
53
+ next: "quiz.q3",
54
+ tag: "receiving_gifts",
55
+ set: {
56
+ "quiz.q1": "receiving_gifts"
57
+ }
58
+ },
59
+ {
60
+ id: "q1_acts_of_service",
61
+ label: "Quando la aiuti nelle sue faccende o le dai una mano",
62
+ follow_ups: [],
63
+ next: "quiz.q3",
64
+ tag: "acts_of_service",
65
+ set: {
66
+ "quiz.q1": "acts_of_service"
67
+ }
68
+ },
69
+ {
70
+ id: "q1_physical_touch",
71
+ label: "Un abbraccio spontaneo",
72
+ follow_ups: [],
73
+ next: "quiz.q3",
74
+ tag: "physical_touch",
75
+ set: {
76
+ "quiz.q1": "physical_touch"
77
+ }
78
+ }
79
+ ]
80
+ },
81
+ {
82
+ id: "quiz.q3",
83
+ type: "question",
84
+ text_variants: [
85
+ "Trascorrerete una giornata insieme in città. Cosa rende più felice la tua persona cara?"
86
+ ],
87
+ input: {
88
+ kind: "single_choice"
89
+ },
90
+ options: [
91
+ {
92
+ id: "q3_gifts",
93
+ label: "Curiosare insieme e acquistare piccoli oggetti con un significato",
94
+ follow_ups: [],
95
+ next: "quiz.q5",
96
+ tag: "receiving_gifts",
97
+ set: {
98
+ "quiz.q3": "receiving_gifts"
99
+ }
100
+ },
101
+ {
102
+ id: "q3_quality_time",
103
+ label: "Prendersi del tempo, bere un caffè e stare semplicemente insieme",
104
+ follow_ups: [],
105
+ next: "quiz.q5",
106
+ tag: "quality_time",
107
+ set: {
108
+ "quiz.q3": "quality_time"
109
+ }
110
+ },
111
+ {
112
+ id: "q3_words_of_affirmation",
113
+ label: "Parlare molto, ridere e raccontarsi tutto",
114
+ follow_ups: [],
115
+ next: "quiz.q5",
116
+ tag: "words_of_affirmation",
117
+ set: {
118
+ "quiz.q3": "words_of_affirmation"
119
+ }
120
+ },
121
+ {
122
+ id: "q3_acts_of_service",
123
+ label: "Pianificare bene ogni cosa, prendere decisioni",
124
+ follow_ups: [],
125
+ next: "quiz.q5",
126
+ tag: "acts_of_service",
127
+ set: {
128
+ "quiz.q3": "acts_of_service"
129
+ }
130
+ },
131
+ {
132
+ id: "q3_physical_touch",
133
+ label: "Tenersi per mano, abbracciarsi e stare vicini",
134
+ follow_ups: [],
135
+ next: "quiz.q5",
136
+ tag: "physical_touch",
137
+ set: {
138
+ "quiz.q3": "physical_touch"
139
+ }
140
+ }
141
+ ]
142
+ },
143
+ {
144
+ id: "quiz.q5",
145
+ type: "question",
146
+ text_variants: [
147
+ "Quale frase vorrebbe sentirsi dire la tua persona cara?"
148
+ ],
149
+ input: {
150
+ kind: "single_choice"
151
+ },
152
+ options: [
153
+ {
154
+ id: "q5_gifts",
155
+ label: "«Ho una cosa per te.»",
156
+ follow_ups: [],
157
+ next: "quiz.q7",
158
+ tag: "receiving_gifts",
159
+ set: {
160
+ "quiz.q5": "receiving_gifts"
161
+ }
162
+ },
163
+ {
164
+ id: "q5_quality_time",
165
+ label: "«Solo noi due, e tutto il resto fuori.»",
166
+ follow_ups: [],
167
+ next: "quiz.q7",
168
+ tag: "quality_time",
169
+ set: {
170
+ "quiz.q5": "quality_time"
171
+ }
172
+ },
173
+ {
174
+ id: "q5_words_of_affirmation",
175
+ label: "«Di te mi piace il modo in cui… .»",
176
+ follow_ups: [],
177
+ next: "quiz.q7",
178
+ tag: "words_of_affirmation",
179
+ set: {
180
+ "quiz.q5": "words_of_affirmation"
181
+ }
182
+ },
183
+ {
184
+ id: "q5_acts_of_service",
185
+ label: "«Sono qui per aiutarti.»",
186
+ follow_ups: [],
187
+ next: "quiz.q7",
188
+ tag: "acts_of_service",
189
+ set: {
190
+ "quiz.q5": "acts_of_service"
191
+ }
192
+ },
193
+ {
194
+ id: "q5_physical_touch",
195
+ label: "«Sei parte di me.»",
196
+ follow_ups: [],
197
+ next: "quiz.q7",
198
+ tag: "physical_touch",
199
+ set: {
200
+ "quiz.q5": "physical_touch"
201
+ }
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ id: "quiz.q7",
207
+ type: "question",
208
+ text_variants: [
209
+ "A chi è destinato il tuo regalo?"
210
+ ],
211
+ input: {
212
+ kind: "single_choice"
213
+ },
214
+ options: [
215
+ {
216
+ id: "q7_una_donna",
217
+ label: "Una donna",
218
+ follow_ups: [],
219
+ next: "quiz.q8",
220
+ set: {
221
+ "quiz.q7": "female"
222
+ }
223
+ },
224
+ {
225
+ id: "q7_un_uomo",
226
+ label: "Un uomo",
227
+ follow_ups: [],
228
+ next: "quiz.q8",
229
+ set: {
230
+ "quiz.q7": "male"
231
+ }
232
+ },
233
+ {
234
+ id: "q7_mostra_tutte_le_idee_regalo",
235
+ label: "Mostra tutte le idee regalo",
236
+ follow_ups: [],
237
+ next: "quiz.q8",
238
+ set: {
239
+ "quiz.q7": "all"
240
+ }
241
+ }
242
+ ]
243
+ },
244
+ {
245
+ id: "quiz.q8",
246
+ type: "question",
247
+ text_variants: [
248
+ "A quanto ammonta il tuo budget?"
249
+ ],
250
+ input: {
251
+ kind: "single_choice"
252
+ },
253
+ options: [
254
+ {
255
+ id: "q8_0_20",
256
+ label: "Sotto i 20 CH",
257
+ follow_ups: [],
258
+ next: "quiz.end",
259
+ set: {
260
+ "quiz.q8": "0-20"
261
+ }
262
+ },
263
+ {
264
+ id: "q8_20_50",
265
+ label: "CHF 20-50",
266
+ follow_ups: [],
267
+ next: "quiz.end",
268
+ set: {
269
+ "quiz.q8": "20-50"
270
+ }
271
+ },
272
+ {
273
+ id: "q8_50_100",
274
+ label: "CHF 50-100",
275
+ follow_ups: [],
276
+ next: "quiz.end",
277
+ set: {
278
+ "quiz.q8": "50-100"
279
+ }
280
+ },
281
+ {
282
+ id: "q8_100_",
283
+ label: "Oltre CHF 100",
284
+ follow_ups: [],
285
+ next: "quiz.end",
286
+ set: {
287
+ "quiz.q8": "100+"
288
+ }
289
+ },
290
+ {
291
+ id: "q8_vedi_tutte_le_idee_regalo",
292
+ label: "Vedi tutte le idee regalo",
293
+ follow_ups: [],
294
+ next: "quiz.end",
295
+ set: {
296
+ "quiz.q8": "all"
297
+ }
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ id: "quiz.end",
303
+ type: "end",
304
+ text_variants: [
305
+ "Grazie! Le tue idee regalo sono quasi pronte."
306
+ ]
307
+ }
308
+ ]
309
+ }
310
+ ];
311
+ export {
312
+ i as default
313
+ };
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "files": [
5
5
  "dist"
6
6
  ],
7
- "version": "1.0.79",
7
+ "version": "1.0.80",
8
8
  "type": "module",
9
9
  "scripts": {
10
10
  "dev": "vite",