@uniformdev/context 19.79.1-alpha.11 → 19.79.1-alpha.8

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/dist/index.esm.js CHANGED
@@ -76,119 +76,73 @@ function computeAggregateDimension(primitiveScores, aggregateDimension, allAggre
76
76
  // src/manifest/constants.ts
77
77
  var ENR_SEPARATOR = "_";
78
78
 
79
- // src/manifest/signals/SignalInstance.ts
80
- var _evaluator, _onLogMessage;
81
- var SignalInstance = class {
82
- constructor(data, evaluator, onLogMessage) {
83
- __privateAdd(this, _evaluator, void 0);
84
- __privateAdd(this, _onLogMessage, void 0);
85
- __publicField(this, "signal");
86
- this.signal = data;
87
- __privateSet(this, _evaluator, evaluator);
88
- __privateSet(this, _onLogMessage, onLogMessage);
89
- }
90
- /** Computes storage update commands to take based on a state update and the signal's criteria */
91
- computeSignal(update, commands) {
92
- const isAtCap = update.scores[this.signal.id] >= this.signal.cap;
93
- if (isAtCap && this.signal.dur !== "t") {
94
- return;
95
- }
96
- const criteriaMatchUpdate = __privateGet(this, _evaluator).evaluate(
97
- update,
98
- this.signal.crit,
99
- commands,
100
- this.signal,
101
- __privateGet(this, _onLogMessage)
102
- );
103
- const scoreCommand = this.signal.dur === "s" || this.signal.dur === "t" ? "modscoreS" : "modscore";
104
- if (!criteriaMatchUpdate.changed) {
105
- return;
106
- }
107
- if (criteriaMatchUpdate.result) {
108
- commands.push({
109
- type: scoreCommand,
110
- data: { dimension: this.signal.id, delta: this.signal.str }
111
- });
112
- } else if (this.signal.dur === "t") {
113
- const sessionScore = update.visitor.sessionScores[this.signal.id];
114
- if (sessionScore) {
115
- commands.push({
116
- type: scoreCommand,
117
- data: { dimension: this.signal.id, delta: -sessionScore }
118
- });
119
- }
120
- }
121
- }
122
- };
123
- _evaluator = new WeakMap();
124
- _onLogMessage = new WeakMap();
125
-
126
- // src/manifest/ManifestInstance.ts
127
- var _mf, _signalInstances, _onLogMessage2;
128
- var ManifestInstance = class {
129
- constructor({
130
- manifest,
131
- evaluator = new GroupCriteriaEvaluator({}),
132
- // eslint-disable-next-line @typescript-eslint/no-empty-function
133
- onLogMessage = () => {
134
- }
135
- }) {
136
- __publicField(this, "data");
137
- __privateAdd(this, _mf, void 0);
138
- __privateAdd(this, _signalInstances, void 0);
139
- __privateAdd(this, _onLogMessage2, void 0);
140
- var _a, _b, _c;
141
- __privateSet(this, _mf, (_a = manifest.project) != null ? _a : {});
142
- this.data = manifest;
143
- __privateSet(this, _signalInstances, Object.entries((_c = (_b = __privateGet(this, _mf).pz) == null ? void 0 : _b.sig) != null ? _c : []).map(
144
- ([id, signal]) => new SignalInstance({ ...signal, id }, evaluator, onLogMessage)
145
- ));
146
- __privateSet(this, _onLogMessage2, onLogMessage);
147
- }
148
- rollForControlGroup() {
149
- var _a, _b;
150
- return Math.random() < ((_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.control) != null ? _b : 0);
151
- }
152
- getTest(name) {
153
- var _a;
154
- return (_a = __privateGet(this, _mf).test) == null ? void 0 : _a[name];
79
+ // src/manifest/signals/criteria/util/isNumberMatch.ts
80
+ function isNumberMatch(lhs, match) {
81
+ var _a;
82
+ if (typeof lhs === "undefined" || lhs === null) {
83
+ return false;
155
84
  }
156
- computeSignals(update) {
157
- const commands = [];
158
- __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "GROUP"]);
159
- try {
160
- __privateGet(this, _signalInstances).forEach((signal) => {
161
- __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "GROUP", signal.signal]);
162
- try {
163
- signal.computeSignal(update, commands);
164
- } finally {
165
- __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "ENDGROUP"]);
166
- }
167
- });
168
- } finally {
169
- __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "ENDGROUP"]);
170
- }
171
- return commands;
85
+ const lhsValue = Number(lhs);
86
+ if (isNaN(lhsValue)) {
87
+ return false;
172
88
  }
