@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.js CHANGED
@@ -80,6 +80,7 @@ __export(src_exports, {
80
80
  enableConsoleLogDrain: () => enableConsoleLogDrain,
81
81
  enableContextDevTools: () => enableContextDevTools,
82
82
  enableDebugConsoleLogDrain: () => enableDebugConsoleLogDrain,
83
+ enableUniformInsights: () => enableUniformInsights,
83
84
  evaluateVariantMatch: () => evaluateVariantMatch,
84
85
  eventEvaluator: () => eventEvaluator,
85
86
  explainStringMatch: () => explainStringMatch,
@@ -146,119 +147,73 @@ function computeAggregateDimension(primitiveScores, aggregateDimension, allAggre
146
147
  // src/manifest/constants.ts
147
148
  var ENR_SEPARATOR = "_";
148
149
 
149
- // src/manifest/signals/SignalInstance.ts
150
- var _evaluator, _onLogMessage;
151
- var SignalInstance = class {
152
- constructor(data, evaluator, onLogMessage) {
153
- __privateAdd(this, _evaluator, void 0);
154
- __privateAdd(this, _onLogMessage, void 0);
155
- __publicField(this, "signal");
156
- this.signal = data;
157
- __privateSet(this, _evaluator, evaluator);
158
- __privateSet(this, _onLogMessage, onLogMessage);
159
- }
160
- /** Computes storage update commands to take based on a state update and the signal's criteria */
161
- computeSignal(update, commands) {
162
- const isAtCap = update.scores[this.signal.id] >= this.signal.cap;
163
- if (isAtCap && this.signal.dur !== "t") {
164
- return;
165
- }
166
- const criteriaMatchUpdate = __privateGet(this, _evaluator).evaluate(
167
- update,
168
- this.signal.crit,
169
- commands,
170
- this.signal,
171
- __privateGet(this, _onLogMessage)
172
- );
173
- const scoreCommand = this.signal.dur === "s" || this.signal.dur === "t" ? "modscoreS" : "modscore";
174
- if (!criteriaMatchUpdate.changed) {
175
- return;
176
- }
177
- if (criteriaMatchUpdate.result) {
178
- commands.push({
179
- type: scoreCommand,
180
- data: { dimension: this.signal.id, delta: this.signal.str }
181
- });
182
- } else if (this.signal.dur === "t") {
183
- const sessionScore = update.visitor.sessionScores[this.signal.id];
184
- if (sessionScore) {
185
- commands.push({
186
- type: scoreCommand,
187
- data: { dimension: this.signal.id, delta: -sessionScore }
188
- });
189
- }
190
- }
191
- }
192
- };
193
- _evaluator = new WeakMap();
194
- _onLogMessage = new WeakMap();
195
-
196
- // src/manifest/ManifestInstance.ts
197
- var _mf, _signalInstances, _onLogMessage2;
198
- var ManifestInstance = class {
199
- constructor({
200
- manifest,
201
- evaluator = new GroupCriteriaEvaluator({}),
202
- // eslint-disable-next-line @typescript-eslint/no-empty-function
203
- onLogMessage = () => {
204
- }
205
- }) {
206
- __publicField(this, "data");
207
- __privateAdd(this, _mf, void 0);
208
- __privateAdd(this, _signalInstances, void 0);
209
- __privateAdd(this, _onLogMessage2, void 0);
210
- var _a, _b, _c;
211
- __privateSet(this, _mf, (_a = manifest.project) != null ? _a : {});
212
- this.data = manifest;
213
- __privateSet(this, _signalInstances, Object.entries((_c = (_b = __privateGet(this, _mf).pz) == null ? void 0 : _b.sig) != null ? _c : []).map(
214
- ([id, signal]) => new SignalInstance({ ...signal, id }, evaluator, onLogMessage)
215
- ));
216
- __privateSet(this, _onLogMessage2, onLogMessage);
217
- }
218
- rollForControlGroup() {
219
- var _a, _b;
220
- return Math.random() < ((_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.control) != null ? _b : 0);
221
- }
222
- getTest(name) {
223
- var _a;
224
- return (_a = __privateGet(this, _mf).test) == null ? void 0 : _a[name];
150
+ // src/manifest/signals/criteria/util/isNumberMatch.ts
151
+ function isNumberMatch(lhs, match) {
152
+ var _a;
153
+ if (typeof lhs === "undefined" || lhs === null) {
154
+ return false;
225
155
  }
226
- computeSignals(update) {
227
- const commands = [];
228
- __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "GROUP"]);
229
- try {
230
- __privateGet(this, _signalInstances).forEach((signal) => {
231
- __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "GROUP", signal.signal]);
232
- try {
233
- signal.computeSignal(update, commands);
234
- } finally {
235
- __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "ENDGROUP"]);
236
- }
237
- });
238
- } finally {
239
- __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "ENDGROUP"]);
240
- }
241
- return commands;
156
+ const lhsValue = Number(lhs);
157
+ if (isNaN(lhsValue)) {
158
+ return false;
242
159
  }
