@ak--47/dungeon-master 1.2.3 → 1.3.1
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/CHANGELOG.md +42 -0
- package/README.md +51 -13
- package/dungeons/technical/ad-spend.js +2 -2
- package/dungeons/technical/anonymous-users.js +2 -2
- package/dungeons/technical/array-of-object-lookup.js +2 -4
- package/dungeons/technical/experiments.js +2 -2
- package/dungeons/technical/foobar.js +2 -2
- package/dungeons/technical/group-analytics.js +2 -2
- package/dungeons/technical/mirror-strategies.js +2 -2
- package/dungeons/technical/nested-objects.js +2 -2
- package/dungeons/technical/retention-cadence.js +2 -3
- package/dungeons/technical/sanity.js +2 -2
- package/dungeons/technical/scale-test.js +2 -2
- package/dungeons/technical/scd.js +2 -2
- package/dungeons/technical/simple.js +5 -6
- package/dungeons/technical/simplest-schema.json +5 -0
- package/dungeons/technical/simplest.js +2 -2
- package/dungeons/technical/text-generation.js +3 -3
- package/dungeons/vertical/ai-platform.js +858 -0
- package/dungeons/vertical/community.js +84 -40
- package/dungeons/vertical/crypto.js +830 -0
- package/dungeons/vertical/dating.js +744 -0
- package/dungeons/vertical/devtools.js +175 -69
- package/dungeons/vertical/ecommerce.js +242 -94
- package/dungeons/vertical/education.js +330 -313
- package/dungeons/vertical/fintech.js +442 -313
- package/dungeons/vertical/fitness.js +143 -61
- package/dungeons/vertical/food-delivery.js +327 -353
- package/dungeons/vertical/gaming.js +912 -382
- package/dungeons/vertical/healthcare.js +142 -63
- package/dungeons/vertical/insurance-application.js +170 -76
- package/dungeons/vertical/logistics.js +115 -20
- package/dungeons/vertical/marketplace.js +152 -58
- package/dungeons/vertical/media.js +248 -384
- package/dungeons/vertical/real-estate.js +781 -0
- package/dungeons/vertical/sass.js +255 -266
- package/dungeons/vertical/social.js +264 -206
- package/dungeons/vertical/travel.js +117 -41
- package/index.js +17 -17
- package/lib/core/config-validator.js +159 -31
- package/lib/core/context.js +10 -24
- package/lib/core/storage.js +6 -1
- package/lib/generators/events.js +11 -14
- package/lib/generators/funnels.js +12 -4
- package/lib/generators/mirror.js +3 -2
- package/lib/generators/product-names.js +1 -1
- package/lib/generators/scd.js +2 -1
- package/lib/generators/text.js +1 -1
- package/lib/orchestrators/user-loop.js +81 -47
- package/lib/templates/macro-presets.js +111 -0
- package/lib/templates/soup-presets.js +19 -36
- package/lib/utils/utils.js +71 -39
- package/package.json +8 -2
- package/scripts/smoke-test-all.mjs +162 -0
- package/scripts/verify-runner.mjs +72 -24
- package/types.d.ts +251 -51
- package/dungeons/technical/ad-spend-schema.json +0 -128
- package/dungeons/technical/anonymous-users-schema.json +0 -92
- package/dungeons/technical/array-of-object-lookup-schema.json +0 -191
- package/dungeons/technical/experiments-schema.json +0 -203
- package/dungeons/technical/foobar-schema.json +0 -362
- package/dungeons/technical/group-analytics-schema.json +0 -241
- package/dungeons/technical/mirror-strategies-schema.json +0 -84
- package/dungeons/technical/nested-objects-schema.json +0 -145
- package/dungeons/technical/retention-cadence-schema.json +0 -37
- package/dungeons/technical/sanity-schema.json +0 -185
- package/dungeons/technical/scale-test-schema.json +0 -70
- package/dungeons/technical/scd-schema.json +0 -467
- package/dungeons/technical/simple-schema.json +0 -362
- package/dungeons/technical/text-generation-schema.json +0 -1062
- package/dungeons/user/.gitkeep +0 -0
- package/dungeons/vertical/community-schema.json +0 -579
- package/dungeons/vertical/devtools-schema.json +0 -601
- package/dungeons/vertical/ecommerce-schema.json +0 -604
- package/dungeons/vertical/education-schema.json +0 -5686
- package/dungeons/vertical/fintech-schema.json +0 -630
- package/dungeons/vertical/fitness-schema.json +0 -530
- package/dungeons/vertical/food-delivery-schema.json +0 -36728
- package/dungeons/vertical/gaming-schema.json +0 -438
- package/dungeons/vertical/healthcare-schema.json +0 -549
- package/dungeons/vertical/insurance-application-schema.json +0 -485
- package/dungeons/vertical/logistics-schema.json +0 -574
- package/dungeons/vertical/marketplace-schema.json +0 -533
- package/dungeons/vertical/media-schema.json +0 -4749
- package/dungeons/vertical/rpg-schema.json +0 -2491
- package/dungeons/vertical/rpg.js +0 -976
- package/dungeons/vertical/sass-schema.json +0 -3128
- package/dungeons/vertical/social-schema.json +0 -620
- package/dungeons/vertical/travel-schema.json +0 -580
|
@@ -1,362 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"events": [
|
|
3
|
-
{
|
|
4
|
-
"event": "ad impression",
|
|
5
|
-
"weight": 15,
|
|
6
|
-
"properties": {
|
|
7
|
-
"partner": [
|
|
8
|
-
"google",
|
|
9
|
-
"facebook",
|
|
10
|
-
"twitter",
|
|
11
|
-
"linkedin",
|
|
12
|
-
"bing",
|
|
13
|
-
"taboola",
|
|
14
|
-
"outbrain",
|
|
15
|
-
"quora",
|
|
16
|
-
"pinterest"
|
|
17
|
-
]
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"event": "ad click",
|
|
22
|
-
"weight": 10,
|
|
23
|
-
"properties": {
|
|
24
|
-
"partner": [
|
|
25
|
-
"google",
|
|
26
|
-
"facebook",
|
|
27
|
-
"twitter",
|
|
28
|
-
"linkedin",
|
|
29
|
-
"bing",
|
|
30
|
-
"taboola",
|
|
31
|
-
"outbrain",
|
|
32
|
-
"quora",
|
|
33
|
-
"pinterest"
|
|
34
|
-
]
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"event": "checkout",
|
|
39
|
-
"weight": 2,
|
|
40
|
-
"properties": {
|
|
41
|
-
"amount": {
|
|
42
|
-
"$range": [
|
|
43
|
-
104,
|
|
44
|
-
391
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"currency": [
|
|
48
|
-
"USD",
|
|
49
|
-
"CAD",
|
|
50
|
-
"EUR",
|
|
51
|
-
"BTC",
|
|
52
|
-
"ETH",
|
|
53
|
-
"JPY"
|
|
54
|
-
],
|
|
55
|
-
"coupon": [
|
|
56
|
-
"none",
|
|
57
|
-
"10%OFF",
|
|
58
|
-
"20%OFF",
|
|
59
|
-
"30%OFF",
|
|
60
|
-
"40%OFF",
|
|
61
|
-
"50%OFF"
|
|
62
|
-
],
|
|
63
|
-
"numItems": {
|
|
64
|
-
"$range": [
|
|
65
|
-
2,
|
|
66
|
-
9
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"event": "add to cart",
|
|
73
|
-
"weight": 4,
|
|
74
|
-
"properties": {
|
|
75
|
-
"amount": {
|
|
76
|
-
"$range": [
|
|
77
|
-
110,
|
|
78
|
-
395
|
|
79
|
-
]
|
|
80
|
-
},
|
|
81
|
-
"rating": {
|
|
82
|
-
"$range": [
|
|
83
|
-
1,
|
|
84
|
-
5
|
|
85
|
-
]
|
|
86
|
-
},
|
|
87
|
-
"reviews": {
|
|
88
|
-
"$range": [
|
|
89
|
-
1,
|
|
90
|
-
35
|
|
91
|
-
]
|
|
92
|
-
},
|
|
93
|
-
"isFeaturedItem": [
|
|
94
|
-
true,
|
|
95
|
-
false
|
|
96
|
-
],
|
|
97
|
-
"itemCategory": [
|
|
98
|
-
"Beauty",
|
|
99
|
-
"Outdoors",
|
|
100
|
-
"Toys",
|
|
101
|
-
"Pet",
|
|
102
|
-
"Books",
|
|
103
|
-
"Health"
|
|
104
|
-
],
|
|
105
|
-
"dateItemListed": {
|
|
106
|
-
"$type": "string"
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"event": "page view",
|
|
112
|
-
"weight": 10,
|
|
113
|
-
"properties": {
|
|
114
|
-
"page": [
|
|
115
|
-
"/",
|
|
116
|
-
"/help",
|
|
117
|
-
"/account",
|
|
118
|
-
"/watch",
|
|
119
|
-
"/listen",
|
|
120
|
-
"/product",
|
|
121
|
-
"/people",
|
|
122
|
-
"/peace"
|
|
123
|
-
],
|
|
124
|
-
"utm_source": [
|
|
125
|
-
"$organic",
|
|
126
|
-
"google",
|
|
127
|
-
"facebook",
|
|
128
|
-
"twitter",
|
|
129
|
-
"linkedin"
|
|
130
|
-
]
|
|
131
|
-
}
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"event": "watch video",
|
|
135
|
-
"weight": 8,
|
|
136
|
-
"properties": {
|
|
137
|
-
"videoCategory": [
|
|
138
|
-
"news",
|
|
139
|
-
"gaming",
|
|
140
|
-
"inspirational",
|
|
141
|
-
"DIY",
|
|
142
|
-
"sports"
|
|
143
|
-
],
|
|
144
|
-
"isFeaturedItem": [
|
|
145
|
-
true,
|
|
146
|
-
false
|
|
147
|
-
],
|
|
148
|
-
"watchTimeSec": {
|
|
149
|
-
"$range": [
|
|
150
|
-
131,
|
|
151
|
-
467
|
|
152
|
-
]
|
|
153
|
-
},
|
|
154
|
-
"quality": [
|
|
155
|
-
"2160p",
|
|
156
|
-
"1440p",
|
|
157
|
-
"1080p",
|
|
158
|
-
"720p",
|
|
159
|
-
"480p",
|
|
160
|
-
"360p",
|
|
161
|
-
"240p"
|
|
162
|
-
],
|
|
163
|
-
"format": [
|
|
164
|
-
"mp4",
|
|
165
|
-
"avi",
|
|
166
|
-
"mov",
|
|
167
|
-
"mpg"
|
|
168
|
-
],
|
|
169
|
-
"uploader_id": {
|
|
170
|
-
"$type": "string"
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"event": "view item",
|
|
176
|
-
"weight": 8,
|
|
177
|
-
"properties": {
|
|
178
|
-
"isFeaturedItem": [
|
|
179
|
-
true,
|
|
180
|
-
false
|
|
181
|
-
],
|
|
182
|
-
"itemCategory": [
|
|
183
|
-
"Automotive",
|
|
184
|
-
"Appliances",
|
|
185
|
-
"Baby",
|
|
186
|
-
"Kids",
|
|
187
|
-
"Sports",
|
|
188
|
-
"Beauty",
|
|
189
|
-
"Music"
|
|
190
|
-
],
|
|
191
|
-
"dateItemListed": {
|
|
192
|
-
"$type": "string"
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"event": "save item",
|
|
198
|
-
"weight": 5,
|
|
199
|
-
"properties": {
|
|
200
|
-
"isFeaturedItem": [
|
|
201
|
-
true,
|
|
202
|
-
false
|
|
203
|
-
],
|
|
204
|
-
"itemCategory": [
|
|
205
|
-
"Computers",
|
|
206
|
-
"Books",
|
|
207
|
-
"Electronics",
|
|
208
|
-
"Sports",
|
|
209
|
-
"Beauty",
|
|
210
|
-
"Games",
|
|
211
|
-
"Food"
|
|
212
|
-
],
|
|
213
|
-
"dateItemListed": {
|
|
214
|
-
"$type": "string"
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"event": "sign up",
|
|
220
|
-
"isFirstEvent": true,
|
|
221
|
-
"properties": {
|
|
222
|
-
"signupMethod": [
|
|
223
|
-
"email",
|
|
224
|
-
"google",
|
|
225
|
-
"facebook",
|
|
226
|
-
"twitter",
|
|
227
|
-
"linkedin",
|
|
228
|
-
"github"
|
|
229
|
-
],
|
|
230
|
-
"referral": [
|
|
231
|
-
"none",
|
|
232
|
-
"friend",
|
|
233
|
-
"ad"
|
|
234
|
-
]
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
],
|
|
238
|
-
"funnels": [
|
|
239
|
-
{
|
|
240
|
-
"sequence": [
|
|
241
|
-
"page view",
|
|
242
|
-
"view item",
|
|
243
|
-
"save item",
|
|
244
|
-
"page view",
|
|
245
|
-
"sign up"
|
|
246
|
-
],
|
|
247
|
-
"name": "Signup Flow",
|
|
248
|
-
"isFirstFunnel": true,
|
|
249
|
-
"conversionRate": 50,
|
|
250
|
-
"timeToConvert": 2,
|
|
251
|
-
"order": "first-and-last-fixed",
|
|
252
|
-
"experiment": true
|
|
253
|
-
}
|
|
254
|
-
],
|
|
255
|
-
"superProps": {
|
|
256
|
-
"theme": [
|
|
257
|
-
"light",
|
|
258
|
-
"dark",
|
|
259
|
-
"custom"
|
|
260
|
-
]
|
|
261
|
-
},
|
|
262
|
-
"userProps": {
|
|
263
|
-
"title": {
|
|
264
|
-
"$type": "string"
|
|
265
|
-
},
|
|
266
|
-
"luckyNumber": {
|
|
267
|
-
"$range": [
|
|
268
|
-
114,
|
|
269
|
-
333
|
|
270
|
-
]
|
|
271
|
-
},
|
|
272
|
-
"spiritAnimal": [
|
|
273
|
-
"duck",
|
|
274
|
-
"dog",
|
|
275
|
-
"otter",
|
|
276
|
-
"penguin",
|
|
277
|
-
"cat",
|
|
278
|
-
"elephant",
|
|
279
|
-
"lion",
|
|
280
|
-
"cheetah",
|
|
281
|
-
"giraffe",
|
|
282
|
-
"zebra",
|
|
283
|
-
"rhino",
|
|
284
|
-
"hippo",
|
|
285
|
-
"whale",
|
|
286
|
-
"dolphin",
|
|
287
|
-
"shark",
|
|
288
|
-
"octopus",
|
|
289
|
-
"squid",
|
|
290
|
-
"jellyfish",
|
|
291
|
-
"starfish",
|
|
292
|
-
"seahorse",
|
|
293
|
-
"crab",
|
|
294
|
-
"lobster",
|
|
295
|
-
"shrimp",
|
|
296
|
-
"clam",
|
|
297
|
-
"snail",
|
|
298
|
-
"slug",
|
|
299
|
-
"butterfly",
|
|
300
|
-
"moth",
|
|
301
|
-
"bee",
|
|
302
|
-
"wasp",
|
|
303
|
-
"ant",
|
|
304
|
-
"beetle",
|
|
305
|
-
"ladybug",
|
|
306
|
-
"caterpillar",
|
|
307
|
-
"centipede",
|
|
308
|
-
"millipede",
|
|
309
|
-
"scorpion",
|
|
310
|
-
"spider",
|
|
311
|
-
"tarantula",
|
|
312
|
-
"tick",
|
|
313
|
-
"mite",
|
|
314
|
-
"mosquito",
|
|
315
|
-
"fly",
|
|
316
|
-
"dragonfly",
|
|
317
|
-
"damselfly",
|
|
318
|
-
"grasshopper",
|
|
319
|
-
"cricket",
|
|
320
|
-
"locust",
|
|
321
|
-
"mantis",
|
|
322
|
-
"cockroach",
|
|
323
|
-
"termite",
|
|
324
|
-
"praying mantis",
|
|
325
|
-
"walking stick",
|
|
326
|
-
"stick bug",
|
|
327
|
-
"leaf insect",
|
|
328
|
-
"lacewing",
|
|
329
|
-
"aphid",
|
|
330
|
-
"cicada",
|
|
331
|
-
"thrips",
|
|
332
|
-
"psyllid",
|
|
333
|
-
"scale insect",
|
|
334
|
-
"whitefly",
|
|
335
|
-
"mealybug",
|
|
336
|
-
"planthopper",
|
|
337
|
-
"leafhopper",
|
|
338
|
-
"treehopper",
|
|
339
|
-
"flea",
|
|
340
|
-
"louse",
|
|
341
|
-
"bedbug",
|
|
342
|
-
"flea beetle",
|
|
343
|
-
"weevil",
|
|
344
|
-
"longhorn beetle",
|
|
345
|
-
"leaf beetle",
|
|
346
|
-
"tiger beetle",
|
|
347
|
-
"ground beetle",
|
|
348
|
-
"lady beetle",
|
|
349
|
-
"firefly",
|
|
350
|
-
"click beetle",
|
|
351
|
-
"rove beetle",
|
|
352
|
-
"scarab beetle",
|
|
353
|
-
"dung beetle",
|
|
354
|
-
"stag beetle",
|
|
355
|
-
"rhinoceros beetle",
|
|
356
|
-
"hercules beetle",
|
|
357
|
-
"goliath beetle",
|
|
358
|
-
"jewel beetle",
|
|
359
|
-
"tortoise beetle"
|
|
360
|
-
]
|
|
361
|
-
}
|
|
362
|
-
}
|