make-mp-data 2.0.23 → 2.1.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/dungeons/ai-chat-analytics-ed.js +274 -0
- package/dungeons/business.js +0 -1
- package/dungeons/complex.js +0 -1
- package/dungeons/experiments.js +0 -1
- package/dungeons/gaming.js +47 -14
- package/dungeons/media.js +5 -6
- package/dungeons/mil.js +296 -0
- package/dungeons/money2020-ed-also.js +277 -0
- package/dungeons/money2020-ed.js +579 -0
- package/dungeons/sanity.js +0 -1
- package/dungeons/scd.js +0 -1
- package/dungeons/simple.js +57 -18
- package/dungeons/student-teacher.js +0 -1
- package/dungeons/text-generation.js +706 -0
- package/dungeons/userAgent.js +1 -2
- package/entry.js +3 -0
- package/index.js +13 -40
- package/lib/cli/cli.js +0 -7
- package/lib/core/config-validator.js +6 -8
- package/lib/generators/adspend.js +1 -1
- package/lib/generators/events.js +1 -1
- package/lib/generators/funnels.js +293 -242
- package/lib/generators/text-bak-old.js +1121 -0
- package/lib/generators/text.js +1173 -0
- package/lib/orchestrators/mixpanel-sender.js +1 -1
- package/lib/templates/abbreviated.d.ts +13 -3
- package/lib/templates/defaults.js +311 -169
- package/lib/templates/hooks-instructions.txt +434 -0
- package/lib/templates/phrases-bak.js +925 -0
- package/lib/templates/phrases.js +2066 -0
- package/lib/templates/{instructions.txt → schema-instructions.txt} +78 -1
- package/lib/templates/scratch-dungeon-template.js +1 -1
- package/lib/templates/textQuickTest.js +172 -0
- package/lib/utils/ai.js +51 -2
- package/lib/utils/utils.js +29 -18
- package/package.json +7 -5
- package/types.d.ts +319 -4
- package/lib/utils/chart.js +0 -206
|
@@ -20,13 +20,6 @@ const campaigns = [
|
|
|
20
20
|
utm_content: ["$organic"],
|
|
21
21
|
utm_term: ["$organic"]
|
|
22
22
|
},
|
|
23
|
-
{
|
|
24
|
-
utm_source: ["facebook"],
|
|
25
|
-
utm_campaign: ["fb_free_trial", "fb_discount_US", "fb_summer_sale", "fb_black_friday", "fb_lookalike_audience"],
|
|
26
|
-
utm_medium: ["social_influencer", "paid_promoted", "ad_sidebar", "sponsored_search"],
|
|
27
|
-
utm_content: ["fb_control_group", "fb_variant_A", "fb_variant_B", "fb_variant_C", "fb_variant_D"],
|
|
28
|
-
utm_term: ["fb_jan_feb", "fb_mar_apr", "fb_may_jun", "fb_jul_aug", "fb_sep_oct", "fb_nov_dec"]
|
|
29
|
-
},
|
|
30
23
|
{
|
|
31
24
|
utm_source: ["snapchat"],
|
|
32
25
|
utm_campaign: ["sc_free_trial", "sc_discount_US", "sc_spring_sale", "sc_cyber_monday", "sc_lookalike_audience"],
|
|
@@ -75,380 +68,529 @@ const campaigns = [
|
|
|
75
68
|
utm_medium: ["promoted_post", "display_ad", "sidebar_ad"],
|
|
76
69
|
utm_content: ["rd_control_group", "rd_variant_A", "rd_variant_B", "rd_variant_C", "rd_variant_D"],
|
|
77
70
|
utm_term: ["rd_jan_feb", "rd_mar_apr", "rd_may_jun", "rd_jul_aug", "rd_sep_oct", "rd_nov_dec"]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
utm_source: ["x"],
|
|
74
|
+
utm_campaign: ["x_premium_ads", "x_community_notes", "x_creator_monetization", "x_grok_integration", "x_ai_targeting"],
|
|
75
|
+
utm_medium: ["sponsored_post", "promoted_reply", "trending_topic", "premium_placement"],
|
|
76
|
+
utm_content: ["x_control_group", "x_variant_A", "x_variant_B", "x_variant_C", "x_variant_D"],
|
|
77
|
+
utm_term: ["x_q1", "x_q2", "x_q3", "x_q4", "x_ongoing"]
|
|
78
78
|
}
|
|
79
|
+
|
|
79
80
|
];
|
|
80
81
|
|
|
81
82
|
const browsers = [
|
|
83
|
+
// 2025 Modern browsers (most common)
|
|
84
|
+
"Chrome",
|
|
82
85
|
"Chrome",
|
|
86
|
+
"Chrome", // Chrome dominance
|
|
87
|
+
"Safari",
|
|
88
|
+
"Safari",
|
|
89
|
+
"Microsoft Edge",
|
|
90
|
+
"Microsoft Edge",
|
|
91
|
+
"Firefox",
|
|
83
92
|
"Opera",
|
|
84
|
-
"Opera Mini",
|
|
85
|
-
"BlackBerry",
|
|
86
|
-
"Internet Explorer Mobile",
|
|
87
93
|
"Samsung Internet",
|
|
88
|
-
"
|
|
89
|
-
"
|
|
94
|
+
"DuckDuckGo Browser",
|
|
95
|
+
"Brave",
|
|
96
|
+
"Arc",
|
|
97
|
+
"Vivaldi",
|
|
98
|
+
|
|
99
|
+
// Mobile specific
|
|
100
|
+
"Mobile Safari",
|
|
101
|
+
"Chrome Mobile",
|
|
90
102
|
"Chrome iOS",
|
|
91
|
-
"UC Browser",
|
|
92
103
|
"Firefox iOS",
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
|
|
104
|
+
"Samsung Internet",
|
|
105
|
+
"Opera Mobile",
|
|
106
|
+
"DuckDuckGo Mobile",
|
|
107
|
+
"Brave Mobile",
|
|
108
|
+
|
|
109
|
+
// Specialized/niche
|
|
110
|
+
"Opera GX",
|
|
111
|
+
"Tor Browser",
|
|
112
|
+
"Yandex Browser",
|
|
113
|
+
"UC Browser",
|
|
114
|
+
"QQ Browser",
|
|
115
|
+
|
|
116
|
+
// Legacy (rare but still around)
|
|
98
117
|
"Internet Explorer",
|
|
118
|
+
"BlackBerry",
|
|
119
|
+
"Opera Mini",
|
|
120
|
+
"Konqueror",
|
|
99
121
|
"Mozilla"
|
|
100
122
|
];
|
|
101
123
|
|
|
102
124
|
const iosDevices = [
|
|
125
|
+
// iPhone 16 series (2024-2025 latest)
|
|
103
126
|
{
|
|
104
|
-
model: '
|
|
105
|
-
screen_height: '
|
|
106
|
-
screen_width: '
|
|
127
|
+
model: 'iPhone17,1', // iPhone 16 Pro
|
|
128
|
+
screen_height: '2868',
|
|
129
|
+
screen_width: '1320',
|
|
107
130
|
os: 'iOS',
|
|
108
131
|
Platform: 'iOS',
|
|
109
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
110
|
-
radio: ['
|
|
132
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible'],
|
|
133
|
+
radio: ['4G', 'LTE', '5G', '5G mmWave', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
134
|
+
}, {
|
|
135
|
+
model: 'iPhone17,2', // iPhone 16 Pro Max
|
|
136
|
+
screen_height: '2868',
|
|
137
|
+
screen_width: '1320',
|
|
138
|
+
os: 'iOS',
|
|
139
|
+
Platform: 'iOS',
|
|
140
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible'],
|
|
141
|
+
radio: ['4G', 'LTE', '5G', '5G mmWave', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
142
|
+
}, {
|
|
143
|
+
model: 'iPhone16,2', // iPhone 16 Plus
|
|
144
|
+
screen_height: '2796',
|
|
145
|
+
screen_width: '1290',
|
|
146
|
+
os: 'iOS',
|
|
147
|
+
Platform: 'iOS',
|
|
148
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible'],
|
|
149
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
111
150
|
}, {
|
|
112
|
-
model: '
|
|
151
|
+
model: 'iPhone16,1', // iPhone 16
|
|
113
152
|
screen_height: '2556',
|
|
114
153
|
screen_width: '1179',
|
|
115
154
|
os: 'iOS',
|
|
116
155
|
Platform: 'iOS',
|
|
117
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
118
|
-
radio: ['
|
|
119
|
-
},
|
|
120
|
-
|
|
156
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible'],
|
|
157
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
158
|
+
},
|
|
159
|
+
|
|
160
|
+
// iPhone 15 series (still popular)
|
|
161
|
+
{
|
|
162
|
+
model: 'iPhone15,3', // iPhone 15 Pro Max
|
|
121
163
|
screen_height: '2796',
|
|
122
164
|
screen_width: '1290',
|
|
123
165
|
os: 'iOS',
|
|
124
166
|
Platform: 'iOS',
|
|
125
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
126
|
-
radio: ['
|
|
167
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile'],
|
|
168
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E']
|
|
127
169
|
}, {
|
|
128
|
-
model: 'iPhone15,
|
|
170
|
+
model: 'iPhone15,2', // iPhone 15 Pro
|
|
129
171
|
screen_height: '2556',
|
|
130
172
|
screen_width: '1179',
|
|
131
173
|
os: 'iOS',
|
|
132
174
|
Platform: 'iOS',
|
|
133
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
134
|
-
radio: ['
|
|
175
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile'],
|
|
176
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E']
|
|
135
177
|
}, {
|
|
136
|
-
model: '
|
|
137
|
-
screen_height: '
|
|
138
|
-
screen_width: '
|
|
178
|
+
model: 'iPhone15,4', // iPhone 15 Plus
|
|
179
|
+
screen_height: '2796',
|
|
180
|
+
screen_width: '1290',
|
|
139
181
|
os: 'iOS',
|
|
140
182
|
Platform: 'iOS',
|
|
141
183
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
142
|
-
radio: ['
|
|
184
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6']
|
|
143
185
|
}, {
|
|
144
|
-
model: '
|
|
145
|
-
screen_height: '
|
|
146
|
-
screen_width: '
|
|
186
|
+
model: 'iPhone15,1', // iPhone 15
|
|
187
|
+
screen_height: '2556',
|
|
188
|
+
screen_width: '1179',
|
|
147
189
|
os: 'iOS',
|
|
148
190
|
Platform: 'iOS',
|
|
149
191
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
150
|
-
radio: ['
|
|
151
|
-
},
|
|
152
|
-
|
|
192
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6']
|
|
193
|
+
},
|
|
194
|
+
|
|
195
|
+
// iPhone 14 (still common)
|
|
196
|
+
{
|
|
197
|
+
model: 'iPhone14,7', // iPhone 14
|
|
153
198
|
screen_height: '2532',
|
|
154
199
|
screen_width: '1170',
|
|
155
200
|
os: 'iOS',
|
|
156
201
|
Platform: 'iOS',
|
|
157
202
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
158
|
-
radio: ['
|
|
203
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6']
|
|
159
204
|
}, {
|
|
160
|
-
model: '
|
|
161
|
-
screen_height: '
|
|
162
|
-
screen_width: '
|
|
163
|
-
os: '
|
|
205
|
+
model: 'iPhone14,6', // iPhone SE 3rd gen
|
|
206
|
+
screen_height: '1334',
|
|
207
|
+
screen_width: '750',
|
|
208
|
+
os: 'iOS',
|
|
164
209
|
Platform: 'iOS',
|
|
165
210
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
166
|
-
radio: ['
|
|
167
|
-
},
|
|
168
|
-
|
|
169
|
-
|
|
211
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6']
|
|
212
|
+
},
|
|
213
|
+
|
|
214
|
+
// iPad Pro M4 (2024-2025 latest)
|
|
215
|
+
{
|
|
216
|
+
model: 'iPad16,3', // iPad Pro 11" M4
|
|
217
|
+
screen_height: '2420',
|
|
170
218
|
screen_width: '1668',
|
|
171
219
|
os: 'iPadOS',
|
|
172
220
|
Platform: 'iOS',
|
|
173
221
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
174
|
-
radio: ['
|
|
222
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
175
223
|
}, {
|
|
176
|
-
model: '
|
|
177
|
-
screen_height: '
|
|
178
|
-
screen_width: '
|
|
224
|
+
model: 'iPad16,4', // iPad Pro 13" M4
|
|
225
|
+
screen_height: '2752',
|
|
226
|
+
screen_width: '2064',
|
|
179
227
|
os: 'iPadOS',
|
|
180
228
|
Platform: 'iOS',
|
|
181
229
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
182
|
-
radio: ['
|
|
183
|
-
},
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
230
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
231
|
+
},
|
|
232
|
+
|
|
233
|
+
// iPad Air M2 (2024)
|
|
234
|
+
{
|
|
235
|
+
model: 'iPad14,8', // iPad Air 11" M2
|
|
236
|
+
screen_height: '2360',
|
|
237
|
+
screen_width: '1640',
|
|
187
238
|
os: 'iPadOS',
|
|
188
239
|
Platform: 'iOS',
|
|
189
240
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
190
|
-
radio: ['
|
|
241
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E']
|
|
191
242
|
}, {
|
|
192
|
-
model: '
|
|
193
|
-
screen_height: '
|
|
194
|
-
screen_width: '
|
|
243
|
+
model: 'iPad14,9', // iPad Air 13" M2
|
|
244
|
+
screen_height: '2752',
|
|
245
|
+
screen_width: '2064',
|
|
195
246
|
os: 'iPadOS',
|
|
196
247
|
Platform: 'iOS',
|
|
197
248
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
198
|
-
radio: ['
|
|
199
|
-
},
|
|
200
|
-
|
|
249
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E']
|
|
250
|
+
},
|
|
251
|
+
|
|
252
|
+
// iPad 10th gen (budget option)
|
|
253
|
+
{
|
|
254
|
+
model: 'iPad13,18', // iPad 10th generation
|
|
201
255
|
screen_height: '2360',
|
|
202
256
|
screen_width: '1640',
|
|
203
257
|
os: 'iPadOS',
|
|
204
258
|
Platform: 'iOS',
|
|
205
259
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
206
|
-
radio: ['
|
|
260
|
+
radio: ['4G', 'LTE', 'Wifi', 'WiFi6']
|
|
207
261
|
}
|
|
208
262
|
];
|
|
209
263
|
|
|
210
264
|
const androidDevices = [
|
|
265
|
+
// Google Pixel (2024-2025 latest)
|
|
211
266
|
{
|
|
212
|
-
model: 'Pixel
|
|
213
|
-
screen_height: '
|
|
214
|
-
screen_width: '
|
|
267
|
+
model: 'Pixel 9 Pro XL',
|
|
268
|
+
screen_height: '2992',
|
|
269
|
+
screen_width: '1344',
|
|
215
270
|
os: 'Android',
|
|
216
271
|
Platform: 'Android',
|
|
217
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
218
|
-
radio: ['
|
|
272
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible', 'google fi'],
|
|
273
|
+
radio: ['4G', 'LTE', '5G', '5G mmWave', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
219
274
|
}, {
|
|
220
|
-
model: 'Pixel
|
|
221
|
-
screen_height: '
|
|
222
|
-
screen_width: '
|
|
275
|
+
model: 'Pixel 9 Pro',
|
|
276
|
+
screen_height: '2856',
|
|
277
|
+
screen_width: '1280',
|
|
223
278
|
os: 'Android',
|
|
224
279
|
Platform: 'Android',
|
|
225
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
226
|
-
radio: ['
|
|
280
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible', 'google fi'],
|
|
281
|
+
radio: ['4G', 'LTE', '5G', '5G mmWave', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
227
282
|
}, {
|
|
228
|
-
model: 'Pixel
|
|
229
|
-
screen_height: '
|
|
283
|
+
model: 'Pixel 9',
|
|
284
|
+
screen_height: '2424',
|
|
230
285
|
screen_width: '1080',
|
|
231
286
|
os: 'Android',
|
|
232
287
|
Platform: 'Android',
|
|
233
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
234
|
-
radio: ['
|
|
288
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible', 'google fi'],
|
|
289
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
235
290
|
}, {
|
|
236
|
-
model: 'Pixel
|
|
291
|
+
model: 'Pixel 8a',
|
|
292
|
+
screen_height: '2400',
|
|
293
|
+
screen_width: '1080',
|
|
294
|
+
os: 'Android',
|
|
295
|
+
Platform: 'Android',
|
|
296
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'google fi'],
|
|
297
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E']
|
|
298
|
+
},
|
|
299
|
+
|
|
300
|
+
// Samsung Galaxy S25 series (2025 latest)
|
|
301
|
+
{
|
|
302
|
+
model: 'Galaxy S25 Ultra',
|
|
237
303
|
screen_height: '3120',
|
|
238
304
|
screen_width: '1440',
|
|
239
305
|
os: 'Android',
|
|
240
306
|
Platform: 'Android',
|
|
241
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
242
|
-
radio: ['
|
|
307
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible'],
|
|
308
|
+
radio: ['4G', 'LTE', '5G', '5G mmWave', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
243
309
|
}, {
|
|
244
|
-
model: 'Galaxy
|
|
245
|
-
screen_height: '
|
|
246
|
-
screen_width: '
|
|
310
|
+
model: 'Galaxy S25+',
|
|
311
|
+
screen_height: '3120',
|
|
312
|
+
screen_width: '1440',
|
|
247
313
|
os: 'Android',
|
|
248
314
|
Platform: 'Android',
|
|
249
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
250
|
-
radio: ['
|
|
315
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile', 'visible'],
|
|
316
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
251
317
|
}, {
|
|
252
|
-
model: 'Galaxy
|
|
253
|
-
screen_height: '
|
|
254
|
-
screen_width: '
|
|
318
|
+
model: 'Galaxy S25',
|
|
319
|
+
screen_height: '2340',
|
|
320
|
+
screen_width: '1080',
|
|
255
321
|
os: 'Android',
|
|
256
322
|
Platform: 'Android',
|
|
257
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
258
|
-
radio: ['
|
|
259
|
-
},
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
323
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile'],
|
|
324
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
325
|
+
},
|
|
326
|
+
|
|
327
|
+
// Samsung Foldables (2024-2025)
|
|
328
|
+
{
|
|
329
|
+
model: 'Galaxy Z Fold 6',
|
|
330
|
+
screen_height: '2160',
|
|
331
|
+
screen_width: '1856',
|
|
263
332
|
os: 'Android',
|
|
264
333
|
Platform: 'Android',
|
|
265
334
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
266
|
-
radio: ['
|
|
335
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
267
336
|
}, {
|
|
268
|
-
model: 'Galaxy Z Flip
|
|
337
|
+
model: 'Galaxy Z Flip 6',
|
|
269
338
|
screen_height: '2640',
|
|
270
339
|
screen_width: '1080',
|
|
271
340
|
os: 'Android',
|
|
272
341
|
Platform: 'Android',
|
|
273
342
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
274
|
-
radio: ['
|
|
275
|
-
},
|
|
276
|
-
|
|
277
|
-
|
|
343
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
344
|
+
},
|
|
345
|
+
|
|
346
|
+
// OnePlus (2024-2025)
|
|
347
|
+
{
|
|
348
|
+
model: 'OnePlus 13',
|
|
349
|
+
screen_height: '3168',
|
|
278
350
|
screen_width: '1440',
|
|
279
351
|
os: 'Android',
|
|
280
352
|
Platform: 'Android',
|
|
281
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
282
|
-
radio: ['
|
|
353
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile'],
|
|
354
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
283
355
|
}, {
|
|
284
|
-
model: 'OnePlus
|
|
285
|
-
screen_height: '
|
|
356
|
+
model: 'OnePlus 12',
|
|
357
|
+
screen_height: '3168',
|
|
286
358
|
screen_width: '1440',
|
|
287
359
|
os: 'Android',
|
|
288
360
|
Platform: 'Android',
|
|
289
|
-
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
290
|
-
radio: ['
|
|
291
|
-
},
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
361
|
+
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular', 'mint mobile'],
|
|
362
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E']
|
|
363
|
+
},
|
|
364
|
+
|
|
365
|
+
// Nothing Phone (trendy brand)
|
|
366
|
+
{
|
|
367
|
+
model: 'Nothing Phone (2a)',
|
|
368
|
+
screen_height: '2412',
|
|
369
|
+
screen_width: '1084',
|
|
295
370
|
os: 'Android',
|
|
296
371
|
Platform: 'Android',
|
|
297
372
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
298
|
-
radio: ['
|
|
299
|
-
},
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
373
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6']
|
|
374
|
+
},
|
|
375
|
+
|
|
376
|
+
// Xiaomi (global presence)
|
|
377
|
+
{
|
|
378
|
+
model: 'Xiaomi 14 Ultra',
|
|
379
|
+
screen_height: '3200',
|
|
380
|
+
screen_width: '1440',
|
|
303
381
|
os: 'Android',
|
|
304
382
|
Platform: 'Android',
|
|
305
383
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
306
|
-
radio: ['
|
|
384
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E', 'WiFi7']
|
|
307
385
|
}, {
|
|
308
|
-
model: '
|
|
309
|
-
screen_height: '
|
|
310
|
-
screen_width: '
|
|
386
|
+
model: 'Redmi Note 13 Pro',
|
|
387
|
+
screen_height: '2712',
|
|
388
|
+
screen_width: '1220',
|
|
311
389
|
os: 'Android',
|
|
312
390
|
Platform: 'Android',
|
|
313
391
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
314
|
-
radio: ['
|
|
315
|
-
},
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
392
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6']
|
|
393
|
+
},
|
|
394
|
+
|
|
395
|
+
// Sony Xperia (still premium)
|
|
396
|
+
{
|
|
397
|
+
model: 'Sony Xperia 1 VI',
|
|
398
|
+
screen_height: '3840',
|
|
399
|
+
screen_width: '1644',
|
|
319
400
|
os: 'Android',
|
|
320
401
|
Platform: 'Android',
|
|
321
402
|
carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
|
|
322
|
-
radio: ['
|
|
403
|
+
radio: ['4G', 'LTE', '5G', 'Wifi', 'WiFi6', 'WiFi6E']
|
|
323
404
|
}
|
|
324
405
|
];
|
|
325
406
|
|
|
326
407
|
const desktopDevices = [
|
|
408
|
+
// Apple Silicon Macs (2024-2025 latest)
|
|
327
409
|
{
|
|
328
|
-
model: 'iMac 24-inch (
|
|
410
|
+
model: 'iMac 24-inch (M4, 2024)',
|
|
329
411
|
screen_height: '2520',
|
|
330
412
|
screen_width: '4480',
|
|
331
413
|
os: 'macOS',
|
|
332
414
|
Platform: 'Desktop'
|
|
333
415
|
}, {
|
|
334
|
-
model: '
|
|
416
|
+
model: 'Mac Studio (M4 Ultra, 2024)',
|
|
335
417
|
screen_height: '2880',
|
|
336
418
|
screen_width: '5120',
|
|
337
419
|
os: 'macOS',
|
|
338
420
|
Platform: 'Desktop'
|
|
339
421
|
}, {
|
|
340
|
-
model: 'Mac
|
|
422
|
+
model: 'Mac Pro (M3 Ultra, 2024)',
|
|
423
|
+
screen_height: '2160',
|
|
424
|
+
screen_width: '3840',
|
|
425
|
+
os: 'macOS',
|
|
426
|
+
Platform: 'Desktop'
|
|
427
|
+
}, {
|
|
428
|
+
model: 'Mac Mini (M4, 2024)',
|
|
341
429
|
screen_height: '2160',
|
|
342
430
|
screen_width: '3840',
|
|
343
431
|
os: 'macOS',
|
|
344
432
|
Platform: 'Desktop'
|
|
345
433
|
}, {
|
|
346
|
-
model: 'MacBook Air (
|
|
434
|
+
model: 'MacBook Air 15-inch (M3, 2024)',
|
|
435
|
+
screen_height: '1964',
|
|
436
|
+
screen_width: '2880',
|
|
437
|
+
os: 'macOS',
|
|
438
|
+
Platform: 'Desktop'
|
|
439
|
+
}, {
|
|
440
|
+
model: 'MacBook Air 13-inch (M3, 2024)',
|
|
347
441
|
screen_height: '1664',
|
|
348
442
|
screen_width: '2560',
|
|
349
443
|
os: 'macOS',
|
|
350
444
|
Platform: 'Desktop'
|
|
351
445
|
}, {
|
|
352
|
-
model: 'MacBook Pro 14-inch (
|
|
446
|
+
model: 'MacBook Pro 14-inch (M4 Pro, 2024)',
|
|
353
447
|
screen_height: '1964',
|
|
354
448
|
screen_width: '3024',
|
|
355
449
|
os: 'macOS',
|
|
356
450
|
Platform: 'Desktop'
|
|
357
451
|
}, {
|
|
358
|
-
model: 'MacBook Pro 16-inch (
|
|
452
|
+
model: 'MacBook Pro 16-inch (M4 Max, 2024)',
|
|
359
453
|
screen_height: '2234',
|
|
360
454
|
screen_width: '3456',
|
|
361
455
|
os: 'macOS',
|
|
362
456
|
Platform: 'Desktop'
|
|
363
|
-
},
|
|
364
|
-
|
|
457
|
+
},
|
|
458
|
+
|
|
459
|
+
// Windows Laptops (2024-2025)
|
|
460
|
+
{
|
|
461
|
+
model: 'Dell XPS 13 Plus (Intel Core Ultra)',
|
|
365
462
|
screen_height: '2160',
|
|
366
|
-
screen_width: '
|
|
367
|
-
os: '
|
|
368
|
-
Platform: 'Desktop'
|
|
369
|
-
}, {
|
|
370
|
-
model: 'iMac Pro (2017)',
|
|
371
|
-
screen_height: '2880',
|
|
372
|
-
screen_width: '5120',
|
|
373
|
-
os: 'macOS',
|
|
463
|
+
screen_width: '2880',
|
|
464
|
+
os: 'Windows',
|
|
374
465
|
Platform: 'Desktop'
|
|
375
466
|
}, {
|
|
376
|
-
model: 'Dell XPS 15',
|
|
467
|
+
model: 'Dell XPS 15 (Intel Core Ultra 9)',
|
|
377
468
|
screen_height: '2160',
|
|
378
469
|
screen_width: '3840',
|
|
379
470
|
os: 'Windows',
|
|
380
471
|
Platform: 'Desktop'
|
|
381
472
|
}, {
|
|
382
|
-
model: 'Dell XPS 17',
|
|
473
|
+
model: 'Dell XPS 17 (RTX 4080)',
|
|
383
474
|
screen_height: '2400',
|
|
384
475
|
screen_width: '3840',
|
|
385
476
|
os: 'Windows',
|
|
386
477
|
Platform: 'Desktop'
|
|
387
478
|
}, {
|
|
388
|
-
model: '
|
|
389
|
-
screen_height: '
|
|
390
|
-
screen_width: '
|
|
479
|
+
model: 'Microsoft Surface Laptop Studio 2',
|
|
480
|
+
screen_height: '1504',
|
|
481
|
+
screen_width: '2256',
|
|
391
482
|
os: 'Windows',
|
|
392
483
|
Platform: 'Desktop'
|
|
393
484
|
}, {
|
|
394
|
-
model: '
|
|
395
|
-
screen_height: '
|
|
396
|
-
screen_width: '
|
|
485
|
+
model: 'Microsoft Surface Pro 11',
|
|
486
|
+
screen_height: '1944',
|
|
487
|
+
screen_width: '2880',
|
|
397
488
|
os: 'Windows',
|
|
398
489
|
Platform: 'Desktop'
|
|
399
490
|
}, {
|
|
400
|
-
model: '
|
|
491
|
+
model: 'HP Spectre x360 16 (Intel Core Ultra)',
|
|
401
492
|
screen_height: '2160',
|
|
402
493
|
screen_width: '3840',
|
|
403
494
|
os: 'Windows',
|
|
404
495
|
Platform: 'Desktop'
|
|
405
496
|
}, {
|
|
406
|
-
model: 'HP
|
|
407
|
-
screen_height: '
|
|
408
|
-
screen_width: '
|
|
497
|
+
model: 'HP EliteBook 840 G11',
|
|
498
|
+
screen_height: '1200',
|
|
499
|
+
screen_width: '1920',
|
|
500
|
+
os: 'Windows',
|
|
501
|
+
Platform: 'Desktop'
|
|
502
|
+
}, {
|
|
503
|
+
model: 'Lenovo ThinkPad X1 Carbon Gen 12',
|
|
504
|
+
screen_height: '1200',
|
|
505
|
+
screen_width: '1920',
|
|
506
|
+
os: 'Windows',
|
|
507
|
+
Platform: 'Desktop'
|
|
508
|
+
}, {
|
|
509
|
+
model: 'Lenovo Yoga Pro 9i (RTX 4070)',
|
|
510
|
+
screen_height: '1600',
|
|
511
|
+
screen_width: '2560',
|
|
409
512
|
os: 'Windows',
|
|
410
513
|
Platform: 'Desktop'
|
|
411
514
|
}, {
|
|
412
|
-
model: '
|
|
515
|
+
model: 'ASUS ZenBook Pro 16X OLED',
|
|
413
516
|
screen_height: '2160',
|
|
414
517
|
screen_width: '3840',
|
|
415
518
|
os: 'Windows',
|
|
416
519
|
Platform: 'Desktop'
|
|
417
520
|
}, {
|
|
418
|
-
model: '
|
|
419
|
-
screen_height: '
|
|
521
|
+
model: 'ASUS ROG Zephyrus G16',
|
|
522
|
+
screen_height: '1200',
|
|
420
523
|
screen_width: '1920',
|
|
421
524
|
os: 'Windows',
|
|
422
525
|
Platform: 'Desktop'
|
|
423
|
-
},
|
|
424
|
-
|
|
526
|
+
},
|
|
527
|
+
|
|
528
|
+
// Gaming Desktops (2024-2025)
|
|
529
|
+
{
|
|
530
|
+
model: 'Alienware Aurora R16 (RTX 4090)',
|
|
425
531
|
screen_height: '2160',
|
|
426
532
|
screen_width: '3840',
|
|
427
533
|
os: 'Windows',
|
|
428
534
|
Platform: 'Desktop'
|
|
429
535
|
}, {
|
|
430
|
-
model: '
|
|
536
|
+
model: 'HP OMEN 45L (RTX 4080 Super)',
|
|
537
|
+
screen_height: '1440',
|
|
538
|
+
screen_width: '2560',
|
|
539
|
+
os: 'Windows',
|
|
540
|
+
Platform: 'Desktop'
|
|
541
|
+
}, {
|
|
542
|
+
model: 'Corsair One i500 (RTX 4090)',
|
|
431
543
|
screen_height: '2160',
|
|
432
544
|
screen_width: '3840',
|
|
433
545
|
os: 'Windows',
|
|
434
546
|
Platform: 'Desktop'
|
|
435
547
|
}, {
|
|
436
|
-
model: '
|
|
548
|
+
model: 'NZXT BLD H5 Elite',
|
|
549
|
+
screen_height: '1440',
|
|
550
|
+
screen_width: '2560',
|
|
551
|
+
os: 'Windows',
|
|
552
|
+
Platform: 'Desktop'
|
|
553
|
+
},
|
|
554
|
+
|
|
555
|
+
// Business/Office Desktops
|
|
556
|
+
{
|
|
557
|
+
model: 'Dell OptiPlex 7020 Plus',
|
|
437
558
|
screen_height: '1080',
|
|
438
559
|
screen_width: '1920',
|
|
439
560
|
os: 'Windows',
|
|
440
561
|
Platform: 'Desktop'
|
|
441
562
|
}, {
|
|
442
|
-
model: '
|
|
563
|
+
model: 'HP EliteDesk 805 G8',
|
|
443
564
|
screen_height: '1440',
|
|
444
565
|
screen_width: '2560',
|
|
445
566
|
os: 'Windows',
|
|
446
567
|
Platform: 'Desktop'
|
|
447
568
|
}, {
|
|
448
|
-
model: '
|
|
569
|
+
model: 'Lenovo ThinkCentre M90a Pro',
|
|
570
|
+
screen_height: '1440',
|
|
571
|
+
screen_width: '2560',
|
|
572
|
+
os: 'Windows',
|
|
573
|
+
Platform: 'Desktop'
|
|
574
|
+
},
|
|
575
|
+
|
|
576
|
+
// Linux/Alternative OS (growing presence)
|
|
577
|
+
{
|
|
578
|
+
model: 'System76 Thelio Major',
|
|
449
579
|
screen_height: '2160',
|
|
450
580
|
screen_width: '3840',
|
|
451
|
-
os: '
|
|
581
|
+
os: 'Pop!_OS',
|
|
582
|
+
Platform: 'Desktop'
|
|
583
|
+
}, {
|
|
584
|
+
model: 'Framework Laptop 16',
|
|
585
|
+
screen_height: '1600',
|
|
586
|
+
screen_width: '2560',
|
|
587
|
+
os: 'Linux',
|
|
588
|
+
Platform: 'Desktop'
|
|
589
|
+
}, {
|
|
590
|
+
model: 'Purism Librem 14',
|
|
591
|
+
screen_height: '1080',
|
|
592
|
+
screen_width: '1920',
|
|
593
|
+
os: 'PureOS',
|
|
452
594
|
Platform: 'Desktop'
|
|
453
595
|
}
|
|
454
596
|
];
|