@ak--47/dungeon-master 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 +518 -0
- package/dungeons/array-of-object-lookup-schema.json +327 -0
- package/dungeons/array-of-object-lookup.js +220 -0
- package/dungeons/ecommerce-schema.json +462 -0
- package/dungeons/ecommerce.js +447 -0
- package/dungeons/education-schema.json +2409 -0
- package/dungeons/education.js +768 -0
- package/dungeons/fintech-schema.json +14034 -0
- package/dungeons/fintech.js +696 -0
- package/dungeons/foobar-schema.json +403 -0
- package/dungeons/foobar.js +296 -0
- package/dungeons/food-delivery-schema.json +192 -0
- package/dungeons/food-delivery.js +602 -0
- package/dungeons/food-schema.json +1152 -0
- package/dungeons/food.js +754 -0
- package/dungeons/gaming-schema.json +1270 -0
- package/dungeons/gaming.js +508 -0
- package/dungeons/insurance-application-schema.json +204 -0
- package/dungeons/insurance-application.js +605 -0
- package/dungeons/media-schema.json +906 -0
- package/dungeons/media.js +790 -0
- package/dungeons/retention-cadence-schema.json +78 -0
- package/dungeons/retention-cadence.js +244 -0
- package/dungeons/rpg-schema.json +4526 -0
- package/dungeons/rpg.js +919 -0
- package/dungeons/sanity-schema.json +255 -0
- package/dungeons/sanity.js +152 -0
- package/dungeons/sass-schema.json +1291 -0
- package/dungeons/sass.js +795 -0
- package/dungeons/scd-schema.json +919 -0
- package/dungeons/scd.js +277 -0
- package/dungeons/simple-schema.json +608 -0
- package/dungeons/simple.js +285 -0
- package/dungeons/simplest-schema.json +1418 -0
- package/dungeons/simplest.js +392 -0
- package/dungeons/social-schema.json +1118 -0
- package/dungeons/social.js +686 -0
- package/dungeons/text-generation-schema.json +3096 -0
- package/dungeons/text-generation.js +812 -0
- package/index.js +567 -0
- package/lib/core/config-validator.js +395 -0
- package/lib/core/context.js +204 -0
- package/lib/core/dungeon-loader.js +337 -0
- package/lib/core/storage.js +379 -0
- package/lib/generators/adspend.js +132 -0
- package/lib/generators/events.js +271 -0
- package/lib/generators/funnels.js +407 -0
- package/lib/generators/mirror.js +167 -0
- package/lib/generators/product-lookup.js +262 -0
- package/lib/generators/product-names.js +195 -0
- package/lib/generators/profiles.js +93 -0
- package/lib/generators/scd.js +124 -0
- package/lib/generators/text.js +1192 -0
- package/lib/orchestrators/mixpanel-sender.js +266 -0
- package/lib/orchestrators/user-loop.js +335 -0
- package/lib/templates/abbreviated.d.ts +169 -0
- package/lib/templates/defaults.js +1405 -0
- package/lib/templates/phrases.js +2526 -0
- package/lib/templates/schema.d.ts +173 -0
- package/lib/templates/soup-presets.js +188 -0
- package/lib/utils/function-registry.js +302 -0
- package/lib/utils/json-evaluator.js +172 -0
- package/lib/utils/logger.js +34 -0
- package/lib/utils/utils.js +1490 -0
- package/package.json +89 -0
- package/types.d.ts +865 -0
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
{
|
|
2
|
+
"events": [
|
|
3
|
+
{
|
|
4
|
+
"event": "account created",
|
|
5
|
+
"weight": 1,
|
|
6
|
+
"isFirstEvent": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"signup_source": ["web", "mobile", "agent_referral", "partner"],
|
|
9
|
+
"account_type": ["individual", "family", "business"]
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"event": "page viewed",
|
|
14
|
+
"weight": 10,
|
|
15
|
+
"properties": {
|
|
16
|
+
"page_name": ["home", "quotes", "coverage_options", "claims", "faq", "profile", "payment", "documents"],
|
|
17
|
+
"referrer": ["direct", "google", "email", "social_media"]
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"event": "quote requested",
|
|
22
|
+
"weight": 5,
|
|
23
|
+
"properties": {
|
|
24
|
+
"coverage_level": ["basic", "standard", "premium"],
|
|
25
|
+
"deductible": { "$range": [250, 5000] }
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"event": "quote received",
|
|
30
|
+
"weight": 4,
|
|
31
|
+
"properties": {
|
|
32
|
+
"monthly_premium": { "$range": [30, 800] },
|
|
33
|
+
"coverage_amount": { "$range": [10000, 500000] },
|
|
34
|
+
"quote_comparison_count": { "$range": [1, 5] }
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"event": "application started",
|
|
39
|
+
"weight": 4,
|
|
40
|
+
"properties": {
|
|
41
|
+
"coverage_level": ["basic", "standard", "premium"],
|
|
42
|
+
"estimated_premium": { "$range": [30, 800] }
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"event": "application step completed",
|
|
47
|
+
"weight": 6,
|
|
48
|
+
"properties": {
|
|
49
|
+
"step_name": ["personal_info", "coverage_selection", "medical_history", "vehicle_info", "beneficiary", "review"],
|
|
50
|
+
"step_number": { "$range": [1, 6] },
|
|
51
|
+
"time_on_step_sec": { "$range": [15, 600] }
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"event": "document uploaded",
|
|
56
|
+
"weight": 3,
|
|
57
|
+
"properties": {
|
|
58
|
+
"document_type": ["drivers_license", "proof_of_address", "vehicle_registration", "medical_records", "property_photos"],
|
|
59
|
+
"file_size_kb": { "$range": [50, 5000] }
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"event": "application submitted",
|
|
64
|
+
"weight": 3,
|
|
65
|
+
"properties": {
|
|
66
|
+
"documents_attached": { "$range": [1, 5] },
|
|
67
|
+
"application_time_min": { "$range": [5, 60] }
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"event": "application approved",
|
|
72
|
+
"weight": 2,
|
|
73
|
+
"properties": {
|
|
74
|
+
"approved_premium": { "$range": [30, 800] },
|
|
75
|
+
"approval_time_hours": { "$range": [1, 72] }
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"event": "policy activated",
|
|
80
|
+
"weight": 2,
|
|
81
|
+
"properties": {
|
|
82
|
+
"policy_term_months": [6, 12, 12, 12, 24],
|
|
83
|
+
"effective_date_offset_days": { "$range": [0, 30] }
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"event": "claim filed",
|
|
88
|
+
"weight": 2,
|
|
89
|
+
"properties": {
|
|
90
|
+
"claim_type": ["collision", "theft", "water_damage", "fire", "medical", "liability"],
|
|
91
|
+
"estimated_amount": { "$range": [100, 50000] }
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"event": "claim status checked",
|
|
96
|
+
"weight": 4,
|
|
97
|
+
"properties": {
|
|
98
|
+
"claim_status": ["submitted", "under_review", "approved", "denied", "payment_pending"],
|
|
99
|
+
"days_since_filed": { "$range": [1, 60] }
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"event": "payment made",
|
|
104
|
+
"weight": 5,
|
|
105
|
+
"properties": {
|
|
106
|
+
"payment_method": ["credit_card", "bank_transfer", "auto_pay", "check"],
|
|
107
|
+
"amount": { "$range": [30, 800] },
|
|
108
|
+
"payment_status": ["success", "success", "success", "success", "failed"]
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"event": "support ticket created",
|
|
113
|
+
"weight": 4,
|
|
114
|
+
"properties": {
|
|
115
|
+
"issue_category": ["billing", "claims", "coverage", "technical", "policy_change"],
|
|
116
|
+
"priority": ["low", "medium", "medium", "high"],
|
|
117
|
+
"channel": ["chat", "phone", "email", "web_form"]
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"event": "support ticket resolved",
|
|
122
|
+
"weight": 3,
|
|
123
|
+
"properties": {
|
|
124
|
+
"resolution_type": ["self_service", "agent_assisted", "escalated", "auto_resolved"],
|
|
125
|
+
"satisfaction_score": { "$range": [1, 5] },
|
|
126
|
+
"resolution_time_hours": { "$range": [1, 72] }
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"event": "coverage reviewed",
|
|
131
|
+
"weight": 4,
|
|
132
|
+
"properties": {
|
|
133
|
+
"current_premium": { "$range": [30, 800] },
|
|
134
|
+
"coverage_adequate": [true, true, true, false]
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"event": "profile updated",
|
|
139
|
+
"weight": 2,
|
|
140
|
+
"properties": {
|
|
141
|
+
"field_updated": ["address", "phone", "email", "beneficiary", "payment_method", "vehicle_info"]
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"event": "renewal completed",
|
|
146
|
+
"weight": 2,
|
|
147
|
+
"properties": {
|
|
148
|
+
"renewal_premium": { "$range": [30, 800] },
|
|
149
|
+
"premium_change_pct": { "$range": [-15, 20] },
|
|
150
|
+
"auto_renewed": [true, true, false]
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"superProps": {
|
|
155
|
+
"platform": ["web", "ios", "android"],
|
|
156
|
+
"insurance_type": ["auto", "home", "life", "health", "renters"]
|
|
157
|
+
},
|
|
158
|
+
"userProps": {
|
|
159
|
+
"age_range": ["18-25", "26-35", "36-45", "46-55", "56-65", "65+"],
|
|
160
|
+
"risk_profile": ["low", "medium", "high"],
|
|
161
|
+
"policy_count": { "$range": [0, 5] },
|
|
162
|
+
"lifetime_premium": { "$range": [0, 50000] },
|
|
163
|
+
"preferred_contact": ["email", "phone", "app_notification"]
|
|
164
|
+
},
|
|
165
|
+
"funnels": [
|
|
166
|
+
{
|
|
167
|
+
"name": "Onboarding",
|
|
168
|
+
"sequence": ["account created", "page viewed", "quote requested"],
|
|
169
|
+
"isFirstFunnel": true,
|
|
170
|
+
"conversionRate": 85,
|
|
171
|
+
"timeToConvert": 0.5
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "Application Completion",
|
|
175
|
+
"sequence": ["application started", "application step completed", "document uploaded", "application submitted"],
|
|
176
|
+
"conversionRate": 60,
|
|
177
|
+
"timeToConvert": 48,
|
|
178
|
+
"weight": 4,
|
|
179
|
+
"order": "sequential"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "Application Approval",
|
|
183
|
+
"sequence": ["application submitted", "application approved", "policy activated"],
|
|
184
|
+
"conversionRate": 70,
|
|
185
|
+
"timeToConvert": 72,
|
|
186
|
+
"weight": 3,
|
|
187
|
+
"order": "sequential"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "Claims Process",
|
|
191
|
+
"sequence": ["claim filed", "claim status checked", "support ticket created"],
|
|
192
|
+
"conversionRate": 50,
|
|
193
|
+
"timeToConvert": 24,
|
|
194
|
+
"weight": 2
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "Policy Renewal",
|
|
198
|
+
"sequence": ["coverage reviewed", "payment made", "renewal completed"],
|
|
199
|
+
"conversionRate": 65,
|
|
200
|
+
"timeToConvert": 72,
|
|
201
|
+
"weight": 3
|
|
202
|
+
}
|
|
203
|
+
]
|
|
204
|
+
}
|