173
- /**
174
- * Computes aggregated scores based on other dimensions
175
- */
176
- computeAggregateDimensions(primitiveScores) {
177
- var _a, _b;
178
- return computeAggregateDimensions(primitiveScores, (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.agg) != null ? _b : {});
89
+ switch ((_a = match == null ? void 0 : match.op) != null ? _a : "=") {
90
+ case "=":
91
+ return lhsValue === match.rhs;
92
+ case "!=":
93
+ return lhsValue !== match.rhs;
94
+ case ">":
95
+ return lhsValue > match.rhs;
96
+ case "<":
97
+ return lhsValue < match.rhs;
98
+ default:
99
+ console.warn(`Unknown match type ${match.op} is false.`);
100
+ return false;
179
101
  }
180
- getDimensionByKey(scoreKey) {
181
- var _a, _b, _c, _d;
182
- const enrichmentIndex = scoreKey.indexOf(ENR_SEPARATOR);
183
- if (enrichmentIndex <= 0) {
184
- return (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.sig) == null ? void 0 : _b[scoreKey];
102
+ }
103
+ function explainNumberMatch(lhs, match) {
104
+ return `${lhs} ${explainNumberMatchCriteria(match)}`;
105
+ }
106
+ function explainNumberMatchCriteria(match) {
107
+ return `${match.op} ${match.rhs}`;
108
+ }
109
+
110
+ // src/manifest/utils/getEnrichmentVectorKey.ts
111
+ function getEnrichmentVectorKey(category, value) {
112
+ return `${category}${ENR_SEPARATOR}${value}`;
113
+ }
114
+
115
+ // src/manifest/goals/evaluators/EnrichmentGoalEvaluator.ts
116
+ var _goal, _id;
117
+ var EnrichmentGoalEvaluator = class {
118
+ constructor(options) {
119
+ __privateAdd(this, _goal, void 0);
120
+ __privateAdd(this, _id, void 0);
121
+ __privateSet(this, _goal, options.goal);
122
+ __privateSet(this, _id, options.id);
123
+ }
124
+ get id() {
125
+ return __privateGet(this, _id);
126
+ }
127
+ evaluate({ scores }) {
128
+ const name = getEnrichmentVectorKey(__privateGet(this, _goal).cat, __privateGet(this, _goal).value);
129
+ const score = scores == null ? void 0 : scores[name];
130
+ if (typeof score !== "number") {
131
+ return {
132
+ triggered: false
133
+ };
185
134
  }
186
- return (_d = (_c = __privateGet(this, _mf).pz) == null ? void 0 : _c.enr) == null ? void 0 : _d[scoreKey.substring(0, enrichmentIndex)];
135
+ const isMatch = isNumberMatch(score, {
136
+ op: __privateGet(this, _goal).op,
137
+ rhs: __privateGet(this, _goal).score
138
+ });
139
+ return {
140
+ triggered: isMatch
141
+ };
187
142
  }
188
143
  };
189
- _mf = new WeakMap();
190
- _signalInstances = new WeakMap();
191
- _onLogMessage2 = new WeakMap();
144
+ _goal = new WeakMap();
145
+ _id = new WeakMap();
192
146
 
193
147
  // src/manifest/signals/criteria/evaluators/cookieEvaluator.ts
194
148
  import { dequal } from "dequal/lite";
@@ -307,42 +261,6 @@ var eventEvaluator = ({ update, criteria, onLogMessage }) => {
307
261
  return finalResult;
308
262
  };
309
263
 
310
- // src/manifest/utils/getEnrichmentVectorKey.ts
311
- function getEnrichmentVectorKey(category, value) {
312
- return `${category}${ENR_SEPARATOR}${value}`;
313
- }
314
-
315
- // src/manifest/signals/criteria/util/isNumberMatch.ts
316
- function isNumberMatch(lhs, match) {
317
- var _a;
318
- if (typeof lhs === "undefined" || lhs === null) {
319
- return false;
320
- }
321
- const lhsValue = Number(lhs);
322
- if (isNaN(lhsValue)) {
323
- return false;
324
- }
325
- switch ((_a = match == null ? void 0 : match.op) != null ? _a : "=") {
326
- case "=":
327
- return lhsValue === match.rhs;
328
- case "!=":
329
- return lhsValue !== match.rhs;
330
- case ">":
331
- return lhsValue > match.rhs;
332
- case "<":
333
- return lhsValue < match.rhs;
334
- default:
335
- console.warn(`Unknown match type ${match.op} is false.`);
336
- return false;
337
- }
338
- }
339
- function explainNumberMatch(lhs, match) {
340
- return `${lhs} ${explainNumberMatchCriteria(match)}`;
341
- }
342
- function explainNumberMatchCriteria(match) {
343
- return `${match.op} ${match.rhs}`;
344
- }
345
-
346
264
  // src/manifest/signals/criteria/evaluators/pageViewCountEvaluator.ts
347
265
  var pageViewCountDimension = getEnrichmentVectorKey("$pvc", "v");
348
266
  var pageViewCountEvaluator = ({ update, criteria, commands, onLogMessage }) => {
@@ -472,6 +390,232 @@ var GroupCriteriaEvaluator = class {
472
390
  };
473
391
  _evaluators = new WeakMap();
474
392
 
393
+ // src/manifest/goals/evaluators/QuirkGoalEvaluator.ts
394
+ var _goal2, _id2;
395
+ var QuirkGoalEvaluator = class {
396
+ constructor(options) {
397
+ __privateAdd(this, _goal2, void 0);
398
+ __privateAdd(this, _id2, void 0);
399
+ __privateSet(this, _goal2, options.goal);
400
+ __privateSet(this, _id2, options.id);
401
+ }
402
+ get id() {
403
+ return __privateGet(this, _id2);
404
+ }
405
+ evaluate({ quirks }) {
406
+ const quirkValue = quirks == null ? void 0 : quirks[__privateGet(this, _goal2).id];
407
+ if (typeof quirkValue !== "string") {
408
+ return {
409
+ triggered: false
410
+ };
411
+ }
412
+ const isMatch = isStringMatch(quirkValue, {
413
+ op: __privateGet(this, _goal2).op,
414
+ rhs: __privateGet(this, _goal2).value,
415
+ cs: __privateGet(this, _goal2).cs
416
+ });
417
+ return {
418
+ triggered: isMatch
419
+ };
420
+ }
421
+ };
422
+ _goal2 = new WeakMap();
423
+ _id2 = new WeakMap();
424
+
425
+ // src/manifest/goals/evaluators/SignalGoalEvaluator.ts
426
+ var _goal3, _id3;
427
+ var SignalGoalEvaluator = class {
428
+ constructor(options) {
429
+ __privateAdd(this, _goal3, void 0);
430
+ __privateAdd(this, _id3, void 0);
431
+ __privateSet(this, _id3, options.id);
432
+ __privateSet(this, _goal3, options.goal);
433
+ }
434
+ get id() {
435
+ return __privateGet(this, _id3);
436
+ }
437
+ evaluate({ scores }) {
438
+ const score = scores == null ? void 0 : scores[__privateGet(this, _goal3).id];
439
+ if (typeof score !== "number") {
440
+ return {
441
+ triggered: false
442
+ };
443
+ }
444
+ const isMatch = isNumberMatch(score, {
445
+ op: __privateGet(this, _goal3).op,
446
+ rhs: __privateGet(this, _goal3).score
447
+ });
448
+ return {
449
+ triggered: isMatch
450
+ };
451
+ }
452
+ };
453
+ _goal3 = new WeakMap();
454
+ _id3 = new WeakMap();
455
+
456
+ // src/manifest/goals/evaluators/index.ts
457
+ var resolveGoalEvaluator = ({ id, goal }) => {
458
+ let evaluator;
459
+ if (goal.type === "sig") {
460
+ evaluator = new SignalGoalEvaluator({
461
+ id,
462
+ goal
463
+ });
464
+ } else if (goal.type === "enr") {
465
+ evaluator = new EnrichmentGoalEvaluator({
466
+ id,
467
+ goal
468
+ });
469
+ } else if (goal.type === "qrk") {
470
+ evaluator = new QuirkGoalEvaluator({
471
+ id,
472
+ goal
473
+ });
474
+ }
475
+ return evaluator;
476
+ };
477
+
478
+ // src/manifest/signals/SignalInstance.ts
479
+ var _evaluator, _onLogMessage;
480
+ var SignalInstance = class {
481
+ constructor(data, evaluator, onLogMessage) {
482
+ __privateAdd(this, _evaluator, void 0);
483
+ __privateAdd(this, _onLogMessage, void 0);
484
+ __publicField(this, "signal");
485
+ this.signal = data;
486
+ __privateSet(this, _evaluator, evaluator);
487
+ __privateSet(this, _onLogMessage, onLogMessage);
488
+ }
489
+ /** Computes storage update commands to take based on a state update and the signal's criteria */
490
+ computeSignal(update, commands) {
491
+ const isAtCap = update.scores[this.signal.id] >= this.signal.cap;
492
+ if (isAtCap && this.signal.dur !== "t") {
493
+ return;
494
+ }
495
+ const criteriaMatchUpdate = __privateGet(this, _evaluator).evaluate(
496
+ update,
497
+ this.signal.crit,
498
+ commands,
499
+ this.signal,
500
+ __privateGet(this, _onLogMessage)
501
+ );
502
+ const scoreCommand = this.signal.dur === "s" || this.signal.dur === "t" ? "modscoreS" : "modscore";
503
+ if (!criteriaMatchUpdate.changed) {
504
+ return;
505
+ }
506
+ if (criteriaMatchUpdate.result) {
507
+ commands.push({
508
+ type: scoreCommand,
509
+ data: { dimension: this.signal.id, delta: this.signal.str }
510
+ });
511
+ } else if (this.signal.dur === "t") {
512
+ const sessionScore = update.visitor.sessionScores[this.signal.id];
513
+ if (sessionScore) {
514
+ commands.push({
515
+ type: scoreCommand,
516
+ data: { dimension: this.signal.id, delta: -sessionScore }
517
+ });
518
+ }
519
+ }
520
+ }
521
+ };
522
+ _evaluator = new WeakMap();
523
+ _onLogMessage = new WeakMap();
524
+
525
+ // src/manifest/ManifestInstance.ts
526
+ var _mf, _signalInstances, _goalEvaluators, _onLogMessage2;
527
+ var ManifestInstance = class {
528
+ constructor({
529
+ manifest,
530
+ evaluator = new GroupCriteriaEvaluator({}),
531
+ // eslint-disable-next-line @typescript-eslint/no-empty-function
532
+ onLogMessage = () => {
533
+ }
534
+ }) {
535
+ __publicField(this, "data");
536
+ __privateAdd(this, _mf, void 0);
537
+ __privateAdd(this, _signalInstances, void 0);
538
+ __privateAdd(this, _goalEvaluators, void 0);
539
+ __privateAdd(this, _onLogMessage2, void 0);
540
+ var _a, _b, _c, _d;
541
+ __privateSet(this, _mf, (_a = manifest.project) != null ? _a : {});
542
+ this.data = manifest;
543
+ __privateSet(this, _signalInstances, Object.entries((_c = (_b = __privateGet(this, _mf).pz) == null ? void 0 : _b.sig) != null ? _c : []).map(
544
+ ([id, signal]) => new SignalInstance({ ...signal, id }, evaluator, onLogMessage)
545
+ ));
546
+ __privateSet(this, _goalEvaluators, Object.entries((_d = __privateGet(this, _mf).goal) != null ? _d : {}).map(([id, goal]) => {
547
+ const evaluator2 = resolveGoalEvaluator({
548
+ id,
549
+ goal
550
+ });
551
+ if (!evaluator2) {
552
+ console.warn(`Unable to resolve goal evaluator for goal ${id}`);
553
+ }
554
+ return evaluator2;
555
+ }).filter((evaluator2) => !!evaluator2));
556
+ __privateSet(this, _onLogMessage2, onLogMessage);
557
+ }
558
+ rollForControlGroup() {
559
+ var _a, _b;
560
+ return Math.random() < ((_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.control) != null ? _b : 0);
561
+ }
562
+ getTest(name) {
563
+ var _a;
564
+ return (_a = __privateGet(this, _mf).test) == null ? void 0 : _a[name];
565
+ }
566
+ computeSignals(update) {
567
+ const commands = [];
568
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "GROUP"]);
569
+ try {
570
+ __privateGet(this, _signalInstances).forEach((signal) => {
571
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "GROUP", signal.signal]);
572
+ try {
573
+ signal.computeSignal(update, commands);
574
+ } finally {
575
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "ENDGROUP"]);
576
+ }
577
+ });
578
+ } finally {
579
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "ENDGROUP"]);
580
+ }
581
+ return commands;
582
+ }
583
+ computeGoals(data) {
584
+ const commands = [];
585
+ __privateGet(this, _goalEvaluators).forEach((evaluator) => {
586
+ const { triggered } = evaluator.evaluate(data);
587
+ if (triggered) {
588
+ commands.push({
589
+ type: "setgoal",
590
+ data: {
591
+ goal: evaluator.id
592
+ }
593
+ });
594
+ }
595
+ });
596
+ return commands;
597
+ }
598
+ /**
599
+ * Computes aggregated scores based on other dimensions
600
+ */
601
+ computeAggregateDimensions(primitiveScores) {
602
+ var _a, _b;
603
+ return computeAggregateDimensions(primitiveScores, (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.agg) != null ? _b : {});
604
+ }
605
+ getDimensionByKey(scoreKey) {
606
+ var _a, _b, _c, _d;
607
+ const enrichmentIndex = scoreKey.indexOf(ENR_SEPARATOR);
608
+ if (enrichmentIndex <= 0) {
609
+ return (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.sig) == null ? void 0 : _b[scoreKey];
610
+ }
611
+ return (_d = (_c = __privateGet(this, _mf).pz) == null ? void 0 : _c.enr) == null ? void 0 : _d[scoreKey.substring(0, enrichmentIndex)];
612
+ }
613
+ };
614
+ _mf = new WeakMap();
615
+ _signalInstances = new WeakMap();
616
+ _goalEvaluators = new WeakMap();
617
+ _onLogMessage2 = new WeakMap();
618
+
475
619
  // src/placement/criteria/evaluateVariantMatch.ts
