@ak--47/dungeon-master 1.4.1 → 1.4.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.
@@ -31,7 +31,7 @@ export const MACRO_PRESETS = {
31
31
  */
32
32
  flat: {
33
33
  bornRecentBias: 0,
34
- percentUsersBornInDataset: 15,
34
+ percentUsersBornInDataset: 50,
35
35
  preExistingSpread: 'uniform',
36
36
  },
37
37
 
@@ -41,7 +41,7 @@ export const MACRO_PRESETS = {
41
41
  */
42
42
  steady: {
43
43
  bornRecentBias: 0.1,
44
- percentUsersBornInDataset: 10,
44
+ percentUsersBornInDataset: 35,
45
45
  preExistingSpread: 'uniform',
46
46
  },
47
47
 
@@ -51,7 +51,7 @@ export const MACRO_PRESETS = {
51
51
  */
52
52
  growth: {
53
53
  bornRecentBias: 0.3,
54
- percentUsersBornInDataset: 25,
54
+ percentUsersBornInDataset: 60,
55
55
  preExistingSpread: 'pinned',
56
56
  },
57
57
 
@@ -61,7 +61,7 @@ export const MACRO_PRESETS = {
61
61
  */
62
62
  viral: {
63
63
  bornRecentBias: 0.6,
64
- percentUsersBornInDataset: 50,
64
+ percentUsersBornInDataset: 95,
65
65
  preExistingSpread: 'pinned',
66
66
  },
67
67
 
@@ -71,7 +71,7 @@ export const MACRO_PRESETS = {
71
71
  */
72
72
  decline: {
73
73
  bornRecentBias: -0.3,
74
- percentUsersBornInDataset: 5,
74
+ percentUsersBornInDataset: 25,
75
75
  preExistingSpread: 'uniform',
76
76
  },
77
77
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ak--47/dungeon-master",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "generate fancy datasets",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/types.d.ts CHANGED
@@ -224,7 +224,7 @@ export interface Dungeon {
224
224
  // ── Distribution Controls ──
225
225
  // These three knobs are normally set by the `macro` preset (default "flat").
226
226
  // Setting them on the dungeon config directly overrides the preset's value.
227
- /** Percentage of users whose account creation falls within the dataset window (vs. pre-existing). Default (from macro: "flat"): 15 */
227
+ /** Percentage of users whose account creation falls within the dataset window (vs. pre-existing). Default (from macro: "flat"): 50 */
228
228
  percentUsersBornInDataset?: number;
229
229
  /** Bias for birth dates of users born in dataset. -1..1; negative = early skew, positive = recent skew, 0 = uniform. Default (from macro: "flat"): 0 */
230
230
  bornRecentBias?: number;