@ak--47/dungeon-master 1.1.0 → 1.2.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/dungeons/technical/ad-spend-schema.json +2 -2
- package/dungeons/technical/ad-spend.js +1 -1
- package/dungeons/technical/anonymous-users-schema.json +4 -3
- package/dungeons/technical/anonymous-users.js +1 -1
- package/dungeons/technical/array-of-object-lookup-schema.json +1 -1
- package/dungeons/technical/array-of-object-lookup.js +1 -1
- package/dungeons/technical/experiments-schema.json +25 -19
- package/dungeons/technical/experiments.js +1 -1
- package/dungeons/technical/foobar.js +1 -1
- package/dungeons/technical/group-analytics-schema.json +92 -0
- package/dungeons/technical/group-analytics.js +1 -1
- package/dungeons/technical/mirror-strategies-schema.json +4 -4
- package/dungeons/technical/mirror-strategies.js +1 -1
- package/dungeons/technical/nested-objects.js +1 -1
- package/dungeons/technical/retention-cadence.js +1 -2
- package/dungeons/technical/sanity-schema.json +22 -22
- package/dungeons/technical/sanity.js +1 -0
- package/dungeons/technical/scale-test.js +1 -1
- package/dungeons/technical/scd-schema.json +230 -33
- package/dungeons/technical/scd.js +1 -0
- package/dungeons/technical/simple-schema.json +132 -48
- package/dungeons/technical/simple.js +1 -1
- package/dungeons/technical/simplest-schema.json +168 -79
- package/dungeons/technical/simplest.js +1 -1
- package/dungeons/technical/text-generation-schema.json +7 -4
- package/dungeons/technical/text-generation.js +1 -2
- package/dungeons/vertical/community-schema.json +71 -49
- package/dungeons/vertical/community.js +8 -2
- package/dungeons/vertical/devtools-schema.json +69 -48
- package/dungeons/vertical/devtools.js +8 -2
- package/dungeons/vertical/ecommerce-schema.json +126 -108
- package/dungeons/vertical/ecommerce.js +9 -2
- package/dungeons/vertical/education-schema.json +5261 -272
- package/dungeons/vertical/education.js +16 -3
- package/dungeons/vertical/fintech-schema.json +165 -98
- package/dungeons/vertical/fintech.js +16 -3
- package/dungeons/vertical/fitness-schema.json +69 -47
- package/dungeons/vertical/fitness.js +8 -2
- package/dungeons/vertical/food-delivery-schema.json +36237 -187
- package/dungeons/vertical/food-delivery.js +16 -3
- package/dungeons/vertical/gaming-schema.json +103 -59
- package/dungeons/vertical/gaming.js +20 -9
- package/dungeons/vertical/healthcare-schema.json +70 -48
- package/dungeons/vertical/healthcare.js +8 -2
- package/dungeons/vertical/insurance-application-schema.json +66 -47
- package/dungeons/vertical/insurance-application.js +8 -2
- package/dungeons/vertical/logistics-schema.json +60 -38
- package/dungeons/vertical/logistics.js +8 -2
- package/dungeons/vertical/marketplace-schema.json +65 -43
- package/dungeons/vertical/marketplace.js +8 -2
- package/dungeons/vertical/media-schema.json +4085 -123
- package/dungeons/vertical/media.js +9 -3
- package/dungeons/vertical/rpg-schema.json +1984 -147
- package/dungeons/vertical/rpg.js +9 -3
- package/dungeons/vertical/sass-schema.json +2622 -147
- package/dungeons/vertical/sass.js +16 -3
- package/dungeons/vertical/social-schema.json +146 -78
- package/dungeons/vertical/social.js +16 -3
- package/dungeons/vertical/travel-schema.json +57 -35
- package/dungeons/vertical/travel.js +8 -2
- package/index.js +1 -1
- package/lib/core/context.js +9 -0
- package/lib/core/storage.js +2 -0
- package/lib/orchestrators/user-loop.js +4 -1
- package/package.json +1 -1
- package/scripts/extract-dungeon-schema.mjs +64 -18
- package/types.d.ts +3 -0
|
@@ -446,6 +446,9 @@
|
|
|
446
446
|
},
|
|
447
447
|
{
|
|
448
448
|
"event": "account deactivated",
|
|
449
|
+
"isChurnEvent": true,
|
|
450
|
+
"returnLikelihood": 0.1,
|
|
451
|
+
"isStrictEvent": true,
|
|
449
452
|
"properties": {
|
|
450
453
|
"reason": [
|
|
451
454
|
"too_expensive",
|
|
@@ -457,43 +460,6 @@
|
|
|
457
460
|
}
|
|
458
461
|
}
|
|
459
462
|
],
|
|
460
|
-
"superProps": {
|
|
461
|
-
"platform": [
|
|
462
|
-
"web",
|
|
463
|
-
"desktop_app"
|
|
464
|
-
],
|
|
465
|
-
"subscription_plan": [
|
|
466
|
-
"free_trial",
|
|
467
|
-
"starter",
|
|
468
|
-
"professional",
|
|
469
|
-
"enterprise"
|
|
470
|
-
]
|
|
471
|
-
},
|
|
472
|
-
"userProps": {
|
|
473
|
-
"company_tier": [
|
|
474
|
-
"small_business"
|
|
475
|
-
],
|
|
476
|
-
"warehouse_count": [
|
|
477
|
-
8,
|
|
478
|
-
3
|
|
479
|
-
],
|
|
480
|
-
"employee_count": {
|
|
481
|
-
"$range": [
|
|
482
|
-
94,
|
|
483
|
-
385
|
|
484
|
-
]
|
|
485
|
-
},
|
|
486
|
-
"industry": [
|
|
487
|
-
"retail",
|
|
488
|
-
"manufacturing",
|
|
489
|
-
"food_beverage",
|
|
490
|
-
"pharma",
|
|
491
|
-
"electronics"
|
|
492
|
-
],
|
|
493
|
-
"integration_count": [
|
|
494
|
-
0
|
|
495
|
-
]
|
|
496
|
-
},
|
|
497
463
|
"funnels": [
|
|
498
464
|
{
|
|
499
465
|
"sequence": [
|
|
@@ -502,6 +468,7 @@
|
|
|
502
468
|
"integration connected",
|
|
503
469
|
"report generated"
|
|
504
470
|
],
|
|
471
|
+
"name": "Onboarding",
|
|
505
472
|
"isFirstFunnel": true,
|
|
506
473
|
"conversionRate": 40,
|
|
507
474
|
"timeToConvert": 72,
|
|
@@ -514,6 +481,7 @@
|
|
|
514
481
|
"order received",
|
|
515
482
|
"shipment tracked"
|
|
516
483
|
],
|
|
484
|
+
"name": "Order Fulfillment",
|
|
517
485
|
"conversionRate": 35,
|
|
518
486
|
"timeToConvert": 168,
|
|
519
487
|
"weight": 5
|
|
@@ -524,6 +492,7 @@
|
|
|
524
492
|
"purchase order created",
|
|
525
493
|
"invoice processed"
|
|
526
494
|
],
|
|
495
|
+
"name": "Supplier Management",
|
|
527
496
|
"conversionRate": 45,
|
|
528
497
|
"timeToConvert": 336,
|
|
529
498
|
"weight": 3
|
|
@@ -534,6 +503,7 @@
|
|
|
534
503
|
"report generated",
|
|
535
504
|
"alert configured"
|
|
536
505
|
],
|
|
506
|
+
"name": "Integration Setup",
|
|
537
507
|
"conversionRate": 30,
|
|
538
508
|
"timeToConvert": 48,
|
|
539
509
|
"weight": 2
|
|
@@ -544,9 +514,61 @@
|
|
|
544
514
|
"purchase order created",
|
|
545
515
|
"order received"
|
|
546
516
|
],
|
|
517
|
+
"name": "Alert Response",
|
|
547
518
|
"conversionRate": 50,
|
|
548
519
|
"timeToConvert": 120,
|
|
549
520
|
"weight": 3
|
|
550
521
|
}
|
|
551
|
-
]
|
|
522
|
+
],
|
|
523
|
+
"superProps": {
|
|
524
|
+
"platform": [
|
|
525
|
+
"web",
|
|
526
|
+
"desktop_app"
|
|
527
|
+
],
|
|
528
|
+
"subscription_plan": [
|
|
529
|
+
"free_trial",
|
|
530
|
+
"starter",
|
|
531
|
+
"professional",
|
|
532
|
+
"enterprise"
|
|
533
|
+
]
|
|
534
|
+
},
|
|
535
|
+
"userProps": {
|
|
536
|
+
"company_tier": [
|
|
537
|
+
"small_business"
|
|
538
|
+
],
|
|
539
|
+
"warehouse_count": [
|
|
540
|
+
8,
|
|
541
|
+
3
|
|
542
|
+
],
|
|
543
|
+
"employee_count": {
|
|
544
|
+
"$range": [
|
|
545
|
+
94,
|
|
546
|
+
385
|
|
547
|
+
]
|
|
548
|
+
},
|
|
549
|
+
"industry": [
|
|
550
|
+
"retail",
|
|
551
|
+
"manufacturing",
|
|
552
|
+
"food_beverage",
|
|
553
|
+
"pharma",
|
|
554
|
+
"electronics"
|
|
555
|
+
],
|
|
556
|
+
"integration_count": [
|
|
557
|
+
0
|
|
558
|
+
]
|
|
559
|
+
},
|
|
560
|
+
"scdProps": {
|
|
561
|
+
"company_tier": {
|
|
562
|
+
"type": "user",
|
|
563
|
+
"frequency": "month",
|
|
564
|
+
"timing": "fuzzy",
|
|
565
|
+
"max": 6,
|
|
566
|
+
"values": [
|
|
567
|
+
"trial",
|
|
568
|
+
"starter",
|
|
569
|
+
"professional",
|
|
570
|
+
"enterprise"
|
|
571
|
+
]
|
|
572
|
+
}
|
|
573
|
+
}
|
|
552
574
|
}
|
|
@@ -272,10 +272,16 @@ const config = {
|
|
|
272
272
|
hasAdSpend: false,
|
|
273
273
|
percentUsersBornInDataset: 35,
|
|
274
274
|
hasAvatar: true,
|
|
275
|
-
batchSize: 2_500_000,
|
|
276
275
|
concurrency: 1,
|
|
277
276
|
writeToDisk: false,
|
|
278
|
-
scdProps: {
|
|
277
|
+
scdProps: {
|
|
278
|
+
company_tier: {
|
|
279
|
+
values: ["trial", "starter", "professional", "enterprise"],
|
|
280
|
+
frequency: "month",
|
|
281
|
+
timing: "fuzzy",
|
|
282
|
+
max: 6
|
|
283
|
+
}
|
|
284
|
+
},
|
|
279
285
|
mirrorProps: {},
|
|
280
286
|
lookupTables: [],
|
|
281
287
|
|
|
@@ -399,6 +399,9 @@
|
|
|
399
399
|
},
|
|
400
400
|
{
|
|
401
401
|
"event": "account deactivated",
|
|
402
|
+
"isChurnEvent": true,
|
|
403
|
+
"returnLikelihood": 0.15,
|
|
404
|
+
"isStrictEvent": true,
|
|
402
405
|
"properties": {
|
|
403
406
|
"reason": [
|
|
404
407
|
"low_sales",
|
|
@@ -410,48 +413,6 @@
|
|
|
410
413
|
}
|
|
411
414
|
}
|
|
412
415
|
],
|
|
413
|
-
"superProps": {
|
|
414
|
-
"platform": [
|
|
415
|
-
"ios",
|
|
416
|
-
"android",
|
|
417
|
-
"web"
|
|
418
|
-
],
|
|
419
|
-
"category": [
|
|
420
|
-
"electronics",
|
|
421
|
-
"clothing",
|
|
422
|
-
"home_garden",
|
|
423
|
-
"collectibles",
|
|
424
|
-
"sports",
|
|
425
|
-
"toys",
|
|
426
|
-
"automotive"
|
|
427
|
-
]
|
|
428
|
-
},
|
|
429
|
-
"userProps": {
|
|
430
|
-
"user_type": [
|
|
431
|
-
"buyer"
|
|
432
|
-
],
|
|
433
|
-
"segment": [
|
|
434
|
-
"window_shopper"
|
|
435
|
-
],
|
|
436
|
-
"seller_rating": {
|
|
437
|
-
"$range": [
|
|
438
|
-
1,
|
|
439
|
-
4
|
|
440
|
-
]
|
|
441
|
-
},
|
|
442
|
-
"total_transactions": [
|
|
443
|
-
0
|
|
444
|
-
],
|
|
445
|
-
"response_time_hours": {
|
|
446
|
-
"$range": [
|
|
447
|
-
7,
|
|
448
|
-
38
|
|
449
|
-
]
|
|
450
|
-
},
|
|
451
|
-
"store_name": [
|
|
452
|
-
"none"
|
|
453
|
-
]
|
|
454
|
-
},
|
|
455
416
|
"funnels": [
|
|
456
417
|
{
|
|
457
418
|
"sequence": [
|
|
@@ -460,6 +421,7 @@
|
|
|
460
421
|
"item viewed",
|
|
461
422
|
"add to cart"
|
|
462
423
|
],
|
|
424
|
+
"name": "Buyer Onboarding",
|
|
463
425
|
"isFirstFunnel": true,
|
|
464
426
|
"conversionRate": 40,
|
|
465
427
|
"timeToConvert": 72,
|
|
@@ -472,6 +434,7 @@
|
|
|
472
434
|
"add to cart",
|
|
473
435
|
"purchase completed"
|
|
474
436
|
],
|
|
437
|
+
"name": "Browse to Purchase",
|
|
475
438
|
"conversionRate": 30,
|
|
476
439
|
"timeToConvert": 48,
|
|
477
440
|
"weight": 5
|
|
@@ -483,6 +446,7 @@
|
|
|
483
446
|
"offer received",
|
|
484
447
|
"offer accepted"
|
|
485
448
|
],
|
|
449
|
+
"name": "Seller Listing Flow",
|
|
486
450
|
"conversionRate": 25,
|
|
487
451
|
"timeToConvert": 168,
|
|
488
452
|
"weight": 3
|
|
@@ -493,6 +457,7 @@
|
|
|
493
457
|
"message sent",
|
|
494
458
|
"offer accepted"
|
|
495
459
|
],
|
|
460
|
+
"name": "Offer Negotiation",
|
|
496
461
|
"conversionRate": 35,
|
|
497
462
|
"timeToConvert": 72,
|
|
498
463
|
"weight": 2
|
|
@@ -503,9 +468,66 @@
|
|
|
503
468
|
"shipping updated",
|
|
504
469
|
"review submitted"
|
|
505
470
|
],
|
|
471
|
+
"name": "Review After Purchase",
|
|
506
472
|
"conversionRate": 20,
|
|
507
473
|
"timeToConvert": 336,
|
|
508
474
|
"weight": 2
|
|
509
475
|
}
|
|
510
|
-
]
|
|
476
|
+
],
|
|
477
|
+
"superProps": {
|
|
478
|
+
"platform": [
|
|
479
|
+
"ios",
|
|
480
|
+
"android",
|
|
481
|
+
"web"
|
|
482
|
+
],
|
|
483
|
+
"category": [
|
|
484
|
+
"electronics",
|
|
485
|
+
"clothing",
|
|
486
|
+
"home_garden",
|
|
487
|
+
"collectibles",
|
|
488
|
+
"sports",
|
|
489
|
+
"toys",
|
|
490
|
+
"automotive"
|
|
491
|
+
]
|
|
492
|
+
},
|
|
493
|
+
"userProps": {
|
|
494
|
+
"user_type": [
|
|
495
|
+
"buyer"
|
|
496
|
+
],
|
|
497
|
+
"segment": [
|
|
498
|
+
"window_shopper"
|
|
499
|
+
],
|
|
500
|
+
"seller_rating": {
|
|
501
|
+
"$range": [
|
|
502
|
+
1,
|
|
503
|
+
4
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
"total_transactions": [
|
|
507
|
+
0
|
|
508
|
+
],
|
|
509
|
+
"response_time_hours": {
|
|
510
|
+
"$range": [
|
|
511
|
+
7,
|
|
512
|
+
38
|
|
513
|
+
]
|
|
514
|
+
},
|
|
515
|
+
"store_name": [
|
|
516
|
+
"none"
|
|
517
|
+
]
|
|
518
|
+
},
|
|
519
|
+
"scdProps": {
|
|
520
|
+
"seller_tier": {
|
|
521
|
+
"type": "user",
|
|
522
|
+
"frequency": "month",
|
|
523
|
+
"timing": "fuzzy",
|
|
524
|
+
"max": 8,
|
|
525
|
+
"values": [
|
|
526
|
+
"new",
|
|
527
|
+
"verified",
|
|
528
|
+
"power",
|
|
529
|
+
"featured"
|
|
530
|
+
]
|
|
531
|
+
}
|
|
532
|
+
}
|
|
511
533
|
}
|
|
@@ -269,10 +269,16 @@ const config = {
|
|
|
269
269
|
hasAdSpend: false,
|
|
270
270
|
percentUsersBornInDataset: 35,
|
|
271
271
|
hasAvatar: true,
|
|
272
|
-
batchSize: 2_500_000,
|
|
273
272
|
concurrency: 1,
|
|
274
273
|
writeToDisk: false,
|
|
275
|
-
scdProps: {
|
|
274
|
+
scdProps: {
|
|
275
|
+
seller_tier: {
|
|
276
|
+
values: ["new", "verified", "power", "featured"],
|
|
277
|
+
frequency: "month",
|
|
278
|
+
timing: "fuzzy",
|
|
279
|
+
max: 8
|
|
280
|
+
}
|
|
281
|
+
},
|
|
276
282
|
mirrorProps: {},
|
|
277
283
|
lookupTables: [],
|
|
278
284
|
|