243
- /**
244
- * Computes aggregated scores based on other dimensions
245
- */
246
- computeAggregateDimensions(primitiveScores) {
247
- var _a, _b;
248
- return computeAggregateDimensions(primitiveScores, (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.agg) != null ? _b : {});
160
+ switch ((_a = match == null ? void 0 : match.op) != null ? _a : "=") {
161
+ case "=":
162
+ return lhsValue === match.rhs;
163
+ case "!=":
164
+ return lhsValue !== match.rhs;
165
+ case ">":
166
+ return lhsValue > match.rhs;
167
+ case "<":
168
+ return lhsValue < match.rhs;
169
+ default:
170
+ console.warn(`Unknown match type ${match.op} is false.`);
171
+ return false;
249
172
  }
250
- getDimensionByKey(scoreKey) {
251
- var _a, _b, _c, _d;
252
- const enrichmentIndex = scoreKey.indexOf(ENR_SEPARATOR);
253
- if (enrichmentIndex <= 0) {
254
- return (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.sig) == null ? void 0 : _b[scoreKey];
173
+ }
174
+ function explainNumberMatch(lhs, match) {
175
+ return `${lhs} ${explainNumberMatchCriteria(match)}`;
176
+ }
177
+ function explainNumberMatchCriteria(match) {
178
+ return `${match.op} ${match.rhs}`;
179
+ }
180
+
181
+ // src/manifest/utils/getEnrichmentVectorKey.ts
182
+ function getEnrichmentVectorKey(category, value) {
183
+ return `${category}${ENR_SEPARATOR}${value}`;
184
+ }
185
+
186
+ // src/manifest/goals/evaluators/EnrichmentGoalEvaluator.ts
187
+ var _goal, _id;
188
+ var EnrichmentGoalEvaluator = class {
189
+ constructor(options) {
190
+ __privateAdd(this, _goal, void 0);
191
+ __privateAdd(this, _id, void 0);
192
+ __privateSet(this, _goal, options.goal);
193
+ __privateSet(this, _id, options.id);
194
+ }
195
+ get id() {
196
+ return __privateGet(this, _id);
197
+ }
198
+ evaluate({ scores }) {
199
+ const name = getEnrichmentVectorKey(__privateGet(this, _goal).cat, __privateGet(this, _goal).value);
200
+ const score = scores == null ? void 0 : scores[name];
201
+ if (typeof score !== "number") {
202
+ return {
203
+ triggered: false
204
+ };
255
205
  }
256
- return (_d = (_c = __privateGet(this, _mf).pz) == null ? void 0 : _c.enr) == null ? void 0 : _d[scoreKey.substring(0, enrichmentIndex)];
206
+ const isMatch = isNumberMatch(score, {
207
+ op: __privateGet(this, _goal).op,
208
+ rhs: __privateGet(this, _goal).score
209
+ });
210
+ return {
211
+ triggered: isMatch
212
+ };
257
213
  }
258
214
  };
259
- _mf = new WeakMap();
260
- _signalInstances = new WeakMap();
261
- _onLogMessage2 = new WeakMap();
215
+ _goal = new WeakMap();
216
+ _id = new WeakMap();
262
217
 
263
218
  // src/manifest/signals/criteria/evaluators/cookieEvaluator.ts
264
219
  var import_lite = require("dequal/lite");
@@ -377,42 +332,6 @@ var eventEvaluator = ({ update, criteria, onLogMessage }) => {
377
332
  return finalResult;
378
333
  };
379
334
 
380
- // src/manifest/utils/getEnrichmentVectorKey.ts
381
- function getEnrichmentVectorKey(category, value) {
382
- return `${category}${ENR_SEPARATOR}${value}`;
383
- }
384
-
385
- // src/manifest/signals/criteria/util/isNumberMatch.ts
386
- function isNumberMatch(lhs, match) {
387
- var _a;
388
- if (typeof lhs === "undefined" || lhs === null) {
389
- return false;
390
- }
391
- const lhsValue = Number(lhs);
392
- if (isNaN(lhsValue)) {
393
- return false;
394
- }
395
- switch ((_a = match == null ? void 0 : match.op) != null ? _a : "=") {
396
- case "=":
397
- return lhsValue === match.rhs;
398
- case "!=":
399
- return lhsValue !== match.rhs;
400
- case ">":
401
- return lhsValue > match.rhs;
402
- case "<":
403
- return lhsValue < match.rhs;
404
- default:
405
- console.warn(`Unknown match type ${match.op} is false.`);
406
- return false;
407
- }
408
- }
409
- function explainNumberMatch(lhs, match) {
410
- return `${lhs} ${explainNumberMatchCriteria(match)}`;
411
- }
412
- function explainNumberMatchCriteria(match) {
413
- return `${match.op} ${match.rhs}`;
414
- }
415
-
416
335
  // src/manifest/signals/criteria/evaluators/pageViewCountEvaluator.ts
417
336
  var pageViewCountDimension = getEnrichmentVectorKey("$pvc", "v");
418
337
  var pageViewCountEvaluator = ({ update, criteria, commands, onLogMessage }) => {
@@ -542,6 +461,232 @@ var GroupCriteriaEvaluator = class {
542
461
  };
543
462
  _evaluators = new WeakMap();
544
463
 
464
+ // src/manifest/goals/evaluators/QuirkGoalEvaluator.ts
465
+ var _goal2, _id2;
466
+ var QuirkGoalEvaluator = class {
467
+ constructor(options) {
468
+ __privateAdd(this, _goal2, void 0);
469
+ __privateAdd(this, _id2, void 0);
470
+ __privateSet(this, _goal2, options.goal);
471
+ __privateSet(this, _id2, options.id);
472
+ }
473
+ get id() {
474
+ return __privateGet(this, _id2);
475
+ }
476
+ evaluate({ quirks }) {
477
+ const quirkValue = quirks == null ? void 0 : quirks[__privateGet(this, _goal2).id];
478
+ if (typeof quirkValue !== "string") {
479
+ return {
480
+ triggered: false
481
+ };
482
+ }
483
+ const isMatch = isStringMatch(quirkValue, {
484
+ op: __privateGet(this, _goal2).op,
485
+ rhs: __privateGet(this, _goal2).value,
486
+ cs: __privateGet(this, _goal2).cs
487
+ });
488
+ return {
489
+ triggered: isMatch
490
+ };
491
+ }
492
+ };
493
+ _goal2 = new WeakMap();
494
+ _id2 = new WeakMap();
495
+
496
+ // src/manifest/goals/evaluators/SignalGoalEvaluator.ts
497
+ var _goal3, _id3;
498
+ var SignalGoalEvaluator = class {
499
+ constructor(options) {
500
+ __privateAdd(this, _goal3, void 0);
501
+ __privateAdd(this, _id3, void 0);
502
+ __privateSet(this, _id3, options.id);
503
+ __privateSet(this, _goal3, options.goal);
504
+ }
505
+ get id() {
506
+ return __privateGet(this, _id3);
507
+ }
508
+ evaluate({ scores }) {
509
+ const score = scores == null ? void 0 : scores[__privateGet(this, _goal3).id];
510
+ if (typeof score !== "number") {
511
+ return {
512
+ triggered: false
513
+ };
514
+ }
515
+ const isMatch = isNumberMatch(score, {
516
+ op: __privateGet(this, _goal3).op,
517
+ rhs: __privateGet(this, _goal3).score
518
+ });
519
+ return {
520
+ triggered: isMatch
521
+ };
522
+ }
523
+ };
524
+ _goal3 = new WeakMap();
525
+ _id3 = new WeakMap();
526
+
527
+ // src/manifest/goals/evaluators/index.ts
528
+ var resolveGoalEvaluator = ({ id, goal }) => {
529
+ let evaluator;
530
+ if (goal.type === "sig") {
531
+ evaluator = new SignalGoalEvaluator({
532
+ id,
533
+ goal
534
+ });
535
+ } else if (goal.type === "enr") {
536
+ evaluator = new EnrichmentGoalEvaluator({
537
+ id,
538
+ goal
539
+ });
540
+ } else if (goal.type === "qrk") {
541
+ evaluator = new QuirkGoalEvaluator({
542
+ id,
543
+ goal
544
+ });
545
+ }
546
+ return evaluator;
547
+ };
548
+
549
+ // src/manifest/signals/SignalInstance.ts
550
+ var _evaluator, _onLogMessage;
551
+ var SignalInstance = class {
552
+ constructor(data, evaluator, onLogMessage) {
553
+ __privateAdd(this, _evaluator, void 0);
554
+ __privateAdd(this, _onLogMessage, void 0);
555
+ __publicField(this, "signal");
556
+ this.signal = data;
557
+ __privateSet(this, _evaluator, evaluator);
558
+ __privateSet(this, _onLogMessage, onLogMessage);
559
+ }
560
+ /** Computes storage update commands to take based on a state update and the signal's criteria */
561
+ computeSignal(update, commands) {
562
+ const isAtCap = update.scores[this.signal.id] >= this.signal.cap;
563
+ if (isAtCap && this.signal.dur !== "t") {
564
+ return;
565
+ }
566
+ const criteriaMatchUpdate = __privateGet(this, _evaluator).evaluate(
567
+ update,
568
+ this.signal.crit,
569
+ commands,
570
+ this.signal,
571
+ __privateGet(this, _onLogMessage)
572
+ );
573
+ const scoreCommand = this.signal.dur === "s" || this.signal.dur === "t" ? "modscoreS" : "modscore";
574
+ if (!criteriaMatchUpdate.changed) {
575
+ return;
576
+ }
577
+ if (criteriaMatchUpdate.result) {
578
+ commands.push({
579
+ type: scoreCommand,
580
+ data: { dimension: this.signal.id, delta: this.signal.str }
581
+ });
582
+ } else if (this.signal.dur === "t") {
583
+ const sessionScore = update.visitor.sessionScores[this.signal.id];
584
+ if (sessionScore) {
585
+ commands.push({
586
+ type: scoreCommand,
587
+ data: { dimension: this.signal.id, delta: -sessionScore }
588
+ });
589
+ }
590
+ }
591
+ }
592
+ };
593
+ _evaluator = new WeakMap();
594
+ _onLogMessage = new WeakMap();
595
+
596
+ // src/manifest/ManifestInstance.ts
597
+ var _mf, _signalInstances, _goalEvaluators, _onLogMessage2;
598
+ var ManifestInstance = class {
599
+ constructor({
600
+ manifest,
601
+ evaluator = new GroupCriteriaEvaluator({}),
602
+ // eslint-disable-next-line @typescript-eslint/no-empty-function
603
+ onLogMessage = () => {
604
+ }
605
+ }) {
606
+ __publicField(this, "data");
607
+ __privateAdd(this, _mf, void 0);
608
+ __privateAdd(this, _signalInstances, void 0);
609
+ __privateAdd(this, _goalEvaluators, void 0);
610
+ __privateAdd(this, _onLogMessage2, void 0);
611
+ var _a, _b, _c, _d;
612
+ __privateSet(this, _mf, (_a = manifest.project) != null ? _a : {});
613
+ this.data = manifest;
614
+ __privateSet(this, _signalInstances, Object.entries((_c = (_b = __privateGet(this, _mf).pz) == null ? void 0 : _b.sig) != null ? _c : []).map(
615
+ ([id, signal]) => new SignalInstance({ ...signal, id }, evaluator, onLogMessage)
616
+ ));
617
+ __privateSet(this, _goalEvaluators, Object.entries((_d = __privateGet(this, _mf).goal) != null ? _d : {}).map(([id, goal]) => {
618
+ const evaluator2 = resolveGoalEvaluator({
619
+ id,
620
+ goal
621
+ });
622
+ if (!evaluator2) {
623
+ console.warn(`Unable to resolve goal evaluator for goal ${id}`);
624
+ }
625
+ return evaluator2;
626
+ }).filter((evaluator2) => !!evaluator2));
627
+ __privateSet(this, _onLogMessage2, onLogMessage);
628
+ }
629
+ rollForControlGroup() {
630
+ var _a, _b;
631
+ return Math.random() < ((_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.control) != null ? _b : 0);
632
+ }
633
+ getTest(name) {
634
+ var _a;
635
+ return (_a = __privateGet(this, _mf).test) == null ? void 0 : _a[name];
636
+ }
637
+ computeSignals(update) {
638
+ const commands = [];
639
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "GROUP"]);
640
+ try {
641
+ __privateGet(this, _signalInstances).forEach((signal) => {
642
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "GROUP", signal.signal]);
643
+ try {
644
+ signal.computeSignal(update, commands);
645
+ } finally {
646
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "ENDGROUP"]);
647
+ }
648
+ });
649
+ } finally {
650
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "ENDGROUP"]);
651
+ }
652
+ return commands;
653
+ }
654
+ computeGoals(data) {
655
+ const commands = [];
656
+ __privateGet(this, _goalEvaluators).forEach((evaluator) => {
657
+ const { triggered } = evaluator.evaluate(data);
658
+ if (triggered) {
659
+ commands.push({
660
+ type: "setgoal",
661
+ data: {
662
+ goal: evaluator.id
663
+ }
664
+ });
665
+ }
666
+ });
667
+ return commands;
668
+ }
669
+ /**
670
+ * Computes aggregated scores based on other dimensions
671
+ */
672
+ computeAggregateDimensions(primitiveScores) {
673
+ var _a, _b;
674
+ return computeAggregateDimensions(primitiveScores, (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.agg) != null ? _b : {});
675
+ }
676
+ getDimensionByKey(scoreKey) {
677
+ var _a, _b, _c, _d;
678
+ const enrichmentIndex = scoreKey.indexOf(ENR_SEPARATOR);
679
+ if (enrichmentIndex <= 0) {
680
+ return (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.sig) == null ? void 0 : _b[scoreKey];
681
+ }
682
+ return (_d = (_c = __privateGet(this, _mf).pz) == null ? void 0 : _c.enr) == null ? void 0 : _d[scoreKey.substring(0, enrichmentIndex)];
683
+ }
684
+ };
685
+ _mf = new WeakMap();
686
+ _signalInstances = new WeakMap();
687
+ _goalEvaluators = new WeakMap();
688
+ _onLogMessage2 = new WeakMap();
689
+
545
690
  // src/placement/criteria/evaluateVariantMatch.ts