476
620
  function evaluateVariantMatch(variantId, match, vec, onLogMessage) {
477
621
  onLogMessage == null ? void 0 : onLogMessage(["info", 301, "GROUP", { id: variantId, op: match == null ? void 0 : match.op }]);
@@ -975,6 +1119,7 @@ var emptyVisitorData = () => ({
975
1119
  scores: {},
976
1120
  sessionScores: {},
977
1121
  tests: {},
1122
+ goals: {},
978
1123
  consent: false,
979
1124
  controlGroup: false
980
1125
  });
@@ -989,7 +1134,7 @@ var clone = rfdc();
989
1134
  function applyCommandsToData(commands, state, inControlGroup) {
990
1135
  const newData = state ? clone(state) : emptyVisitorData();
991
1136
  commands.forEach((command) => {
992
- var _a, _b;
1137
+ var _a, _b, _c;
993
1138
  switch (command.type) {
994
1139
  case "consent":
995
1140
  newData.consent = command.data;
@@ -1025,6 +1170,10 @@ function applyCommandsToData(commands, state, inControlGroup) {
1025
1170
  case "setcontrol":
1026
1171
  newData.controlGroup = command.data;
1027
1172
  break;
1173
+ case "setgoal":
1174
+ newData.goals = (_c = newData.goals) != null ? _c : {};
1175
+ newData.goals[command.data.goal] = true;
1176
+ break;
1028
1177
  default:
1029
1178
  throw new Error(`Unknown command`);
1030
1179
  }
@@ -1190,7 +1339,7 @@ currentData_get = function() {
1190
1339
  };
1191
1340
  _replaceData = new WeakSet();
1192
1341
  replaceData_fn = function(data, quiet = false) {
1193
- var _a, _b, _c, _d, _e, _f, _g, _h, _i;
1342
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k;
1194
1343
  const oldData = __privateGet(this, _currentData, currentData_get);
1195
1344
  const now = Date.now();
1196
1345
  if (data.controlGroup) {
@@ -1211,6 +1360,7 @@ replaceData_fn = function(data, quiet = false) {
1211
1360
  const haveSessionScoresChanged = !dequal3(oldData == null ? void 0 : oldData.visitorData.sessionScores, data.sessionScores);
1212
1361
  const haveQuirksChanged = !dequal3(oldData == null ? void 0 : oldData.visitorData.quirks, data.quirks);
1213
1362
  const haveTestsChanged = !dequal3(oldData == null ? void 0 : oldData.visitorData.tests, data.tests);
1363
+ const haveGoalsChanged = !dequal3(oldData == null ? void 0 : oldData.visitorData.goals, data.goals);
1214
1364
  const updatedData = {
1215
1365
  updated: now,
1216
1366
  visitorData: data
@@ -1235,6 +1385,15 @@ replaceData_fn = function(data, quiet = false) {
1235
1385
  __privateGet(this, _mitt2).emit("controlGroupUpdated", data);
1236
1386
  (_i = (_h = __privateGet(this, _options)).onLogMessage) == null ? void 0 : _i.call(_h, ["debug", 104, (_g = data.controlGroup) != null ? _g : false]);
1237
1387
  }
1388
+ if (haveGoalsChanged) {
1389
+ const newGoalKeys = Object.keys((_j = data.goals) != null ? _j : {});
1390
+ for (let i = 0; i < newGoalKeys.length; i++) {
1391
+ const key = newGoalKeys[i];
1392
+ if (!((_k = oldData == null ? void 0 : oldData.visitorData.goals) == null ? void 0 : _k[key])) {
1393
+ __privateGet(this, _mitt2).emit("goalConverted", { goalId: key });
1394
+ }
1395
+ }
1396
+ }
1238
1397
  }
1239
1398
  };
1240
1399
  _setVisitTimeout = new WeakSet();
@@ -1287,10 +1446,10 @@ import { dequal as dequal4 } from "dequal/lite";
1287
1446
  import mitt3 from "mitt";
1288
1447
  var CONTEXTUAL_EDITING_TEST_NAME = "contextual_editing_test";
1289
1448
  var CONTEXTUAL_EDITING_TEST_SELECTED_VARIANT_ID = "contextual_editing_test_selected_variant";
1290
- var _serverTransitionState, _scores, _state, _pzCache, _mitt3, _emitTest, emitTest_fn, _updateComputedScores, updateComputedScores_fn, _calculateScores, calculateScores_fn;
1449
+ var _serverTransitionState, _scores, _state, _pzCache, _plugins, _mitt3, _updateGoals, updateGoals_fn, _updateComputedScores, updateComputedScores_fn, _calculateScores, calculateScores_fn;
1291
1450
  var Context = class {
1292
1451
  constructor(options) {
1293
- __privateAdd(this, _emitTest);
1452
+ __privateAdd(this, _updateGoals);
1294
1453
  __privateAdd(this, _updateComputedScores);
1295
1454
  __privateAdd(this, _calculateScores);
1296
1455
  __publicField(this, "manifest");
@@ -1298,6 +1457,7 @@ var Context = class {
1298
1457
  __privateAdd(this, _scores, {});
1299
1458
  __privateAdd(this, _state, void 0);
1300
1459
  __privateAdd(this, _pzCache, {});
1460
+ __privateAdd(this, _plugins, void 0);
1301
1461
  __privateAdd(this, _mitt3, mitt3());
1302
1462
  /**
1303
1463
  * Subscribe to events
@@ -1310,7 +1470,8 @@ var Context = class {
1310
1470
  var _a, _b;
1311
1471
  const { manifest, ...storageOptions } = options;
1312
1472
  __privateSet(this, _state, {});
1313
- (_a = options.plugins) == null ? void 0 : _a.forEach((plugin) => {
1473
+ __privateSet(this, _plugins, options.plugins);
1474
+ (_a = __privateGet(this, _plugins)) == null ? void 0 : _a.forEach((plugin) => {
1314
1475
  if (!plugin.logDrain) {
1315
1476
  return;
1316
1477
  }
@@ -1353,11 +1514,15 @@ var Context = class {
1353
1514
  previousState: __privateGet(this, _state),
1354
1515
  visitor: this.storage.data
1355
1516
  });
1517
+ __privateMethod(this, _updateGoals, updateGoals_fn).call(this, {
1518
+ quirks: quirks.quirks,
1519
+ scores: void 0
1520
+ });
1356
1521
  this.storage.updateData(updates);
1357
1522
  __privateGet(this, _mitt3).emit("quirksUpdated", quirks.quirks);
1358
1523
  __privateGet(this, _mitt3).emit("log", ["info", 4, quirks.quirks]);
1359
1524
  });
1360
- (_b = options.plugins) == null ? void 0 : _b.forEach((plugin) => {
1525
+ (_b = __privateGet(this, _plugins)) == null ? void 0 : _b.forEach((plugin) => {
1361
1526
  if (!plugin.init) {
1362
1527
  return;
1363
1528
  }
@@ -1367,6 +1532,13 @@ var Context = class {
1367
1532
  __privateGet(this, _mitt3).emit("log", ["info", 1, "ENDGROUP"]);
1368
1533
  }
1369
1534
  }
1535
+ internal_emitPersonalizationResult(event) {
1536
+ __privateGet(this, _mitt3).emit("personalizationResult", event);
1537
+ __privateGet(this, _pzCache)[event.name] = event.variantIds;
1538
+ }
1539
+ internal_emitTestResult(event) {
1540
+ __privateGet(this, _mitt3).emit("testResult", event);
1541
+ }
1370
1542
  /** Gets the current visitor's dimension score vector. */
1371
1543
  get scores() {
1372
1544
  return __privateGet(this, _scores);
@@ -1472,7 +1644,7 @@ var Context = class {
1472
1644
  if (__privateGet(this, _serverTransitionState)) {
1473
1645
  __privateMethod(this, _updateComputedScores, updateComputedScores_fn).call(this, this.storage.data);
1474
1646
  Object.entries(newServerSideTests).forEach(([testName, testVariantId]) => {
1475
- __privateMethod(this, _emitTest, emitTest_fn).call(this, {
1647
+ this.internal_emitTestResult({
1476
1648
  name: testName,
1477
1649
  variantId: testVariantId,
1478
1650
  variantAssigned: true
@@ -1481,6 +1653,15 @@ var Context = class {
1481
1653
  __privateSet(this, _serverTransitionState, void 0);
1482
1654
  __privateGet(this, _mitt3).emit("log", ["debug", 131]);
1483
1655
  }
1656
+ if (__privateGet(this, _plugins)) {
1657
+ for (let i = 0; i < __privateGet(this, _plugins).length; i++) {
1658
+ const plugin = __privateGet(this, _plugins)[i];
1659
+ if (!plugin.update) {
1660
+ continue;
1661
+ }
1662
+ await plugin.update(newData);
1663
+ }
1664
+ }
1484
1665
  } finally {
1485
1666
  __privateGet(this, _mitt3).emit("log", ["info", 2, "ENDGROUP"]);
1486
1667
  }
@@ -1532,7 +1713,7 @@ var Context = class {
1532
1713
  context: this,
1533
1714
  onLogMessage: (message) => __privateGet(this, _mitt3).emit("log", message)
1534
1715
  });
1535
- __privateMethod(this, _emitTest, emitTest_fn).call(this, {
1716
+ this.internal_emitTestResult({
1536
1717
  name: options.name,
1537
1718
  variantId: (_c = (_b = value.result) == null ? void 0 : _b.id) != null ? _c : void 0,
1538
1719
  variantAssigned: value.variantAssigned
@@ -1559,8 +1740,7 @@ var Context = class {
1559
1740
  if (previousPlacement && dequal4(eventData.variantIds, previousPlacement)) {
1560
1741
  eventData.changed = false;
1561
1742
  }
1562
- __privateGet(this, _mitt3).emit("personalizationResult", eventData);
1563
- __privateGet(this, _pzCache)[options.name] = eventData.variantIds;
1743
+ this.internal_emitPersonalizationResult(eventData);
1564
1744
  return value;
1565
1745
  }
1566
1746
  /**
@@ -1569,6 +1749,15 @@ var Context = class {
1569
1749
  */
1570
1750
  async forget(fromAllDevices) {
1571
1751
  __privateSet(this, _state, {});
1752
+ if (__privateGet(this, _plugins)) {
1753
+ for (let i = 0; i < __privateGet(this, _plugins).length; i++) {
1754
+ const plugin = __privateGet(this, _plugins)[i];
1755
+ if (!plugin.forget) {
1756
+ continue;
1757
+ }
1758
+ await plugin.forget();
1759
+ }
1760
+ }
1572
1761
  await this.storage.delete(fromAllDevices);
1573
1762
  }
1574
1763
  /**
@@ -1596,10 +1785,14 @@ _serverTransitionState = new WeakMap();
1596
1785
  _scores = new WeakMap();
1597
1786
  _state = new WeakMap();
1598
1787
  _pzCache = new WeakMap();
1788
+ _plugins = new WeakMap();
1599
1789
  _mitt3 = new WeakMap();
1600
- _emitTest = new WeakSet();
1601
- emitTest_fn = function(event) {
1602
- __privateGet(this, _mitt3).emit("testResult", event);
1790
+ _updateGoals = new WeakSet();
1791
+ updateGoals_fn = async function(data) {
1792
+ const goalCommands = this.manifest.computeGoals(data);
1793
+ if (goalCommands.length !== 0) {
1794
+ await this.storage.updateData(goalCommands);
1795
+ }
1603
1796
  };
1604
1797
  _updateComputedScores = new WeakSet();
1605
1798
  updateComputedScores_fn = function(newData) {
@@ -1607,6 +1800,10 @@ updateComputedScores_fn = function(newData) {
1607
1800
  const newScoresHaveChanged = !dequal4(newScores, __privateGet(this, _scores));
1608
1801
  if (newScoresHaveChanged) {
1609
1802
  __privateSet(this, _scores, newScores);
1803
+ __privateMethod(this, _updateGoals, updateGoals_fn).call(this, {
1804
+ scores: __privateGet(this, _scores),
1805
+ quirks: void 0
1806
+ });
1610
1807
  __privateGet(this, _mitt3).emit("scoresUpdated", newScores);
1611
1808
  __privateGet(this, _mitt3).emit("log", ["info", 3, newScores]);
1612
1809
  }
@@ -1747,6 +1944,727 @@ var ScriptType = /* @__PURE__ */ ((ScriptType2) => {
1747
1944
  })(ScriptType || {});
1748
1945
  var EdgeNodeTagName = "nesitag";
1749
1946
 
1947
+ // src/insights/index.ts
1948
+ import { nanoid } from "nanoid";
1949
+
1950
+ // src/insights/constants.ts
1951
+ var TIMEZONE_MAP = {
1952
+ "Asia/Barnaul": "RU",
1953
+ "Africa/Nouakchott": "MR",
1954
+ "Africa/Lusaka": "ZM",
1955
+ "Asia/Pyongyang": "KP",
1956
+ "Europe/Bratislava": "SK",
1957
+ "America/Belize": "BZ",
1958
+ "America/Maceio": "BR",
1959
+ "Pacific/Chuuk": "FM",
1960
+ "Indian/Comoro": "KM",
1961
+ "Pacific/Palau": "PW",
1962
+ "Asia/Jakarta": "ID",
1963
+ "Africa/Windhoek": "NA",
1964
+ "America/Chihuahua": "MX",
1965
+ "America/Nome": "US",
1966
+ "Africa/Mbabane": "SZ",
1967
+ "Africa/Porto-Novo": "BJ",
1968
+ "Europe/San_Marino": "SM",
1969
+ "Pacific/Fakaofo": "TK",
1970
+ "America/Denver": "US",
1971
+ "Europe/Belgrade": "RS",
1972
+ "America/Indiana/Tell_City": "US",
1973
+ "America/Fortaleza": "BR",
1974
+ "America/Halifax": "CA",
1975
+ "Europe/Bucharest": "RO",
1976
+ "America/Indiana/Petersburg": "US",
1977
+ "Europe/Kirov": "RU",
1978
+ "Europe/Athens": "GR",
1979
+ "America/Argentina/Ushuaia": "AR",
1980
+ "Europe/Monaco": "MC",
1981
+ "Europe/Vilnius": "LT",
1982
+ "Europe/Copenhagen": "DK",
1983
+ "Pacific/Kanton": "KI",
1984
+ "America/Caracas": "VE",
1985
+ "Asia/Almaty": "KZ",
1986
+ "Europe/Paris": "FR",
1987
+ "Africa/Blantyre": "MW",
1988
+ "Asia/Muscat": "OM",
1989
+ "America/North_Dakota/Beulah": "US",
1990
+ "America/Matamoros": "MX",
1991
+ "Asia/Irkutsk": "RU",
1992
+ "America/Costa_Rica": "CR",
1993
+ "America/Araguaina": "BR",
1994
+ "Atlantic/Canary": "ES",
1995
+ "America/Santo_Domingo": "DO",
1996
+ "America/Vancouver": "CA",
1997
+ "Africa/Addis_Ababa": "ET",
1998
+ "Africa/Accra": "GH",
1999
+ "Pacific/Kwajalein": "MH",
2000
+ "Asia/Baghdad": "IQ",
2001
+ "Australia/Adelaide": "AU",
2002
+ "Australia/Hobart": "AU",
2003
+ "America/Guayaquil": "EC",
2004
+ "America/Argentina/Tucuman": "AR",
2005
+ "Australia/Lindeman": "AU",
2006
+ "America/New_York": "US",
2007
+ "Pacific/Fiji": "FJ",
2008
+ "America/Antigua": "AG",
2009
+ "Africa/Casablanca": "MA",
2010
+ "America/Paramaribo": "SR",
2011
+ "Africa/Cairo": "EG",
2012
+ "America/Cayenne": "GF",
2013
+ "America/Detroit": "US",
2014
+ "Antarctica/Syowa": "AQ",
2015
+ "Africa/Douala": "CM",
2016
+ "America/Argentina/La_Rioja": "AR",
2017
+ "Africa/Lagos": "NG",
2018
+ "America/St_Barthelemy": "BL",
2019
+ "Asia/Nicosia": "CY",
2020
+ "Asia/Macau": "MO",
2021
+ "Europe/Riga": "LV",
2022
+ "Asia/Ashgabat": "TM",
2023
+ "Indian/Antananarivo": "MG",
2024
+ "America/Argentina/San_Juan": "AR",
2025
+ "Asia/Aden": "YE",
2026
+ "Asia/Tomsk": "RU",
2027
+ "America/Asuncion": "PY",
2028
+ "Pacific/Bougainville": "PG",
2029
+ "Asia/Vientiane": "LA",
2030
+ "America/Mazatlan": "MX",
2031
+ "Africa/Luanda": "AO",
2032
+ "Europe/Oslo": "NO",
2033
+ "Africa/Kinshasa": "CD",
2034
+ "Europe/Warsaw": "PL",
2035
+ "America/Grand_Turk": "TC",
2036
+ "Asia/Seoul": "KR",
2037
+ "Africa/Tripoli": "LY",
2038
+ "America/St_Thomas": "VI",
2039
+ "Asia/Kathmandu": "NP",
2040
+ "Pacific/Pitcairn": "PN",
2041
+ "Pacific/Nauru": "NR",
2042
+ "America/Curacao": "CW",
2043
+ "Asia/Kabul": "AF",
2044
+ "Pacific/Tongatapu": "TO",
2045
+ "Europe/Simferopol": "UA",
2046
+ "Asia/Ust-Nera": "RU",
2047
+ "Africa/Mogadishu": "SO",
2048
+ "Indian/Mayotte": "YT",
2049
+ "Pacific/Niue": "NU",
2050
+ "America/Thunder_Bay": "CA",
2051
+ "Atlantic/Azores": "PT",
2052
+ "Pacific/Gambier": "PF",
2053
+ "Europe/Stockholm": "SE",
2054
+ "Africa/Libreville": "GA",
2055
+ "America/Punta_Arenas": "CL",
2056
+ "America/Guatemala": "GT",
2057
+ "America/Noronha": "BR",
2058
+ "Europe/Helsinki": "FI",
2059
+ "Asia/Gaza": "PS",
2060
+ "Pacific/Kosrae": "FM",
2061
+ "America/Aruba": "AW",
2062
+ "America/Nassau": "BS",
2063
+ "Asia/Choibalsan": "MN",
2064
+ "America/Winnipeg": "CA",
2065
+ "America/Anguilla": "AI",
2066
+ "Asia/Thimphu": "BT",
2067
+ "Asia/Beirut": "LB",
2068
+ "Atlantic/Faroe": "FO",
2069
+ "Europe/Berlin": "DE",
2070
+ "Europe/Amsterdam": "NL",
2071
+ "Pacific/Honolulu": "US",
2072
+ "America/Regina": "CA",
2073
+ "America/Scoresbysund": "GL",
2074
+ "Europe/Vienna": "AT",
2075
+ "Europe/Tirane": "AL",
2076
+ "Africa/El_Aaiun": "EH",
2077
+ "America/Creston": "CA",
2078
+ "Asia/Qostanay": "KZ",
2079
+ "Asia/Ho_Chi_Minh": "VN",
2080
+ "Europe/Samara": "RU",
2081
+ "Europe/Rome": "IT",
2082
+ "Australia/Eucla": "AU",
2083
+ "America/El_Salvador": "SV",
2084
+ "America/Chicago": "US",
2085
+ "Africa/Abidjan": "CI",
2086
+ "Asia/Kamchatka": "RU",
2087
+ "Pacific/Tarawa": "KI",
2088
+ "America/Santiago": "CL",
2089
+ "America/Bahia": "BR",
2090
+ "Indian/Christmas": "CX",
2091
+ "Asia/Atyrau": "KZ",
2092
+ "Asia/Dushanbe": "TJ",
2093
+ "Europe/Ulyanovsk": "RU",
2094
+ "America/Yellowknife": "CA",
2095
+ "America/Recife": "BR",
2096
+ "Australia/Sydney": "AU",
2097
+ "America/Fort_Nelson": "CA",
2098
+ "Pacific/Efate": "VU",
2099
+ "Europe/Saratov": "RU",
2100
+ "Africa/Banjul": "GM",
2101
+ "Asia/Omsk": "RU",
2102
+ "Europe/Ljubljana": "SI",
2103
+ "Europe/Budapest": "HU",
2104
+ "Europe/Astrakhan": "RU",
2105
+ "America/Argentina/Buenos_Aires": "AR",
2106
+ "Pacific/Chatham": "NZ",
2107
+ "America/Argentina/Salta": "AR",
2108
+ "Africa/Niamey": "NE",
2109
+ "Asia/Pontianak": "ID",
2110
+ "Indian/Reunion": "RE",
2111
+ "Asia/Hong_Kong": "HK",
2112
+ "Antarctica/McMurdo": "AQ",
2113
+ "Africa/Malabo": "GQ",
2114
+ "America/Los_Angeles": "US",
2115
+ "America/Argentina/Cordoba": "AR",
2116
+ "Pacific/Pohnpei": "FM",
2117
+ "America/Tijuana": "MX",
2118
+ "America/Campo_Grande": "BR",
2119
+ "America/Dawson_Creek": "CA",
2120
+ "Asia/Novosibirsk": "RU",
2121
+ "Pacific/Pago_Pago": "AS",
2122
+ "Asia/Jerusalem": "IL",
2123
+ "Europe/Sarajevo": "BA",
2124
+ "Africa/Freetown": "SL",
2125
+ "Asia/Yekaterinburg": "RU",
2126
+ "America/Juneau": "US",
2127
+ "Africa/Ouagadougou": "BF",
2128
+ "Africa/Monrovia": "LR",
2129
+ "Europe/Kiev": "UA",
2130
+ "America/Argentina/San_Luis": "AR",
2131
+ "Asia/Tokyo": "JP",
2132
+ "Asia/Qatar": "QA",
2133
+ "America/La_Paz": "BO",
2134
+ "America/Bogota": "CO",
2135
+ "America/Thule": "GL",
2136
+ "Asia/Manila": "PH",
2137
+ "Asia/Hovd": "MN",
2138
+ "Asia/Tehran": "IR",
2139
+ "Atlantic/Madeira": "PT",
2140
+ "America/Metlakatla": "US",
2141
+ "Europe/Vatican": "VA",
2142
+ "Asia/Bishkek": "KG",
2143
+ "Asia/Dili": "TL",
2144
+ "Antarctica/Palmer": "AQ",
2145
+ "Atlantic/Cape_Verde": "CV",
2146
+ "Indian/Chagos": "IO",
2147
+ "America/Kentucky/Monticello": "US",
2148
+ "Africa/Algiers": "DZ",
2149
+ "Africa/Maseru": "LS",
2150
+ "Asia/Kuala_Lumpur": "MY",
2151
+ "Africa/Khartoum": "SD",
2152
+ "America/Argentina/Rio_Gallegos": "AR",
2153
+ "America/Blanc-Sablon": "CA",
2154
+ "Africa/Maputo": "MZ",
2155
+ "America/Tortola": "VG",
2156
+ "Atlantic/Bermuda": "BM",
2157
+ "America/Argentina/Catamarca": "AR",
2158
+ "America/Cayman": "KY",
2159
+ "America/Puerto_Rico": "PR",
2160
+ "Pacific/Majuro": "MH",
2161
+ "Europe/Busingen": "DE",
2162
+ "Pacific/Midway": "UM",
2163
+ "Indian/Cocos": "CC",
2164
+ "Asia/Singapore": "SG",
2165
+ "America/Boise": "US",
2166
+ "America/Nuuk": "GL",
2167
+ "America/Goose_Bay": "CA",
2168
+ "Australia/Broken_Hill": "AU",
2169
+ "Africa/Dar_es_Salaam": "TZ",
2170
+ "Africa/Asmara": "ER",
2171
+ "Asia/Samarkand": "UZ",
2172
+ "Asia/Tbilisi": "GE",
2173
+ "America/Argentina/Jujuy": "AR",
2174
+ "America/Indiana/Winamac": "US",
2175
+ "America/Porto_Velho": "BR",
2176
+ "Asia/Magadan": "RU",
2177
+ "Europe/Zaporozhye": "UA",
2178
+ "Antarctica/Casey": "AQ",
2179
+ "Asia/Shanghai": "CN",
2180
+ "Pacific/Norfolk": "NF",
2181
+ "Europe/Guernsey": "GG",
2182
+ "Australia/Brisbane": "AU",
2183
+ "Antarctica/DumontDUrville": "AQ",
2184
+ "America/Havana": "CU",
2185
+ "America/Atikokan": "CA",
2186
+ "America/Mexico_City": "MX",
2187
+ "America/Rankin_Inlet": "CA",
2188
+ "America/Cuiaba": "BR",
2189
+ "America/Resolute": "CA",
2190
+ "Africa/Ceuta": "ES",
2191
+ "Arctic/Longyearbyen": "SJ",
2192
+ "Pacific/Guam": "GU",
2193
+ "Asia/Damascus": "SY",
2194
+ "Asia/Colombo": "LK",
2195
+ "Asia/Yerevan": "AM",
2196
+ "America/Montserrat": "MS",
2197
+ "America/Belem": "BR",
2198
+ "Europe/Kaliningrad": "RU",
2199
+ "Atlantic/South_Georgia": "GS",
2200
+ "Asia/Tashkent": "UZ",
2201
+ "Asia/Kolkata": "IN",
2202
+ "America/St_Johns": "CA",
2203
+ "Asia/Srednekolymsk": "RU",
2204
+ "Asia/Yakutsk": "RU",
2205
+ "Europe/Prague": "CZ",
2206
+ "Africa/Djibouti": "DJ",
2207
+ "Asia/Dubai": "AE",
2208
+ "Europe/Uzhgorod": "UA",
2209
+ "America/Edmonton": "CA",
2210
+ "Asia/Famagusta": "CY",
2211
+ "America/Indiana/Knox": "US",
2212
+ "Asia/Hebron": "PS",
2213
+ "Asia/Taipei": "TW",
2214
+ "Europe/London": "GB",
2215
+ "Africa/Dakar": "SN",
2216
+ "Australia/Darwin": "AU",
2217
+ "America/Glace_Bay": "CA",
2218
+ "Antarctica/Vostok": "AQ",
2219
+ "America/Indiana/Vincennes": "US",
2220
+ "America/Nipigon": "CA",
2221
+ "Asia/Kuwait": "KW",
2222
+ "Pacific/Guadalcanal": "SB",
2223
+ "America/Toronto": "CA",
2224
+ "Africa/Gaborone": "BW",
2225
+ "Africa/Bujumbura": "BI",
2226
+ "Africa/Lubumbashi": "CD",
2227
+ "America/Merida": "MX",
2228
+ "America/Marigot": "MF",
2229
+ "Europe/Zagreb": "HR",
2230
+ "Pacific/Easter": "CL",
2231
+ "America/Santarem": "BR",
2232
+ "Pacific/Noumea": "NC",
2233
+ "America/Sitka": "US",
2234
+ "Atlantic/Stanley": "FK",
2235
+ "Pacific/Funafuti": "TV",
2236
+ "America/Iqaluit": "CA",
2237
+ "America/Rainy_River": "CA",
2238
+ "America/Anchorage": "US",
2239
+ "America/Lima": "PE",
2240
+ "Asia/Baku": "AZ",
2241
+ "America/Indiana/Vevay": "US",
2242
+ "Asia/Ulaanbaatar": "MN",
2243
+ "America/Managua": "NI",
2244
+ "Asia/Krasnoyarsk": "RU",
2245
+ "Asia/Qyzylorda": "KZ",
2246
+ "America/Eirunepe": "BR",
2247
+ "Europe/Podgorica": "ME",
2248
+ "Europe/Chisinau": "MD",
2249
+ "Europe/Mariehamn": "AX",
2250
+ "Europe/Volgograd": "RU",
2251
+ "Africa/Nairobi": "KE",
2252
+ "Europe/Isle_of_Man": "IM",
2253
+ "America/Menominee": "US",
2254
+ "Africa/Harare": "ZW",
2255
+ "Asia/Anadyr": "RU",
2256
+ "America/Moncton": "CA",
2257
+ "Indian/Maldives": "MV",
2258
+ "America/Whitehorse": "CA",
2259
+ "Antarctica/Mawson": "AQ",
2260
+ "Europe/Madrid": "ES",
2261
+ "America/Argentina/Mendoza": "AR",
2262
+ "America/Manaus": "BR",
2263
+ "Africa/Bangui": "CF",
2264
+ "Indian/Mauritius": "MU",
2265
+ "Africa/Tunis": "TN",
2266
+ "Australia/Lord_Howe": "AU",
2267
+ "America/Kentucky/Louisville": "US",
2268
+ "America/North_Dakota/Center": "US",
2269
+ "Asia/Novokuznetsk": "RU",
2270
+ "Asia/Makassar": "ID",
2271
+ "America/Port_of_Spain": "TT",
2272
+ "America/Bahia_Banderas": "MX",
2273
+ "Pacific/Auckland": "NZ",
2274
+ "America/Sao_Paulo": "BR",
2275
+ "Asia/Dhaka": "BD",
2276
+ "America/Pangnirtung": "CA",
2277
+ "Europe/Dublin": "IE",
2278
+ "Asia/Brunei": "BN",
2279
+ "Africa/Brazzaville": "CG",
2280
+ "America/Montevideo": "UY",
2281
+ "America/Jamaica": "JM",
2282
+ "America/Indiana/Indianapolis": "US",
2283
+ "America/Kralendijk": "BQ",
2284
+ "Europe/Gibraltar": "GI",
2285
+ "Pacific/Marquesas": "PF",
2286
+ "Pacific/Apia": "WS",
2287
+ "Europe/Jersey": "JE",
2288
+ "America/Phoenix": "US",
2289
+ "Africa/Ndjamena": "TD",
2290
+ "Asia/Karachi": "PK",
2291
+ "Africa/Kampala": "UG",
2292
+ "Asia/Sakhalin": "RU",
2293
+ "America/Martinique": "MQ",
2294
+ "Europe/Moscow": "RU",
2295
+ "Africa/Conakry": "GN",
2296
+ "America/Barbados": "BB",
2297
+ "Africa/Lome": "TG",
2298
+ "America/Ojinaga": "MX",
2299
+ "America/Tegucigalpa": "HN",
2300
+ "Asia/Bangkok": "TH",
2301
+ "Africa/Johannesburg": "ZA",
2302
+ "Europe/Vaduz": "LI",
2303
+ "Africa/Sao_Tome": "ST",
2304
+ "America/Cambridge_Bay": "CA",
2305
+ "America/Lower_Princes": "SX",
2306
+ "America/Miquelon": "PM",
2307
+ "America/St_Kitts": "KN",
2308
+ "Australia/Melbourne": "AU",
2309
+ "Europe/Minsk": "BY",
2310
+ "Asia/Vladivostok": "RU",
2311
+ "Europe/Sofia": "BG",
2312
+ "Antarctica/Davis": "AQ",
2313
+ "Pacific/Galapagos": "EC",
2314
+ "America/North_Dakota/New_Salem": "US",
2315
+ "Asia/Amman": "JO",
2316
+ "Pacific/Wallis": "WF",
2317
+ "America/Hermosillo": "MX",
2318
+ "Pacific/Kiritimati": "KI",
2319
+ "Antarctica/Macquarie": "AU",
2320
+ "America/Guyana": "GY",
2321
+ "Asia/Riyadh": "SA",
2322
+ "Pacific/Tahiti": "PF",
2323
+ "America/St_Vincent": "VC",
2324
+ "America/Cancun": "MX",
2325
+ "America/Grenada": "GD",
2326
+ "Pacific/Wake": "UM",
2327
+ "America/Dawson": "CA",
2328
+ "Europe/Brussels": "BE",
2329
+ "Indian/Kerguelen": "TF",
2330
+ "America/Yakutat": "US",
2331
+ "Indian/Mahe": "SC",
2332
+ "Atlantic/Reykjavik": "IS",
2333
+ "America/Panama": "PA",
2334
+ "America/Guadeloupe": "GP",
2335
+ "Europe/Malta": "MT",
2336
+ "Antarctica/Troll": "AQ",
2337
+ "Asia/Jayapura": "ID",
2338
+ "Asia/Bahrain": "BH",
2339
+ "Asia/Chita": "RU",
2340
+ "Europe/Tallinn": "EE",
2341
+ "Asia/Khandyga": "RU",
2342
+ "America/Rio_Branco": "BR",
2343
+ "Atlantic/St_Helena": "SH",
2344
+ "Africa/Juba": "SS",
2345
+ "America/Adak": "US",
2346
+ "Pacific/Saipan": "MP",
2347
+ "America/St_Lucia": "LC",
2348
+ "America/Inuvik": "CA",
2349
+ "Europe/Luxembourg": "LU",
2350
+ "Africa/Bissau": "GW",
2351
+ "Asia/Oral": "KZ",
2352
+ "America/Boa_Vista": "BR",
2353
+ "Europe/Skopje": "MK",
2354
+ "America/Port-au-Prince": "HT",
2355
+ "Pacific/Port_Moresby": "PG",
2356
+ "Europe/Andorra": "AD",
2357
+ "America/Indiana/Marengo": "US",
2358
+ "Africa/Kigali": "RW",
2359
+ "Africa/Bamako": "ML",
2360
+ "America/Dominica": "DM",
2361
+ "Asia/Aqtobe": "KZ",
2362
+ "Europe/Istanbul": "TR",
2363
+ "Pacific/Rarotonga": "CK",
2364
+ "America/Danmarkshavn": "GL",
2365
+ "Europe/Zurich": "CH",
2366
+ "Asia/Yangon": "MM",
2367
+ "America/Monterrey": "MX",
2368
+ "Europe/Lisbon": "PT",
2369
+ "Asia/Kuching": "MY",
2370
+ "Antarctica/Rothera": "AQ",
2371
+ "Australia/Perth": "AU",
2372
+ "Asia/Phnom_Penh": "KH",
2373
+ "America/Swift_Current": "CA",
2374
+ "Asia/Aqtau": "KZ",
2375
+ "Asia/Urumqi": "CN",
2376
+ "Asia/Calcutta": "IN"
2377
+ };
2378
+
2379
+ // src/insights/index.ts
2380
+ var getBasePayload = () => {
2381
+ const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
2382
+ const location = TIMEZONE_MAP[timeZone];
2383
+ const locale = navigator.languages && navigator.languages.length ? navigator.languages[0] : navigator.userLanguage || navigator.language || navigator.browserLanguage || "en";
2384
+ return {
2385
+ "user-agent": window.navigator.userAgent,
2386
+ locale,
2387
+ location,
2388
+ referrer: document.referrer,
2389
+ pathname: window.location.pathname,
2390
+ href: window.location.href
2391
+ };
2392
+ };
2393
+ var createInsightsClient = ({ endpoint }) => {
2394
+ const url = new URL(endpoint.host);
2395
+ url.pathname = "/v0/events";
2396
+ url.searchParams.set("name", "analytics_events");
2397
+ const endpointUrl = url.toString();
2398
+ const sendMessage = async (message) => {
2399
+ const converted = {
2400
+ ...message,
2401
+ payload: JSON.stringify(message.payload)
2402
+ };
2403
+ const response = await fetch(endpointUrl, {
2404
+ method: "POST",
2405
+ headers: {
2406
+ "Content-Type": "application/json",
2407
+ Authorization: `Bearer ${endpoint.apiKey}`
2408
+ },
2409
+ body: JSON.stringify(converted)
2410
+ });
2411
+ const json = await response.json();
2412
+ return json;
2413
+ };
2414
+ return {
2415
+ sessionStart: (options) => {
2416
+ const message = {
2417
+ action: "session_start",
2418
+ version: "1",
2419
+ session_id: options.sessionId,
2420
+ visitor_id: options.visitorId,
2421
+ page_view_id: options.pageId,
2422
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2423
+ payload: {
2424
+ ...getBasePayload(),
2425
+ previous_session_id: options.previousSessionId
2426
+ }
2427
+ };
2428
+ return sendMessage(message);
2429
+ },
2430
+ pageHit: (options) => {
2431
+ const message = {
2432
+ action: "page_hit",
2433
+ version: "1",
2434
+ session_id: options.sessionId,
2435
+ visitor_id: options.visitorId,
2436
+ page_view_id: options.pageId,
2437
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2438
+ payload: getBasePayload()
2439
+ };
2440
+ return sendMessage(message);
2441
+ },
2442
+ testResult: (options) => {
2443
+ const message = {
2444
+ action: "test_result",
2445
+ version: "1",
2446
+ session_id: options.sessionId,
2447
+ visitor_id: options.visitorId,
2448
+ page_view_id: options.pageId,
2449
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2450
+ payload: {
2451
+ ...getBasePayload(),
2452
+ ...options
2453
+ }
2454
+ };
2455
+ return sendMessage(message);
2456
+ },
2457
+ personalizationResult: async (options) => {
2458
+ const messages = options.variantIds.map((variantId) => {
2459
+ const message = {
2460
+ action: "personalization_result",
2461
+ version: "1",
2462
+ session_id: options.sessionId,
2463
+ visitor_id: options.visitorId,
2464
+ page_view_id: options.pageId,
2465
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2466
+ payload: {
2467
+ ...getBasePayload(),
2468
+ name: options.name,
2469
+ variantId,
2470
+ control: options.control,
2471
+ changed: options.changed
2472
+ }
2473
+ };
2474
+ return message;
2475
+ });
2476
+ await Promise.all(messages.map((message) => sendMessage(message)));
2477
+ },
2478
+ goalConvert: (options) => {
2479
+ const message = {
2480
+ action: "goal_convert",
2481
+ version: "1",
2482
+ session_id: options.sessionId,
2483
+ visitor_id: options.visitorId,
2484
+ page_view_id: options.pageId,
2485
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2486
+ payload: {
2487
+ ...getBasePayload(),
2488
+ goalId: options.goalId
2489
+ }
2490
+ };
2491
+ return sendMessage(message);
2492
+ }
2493
+ };
2494
+ };
2495
+ var createInsightsStorage = () => {
2496
+ const STORAGE_KEY2 = "ufin";
2497
+ return {
2498
+ get: () => {
2499
+ const data = localStorage.getItem(STORAGE_KEY2);
2500
+ if (!data) {
2501
+ return;
2502
+ }
2503
+ return JSON.parse(data);
2504
+ },
2505
+ set: (data) => {
2506
+ const toSet = {
2507
+ ...data,
2508
+ updated: Date.now()
2509
+ };
2510
+ localStorage.setItem(STORAGE_KEY2, JSON.stringify(toSet));
2511
+ },
2512
+ clear: () => {
2513
+ localStorage.removeItem(STORAGE_KEY2);
2514
+ }
2515
+ };
2516
+ };
2517
+ var generateVisitorId = () => {
2518
+ return `visitor_${nanoid()}`;
2519
+ };
2520
+ var generateSessionId = () => {
2521
+ return `session_${nanoid()}`;
2522
+ };
2523
+ var generatePageId = () => {
2524
+ return `page_${nanoid()}`;
2525
+ };
2526
+ var createInsights = ({
2527
+ endpoint,
2528
+ sessionDurationSeconds = 30 * 60
2529
+ }) => {
2530
+ const client = createInsightsClient({
2531
+ endpoint
2532
+ });
2533
+ const storage = createInsightsStorage();
2534
+ let storageData = void 0;
2535
+ let pageId = generatePageId();
2536
+ return {
2537
+ init: () => {
2538
+ storageData = storage.get();
2539
+ if (!storageData || Date.now() - storageData.updated > sessionDurationSeconds * 1e3) {
2540
+ const previousSessionId = storageData == null ? void 0 : storageData.sessionId;
2541
+ storageData = {
2542
+ visitorId: (storageData == null ? void 0 : storageData.visitorId) || generateVisitorId(),
2543
+ sessionId: generateSessionId(),
2544
+ updated: Date.now()
2545
+ };
2546
+ storage.set(storageData);
2547
+ client.sessionStart({
2548
+ visitorId: storageData.visitorId,
2549
+ sessionId: storageData.sessionId,
2550
+ previousSessionId,
2551
+ maxAgeSeconds: sessionDurationSeconds,
2552
+ pageId
2553
+ });
2554
+ } else if (storageData) {
2555
+ storage.set(storageData);
2556
+ }
2557
+ },
2558
+ pageHit: () => {
2559
+ if (!storageData) {
2560
+ console.error("Insights not initialized");
2561
+ return;
2562
+ }
2563
+ client.pageHit({
2564
+ visitorId: storageData.visitorId,
2565
+ sessionId: storageData.sessionId,
2566
+ pageId
2567
+ });
2568
+ },
2569
+ testResult: (result) => {
2570
+ if (!storageData) {
2571
+ console.error("Insights not initialized");
2572
+ return;
2573
+ }
2574
+ client.testResult({
2575
+ ...result,
2576
+ visitorId: storageData.visitorId,
2577
+ sessionId: storageData.sessionId,
2578
+ pageId
2579
+ });
2580
+ pageId = generatePageId();
2581
+ },
2582
+ personalizationResult: (result) => {
2583
+ if (!storageData) {
2584
+ console.error("Insights not initialized");
2585
+ return;
2586
+ }
2587
+ client.personalizationResult({
2588
+ ...result,
2589
+ visitorId: storageData.visitorId,
2590
+ sessionId: storageData.sessionId,
2591
+ pageId
2592
+ });
2593
+ },
2594
+ goalConvert: (goalId) => {
2595
+ if (!storageData) {
2596
+ console.error("Insights not initialized");
2597
+ return;
2598
+ }
2599
+ client.goalConvert({
2600
+ visitorId: storageData.visitorId,
2601
+ sessionId: storageData.sessionId,
2602
+ goalId,
2603
+ pageId
2604
+ });
2605
+ },
2606
+ forget: () => {
2607
+ storage.clear();
2608
+ storageData = void 0;
2609
+ },
2610
+ get sessionId() {
2611
+ return storageData == null ? void 0 : storageData.sessionId;
2612
+ }
2613
+ };
2614
+ };
2615
+ var enableUniformInsights = (options) => {
2616
+ const insights = createInsights({
2617
+ endpoint: options.endpoint
2618
+ });
2619
+ let previousUrl = void 0;
2620
+ return {
2621
+ init: (context) => {
2622
+ if (typeof window === "undefined") {
2623
+ return () => {
2624
+ };
2625
+ }
2626
+ const consentChanged = () => {
2627
+ if (context.storage.data.consent) {
2628
+ insights.init();
2629
+ } else {
2630
+ insights.forget();
2631
+ }
2632
+ };
2633
+ const handlePersonalizationResult = (data) => {
2634
+ insights.personalizationResult(data);
2635
+ };
2636
+ const handleTestResult = (result) => {
2637
+ insights.testResult(result);
2638
+ };
2639
+ const handleGoalConvert = (result) => {
2640
+ insights.goalConvert(result.goalId);
2641
+ };
2642
+ context.storage.events.on("goalConverted", handleGoalConvert);
2643
+ context.storage.events.on("consentUpdated", consentChanged);
2644
+ context.events.on("personalizationResult", handlePersonalizationResult);
2645
+ context.events.on("testResult", handleTestResult);
2646
+ if (context.storage.data.consent) {
2647
+ consentChanged();
2648
+ }
2649
+ return () => {
2650
+ context.storage.events.off("consentUpdated", consentChanged);
2651
+ context.storage.events.off("goalConverted", handleGoalConvert);
2652
+ context.events.off("personalizationResult", handlePersonalizationResult);
2653
+ context.events.off("testResult", handleTestResult);
2654
+ };
2655
+ },
2656
+ update: (context) => {
2657
+ if (context.url && context.url !== previousUrl) {
2658
+ previousUrl = context.url;
2659
+ insights.pageHit();
2660
+ }
2661
+ },
2662
+ forget: () => {
2663
+ insights.forget();
2664
+ }
2665
+ };
2666
+ };
2667
+
1750
2668
  // src/logging/enableConsoleLogDrain.ts
1751
2669
  import rfdc2 from "rfdc";
1752
2670
 
@@ -1950,6 +2868,7 @@ export {
1950
2868
  enableConsoleLogDrain,
1951
2869
  enableContextDevTools,
1952
2870
  enableDebugConsoleLogDrain,
2871
+ enableUniformInsights,
1953
2872
  evaluateVariantMatch,
1954
2873
  eventEvaluator,
1955
2874
  explainStringMatch,