make-mp-data 2.1.11 → 3.0.2
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 +31 -0
- package/dungeons/adspend.js +35 -1
- package/dungeons/anon.js +25 -1
- package/dungeons/array-of-object-lookup.js +201 -0
- package/dungeons/benchmark-heavy.js +241 -0
- package/dungeons/benchmark-light.js +141 -0
- package/dungeons/big.js +10 -9
- package/dungeons/business.js +60 -12
- package/dungeons/complex.js +35 -1
- package/dungeons/copilot.js +383 -0
- package/dungeons/education.js +1005 -0
- package/dungeons/experiments.js +18 -4
- package/dungeons/fintech.js +976 -0
- package/dungeons/foobar.js +32 -0
- package/dungeons/food.js +988 -0
- package/dungeons/funnels.js +38 -1
- package/dungeons/gaming.js +26 -5
- package/dungeons/media.js +861 -270
- package/dungeons/mil.js +31 -3
- package/dungeons/mirror.js +33 -1
- package/dungeons/retention-cadence.js +211 -0
- package/dungeons/rpg.js +1178 -0
- package/dungeons/sanity.js +32 -2
- package/dungeons/sass.js +923 -0
- package/dungeons/scd.js +47 -1
- package/dungeons/simple.js +29 -14
- package/dungeons/social.js +928 -0
- package/dungeons/streaming.js +373 -0
- package/dungeons/strict-event-test.js +30 -0
- package/dungeons/student-teacher.js +19 -5
- package/dungeons/text-generation.js +120 -84
- package/dungeons/too-big-events.js +203 -0
- package/dungeons/{userAgent.js → user-agent.js} +23 -2
- package/entry.js +5 -4
- package/index.js +41 -54
- package/lib/core/config-validator.js +122 -7
- package/lib/core/context.js +7 -14
- package/lib/core/storage.js +57 -25
- package/lib/generators/adspend.js +12 -12
- package/lib/generators/events.js +6 -5
- package/lib/generators/funnels.js +32 -10
- package/lib/generators/product-lookup.js +262 -0
- package/lib/generators/product-names.js +195 -0
- package/lib/generators/profiles.js +3 -3
- package/lib/generators/scd.js +13 -3
- package/lib/generators/text.js +17 -4
- package/lib/orchestrators/mixpanel-sender.js +244 -204
- package/lib/orchestrators/user-loop.js +54 -16
- package/lib/templates/phrases.js +473 -16
- package/lib/templates/schema.d.ts +173 -0
- package/lib/templates/verbose-schema.js +140 -206
- package/lib/utils/chart.js +210 -0
- package/lib/utils/function-registry.js +285 -0
- package/lib/utils/json-evaluator.js +172 -0
- package/lib/utils/logger.js +34 -0
- package/lib/utils/utils.js +41 -4
- package/package.json +12 -21
- package/types.d.ts +15 -5
- package/dungeons/ai-chat-analytics-ed.js +0 -274
- package/dungeons/money2020-ed-also.js +0 -277
- package/dungeons/money2020-ed.js +0 -579
- package/lib/generators/text-bak-old.js +0 -1121
- package/lib/orchestrators/worker-manager.js +0 -203
- package/lib/templates/hooks-instructions.txt +0 -434
- package/lib/templates/phrases-bak.js +0 -925
- package/lib/templates/prompt (old).txt +0 -98
- package/lib/templates/schema-instructions.txt +0 -155
- package/lib/templates/scratch-dungeon-template.js +0 -116
- package/lib/templates/textQuickTest.js +0 -172
- package/lib/utils/ai.js +0 -120
- package/lib/utils/project.js +0 -166
package/dungeons/foobar.js
CHANGED
|
@@ -232,6 +232,38 @@ const config = {
|
|
|
232
232
|
},
|
|
233
233
|
|
|
234
234
|
hook: function (record, type, meta) {
|
|
235
|
+
// event hook: high-weight events get a "hot" flag, low-weight get "cold"
|
|
236
|
+
if (type === "event") {
|
|
237
|
+
const hotEvents = ["foo", "bar", "baz"];
|
|
238
|
+
const coldEvents = ["crumn", "yak"];
|
|
239
|
+
if (hotEvents.includes(record.event)) {
|
|
240
|
+
record.temperature = "hot";
|
|
241
|
+
} else if (coldEvents.includes(record.event)) {
|
|
242
|
+
record.temperature = "cold";
|
|
243
|
+
} else {
|
|
244
|
+
record.temperature = "warm";
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
// everything hook: hash-based cohort — 10% of users (by distinct_id) get doubled events
|
|
249
|
+
if (type === "everything") {
|
|
250
|
+
if (record.length > 0) {
|
|
251
|
+
const userId = record[0].user_id || record[0].distinct_id || "";
|
|
252
|
+
if (userId && userId.charCodeAt(0) % 10 === 0) {
|
|
253
|
+
// power user: duplicate each event with a slight time offset
|
|
254
|
+
const extras = record.slice(0, 3).map(e => ({
|
|
255
|
+
...e,
|
|
256
|
+
event: e.event,
|
|
257
|
+
user_id: e.user_id,
|
|
258
|
+
time: e.time,
|
|
259
|
+
is_duplicate: true,
|
|
260
|
+
}));
|
|
261
|
+
return record.concat(extras);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
return record;
|
|
265
|
+
}
|
|
266
|
+
|
|
235
267
|
return record;
|
|
236
268
|
}
|
|
237
269
|
};
|