546
691
  function evaluateVariantMatch(variantId, match, vec, onLogMessage) {
547
692
  onLogMessage == null ? void 0 : onLogMessage(["info", 301, "GROUP", { id: variantId, op: match == null ? void 0 : match.op }]);
@@ -1045,6 +1190,7 @@ var emptyVisitorData = () => ({
1045
1190
  scores: {},
1046
1191
  sessionScores: {},
1047
1192
  tests: {},
1193
+ goals: {},
1048
1194
  consent: false,
1049
1195
  controlGroup: false
1050
1196
  });
@@ -1059,7 +1205,7 @@ var clone = (0, import_rfdc.default)();
1059
1205
  function applyCommandsToData(commands, state, inControlGroup) {
1060
1206
  const newData = state ? clone(state) : emptyVisitorData();
1061
1207
  commands.forEach((command) => {
1062
- var _a, _b;
1208
+ var _a, _b, _c;
1063
1209
  switch (command.type) {
1064
1210
  case "consent":
1065
1211
  newData.consent = command.data;
@@ -1095,6 +1241,10 @@ function applyCommandsToData(commands, state, inControlGroup) {
1095
1241
  case "setcontrol":
1096
1242
  newData.controlGroup = command.data;
1097
1243
  break;
1244
+ case "setgoal":
1245
+ newData.goals = (_c = newData.goals) != null ? _c : {};
1246
+ newData.goals[command.data.goal] = true;
1247
+ break;
1098
1248
  default:
1099
1249
  throw new Error(`Unknown command`);
1100
1250
  }
@@ -1260,7 +1410,7 @@ currentData_get = function() {
1260
1410
  };
1261
1411
  _replaceData = new WeakSet();
1262
1412
  replaceData_fn = function(data, quiet = false) {
1263
- var _a, _b, _c, _d, _e, _f, _g, _h, _i;
1413
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k;
1264
1414
  const oldData = __privateGet(this, _currentData, currentData_get);
1265
1415
  const now = Date.now();
1266
1416
  if (data.controlGroup) {
@@ -1281,6 +1431,7 @@ replaceData_fn = function(data, quiet = false) {
1281
1431
  const haveSessionScoresChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.sessionScores, data.sessionScores);
1282
1432
  const haveQuirksChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.quirks, data.quirks);
1283
1433
  const haveTestsChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.tests, data.tests);
1434
+ const haveGoalsChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.goals, data.goals);
1284
1435
  const updatedData = {
1285
1436
  updated: now,
1286
1437
  visitorData: data
@@ -1305,6 +1456,15 @@ replaceData_fn = function(data, quiet = false) {
1305
1456
  __privateGet(this, _mitt2).emit("controlGroupUpdated", data);
1306
1457
  (_i = (_h = __privateGet(this, _options)).onLogMessage) == null ? void 0 : _i.call(_h, ["debug", 104, (_g = data.controlGroup) != null ? _g : false]);
1307
1458
  }
1459
+ if (haveGoalsChanged) {
1460
+ const newGoalKeys = Object.keys((_j = data.goals) != null ? _j : {});
1461
+ for (let i = 0; i < newGoalKeys.length; i++) {
1462
+ const key = newGoalKeys[i];
1463
+ if (!((_k = oldData == null ? void 0 : oldData.visitorData.goals) == null ? void 0 : _k[key])) {
1464
+ __privateGet(this, _mitt2).emit("goalConverted", { goalId: key });
1465
+ }
1466
+ }
1467
+ }
1308
1468
  }
1309
1469
  };
1310
1470
  _setVisitTimeout = new WeakSet();
@@ -1357,10 +1517,10 @@ var import_lite4 = require("dequal/lite");
1357
1517
  var import_mitt3 = __toESM(require("mitt"));
1358
1518
  var CONTEXTUAL_EDITING_TEST_NAME = "contextual_editing_test";
1359
1519
  var CONTEXTUAL_EDITING_TEST_SELECTED_VARIANT_ID = "contextual_editing_test_selected_variant";
1360
- var _serverTransitionState, _scores, _state, _pzCache, _mitt3, _emitTest, emitTest_fn, _updateComputedScores, updateComputedScores_fn, _calculateScores, calculateScores_fn;
1520
+ var _serverTransitionState, _scores, _state, _pzCache, _plugins, _mitt3, _updateGoals, updateGoals_fn, _updateComputedScores, updateComputedScores_fn, _calculateScores, calculateScores_fn;
1361
1521
  var Context = class {
1362
1522
  constructor(options) {
1363
- __privateAdd(this, _emitTest);
1523
+ __privateAdd(this, _updateGoals);
1364
1524
  __privateAdd(this, _updateComputedScores);
1365
1525
  __privateAdd(this, _calculateScores);
1366
1526
  __publicField(this, "manifest");
@@ -1368,6 +1528,7 @@ var Context = class {
1368
1528
  __privateAdd(this, _scores, {});
1369
1529
  __privateAdd(this, _state, void 0);
1370
1530
  __privateAdd(this, _pzCache, {});
1531
+ __privateAdd(this, _plugins, void 0);
1371
1532
  __privateAdd(this, _mitt3, (0, import_mitt3.default)());
1372
1533
  /**
1373
1534
  * Subscribe to events
@@ -1380,7 +1541,8 @@ var Context = class {
1380
1541
  var _a, _b;
1381
1542
  const { manifest, ...storageOptions } = options;
1382
1543
  __privateSet(this, _state, {});
1383
- (_a = options.plugins) == null ? void 0 : _a.forEach((plugin) => {
1544
+ __privateSet(this, _plugins, options.plugins);
1545
+ (_a = __privateGet(this, _plugins)) == null ? void 0 : _a.forEach((plugin) => {
1384
1546
  if (!plugin.logDrain) {
1385
1547
  return;
1386
1548
  }
@@ -1423,11 +1585,15 @@ var Context = class {
1423
1585
  previousState: __privateGet(this, _state),
1424
1586
  visitor: this.storage.data
1425
1587
  });
1588
+ __privateMethod(this, _updateGoals, updateGoals_fn).call(this, {
1589
+ quirks: quirks.quirks,
1590
+ scores: void 0
1591
+ });
1426
1592
  this.storage.updateData(updates);
1427
1593
  __privateGet(this, _mitt3).emit("quirksUpdated", quirks.quirks);
1428
1594
  __privateGet(this, _mitt3).emit("log", ["info", 4, quirks.quirks]);
1429
1595
  });
1430
- (_b = options.plugins) == null ? void 0 : _b.forEach((plugin) => {
1596
+ (_b = __privateGet(this, _plugins)) == null ? void 0 : _b.forEach((plugin) => {
1431
1597
  if (!plugin.init) {
1432
1598
  return;
1433
1599
  }
@@ -1437,6 +1603,13 @@ var Context = class {
1437
1603
  __privateGet(this, _mitt3).emit("log", ["info", 1, "ENDGROUP"]);
1438
1604
  }
1439
1605
  }
1606
+ internal_emitPersonalizationResult(event) {
1607
+ __privateGet(this, _mitt3).emit("personalizationResult", event);
1608
+ __privateGet(this, _pzCache)[event.name] = event.variantIds;
1609
+ }
1610
+ internal_emitTestResult(event) {
1611
+ __privateGet(this, _mitt3).emit("testResult", event);
1612
+ }
1440
1613
  /** Gets the current visitor's dimension score vector. */
1441
1614
  get scores() {
1442
1615
  return __privateGet(this, _scores);
@@ -1542,7 +1715,7 @@ var Context = class {
1542
1715
  if (__privateGet(this, _serverTransitionState)) {
1543
1716
  __privateMethod(this, _updateComputedScores, updateComputedScores_fn).call(this, this.storage.data);
1544
1717
  Object.entries(newServerSideTests).forEach(([testName, testVariantId]) => {
1545
- __privateMethod(this, _emitTest, emitTest_fn).call(this, {
1718
+ this.internal_emitTestResult({
1546
1719
  name: testName,
1547
1720
  variantId: testVariantId,
1548
1721
  variantAssigned: true
@@ -1551,6 +1724,15 @@ var Context = class {
1551
1724
  __privateSet(this, _serverTransitionState, void 0);
1552
1725
  __privateGet(this, _mitt3).emit("log", ["debug", 131]);
1553
1726
  }
1727
+ if (__privateGet(this, _plugins)) {
1728
+ for (let i = 0; i < __privateGet(this, _plugins).length; i++) {
1729
+ const plugin = __privateGet(this, _plugins)[i];
1730
+ if (!plugin.update) {
1731
+ continue;
1732
+ }
1733
+ await plugin.update(newData);
1734
+ }
1735
+ }
1554
1736
  } finally {
1555
1737
  __privateGet(this, _mitt3).emit("log", ["info", 2, "ENDGROUP"]);
1556
1738
  }
@@ -1602,7 +1784,7 @@ var Context = class {
1602
1784
  context: this,
1603
1785
  onLogMessage: (message) => __privateGet(this, _mitt3).emit("log", message)
1604
1786
  });
1605
- __privateMethod(this, _emitTest, emitTest_fn).call(this, {
1787
+ this.internal_emitTestResult({
1606
1788
  name: options.name,
1607
1789
  variantId: (_c = (_b = value.result) == null ? void 0 : _b.id) != null ? _c : void 0,
1608
1790
  variantAssigned: value.variantAssigned
@@ -1629,8 +1811,7 @@ var Context = class {
1629
1811
  if (previousPlacement && (0, import_lite4.dequal)(eventData.variantIds, previousPlacement)) {
1630
1812
  eventData.changed = false;
1631
1813
  }
1632
- __privateGet(this, _mitt3).emit("personalizationResult", eventData);
1633
- __privateGet(this, _pzCache)[options.name] = eventData.variantIds;
1814
+ this.internal_emitPersonalizationResult(eventData);
1634
1815
  return value;
1635
1816
  }
1636
1817
  /**
@@ -1639,6 +1820,15 @@ var Context = class {
1639
1820
  */
1640
1821
  async forget(fromAllDevices) {
1641
1822
  __privateSet(this, _state, {});
1823
+ if (__privateGet(this, _plugins)) {
1824
+ for (let i = 0; i < __privateGet(this, _plugins).length; i++) {
1825
+ const plugin = __privateGet(this, _plugins)[i];
1826
+ if (!plugin.forget) {
1827
+ continue;
1828
+ }
1829
+ await plugin.forget();
1830
+ }
1831
+ }
1642
1832
  await this.storage.delete(fromAllDevices);
1643
1833
  }
1644
1834
  /**
@@ -1666,10 +1856,14 @@ _serverTransitionState = new WeakMap();
1666
1856
  _scores = new WeakMap();
1667
1857
  _state = new WeakMap();
1668
1858
  _pzCache = new WeakMap();
1859
+ _plugins = new WeakMap();
1669
1860
  _mitt3 = new WeakMap();
1670
- _emitTest = new WeakSet();
1671
- emitTest_fn = function(event) {
1672
- __privateGet(this, _mitt3).emit("testResult", event);
1861
+ _updateGoals = new WeakSet();
1862
+ updateGoals_fn = async function(data) {
1863
+ const goalCommands = this.manifest.computeGoals(data);
1864
+ if (goalCommands.length !== 0) {
1865
+ await this.storage.updateData(goalCommands);
1866
+ }
1673
1867
  };
1674
1868
  _updateComputedScores = new WeakSet();
1675
1869
  updateComputedScores_fn = function(newData) {
@@ -1677,6 +1871,10 @@ updateComputedScores_fn = function(newData) {
1677
1871
  const newScoresHaveChanged = !(0, import_lite4.dequal)(newScores, __privateGet(this, _scores));
1678
1872
  if (newScoresHaveChanged) {
1679
1873
  __privateSet(this, _scores, newScores);
1874
+ __privateMethod(this, _updateGoals, updateGoals_fn).call(this, {
1875
+ scores: __privateGet(this, _scores),
1876
+ quirks: void 0
1877
+ });
1680
1878
  __privateGet(this, _mitt3).emit("scoresUpdated", newScores);
1681
1879
  __privateGet(this, _mitt3).emit("log", ["info", 3, newScores]);
1682
1880
  }
@@ -1817,6 +2015,727 @@ var ScriptType = /* @__PURE__ */ ((ScriptType2) => {
1817
2015
  })(ScriptType || {});
1818
2016
  var EdgeNodeTagName = "nesitag";
1819
2017
 
2018
+ // src/insights/index.ts
2019
+ var import_nanoid = require("nanoid");
2020
+
2021
+ // src/insights/constants.ts
2022
+ var TIMEZONE_MAP = {
2023
+ "Asia/Barnaul": "RU",
2024
+ "Africa/Nouakchott": "MR",
2025
+ "Africa/Lusaka": "ZM",
2026
+ "Asia/Pyongyang": "KP",
2027
+ "Europe/Bratislava": "SK",
2028
+ "America/Belize": "BZ",
2029
+ "America/Maceio": "BR",
2030
+ "Pacific/Chuuk": "FM",
2031
+ "Indian/Comoro": "KM",
2032
+ "Pacific/Palau": "PW",
2033
+ "Asia/Jakarta": "ID",
2034
+ "Africa/Windhoek": "NA",
2035
+ "America/Chihuahua": "MX",
2036
+ "America/Nome": "US",
2037
+ "Africa/Mbabane": "SZ",
2038
+ "Africa/Porto-Novo": "BJ",
2039
+ "Europe/San_Marino": "SM",
2040
+ "Pacific/Fakaofo": "TK",
2041
+ "America/Denver": "US",
2042
+ "Europe/Belgrade": "RS",
2043
+ "America/Indiana/Tell_City": "US",
2044
+ "America/Fortaleza": "BR",
2045
+ "America/Halifax": "CA",
2046
+ "Europe/Bucharest": "RO",
2047
+ "America/Indiana/Petersburg": "US",
2048
+ "Europe/Kirov": "RU",
2049
+ "Europe/Athens": "GR",
2050
+ "America/Argentina/Ushuaia": "AR",
2051
+ "Europe/Monaco": "MC",
2052
+ "Europe/Vilnius": "LT",
2053
+ "Europe/Copenhagen": "DK",
2054
+ "Pacific/Kanton": "KI",
2055
+ "America/Caracas": "VE",
2056
+ "Asia/Almaty": "KZ",
2057
+ "Europe/Paris": "FR",
2058
+ "Africa/Blantyre": "MW",
2059
+ "Asia/Muscat": "OM",
2060
+ "America/North_Dakota/Beulah": "US",
2061
+ "America/Matamoros": "MX",
2062
+ "Asia/Irkutsk": "RU",
2063
+ "America/Costa_Rica": "CR",
2064
+ "America/Araguaina": "BR",
2065
+ "Atlantic/Canary": "ES",
2066
+ "America/Santo_Domingo": "DO",
2067
+ "America/Vancouver": "CA",
2068
+ "Africa/Addis_Ababa": "ET",
2069
+ "Africa/Accra": "GH",
2070
+ "Pacific/Kwajalein": "MH",
2071
+ "Asia/Baghdad": "IQ",
2072
+ "Australia/Adelaide": "AU",
2073
+ "Australia/Hobart": "AU",
2074
+ "America/Guayaquil": "EC",
2075
+ "America/Argentina/Tucuman": "AR",
2076
+ "Australia/Lindeman": "AU",
2077
+ "America/New_York": "US",
2078
+ "Pacific/Fiji": "FJ",
2079
+ "America/Antigua": "AG",
2080
+ "Africa/Casablanca": "MA",
2081
+ "America/Paramaribo": "SR",
2082
+ "Africa/Cairo": "EG",
2083
+ "America/Cayenne": "GF",
2084
+ "America/Detroit": "US",
2085
+ "Antarctica/Syowa": "AQ",
2086
+ "Africa/Douala": "CM",
2087
+ "America/Argentina/La_Rioja": "AR",
2088
+ "Africa/Lagos": "NG",
2089
+ "America/St_Barthelemy": "BL",
2090
+ "Asia/Nicosia": "CY",
2091
+ "Asia/Macau": "MO",
2092
+ "Europe/Riga": "LV",
2093
+ "Asia/Ashgabat": "TM",
2094
+ "Indian/Antananarivo": "MG",
2095
+ "America/Argentina/San_Juan": "AR",
2096
+ "Asia/Aden": "YE",
2097
+ "Asia/Tomsk": "RU",
2098
+ "America/Asuncion": "PY",
2099
+ "Pacific/Bougainville": "PG",
2100
+ "Asia/Vientiane": "LA",
2101
+ "America/Mazatlan": "MX",
2102
+ "Africa/Luanda": "AO",
2103
+ "Europe/Oslo": "NO",
2104
+ "Africa/Kinshasa": "CD",
2105
+ "Europe/Warsaw": "PL",
2106
+ "America/Grand_Turk": "TC",
2107
+ "Asia/Seoul": "KR",
2108
+ "Africa/Tripoli": "LY",
2109
+ "America/St_Thomas": "VI",
2110
+ "Asia/Kathmandu": "NP",
2111
+ "Pacific/Pitcairn": "PN",
2112
+ "Pacific/Nauru": "NR",
2113
+ "America/Curacao": "CW",
2114
+ "Asia/Kabul": "AF",
2115
+ "Pacific/Tongatapu": "TO",
2116
+ "Europe/Simferopol": "UA",
2117
+ "Asia/Ust-Nera": "RU",
2118
+ "Africa/Mogadishu": "SO",
2119
+ "Indian/Mayotte": "YT",
2120
+ "Pacific/Niue": "NU",
2121
+ "America/Thunder_Bay": "CA",
2122
+ "Atlantic/Azores": "PT",
2123
+ "Pacific/Gambier": "PF",
2124
+ "Europe/Stockholm": "SE",
2125
+ "Africa/Libreville": "GA",
2126
+ "America/Punta_Arenas": "CL",
2127
+ "America/Guatemala": "GT",
2128
+ "America/Noronha": "BR",
2129
+ "Europe/Helsinki": "FI",
2130
+ "Asia/Gaza": "PS",
2131
+ "Pacific/Kosrae": "FM",
2132
+ "America/Aruba": "AW",
2133
+ "America/Nassau": "BS",
2134
+ "Asia/Choibalsan": "MN",
2135
+ "America/Winnipeg": "CA",
2136
+ "America/Anguilla": "AI",
2137
+ "Asia/Thimphu": "BT",
2138
+ "Asia/Beirut": "LB",
2139
+ "Atlantic/Faroe": "FO",
2140
+ "Europe/Berlin": "DE",
2141
+ "Europe/Amsterdam": "NL",
2142
+ "Pacific/Honolulu": "US",
2143
+ "America/Regina": "CA",
2144
+ "America/Scoresbysund": "GL",
2145
+ "Europe/Vienna": "AT",
2146
+ "Europe/Tirane": "AL",
2147
+ "Africa/El_Aaiun": "EH",
2148
+ "America/Creston": "CA",
2149
+ "Asia/Qostanay": "KZ",
2150
+ "Asia/Ho_Chi_Minh": "VN",
2151
+ "Europe/Samara": "RU",
2152
+ "Europe/Rome": "IT",
2153
+ "Australia/Eucla": "AU",
2154
+ "America/El_Salvador": "SV",
2155
+ "America/Chicago": "US",
2156
+ "Africa/Abidjan": "CI",
2157
+ "Asia/Kamchatka": "RU",
2158
+ "Pacific/Tarawa": "KI",
2159
+ "America/Santiago": "CL",
2160
+ "America/Bahia": "BR",
2161
+ "Indian/Christmas": "CX",
2162
+ "Asia/Atyrau": "KZ",
2163
+ "Asia/Dushanbe": "TJ",
2164
+ "Europe/Ulyanovsk": "RU",
2165
+ "America/Yellowknife": "CA",
2166
+ "America/Recife": "BR",
2167
+ "Australia/Sydney": "AU",
2168
+ "America/Fort_Nelson": "CA",
2169
+ "Pacific/Efate": "VU",
2170
+ "Europe/Saratov": "RU",
2171
+ "Africa/Banjul": "GM",
2172
+ "Asia/Omsk": "RU",
2173
+ "Europe/Ljubljana": "SI",
2174
+ "Europe/Budapest": "HU",
2175
+ "Europe/Astrakhan": "RU",
2176
+ "America/Argentina/Buenos_Aires": "AR",
2177
+ "Pacific/Chatham": "NZ",
2178
+ "America/Argentina/Salta": "AR",
2179
+ "Africa/Niamey": "NE",
2180
+ "Asia/Pontianak": "ID",
2181
+ "Indian/Reunion": "RE",
2182
+ "Asia/Hong_Kong": "HK",
2183
+ "Antarctica/McMurdo": "AQ",
2184
+ "Africa/Malabo": "GQ",
2185
+ "America/Los_Angeles": "US",
2186
+ "America/Argentina/Cordoba": "AR",
2187
+ "Pacific/Pohnpei": "FM",
2188
+ "America/Tijuana": "MX",
2189
+ "America/Campo_Grande": "BR",
2190
+ "America/Dawson_Creek": "CA",
2191
+ "Asia/Novosibirsk": "RU",
2192
+ "Pacific/Pago_Pago": "AS",
2193
+ "Asia/Jerusalem": "IL",
2194
+ "Europe/Sarajevo": "BA",
2195
+ "Africa/Freetown": "SL",
2196
+ "Asia/Yekaterinburg": "RU",
2197
+ "America/Juneau": "US",
2198
+ "Africa/Ouagadougou": "BF",
2199
+ "Africa/Monrovia": "LR",
2200
+ "Europe/Kiev": "UA",
2201
+ "America/Argentina/San_Luis": "AR",
2202
+ "Asia/Tokyo": "JP",
2203
+ "Asia/Qatar": "QA",
2204
+ "America/La_Paz": "BO",
2205
+ "America/Bogota": "CO",
2206
+ "America/Thule": "GL",
2207
+ "Asia/Manila": "PH",
2208
+ "Asia/Hovd": "MN",
2209
+ "Asia/Tehran": "IR",
2210
+ "Atlantic/Madeira": "PT",
2211
+ "America/Metlakatla": "US",
2212
+ "Europe/Vatican": "VA",
2213
+ "Asia/Bishkek": "KG",
2214
+ "Asia/Dili": "TL",
2215
+ "Antarctica/Palmer": "AQ",
2216
+ "Atlantic/Cape_Verde": "CV",
2217
+ "Indian/Chagos": "IO",
2218
+ "America/Kentucky/Monticello": "US",
2219
+ "Africa/Algiers": "DZ",
2220
+ "Africa/Maseru": "LS",
2221
+ "Asia/Kuala_Lumpur": "MY",
2222
+ "Africa/Khartoum": "SD",
2223
+ "America/Argentina/Rio_Gallegos": "AR",
2224
+ "America/Blanc-Sablon": "CA",
2225
+ "Africa/Maputo": "MZ",
2226
+ "America/Tortola": "VG",
2227
+ "Atlantic/Bermuda": "BM",
2228
+ "America/Argentina/Catamarca": "AR",
2229
+ "America/Cayman": "KY",
2230
+ "America/Puerto_Rico": "PR",
2231
+ "Pacific/Majuro": "MH",
2232
+ "Europe/Busingen": "DE",
2233
+ "Pacific/Midway": "UM",
2234
+ "Indian/Cocos": "CC",
2235
+ "Asia/Singapore": "SG",
2236
+ "America/Boise": "US",
2237
+ "America/Nuuk": "GL",
2238
+ "America/Goose_Bay": "CA",
2239
+ "Australia/Broken_Hill": "AU",
2240
+ "Africa/Dar_es_Salaam": "TZ",
2241
+ "Africa/Asmara": "ER",
2242
+ "Asia/Samarkand": "UZ",
2243
+ "Asia/Tbilisi": "GE",
2244
+ "America/Argentina/Jujuy": "AR",
2245
+ "America/Indiana/Winamac": "US",
2246
+ "America/Porto_Velho": "BR",
2247
+ "Asia/Magadan": "RU",
2248
+ "Europe/Zaporozhye": "UA",
2249
+ "Antarctica/Casey": "AQ",
2250
+ "Asia/Shanghai": "CN",
2251
+ "Pacific/Norfolk": "NF",
2252
+ "Europe/Guernsey": "GG",
2253
+ "Australia/Brisbane": "AU",
2254
+ "Antarctica/DumontDUrville": "AQ",
2255
+ "America/Havana": "CU",
2256
+ "America/Atikokan": "CA",
2257
+ "America/Mexico_City": "MX",
2258
+ "America/Rankin_Inlet": "CA",
2259
+ "America/Cuiaba": "BR",
2260
+ "America/Resolute": "CA",
2261
+ "Africa/Ceuta": "ES",
2262
+ "Arctic/Longyearbyen": "SJ",
2263
+ "Pacific/Guam": "GU",
2264
+ "Asia/Damascus": "SY",
2265
+ "Asia/Colombo": "LK",
2266
+ "Asia/Yerevan": "AM",
2267
+ "America/Montserrat": "MS",
2268
+ "America/Belem": "BR",
2269
+ "Europe/Kaliningrad": "RU",
2270
+ "Atlantic/South_Georgia": "GS",
2271
+ "Asia/Tashkent": "UZ",
2272
+ "Asia/Kolkata": "IN",
2273
+ "America/St_Johns": "CA",
2274
+ "Asia/Srednekolymsk": "RU",
2275
+ "Asia/Yakutsk": "RU",
2276
+ "Europe/Prague": "CZ",
2277
+ "Africa/Djibouti": "DJ",
2278
+ "Asia/Dubai": "AE",
2279
+ "Europe/Uzhgorod": "UA",
2280
+ "America/Edmonton": "CA",
2281
+ "Asia/Famagusta": "CY",
2282
+ "America/Indiana/Knox": "US",
2283
+ "Asia/Hebron": "PS",
2284
+ "Asia/Taipei": "TW",
2285
+ "Europe/London": "GB",
2286
+ "Africa/Dakar": "SN",
2287
+ "Australia/Darwin": "AU",
2288
+ "America/Glace_Bay": "CA",
2289
+ "Antarctica/Vostok": "AQ",
2290
+ "America/Indiana/Vincennes": "US",
2291
+ "America/Nipigon": "CA",
2292
+ "Asia/Kuwait": "KW",
2293
+ "Pacific/Guadalcanal": "SB",
2294
+ "America/Toronto": "CA",
2295
+ "Africa/Gaborone": "BW",
2296
+ "Africa/Bujumbura": "BI",
2297
+ "Africa/Lubumbashi": "CD",
2298
+ "America/Merida": "MX",
2299
+ "America/Marigot": "MF",
2300
+ "Europe/Zagreb": "HR",
2301
+ "Pacific/Easter": "CL",
2302
+ "America/Santarem": "BR",
2303
+ "Pacific/Noumea": "NC",
2304
+ "America/Sitka": "US",
2305
+ "Atlantic/Stanley": "FK",
2306
+ "Pacific/Funafuti": "TV",
2307
+ "America/Iqaluit": "CA",
2308
+ "America/Rainy_River": "CA",
2309
+ "America/Anchorage": "US",
2310
+ "America/Lima": "PE",
2311
+ "Asia/Baku": "AZ",
2312
+ "America/Indiana/Vevay": "US",
2313
+ "Asia/Ulaanbaatar": "MN",
2314
+ "America/Managua": "NI",
2315
+ "Asia/Krasnoyarsk": "RU",
2316
+ "Asia/Qyzylorda": "KZ",
2317
+ "America/Eirunepe": "BR",
2318
+ "Europe/Podgorica": "ME",
2319
+ "Europe/Chisinau": "MD",
2320
+ "Europe/Mariehamn": "AX",
2321
+ "Europe/Volgograd": "RU",
2322
+ "Africa/Nairobi": "KE",
2323
+ "Europe/Isle_of_Man": "IM",
2324
+ "America/Menominee": "US",
2325
+ "Africa/Harare": "ZW",
2326
+ "Asia/Anadyr": "RU",
2327
+ "America/Moncton": "CA",
2328
+ "Indian/Maldives": "MV",
2329
+ "America/Whitehorse": "CA",
2330
+ "Antarctica/Mawson": "AQ",
2331
+ "Europe/Madrid": "ES",
2332
+ "America/Argentina/Mendoza": "AR",
2333
+ "America/Manaus": "BR",
2334
+ "Africa/Bangui": "CF",
2335
+ "Indian/Mauritius": "MU",
2336
+ "Africa/Tunis": "TN",
2337
+ "Australia/Lord_Howe": "AU",
2338
+ "America/Kentucky/Louisville": "US",
2339
+ "America/North_Dakota/Center": "US",
2340
+ "Asia/Novokuznetsk": "RU",
2341
+ "Asia/Makassar": "ID",
2342
+ "America/Port_of_Spain": "TT",
2343
+ "America/Bahia_Banderas": "MX",
2344
+ "Pacific/Auckland": "NZ",
2345
+ "America/Sao_Paulo": "BR",
2346
+ "Asia/Dhaka": "BD",
2347
+ "America/Pangnirtung": "CA",
2348
+ "Europe/Dublin": "IE",
2349
+ "Asia/Brunei": "BN",
2350
+ "Africa/Brazzaville": "CG",
2351
+ "America/Montevideo": "UY",
2352
+ "America/Jamaica": "JM",
2353
+ "America/Indiana/Indianapolis": "US",
2354
+ "America/Kralendijk": "BQ",
2355
+ "Europe/Gibraltar": "GI",
2356
+ "Pacific/Marquesas": "PF",
2357
+ "Pacific/Apia": "WS",
2358
+ "Europe/Jersey": "JE",
2359
+ "America/Phoenix": "US",
2360
+ "Africa/Ndjamena": "TD",
2361
+ "Asia/Karachi": "PK",
2362
+ "Africa/Kampala": "UG",
2363
+ "Asia/Sakhalin": "RU",
2364
+ "America/Martinique": "MQ",
2365
+ "Europe/Moscow": "RU",
2366
+ "Africa/Conakry": "GN",
2367
+ "America/Barbados": "BB",
2368
+ "Africa/Lome": "TG",
2369
+ "America/Ojinaga": "MX",
2370
+ "America/Tegucigalpa": "HN",
2371
+ "Asia/Bangkok": "TH",
2372
+ "Africa/Johannesburg": "ZA",
2373
+ "Europe/Vaduz": "LI",
2374
+ "Africa/Sao_Tome": "ST",
2375
+ "America/Cambridge_Bay": "CA",
2376
+ "America/Lower_Princes": "SX",
2377
+ "America/Miquelon": "PM",
2378
+ "America/St_Kitts": "KN",
2379
+ "Australia/Melbourne": "AU",
2380
+ "Europe/Minsk": "BY",
2381
+ "Asia/Vladivostok": "RU",
2382
+ "Europe/Sofia": "BG",
2383
+ "Antarctica/Davis": "AQ",
2384
+ "Pacific/Galapagos": "EC",
2385
+ "America/North_Dakota/New_Salem": "US",
2386
+ "Asia/Amman": "JO",
2387
+ "Pacific/Wallis": "WF",
2388
+ "America/Hermosillo": "MX",
2389
+ "Pacific/Kiritimati": "KI",
2390
+ "Antarctica/Macquarie": "AU",
2391
+ "America/Guyana": "GY",
2392
+ "Asia/Riyadh": "SA",
2393
+ "Pacific/Tahiti": "PF",
2394
+ "America/St_Vincent": "VC",
2395
+ "America/Cancun": "MX",
2396
+ "America/Grenada": "GD",
2397
+ "Pacific/Wake": "UM",
2398
+ "America/Dawson": "CA",
2399
+ "Europe/Brussels": "BE",
2400
+ "Indian/Kerguelen": "TF",
2401
+ "America/Yakutat": "US",
2402
+ "Indian/Mahe": "SC",
2403
+ "Atlantic/Reykjavik": "IS",
2404
+ "America/Panama": "PA",
2405
+ "America/Guadeloupe": "GP",
2406
+ "Europe/Malta": "MT",
2407
+ "Antarctica/Troll": "AQ",
2408
+ "Asia/Jayapura": "ID",
2409
+ "Asia/Bahrain": "BH",
2410
+ "Asia/Chita": "RU",
2411
+ "Europe/Tallinn": "EE",
2412
+ "Asia/Khandyga": "RU",
2413
+ "America/Rio_Branco": "BR",
2414
+ "Atlantic/St_Helena": "SH",
2415
+ "Africa/Juba": "SS",
2416
+ "America/Adak": "US",
2417
+ "Pacific/Saipan": "MP",
2418
+ "America/St_Lucia": "LC",
2419
+ "America/Inuvik": "CA",
2420
+ "Europe/Luxembourg": "LU",
2421
+ "Africa/Bissau": "GW",
2422
+ "Asia/Oral": "KZ",
2423
+ "America/Boa_Vista": "BR",
2424
+ "Europe/Skopje": "MK",
2425
+ "America/Port-au-Prince": "HT",
2426
+ "Pacific/Port_Moresby": "PG",
2427
+ "Europe/Andorra": "AD",
2428
+ "America/Indiana/Marengo": "US",
2429
+ "Africa/Kigali": "RW",
2430
+ "Africa/Bamako": "ML",
2431
+ "America/Dominica": "DM",
2432
+ "Asia/Aqtobe": "KZ",
2433
+ "Europe/Istanbul": "TR",
2434
+ "Pacific/Rarotonga": "CK",
2435
+ "America/Danmarkshavn": "GL",
2436
+ "Europe/Zurich": "CH",
2437
+ "Asia/Yangon": "MM",
2438
+ "America/Monterrey": "MX",
2439
+ "Europe/Lisbon": "PT",
2440
+ "Asia/Kuching": "MY",
2441
+ "Antarctica/Rothera": "AQ",
2442
+ "Australia/Perth": "AU",
2443
+ "Asia/Phnom_Penh": "KH",
2444
+ "America/Swift_Current": "CA",
2445
+ "Asia/Aqtau": "KZ",
2446
+ "Asia/Urumqi": "CN",
2447
+ "Asia/Calcutta": "IN"
2448
+ };
2449
+
2450
+ // src/insights/index.ts
2451
+ var getBasePayload = () => {
2452
+ const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
2453
+ const location = TIMEZONE_MAP[timeZone];
2454
+ const locale = navigator.languages && navigator.languages.length ? navigator.languages[0] : navigator.userLanguage || navigator.language || navigator.browserLanguage || "en";
2455
+ return {
2456
+ "user-agent": window.navigator.userAgent,
2457
+ locale,
2458
+ location,
2459
+ referrer: document.referrer,
2460
+ pathname: window.location.pathname,
2461
+ href: window.location.href
2462
+ };
2463
+ };
2464
+ var createInsightsClient = ({ endpoint }) => {
2465
+ const url = new URL(endpoint.host);
2466
+ url.pathname = "/v0/events";
2467
+ url.searchParams.set("name", "analytics_events");
2468
+ const endpointUrl = url.toString();
2469
+ const sendMessage = async (message) => {
2470
+ const converted = {
2471
+ ...message,
2472
+ payload: JSON.stringify(message.payload)
2473
+ };
2474
+ const response = await fetch(endpointUrl, {
2475
+ method: "POST",
2476
+ headers: {
2477
+ "Content-Type": "application/json",
2478
+ Authorization: `Bearer ${endpoint.apiKey}`
2479
+ },
2480
+ body: JSON.stringify(converted)
2481
+ });
2482
+ const json = await response.json();
2483
+ return json;
2484
+ };
2485
+ return {
2486
+ sessionStart: (options) => {
2487
+ const message = {
2488
+ action: "session_start",
2489
+ version: "1",
2490
+ session_id: options.sessionId,
2491
+ visitor_id: options.visitorId,
2492
+ page_view_id: options.pageId,
2493
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2494
+ payload: {
2495
+ ...getBasePayload(),
2496
+ previous_session_id: options.previousSessionId
2497
+ }
2498
+ };
2499
+ return sendMessage(message);
2500
+ },
2501
+ pageHit: (options) => {
2502
+ const message = {
2503
+ action: "page_hit",
2504
+ version: "1",
2505
+ session_id: options.sessionId,
2506
+ visitor_id: options.visitorId,
2507
+ page_view_id: options.pageId,
2508
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2509
+ payload: getBasePayload()
2510
+ };
2511
+ return sendMessage(message);
2512
+ },
2513
+ testResult: (options) => {
2514
+ const message = {
2515
+ action: "test_result",
2516
+ version: "1",
2517
+ session_id: options.sessionId,
2518
+ visitor_id: options.visitorId,
2519
+ page_view_id: options.pageId,
2520
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2521
+ payload: {
2522
+ ...getBasePayload(),
2523
+ ...options
2524
+ }
2525
+ };
2526
+ return sendMessage(message);
2527
+ },
2528
+ personalizationResult: async (options) => {
2529
+ const messages = options.variantIds.map((variantId) => {
2530
+ const message = {
2531
+ action: "personalization_result",
2532
+ version: "1",
2533
+ session_id: options.sessionId,
2534
+ visitor_id: options.visitorId,
2535
+ page_view_id: options.pageId,
2536
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2537
+ payload: {
2538
+ ...getBasePayload(),
2539
+ name: options.name,
2540
+ variantId,
2541
+ control: options.control,
2542
+ changed: options.changed
2543
+ }
2544
+ };
2545
+ return message;
2546
+ });
2547
+ await Promise.all(messages.map((message) => sendMessage(message)));
2548
+ },
2549
+ goalConvert: (options) => {
2550
+ const message = {
2551
+ action: "goal_convert",
2552
+ version: "1",
2553
+ session_id: options.sessionId,
2554
+ visitor_id: options.visitorId,
2555
+ page_view_id: options.pageId,
2556
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2557
+ payload: {
2558
+ ...getBasePayload(),
2559
+ goalId: options.goalId
2560
+ }
2561
+ };
2562
+ return sendMessage(message);
2563
+ }
2564
+ };
2565
+ };
2566
+ var createInsightsStorage = () => {
2567
+ const STORAGE_KEY2 = "ufin";
2568
+ return {
2569
+ get: () => {
2570
+ const data = localStorage.getItem(STORAGE_KEY2);
2571
+ if (!data) {
2572
+ return;
2573
+ }
2574
+ return JSON.parse(data);
2575
+ },
2576
+ set: (data) => {
2577
+ const toSet = {
2578
+ ...data,
2579
+ updated: Date.now()
2580
+ };
2581
+ localStorage.setItem(STORAGE_KEY2, JSON.stringify(toSet));
2582
+ },
2583
+ clear: () => {
2584
+ localStorage.removeItem(STORAGE_KEY2);
2585
+ }
2586
+ };
2587
+ };
2588
+ var generateVisitorId = () => {
2589
+ return `visitor_${(0, import_nanoid.nanoid)()}`;
2590
+ };
2591
+ var generateSessionId = () => {
2592
+ return `session_${(0, import_nanoid.nanoid)()}`;
2593
+ };
2594
+ var generatePageId = () => {
2595
+ return `page_${(0, import_nanoid.nanoid)()}`;
2596
+ };
2597
+ var createInsights = ({
2598
+ endpoint,
2599
+ sessionDurationSeconds = 30 * 60
2600
+ }) => {
2601
+ const client = createInsightsClient({
2602
+ endpoint
2603
+ });
2604
+ const storage = createInsightsStorage();
2605
+ let storageData = void 0;
2606
+ let pageId = generatePageId();
2607
+ return {
2608
+ init: () => {
2609
+ storageData = storage.get();
2610
+ if (!storageData || Date.now() - storageData.updated > sessionDurationSeconds * 1e3) {
2611
+ const previousSessionId = storageData == null ? void 0 : storageData.sessionId;
2612
+ storageData = {
2613
+ visitorId: (storageData == null ? void 0 : storageData.visitorId) || generateVisitorId(),
2614
+ sessionId: generateSessionId(),
2615
+ updated: Date.now()
2616
+ };
2617
+ storage.set(storageData);
2618
+ client.sessionStart({
2619
+ visitorId: storageData.visitorId,
2620
+ sessionId: storageData.sessionId,
2621
+ previousSessionId,
2622
+ maxAgeSeconds: sessionDurationSeconds,
2623
+ pageId
2624
+ });
2625
+ } else if (storageData) {
2626
+ storage.set(storageData);
2627
+ }
2628
+ },
2629
+ pageHit: () => {
2630
+ if (!storageData) {
2631
+ console.error("Insights not initialized");
2632
+ return;
2633
+ }
2634
+ client.pageHit({
2635
+ visitorId: storageData.visitorId,
2636
+ sessionId: storageData.sessionId,
2637
+ pageId
2638
+ });
2639
+ },
2640
+ testResult: (result) => {
2641
+ if (!storageData) {
2642
+ console.error("Insights not initialized");
2643
+ return;
2644
+ }
2645
+ client.testResult({
2646
+ ...result,
2647
+ visitorId: storageData.visitorId,
2648
+ sessionId: storageData.sessionId,
2649
+ pageId
2650
+ });
2651
+ pageId = generatePageId();
2652
+ },
2653
+ personalizationResult: (result) => {
2654
+ if (!storageData) {
2655
+ console.error("Insights not initialized");
2656
+ return;
2657
+ }
2658
+ client.personalizationResult({
2659
+ ...result,
2660
+ visitorId: storageData.visitorId,
2661
+ sessionId: storageData.sessionId,
2662
+ pageId
2663
+ });
2664
+ },
2665
+ goalConvert: (goalId) => {
2666
+ if (!storageData) {
2667
+ console.error("Insights not initialized");
2668
+ return;
2669
+ }
2670
+ client.goalConvert({
2671
+ visitorId: storageData.visitorId,
2672
+ sessionId: storageData.sessionId,
2673
+ goalId,
2674
+ pageId
2675
+ });
2676
+ },
2677
+ forget: () => {
2678
+ storage.clear();
2679
+ storageData = void 0;
2680
+ },
2681
+ get sessionId() {
2682
+ return storageData == null ? void 0 : storageData.sessionId;
2683
+ }
2684
+ };
2685
+ };
2686
+ var enableUniformInsights = (options) => {
2687
+ const insights = createInsights({
2688
+ endpoint: options.endpoint
2689
+ });
2690
+ let previousUrl = void 0;
2691
+ return {
2692
+ init: (context) => {
2693
+ if (typeof window === "undefined") {
2694
+ return () => {
2695
+ };
2696
+ }
2697
+ const consentChanged = () => {
2698
+ if (context.storage.data.consent) {
2699
+ insights.init();
2700
+ } else {
2701
+ insights.forget();
2702
+ }
2703
+ };
2704
+ const handlePersonalizationResult = (data) => {
2705
+ insights.personalizationResult(data);
2706
+ };
2707
+ const handleTestResult = (result) => {
2708
+ insights.testResult(result);
2709
+ };
2710
+ const handleGoalConvert = (result) => {
2711
+ insights.goalConvert(result.goalId);
2712
+ };
2713
+ context.storage.events.on("goalConverted", handleGoalConvert);
2714
+ context.storage.events.on("consentUpdated", consentChanged);
2715
+ context.events.on("personalizationResult", handlePersonalizationResult);
2716
+ context.events.on("testResult", handleTestResult);
2717
+ if (context.storage.data.consent) {
2718
+ consentChanged();
2719
+ }
2720
+ return () => {
2721
+ context.storage.events.off("consentUpdated", consentChanged);
2722
+ context.storage.events.off("goalConverted", handleGoalConvert);
2723
+ context.events.off("personalizationResult", handlePersonalizationResult);
2724
+ context.events.off("testResult", handleTestResult);
2725
+ };
2726
+ },
2727
+ update: (context) => {
2728
+ if (context.url && context.url !== previousUrl) {
2729
+ previousUrl = context.url;
2730
+ insights.pageHit();
2731
+ }
2732
+ },
2733
+ forget: () => {
2734
+ insights.forget();
2735
+ }
2736
+ };
2737
+ };
2738
+
1820
2739
  // src/logging/enableConsoleLogDrain.ts
1821
2740
  var import_rfdc2 = __toESM(require("rfdc"));
1822
2741
 
@@ -2021,6 +2940,7 @@ function parseQuickConnect(serialized) {
2021
2940
  enableConsoleLogDrain,
2022
2941
  enableContextDevTools,
2023
2942
  enableDebugConsoleLogDrain,
2943
+ enableUniformInsights,
2024
2944
  evaluateVariantMatch,
2025
2945
  eventEvaluator,
2026
2946
  explainStringMatch,