@uniformdev/context 19.79.0 → 19.79.1-alpha.13

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,236 @@ 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
+ let control = (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.control) != null ? _b : 0;
632
+ if (control >= 1) {
633
+ control = control / 100;
634
+ }
635
+ return Math.random() < control;
636
+ }
637
+ getTest(name) {
638
+ var _a;
639
+ return (_a = __privateGet(this, _mf).test) == null ? void 0 : _a[name];
640
+ }
641
+ computeSignals(update) {
642
+ const commands = [];
643
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "GROUP"]);
644
+ try {
645
+ __privateGet(this, _signalInstances).forEach((signal) => {
646
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "GROUP", signal.signal]);
647
+ try {
648
+ signal.computeSignal(update, commands);
649
+ } finally {
650
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 201, "ENDGROUP"]);
651
+ }
652
+ });
653
+ } finally {
654
+ __privateGet(this, _onLogMessage2).call(this, ["debug", 200, "ENDGROUP"]);
655
+ }
656
+ return commands;
657
+ }
658
+ computeGoals(data) {
659
+ const commands = [];
660
+ __privateGet(this, _goalEvaluators).forEach((evaluator) => {
661
+ const { triggered } = evaluator.evaluate(data);
662
+ if (triggered) {
663
+ commands.push({
664
+ type: "setgoal",
665
+ data: {
666
+ goal: evaluator.id
667
+ }
668
+ });
669
+ }
670
+ });
671
+ return commands;
672
+ }
673
+ /**
674
+ * Computes aggregated scores based on other dimensions
675
+ */
676
+ computeAggregateDimensions(primitiveScores) {
677
+ var _a, _b;
678
+ return computeAggregateDimensions(primitiveScores, (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.agg) != null ? _b : {});
679
+ }
680
+ getDimensionByKey(scoreKey) {
681
+ var _a, _b, _c, _d;
682
+ const enrichmentIndex = scoreKey.indexOf(ENR_SEPARATOR);
683
+ if (enrichmentIndex <= 0) {
684
+ return (_b = (_a = __privateGet(this, _mf).pz) == null ? void 0 : _a.sig) == null ? void 0 : _b[scoreKey];
685
+ }
686
+ return (_d = (_c = __privateGet(this, _mf).pz) == null ? void 0 : _c.enr) == null ? void 0 : _d[scoreKey.substring(0, enrichmentIndex)];
687
+ }
688
+ };
689
+ _mf = new WeakMap();
690
+ _signalInstances = new WeakMap();
691
+ _goalEvaluators = new WeakMap();
692
+ _onLogMessage2 = new WeakMap();
693
+
545
694
  // src/placement/criteria/evaluateVariantMatch.ts
546
695
  function evaluateVariantMatch(variantId, match, vec, onLogMessage) {
547
696
  onLogMessage == null ? void 0 : onLogMessage(["info", 301, "GROUP", { id: variantId, op: match == null ? void 0 : match.op }]);
@@ -1045,6 +1194,7 @@ var emptyVisitorData = () => ({
1045
1194
  scores: {},
1046
1195
  sessionScores: {},
1047
1196
  tests: {},
1197
+ goals: {},
1048
1198
  consent: false,
1049
1199
  controlGroup: false
1050
1200
  });
@@ -1059,7 +1209,7 @@ var clone = (0, import_rfdc.default)();
1059
1209
  function applyCommandsToData(commands, state, inControlGroup) {
1060
1210
  const newData = state ? clone(state) : emptyVisitorData();
1061
1211
  commands.forEach((command) => {
1062
- var _a, _b;
1212
+ var _a, _b, _c;
1063
1213
  switch (command.type) {
1064
1214
  case "consent":
1065
1215
  newData.consent = command.data;
@@ -1095,6 +1245,10 @@ function applyCommandsToData(commands, state, inControlGroup) {
1095
1245
  case "setcontrol":
1096
1246
  newData.controlGroup = command.data;
1097
1247
  break;
1248
+ case "setgoal":
1249
+ newData.goals = (_c = newData.goals) != null ? _c : {};
1250
+ newData.goals[command.data.goal] = true;
1251
+ break;
1098
1252
  default:
1099
1253
  throw new Error(`Unknown command`);
1100
1254
  }
@@ -1260,7 +1414,7 @@ currentData_get = function() {
1260
1414
  };
1261
1415
  _replaceData = new WeakSet();
1262
1416
  replaceData_fn = function(data, quiet = false) {
1263
- var _a, _b, _c, _d, _e, _f, _g, _h, _i;
1417
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k;
1264
1418
  const oldData = __privateGet(this, _currentData, currentData_get);
1265
1419
  const now = Date.now();
1266
1420
  if (data.controlGroup) {
@@ -1281,6 +1435,7 @@ replaceData_fn = function(data, quiet = false) {
1281
1435
  const haveSessionScoresChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.sessionScores, data.sessionScores);
1282
1436
  const haveQuirksChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.quirks, data.quirks);
1283
1437
  const haveTestsChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.tests, data.tests);
1438
+ const haveGoalsChanged = !(0, import_lite3.dequal)(oldData == null ? void 0 : oldData.visitorData.goals, data.goals);
1284
1439
  const updatedData = {
1285
1440
  updated: now,
1286
1441
  visitorData: data
@@ -1305,6 +1460,15 @@ replaceData_fn = function(data, quiet = false) {
1305
1460
  __privateGet(this, _mitt2).emit("controlGroupUpdated", data);
1306
1461
  (_i = (_h = __privateGet(this, _options)).onLogMessage) == null ? void 0 : _i.call(_h, ["debug", 104, (_g = data.controlGroup) != null ? _g : false]);
1307
1462
  }
1463
+ if (haveGoalsChanged) {
1464
+ const newGoalKeys = Object.keys((_j = data.goals) != null ? _j : {});
1465
+ for (let i = 0; i < newGoalKeys.length; i++) {
1466
+ const key = newGoalKeys[i];
1467
+ if (!((_k = oldData == null ? void 0 : oldData.visitorData.goals) == null ? void 0 : _k[key])) {
1468
+ __privateGet(this, _mitt2).emit("goalConverted", { goalId: key });
1469
+ }
1470
+ }
1471
+ }
1308
1472
  }
1309
1473
  };
1310
1474
  _setVisitTimeout = new WeakSet();
@@ -1357,10 +1521,11 @@ var import_lite4 = require("dequal/lite");
1357
1521
  var import_mitt3 = __toESM(require("mitt"));
1358
1522
  var CONTEXTUAL_EDITING_TEST_NAME = "contextual_editing_test";
1359
1523
  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;
1524
+ var _serverTransitionState, _scores, _state, _pzCache, _plugins, _mitt3, _emitTest, emitTest_fn, _updateGoals, updateGoals_fn, _updateComputedScores, updateComputedScores_fn, _calculateScores, calculateScores_fn;
1361
1525
  var Context = class {
1362
1526
  constructor(options) {
1363
1527
  __privateAdd(this, _emitTest);
1528
+ __privateAdd(this, _updateGoals);
1364
1529
  __privateAdd(this, _updateComputedScores);
1365
1530
  __privateAdd(this, _calculateScores);
1366
1531
  __publicField(this, "manifest");
@@ -1368,6 +1533,7 @@ var Context = class {
1368
1533
  __privateAdd(this, _scores, {});
1369
1534
  __privateAdd(this, _state, void 0);
1370
1535
  __privateAdd(this, _pzCache, {});
1536
+ __privateAdd(this, _plugins, void 0);
1371
1537
  __privateAdd(this, _mitt3, (0, import_mitt3.default)());
1372
1538
  /**
1373
1539
  * Subscribe to events
@@ -1380,7 +1546,8 @@ var Context = class {
1380
1546
  var _a, _b;
1381
1547
  const { manifest, ...storageOptions } = options;
1382
1548
  __privateSet(this, _state, {});
1383
- (_a = options.plugins) == null ? void 0 : _a.forEach((plugin) => {
1549
+ __privateSet(this, _plugins, options.plugins);
1550
+ (_a = __privateGet(this, _plugins)) == null ? void 0 : _a.forEach((plugin) => {
1384
1551
  if (!plugin.logDrain) {
1385
1552
  return;
1386
1553
  }
@@ -1423,11 +1590,15 @@ var Context = class {
1423
1590
  previousState: __privateGet(this, _state),
1424
1591
  visitor: this.storage.data
1425
1592
  });
1593
+ __privateMethod(this, _updateGoals, updateGoals_fn).call(this, {
1594
+ quirks: quirks.quirks,
1595
+ scores: void 0
1596
+ });
1426
1597
  this.storage.updateData(updates);
1427
1598
  __privateGet(this, _mitt3).emit("quirksUpdated", quirks.quirks);
1428
1599
  __privateGet(this, _mitt3).emit("log", ["info", 4, quirks.quirks]);
1429
1600
  });
1430
- (_b = options.plugins) == null ? void 0 : _b.forEach((plugin) => {
1601
+ (_b = __privateGet(this, _plugins)) == null ? void 0 : _b.forEach((plugin) => {
1431
1602
  if (!plugin.init) {
1432
1603
  return;
1433
1604
  }
@@ -1551,6 +1722,15 @@ var Context = class {
1551
1722
  __privateSet(this, _serverTransitionState, void 0);
1552
1723
  __privateGet(this, _mitt3).emit("log", ["debug", 131]);
1553
1724
  }
1725
+ if (__privateGet(this, _plugins)) {
1726
+ for (let i = 0; i < __privateGet(this, _plugins).length; i++) {
1727
+ const plugin = __privateGet(this, _plugins)[i];
1728
+ if (!plugin.update) {
1729
+ continue;
1730
+ }
1731
+ await plugin.update(newData);
1732
+ }
1733
+ }
1554
1734
  } finally {
1555
1735
  __privateGet(this, _mitt3).emit("log", ["info", 2, "ENDGROUP"]);
1556
1736
  }
@@ -1639,6 +1819,15 @@ var Context = class {
1639
1819
  */
1640
1820
  async forget(fromAllDevices) {
1641
1821
  __privateSet(this, _state, {});
1822
+ if (__privateGet(this, _plugins)) {
1823
+ for (let i = 0; i < __privateGet(this, _plugins).length; i++) {
1824
+ const plugin = __privateGet(this, _plugins)[i];
1825
+ if (!plugin.forget) {
1826
+ continue;
1827
+ }
1828
+ await plugin.forget();
1829
+ }
1830
+ }
1642
1831
  await this.storage.delete(fromAllDevices);
1643
1832
  }
1644
1833
  /**
@@ -1661,22 +1850,46 @@ var Context = class {
1661
1850
  });
1662
1851
  return transitionState;
1663
1852
  }
1853
+ /** @deprecated */
1854
+ internal_processTestEvent(event) {
1855
+ if (event.variantId) {
1856
+ this.setTestVariantId(event.name, event.variantId);
1857
+ __privateMethod(this, _emitTest, emitTest_fn).call(this, event);
1858
+ }
1859
+ }
1860
+ /** @deprecated */
1861
+ internal_processPersonalizationEvent(event) {
1862
+ __privateGet(this, _pzCache)[event.name] = event.variantIds;
1863
+ __privateGet(this, _mitt3).emit("personalizationResult", event);
1864
+ }
1664
1865
  };
1665
1866
  _serverTransitionState = new WeakMap();
1666
1867
  _scores = new WeakMap();
1667
1868
  _state = new WeakMap();
1668
1869
  _pzCache = new WeakMap();
1870
+ _plugins = new WeakMap();
1669
1871
  _mitt3 = new WeakMap();
1670
1872
  _emitTest = new WeakSet();
1671
1873
  emitTest_fn = function(event) {
1672
1874
  __privateGet(this, _mitt3).emit("testResult", event);
1673
1875
  };
1876
+ _updateGoals = new WeakSet();
1877
+ updateGoals_fn = async function(data) {
1878
+ const goalCommands = this.manifest.computeGoals(data);
1879
+ if (goalCommands.length !== 0) {
1880
+ await this.storage.updateData(goalCommands);
1881
+ }
1882
+ };
1674
1883
  _updateComputedScores = new WeakSet();
1675
1884
  updateComputedScores_fn = function(newData) {
1676
1885
  const newScores = __privateMethod(this, _calculateScores, calculateScores_fn).call(this, newData);
1677
1886
  const newScoresHaveChanged = !(0, import_lite4.dequal)(newScores, __privateGet(this, _scores));
1678
1887
  if (newScoresHaveChanged) {
1679
1888
  __privateSet(this, _scores, newScores);
1889
+ __privateMethod(this, _updateGoals, updateGoals_fn).call(this, {
1890
+ scores: __privateGet(this, _scores),
1891
+ quirks: void 0
1892
+ });
1680
1893
  __privateGet(this, _mitt3).emit("scoresUpdated", newScores);
1681
1894
  __privateGet(this, _mitt3).emit("log", ["info", 3, newScores]);
1682
1895
  }
@@ -1771,10 +1984,8 @@ function enableContextDevTools(options) {
1771
1984
  context.events.on("personalizationResult", onPersonalizationResult);
1772
1985
  context.events.on("testResult", onTestResult);
1773
1986
  context.events.on("scoresUpdated", onContextDataUpdated);
1774
- context.storage.events.on("*", onContextDataUpdated);
1775
1987
  return () => {
1776
1988
  context.events.off("scoresUpdated", onContextDataUpdated);
1777
- context.storage.events.off("*", onContextDataUpdated);
1778
1989
  context.events.off("personalizationResult", onPersonalizationResult);
1779
1990
  context.events.off("testResult", onTestResult);
1780
1991
  };
@@ -1817,6 +2028,763 @@ var ScriptType = /* @__PURE__ */ ((ScriptType2) => {
1817
2028
  })(ScriptType || {});
1818
2029
  var EdgeNodeTagName = "nesitag";
1819
2030
 
2031
+ // src/insights/index.ts
2032
+ var import_uuid = require("uuid");
2033
+
2034
+ // src/insights/constants.ts
2035
+ var TIMEZONE_MAP = {
2036
+ "Asia/Barnaul": "RU",
2037
+ "Africa/Nouakchott": "MR",
2038
+ "Africa/Lusaka": "ZM",
2039
+ "Asia/Pyongyang": "KP",
2040
+ "Europe/Bratislava": "SK",
2041
+ "America/Belize": "BZ",
2042
+ "America/Maceio": "BR",
2043
+ "Pacific/Chuuk": "FM",
2044
+ "Indian/Comoro": "KM",
2045
+ "Pacific/Palau": "PW",
2046
+ "Asia/Jakarta": "ID",
2047
+ "Africa/Windhoek": "NA",
2048
+ "America/Chihuahua": "MX",
2049
+ "America/Nome": "US",
2050
+ "Africa/Mbabane": "SZ",
2051
+ "Africa/Porto-Novo": "BJ",
2052
+ "Europe/San_Marino": "SM",
2053
+ "Pacific/Fakaofo": "TK",
2054
+ "America/Denver": "US",
2055
+ "Europe/Belgrade": "RS",
2056
+ "America/Indiana/Tell_City": "US",
2057
+ "America/Fortaleza": "BR",
2058
+ "America/Halifax": "CA",
2059
+ "Europe/Bucharest": "RO",
2060
+ "America/Indiana/Petersburg": "US",
2061
+ "Europe/Kirov": "RU",
2062
+ "Europe/Athens": "GR",
2063
+ "America/Argentina/Ushuaia": "AR",
2064
+ "Europe/Monaco": "MC",
2065
+ "Europe/Vilnius": "LT",
2066
+ "Europe/Copenhagen": "DK",
2067
+ "Pacific/Kanton": "KI",
2068
+ "America/Caracas": "VE",
2069
+ "Asia/Almaty": "KZ",
2070
+ "Europe/Paris": "FR",
2071
+ "Africa/Blantyre": "MW",
2072
+ "Asia/Muscat": "OM",
2073
+ "America/North_Dakota/Beulah": "US",
2074
+ "America/Matamoros": "MX",
2075
+ "Asia/Irkutsk": "RU",
2076
+ "America/Costa_Rica": "CR",
2077
+ "America/Araguaina": "BR",
2078
+ "Atlantic/Canary": "ES",
2079
+ "America/Santo_Domingo": "DO",
2080
+ "America/Vancouver": "CA",
2081
+ "Africa/Addis_Ababa": "ET",
2082
+ "Africa/Accra": "GH",
2083
+ "Pacific/Kwajalein": "MH",
2084
+ "Asia/Baghdad": "IQ",
2085
+ "Australia/Adelaide": "AU",
2086
+ "Australia/Hobart": "AU",
2087
+ "America/Guayaquil": "EC",
2088
+ "America/Argentina/Tucuman": "AR",
2089
+ "Australia/Lindeman": "AU",
2090
+ "America/New_York": "US",
2091
+ "Pacific/Fiji": "FJ",
2092
+ "America/Antigua": "AG",
2093
+ "Africa/Casablanca": "MA",
2094
+ "America/Paramaribo": "SR",
2095
+ "Africa/Cairo": "EG",
2096
+ "America/Cayenne": "GF",
2097
+ "America/Detroit": "US",
2098
+ "Antarctica/Syowa": "AQ",
2099
+ "Africa/Douala": "CM",
2100
+ "America/Argentina/La_Rioja": "AR",
2101
+ "Africa/Lagos": "NG",
2102
+ "America/St_Barthelemy": "BL",
2103
+ "Asia/Nicosia": "CY",
2104
+ "Asia/Macau": "MO",
2105
+ "Europe/Riga": "LV",
2106
+ "Asia/Ashgabat": "TM",
2107
+ "Indian/Antananarivo": "MG",
2108
+ "America/Argentina/San_Juan": "AR",
2109
+ "Asia/Aden": "YE",
2110
+ "Asia/Tomsk": "RU",
2111
+ "America/Asuncion": "PY",
2112
+ "Pacific/Bougainville": "PG",
2113
+ "Asia/Vientiane": "LA",
2114
+ "America/Mazatlan": "MX",
2115
+ "Africa/Luanda": "AO",
2116
+ "Europe/Oslo": "NO",
2117
+ "Africa/Kinshasa": "CD",
2118
+ "Europe/Warsaw": "PL",
2119
+ "America/Grand_Turk": "TC",
2120
+ "Asia/Seoul": "KR",
2121
+ "Africa/Tripoli": "LY",
2122
+ "America/St_Thomas": "VI",
2123
+ "Asia/Kathmandu": "NP",
2124
+ "Pacific/Pitcairn": "PN",
2125
+ "Pacific/Nauru": "NR",
2126
+ "America/Curacao": "CW",
2127
+ "Asia/Kabul": "AF",
2128
+ "Pacific/Tongatapu": "TO",
2129
+ "Europe/Simferopol": "UA",
2130
+ "Asia/Ust-Nera": "RU",
2131
+ "Africa/Mogadishu": "SO",
2132
+ "Indian/Mayotte": "YT",
2133
+ "Pacific/Niue": "NU",
2134
+ "America/Thunder_Bay": "CA",
2135
+ "Atlantic/Azores": "PT",
2136
+ "Pacific/Gambier": "PF",
2137
+ "Europe/Stockholm": "SE",
2138
+ "Africa/Libreville": "GA",
2139
+ "America/Punta_Arenas": "CL",
2140
+ "America/Guatemala": "GT",
2141
+ "America/Noronha": "BR",
2142
+ "Europe/Helsinki": "FI",
2143
+ "Asia/Gaza": "PS",
2144
+ "Pacific/Kosrae": "FM",
2145
+ "America/Aruba": "AW",
2146
+ "America/Nassau": "BS",
2147
+ "Asia/Choibalsan": "MN",
2148
+ "America/Winnipeg": "CA",
2149
+ "America/Anguilla": "AI",
2150
+ "Asia/Thimphu": "BT",
2151
+ "Asia/Beirut": "LB",
2152
+ "Atlantic/Faroe": "FO",
2153
+ "Europe/Berlin": "DE",
2154
+ "Europe/Amsterdam": "NL",
2155
+ "Pacific/Honolulu": "US",
2156
+ "America/Regina": "CA",
2157
+ "America/Scoresbysund": "GL",
2158
+ "Europe/Vienna": "AT",
2159
+ "Europe/Tirane": "AL",
2160
+ "Africa/El_Aaiun": "EH",
2161
+ "America/Creston": "CA",
2162
+ "Asia/Qostanay": "KZ",
2163
+ "Asia/Ho_Chi_Minh": "VN",
2164
+ "Europe/Samara": "RU",
2165
+ "Europe/Rome": "IT",
2166
+ "Australia/Eucla": "AU",
2167
+ "America/El_Salvador": "SV",
2168
+ "America/Chicago": "US",
2169
+ "Africa/Abidjan": "CI",
2170
+ "Asia/Kamchatka": "RU",
2171
+ "Pacific/Tarawa": "KI",
2172
+ "America/Santiago": "CL",
2173
+ "America/Bahia": "BR",
2174
+ "Indian/Christmas": "CX",
2175
+ "Asia/Atyrau": "KZ",
2176
+ "Asia/Dushanbe": "TJ",
2177
+ "Europe/Ulyanovsk": "RU",
2178
+ "America/Yellowknife": "CA",
2179
+ "America/Recife": "BR",
2180
+ "Australia/Sydney": "AU",
2181
+ "America/Fort_Nelson": "CA",
2182
+ "Pacific/Efate": "VU",
2183
+ "Europe/Saratov": "RU",
2184
+ "Africa/Banjul": "GM",
2185
+ "Asia/Omsk": "RU",
2186
+ "Europe/Ljubljana": "SI",
2187
+ "Europe/Budapest": "HU",
2188
+ "Europe/Astrakhan": "RU",
2189
+ "America/Argentina/Buenos_Aires": "AR",
2190
+ "Pacific/Chatham": "NZ",
2191
+ "America/Argentina/Salta": "AR",
2192
+ "Africa/Niamey": "NE",
2193
+ "Asia/Pontianak": "ID",
2194
+ "Indian/Reunion": "RE",
2195
+ "Asia/Hong_Kong": "HK",
2196
+ "Antarctica/McMurdo": "AQ",
2197
+ "Africa/Malabo": "GQ",
2198
+ "America/Los_Angeles": "US",
2199
+ "America/Argentina/Cordoba": "AR",
2200
+ "Pacific/Pohnpei": "FM",
2201
+ "America/Tijuana": "MX",
2202
+ "America/Campo_Grande": "BR",
2203
+ "America/Dawson_Creek": "CA",
2204
+ "Asia/Novosibirsk": "RU",
2205
+ "Pacific/Pago_Pago": "AS",
2206
+ "Asia/Jerusalem": "IL",
2207
+ "Europe/Sarajevo": "BA",
2208
+ "Africa/Freetown": "SL",
2209
+ "Asia/Yekaterinburg": "RU",
2210
+ "America/Juneau": "US",
2211
+ "Africa/Ouagadougou": "BF",
2212
+ "Africa/Monrovia": "LR",
2213
+ "Europe/Kiev": "UA",
2214
+ "America/Argentina/San_Luis": "AR",
2215
+ "Asia/Tokyo": "JP",
2216
+ "Asia/Qatar": "QA",
2217
+ "America/La_Paz": "BO",
2218
+ "America/Bogota": "CO",
2219
+ "America/Thule": "GL",
2220
+ "Asia/Manila": "PH",
2221
+ "Asia/Hovd": "MN",
2222
+ "Asia/Tehran": "IR",
2223
+ "Atlantic/Madeira": "PT",
2224
+ "America/Metlakatla": "US",
2225
+ "Europe/Vatican": "VA",
2226
+ "Asia/Bishkek": "KG",
2227
+ "Asia/Dili": "TL",
2228
+ "Antarctica/Palmer": "AQ",
2229
+ "Atlantic/Cape_Verde": "CV",
2230
+ "Indian/Chagos": "IO",
2231
+ "America/Kentucky/Monticello": "US",
2232
+ "Africa/Algiers": "DZ",
2233
+ "Africa/Maseru": "LS",
2234
+ "Asia/Kuala_Lumpur": "MY",
2235
+ "Africa/Khartoum": "SD",
2236
+ "America/Argentina/Rio_Gallegos": "AR",
2237
+ "America/Blanc-Sablon": "CA",
2238
+ "Africa/Maputo": "MZ",
2239
+ "America/Tortola": "VG",
2240
+ "Atlantic/Bermuda": "BM",
2241
+ "America/Argentina/Catamarca": "AR",
2242
+ "America/Cayman": "KY",
2243
+ "America/Puerto_Rico": "PR",
2244
+ "Pacific/Majuro": "MH",
2245
+ "Europe/Busingen": "DE",
2246
+ "Pacific/Midway": "UM",
2247
+ "Indian/Cocos": "CC",
2248
+ "Asia/Singapore": "SG",
2249
+ "America/Boise": "US",
2250
+ "America/Nuuk": "GL",
2251
+ "America/Goose_Bay": "CA",
2252
+ "Australia/Broken_Hill": "AU",
2253
+ "Africa/Dar_es_Salaam": "TZ",
2254
+ "Africa/Asmara": "ER",
2255
+ "Asia/Samarkand": "UZ",
2256
+ "Asia/Tbilisi": "GE",
2257
+ "America/Argentina/Jujuy": "AR",
2258
+ "America/Indiana/Winamac": "US",
2259
+ "America/Porto_Velho": "BR",
2260
+ "Asia/Magadan": "RU",
2261
+ "Europe/Zaporozhye": "UA",
2262
+ "Antarctica/Casey": "AQ",
2263
+ "Asia/Shanghai": "CN",
2264
+ "Pacific/Norfolk": "NF",
2265
+ "Europe/Guernsey": "GG",
2266
+ "Australia/Brisbane": "AU",
2267
+ "Antarctica/DumontDUrville": "AQ",
2268
+ "America/Havana": "CU",
2269
+ "America/Atikokan": "CA",
2270
+ "America/Mexico_City": "MX",
2271
+ "America/Rankin_Inlet": "CA",
2272
+ "America/Cuiaba": "BR",
2273
+ "America/Resolute": "CA",
2274
+ "Africa/Ceuta": "ES",
2275
+ "Arctic/Longyearbyen": "SJ",
2276
+ "Pacific/Guam": "GU",
2277
+ "Asia/Damascus": "SY",
2278
+ "Asia/Colombo": "LK",
2279
+ "Asia/Yerevan": "AM",
2280
+ "America/Montserrat": "MS",
2281
+ "America/Belem": "BR",
2282
+ "Europe/Kaliningrad": "RU",
2283
+ "Atlantic/South_Georgia": "GS",
2284
+ "Asia/Tashkent": "UZ",
2285
+ "Asia/Kolkata": "IN",
2286
+ "America/St_Johns": "CA",
2287
+ "Asia/Srednekolymsk": "RU",
2288
+ "Asia/Yakutsk": "RU",
2289
+ "Europe/Prague": "CZ",
2290
+ "Africa/Djibouti": "DJ",
2291
+ "Asia/Dubai": "AE",
2292
+ "Europe/Uzhgorod": "UA",
2293
+ "America/Edmonton": "CA",
2294
+ "Asia/Famagusta": "CY",
2295
+ "America/Indiana/Knox": "US",
2296
+ "Asia/Hebron": "PS",
2297
+ "Asia/Taipei": "TW",
2298
+ "Europe/London": "GB",
2299
+ "Africa/Dakar": "SN",
2300
+ "Australia/Darwin": "AU",
2301
+ "America/Glace_Bay": "CA",
2302
+ "Antarctica/Vostok": "AQ",
2303
+ "America/Indiana/Vincennes": "US",
2304
+ "America/Nipigon": "CA",
2305
+ "Asia/Kuwait": "KW",
2306
+ "Pacific/Guadalcanal": "SB",
2307
+ "America/Toronto": "CA",
2308
+ "Africa/Gaborone": "BW",
2309
+ "Africa/Bujumbura": "BI",
2310
+ "Africa/Lubumbashi": "CD",
2311
+ "America/Merida": "MX",
2312
+ "America/Marigot": "MF",
2313
+ "Europe/Zagreb": "HR",
2314
+ "Pacific/Easter": "CL",
2315
+ "America/Santarem": "BR",
2316
+ "Pacific/Noumea": "NC",
2317
+ "America/Sitka": "US",
2318
+ "Atlantic/Stanley": "FK",
2319
+ "Pacific/Funafuti": "TV",
2320
+ "America/Iqaluit": "CA",
2321
+ "America/Rainy_River": "CA",
2322
+ "America/Anchorage": "US",
2323
+ "America/Lima": "PE",
2324
+ "Asia/Baku": "AZ",
2325
+ "America/Indiana/Vevay": "US",
2326
+ "Asia/Ulaanbaatar": "MN",
2327
+ "America/Managua": "NI",
2328
+ "Asia/Krasnoyarsk": "RU",
2329
+ "Asia/Qyzylorda": "KZ",
2330
+ "America/Eirunepe": "BR",
2331
+ "Europe/Podgorica": "ME",
2332
+ "Europe/Chisinau": "MD",
2333
+ "Europe/Mariehamn": "AX",
2334
+ "Europe/Volgograd": "RU",
2335
+ "Africa/Nairobi": "KE",
2336
+ "Europe/Isle_of_Man": "IM",
2337
+ "America/Menominee": "US",
2338
+ "Africa/Harare": "ZW",
2339
+ "Asia/Anadyr": "RU",
2340
+ "America/Moncton": "CA",
2341
+ "Indian/Maldives": "MV",
2342
+ "America/Whitehorse": "CA",
2343
+ "Antarctica/Mawson": "AQ",
2344
+ "Europe/Madrid": "ES",
2345
+ "America/Argentina/Mendoza": "AR",
2346
+ "America/Manaus": "BR",
2347
+ "Africa/Bangui": "CF",
2348
+ "Indian/Mauritius": "MU",
2349
+ "Africa/Tunis": "TN",
2350
+ "Australia/Lord_Howe": "AU",
2351
+ "America/Kentucky/Louisville": "US",
2352
+ "America/North_Dakota/Center": "US",
2353
+ "Asia/Novokuznetsk": "RU",
2354
+ "Asia/Makassar": "ID",
2355
+ "America/Port_of_Spain": "TT",
2356
+ "America/Bahia_Banderas": "MX",
2357
+ "Pacific/Auckland": "NZ",
2358
+ "America/Sao_Paulo": "BR",
2359
+ "Asia/Dhaka": "BD",
2360
+ "America/Pangnirtung": "CA",
2361
+ "Europe/Dublin": "IE",
2362
+ "Asia/Brunei": "BN",
2363
+ "Africa/Brazzaville": "CG",
2364
+ "America/Montevideo": "UY",
2365
+ "America/Jamaica": "JM",
2366
+ "America/Indiana/Indianapolis": "US",
2367
+ "America/Kralendijk": "BQ",
2368
+ "Europe/Gibraltar": "GI",
2369
+ "Pacific/Marquesas": "PF",
2370
+ "Pacific/Apia": "WS",
2371
+ "Europe/Jersey": "JE",
2372
+ "America/Phoenix": "US",
2373
+ "Africa/Ndjamena": "TD",
2374
+ "Asia/Karachi": "PK",
2375
+ "Africa/Kampala": "UG",
2376
+ "Asia/Sakhalin": "RU",
2377
+ "America/Martinique": "MQ",
2378
+ "Europe/Moscow": "RU",
2379
+ "Africa/Conakry": "GN",
2380
+ "America/Barbados": "BB",
2381
+ "Africa/Lome": "TG",
2382
+ "America/Ojinaga": "MX",
2383
+ "America/Tegucigalpa": "HN",
2384
+ "Asia/Bangkok": "TH",
2385
+ "Africa/Johannesburg": "ZA",
2386
+ "Europe/Vaduz": "LI",
2387
+ "Africa/Sao_Tome": "ST",
2388
+ "America/Cambridge_Bay": "CA",
2389
+ "America/Lower_Princes": "SX",
2390
+ "America/Miquelon": "PM",
2391
+ "America/St_Kitts": "KN",
2392
+ "Australia/Melbourne": "AU",
2393
+ "Europe/Minsk": "BY",
2394
+ "Asia/Vladivostok": "RU",
2395
+ "Europe/Sofia": "BG",
2396
+ "Antarctica/Davis": "AQ",
2397
+ "Pacific/Galapagos": "EC",
2398
+ "America/North_Dakota/New_Salem": "US",
2399
+ "Asia/Amman": "JO",
2400
+ "Pacific/Wallis": "WF",
2401
+ "America/Hermosillo": "MX",
2402
+ "Pacific/Kiritimati": "KI",
2403
+ "Antarctica/Macquarie": "AU",
2404
+ "America/Guyana": "GY",
2405
+ "Asia/Riyadh": "SA",
2406
+ "Pacific/Tahiti": "PF",
2407
+ "America/St_Vincent": "VC",
2408
+ "America/Cancun": "MX",
2409
+ "America/Grenada": "GD",
2410
+ "Pacific/Wake": "UM",
2411
+ "America/Dawson": "CA",
2412
+ "Europe/Brussels": "BE",
2413
+ "Indian/Kerguelen": "TF",
2414
+ "America/Yakutat": "US",
2415
+ "Indian/Mahe": "SC",
2416
+ "Atlantic/Reykjavik": "IS",
2417
+ "America/Panama": "PA",
2418
+ "America/Guadeloupe": "GP",
2419
+ "Europe/Malta": "MT",
2420
+ "Antarctica/Troll": "AQ",
2421
+ "Asia/Jayapura": "ID",
2422
+ "Asia/Bahrain": "BH",
2423
+ "Asia/Chita": "RU",
2424
+ "Europe/Tallinn": "EE",
2425
+ "Asia/Khandyga": "RU",
2426
+ "America/Rio_Branco": "BR",
2427
+ "Atlantic/St_Helena": "SH",
2428
+ "Africa/Juba": "SS",
2429
+ "America/Adak": "US",
2430
+ "Pacific/Saipan": "MP",
2431
+ "America/St_Lucia": "LC",
2432
+ "America/Inuvik": "CA",
2433
+ "Europe/Luxembourg": "LU",
2434
+ "Africa/Bissau": "GW",
2435
+ "Asia/Oral": "KZ",
2436
+ "America/Boa_Vista": "BR",
2437
+ "Europe/Skopje": "MK",
2438
+ "America/Port-au-Prince": "HT",
2439
+ "Pacific/Port_Moresby": "PG",
2440
+ "Europe/Andorra": "AD",
2441
+ "America/Indiana/Marengo": "US",
2442
+ "Africa/Kigali": "RW",
2443
+ "Africa/Bamako": "ML",
2444
+ "America/Dominica": "DM",
2445
+ "Asia/Aqtobe": "KZ",
2446
+ "Europe/Istanbul": "TR",
2447
+ "Pacific/Rarotonga": "CK",
2448
+ "America/Danmarkshavn": "GL",
2449
+ "Europe/Zurich": "CH",
2450
+ "Asia/Yangon": "MM",
2451
+ "America/Monterrey": "MX",
2452
+ "Europe/Lisbon": "PT",
2453
+ "Asia/Kuching": "MY",
2454
+ "Antarctica/Rothera": "AQ",
2455
+ "Australia/Perth": "AU",
2456
+ "Asia/Phnom_Penh": "KH",
2457
+ "America/Swift_Current": "CA",
2458
+ "Asia/Aqtau": "KZ",
2459
+ "Asia/Urumqi": "CN",
2460
+ "Asia/Calcutta": "IN"
2461
+ };
2462
+
2463
+ // src/insights/index.ts
2464
+ var getBasePayload = () => {
2465
+ const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
2466
+ const location = TIMEZONE_MAP[timeZone];
2467
+ const locale = navigator.languages && navigator.languages.length ? navigator.languages[0] : navigator.userLanguage || navigator.language || navigator.browserLanguage || "en";
2468
+ return {
2469
+ "user-agent": window.navigator.userAgent,
2470
+ locale,
2471
+ location,
2472
+ referrer: document.referrer,
2473
+ pathname: window.location.pathname,
2474
+ href: window.location.href
2475
+ };
2476
+ };
2477
+ var createInsightsClient = ({ endpoint }) => {
2478
+ const url = new URL(endpoint.host);
2479
+ url.pathname = "/v0/events";
2480
+ url.searchParams.set("name", "analytics_events");
2481
+ const endpointUrl = url.toString();
2482
+ const sendMessage = async (message) => {
2483
+ const converted = {
2484
+ ...message,
2485
+ payload: JSON.stringify(message.payload)
2486
+ };
2487
+ const response = await fetch(endpointUrl, {
2488
+ method: "POST",
2489
+ headers: {
2490
+ "Content-Type": "application/json",
2491
+ Authorization: `Bearer ${endpoint.apiKey}`
2492
+ },
2493
+ body: JSON.stringify(converted)
2494
+ });
2495
+ const json = await response.json();
2496
+ return json;
2497
+ };
2498
+ return {
2499
+ sessionStart: (options) => {
2500
+ const message = {
2501
+ action: "session_start",
2502
+ version: "1",
2503
+ session_id: options.sessionId,
2504
+ visitor_id: options.visitorId,
2505
+ page_view_id: options.pageId,
2506
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2507
+ payload: {
2508
+ ...getBasePayload(),
2509
+ previous_session_id: options.previousSessionId
2510
+ }
2511
+ };
2512
+ return sendMessage(message);
2513
+ },
2514
+ pageHit: (options) => {
2515
+ const message = {
2516
+ action: "page_hit",
2517
+ version: "1",
2518
+ session_id: options.sessionId,
2519
+ visitor_id: options.visitorId,
2520
+ page_view_id: options.pageId,
2521
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2522
+ payload: getBasePayload()
2523
+ };
2524
+ return sendMessage(message);
2525
+ },
2526
+ testResult: (options) => {
2527
+ const message = {
2528
+ action: "test_result",
2529
+ version: "1",
2530
+ session_id: options.sessionId,
2531
+ visitor_id: options.visitorId,
2532
+ page_view_id: options.pageId,
2533
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2534
+ payload: {
2535
+ ...getBasePayload(),
2536
+ ...options
2537
+ }
2538
+ };
2539
+ return sendMessage(message);
2540
+ },
2541
+ personalizationResult: async (options) => {
2542
+ const messages = options.variantIds.map((variantId) => {
2543
+ const message = {
2544
+ action: "personalization_result",
2545
+ version: "1",
2546
+ session_id: options.sessionId,
2547
+ visitor_id: options.visitorId,
2548
+ page_view_id: options.pageId,
2549
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2550
+ payload: {
2551
+ ...getBasePayload(),
2552
+ name: options.name,
2553
+ variantId,
2554
+ control: options.control,
2555
+ changed: options.changed
2556
+ }
2557
+ };
2558
+ return message;
2559
+ });
2560
+ await Promise.all(messages.map((message) => sendMessage(message)));
2561
+ },
2562
+ goalConvert: (options) => {
2563
+ const message = {
2564
+ action: "goal_convert",
2565
+ version: "1",
2566
+ session_id: options.sessionId,
2567
+ visitor_id: options.visitorId,
2568
+ page_view_id: options.pageId,
2569
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2570
+ payload: {
2571
+ ...getBasePayload(),
2572
+ goalId: options.goalId
2573
+ }
2574
+ };
2575
+ return sendMessage(message);
2576
+ },
2577
+ scoresChange: async (options) => {
2578
+ const message = {
2579
+ action: "scores_change",
2580
+ version: "1",
2581
+ session_id: options.sessionId,
2582
+ visitor_id: options.visitorId,
2583
+ page_view_id: options.pageId,
2584
+ timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2585
+ payload: {
2586
+ ...getBasePayload(),
2587
+ scores: options.scores
2588
+ }
2589
+ };
2590
+ return sendMessage(message);
2591
+ }
2592
+ };
2593
+ };
2594
+ var createInsightsStorage = () => {
2595
+ const STORAGE_KEY2 = "ufin";
2596
+ return {
2597
+ get: () => {
2598
+ const data = localStorage.getItem(STORAGE_KEY2);
2599
+ if (!data) {
2600
+ return;
2601
+ }
2602
+ return JSON.parse(data);
2603
+ },
2604
+ set: (data) => {
2605
+ const toSet = {
2606
+ ...data,
2607
+ updated: Date.now()
2608
+ };
2609
+ localStorage.setItem(STORAGE_KEY2, JSON.stringify(toSet));
2610
+ },
2611
+ clear: () => {
2612
+ localStorage.removeItem(STORAGE_KEY2);
2613
+ }
2614
+ };
2615
+ };
2616
+ var generateVisitorId = () => {
2617
+ return `visitor_${generalRandomId()}`;
2618
+ };
2619
+ var generateSessionId = () => {
2620
+ return `session_${generalRandomId()}`;
2621
+ };
2622
+ var generatePageId = () => {
2623
+ return `page_${generalRandomId()}`;
2624
+ };
2625
+ var createInsights = ({
2626
+ endpoint,
2627
+ sessionDurationSeconds = 30 * 60
2628
+ }) => {
2629
+ const client = createInsightsClient({
2630
+ endpoint
2631
+ });
2632
+ const storage = createInsightsStorage();
2633
+ let storageData = void 0;
2634
+ let pageId = generatePageId();
2635
+ return {
2636
+ init: () => {
2637
+ storageData = storage.get();
2638
+ if (!storageData || Date.now() - storageData.updated > sessionDurationSeconds * 1e3) {
2639
+ const previousSessionId = storageData == null ? void 0 : storageData.sessionId;
2640
+ storageData = {
2641
+ visitorId: (storageData == null ? void 0 : storageData.visitorId) || generateVisitorId(),
2642
+ sessionId: generateSessionId(),
2643
+ updated: Date.now()
2644
+ };
2645
+ storage.set(storageData);
2646
+ client.sessionStart({
2647
+ visitorId: storageData.visitorId,
2648
+ sessionId: storageData.sessionId,
2649
+ previousSessionId,
2650
+ maxAgeSeconds: sessionDurationSeconds,
2651
+ pageId
2652
+ });
2653
+ } else if (storageData) {
2654
+ storage.set(storageData);
2655
+ }
2656
+ },
2657
+ pageHit: () => {
2658
+ if (!storageData) {
2659
+ console.error("Insights not initialized");
2660
+ return;
2661
+ }
2662
+ client.pageHit({
2663
+ visitorId: storageData.visitorId,
2664
+ sessionId: storageData.sessionId,
2665
+ pageId
2666
+ });
2667
+ },
2668
+ testResult: (result) => {
2669
+ if (!storageData) {
2670
+ console.error("Insights not initialized");
2671
+ return;
2672
+ }
2673
+ client.testResult({
2674
+ ...result,
2675
+ visitorId: storageData.visitorId,
2676
+ sessionId: storageData.sessionId,
2677
+ pageId
2678
+ });
2679
+ pageId = generatePageId();
2680
+ },
2681
+ personalizationResult: (result) => {
2682
+ if (!storageData) {
2683
+ console.error("Insights not initialized");
2684
+ return;
2685
+ }
2686
+ client.personalizationResult({
2687
+ ...result,
2688
+ visitorId: storageData.visitorId,
2689
+ sessionId: storageData.sessionId,
2690
+ pageId
2691
+ });
2692
+ },
2693
+ goalConvert: (goalId) => {
2694
+ if (!storageData) {
2695
+ console.error("Insights not initialized");
2696
+ return;
2697
+ }
2698
+ client.goalConvert({
2699
+ visitorId: storageData.visitorId,
2700
+ sessionId: storageData.sessionId,
2701
+ goalId,
2702
+ pageId
2703
+ });
2704
+ },
2705
+ scoresChange: (scores) => {
2706
+ if (!storageData) {
2707
+ console.error("Insights not initialized");
2708
+ return;
2709
+ }
2710
+ client.scoresChange({
2711
+ visitorId: storageData.visitorId,
2712
+ sessionId: storageData.sessionId,
2713
+ scores,
2714
+ pageId
2715
+ });
2716
+ },
2717
+ forget: () => {
2718
+ storage.clear();
2719
+ storageData = void 0;
2720
+ },
2721
+ get sessionId() {
2722
+ return storageData == null ? void 0 : storageData.sessionId;
2723
+ }
2724
+ };
2725
+ };
2726
+ var enableUniformInsights = (options) => {
2727
+ const insights = createInsights({
2728
+ endpoint: options.endpoint
2729
+ });
2730
+ let previousUrl = void 0;
2731
+ return {
2732
+ init: (context) => {
2733
+ if (typeof window === "undefined") {
2734
+ return () => {
2735
+ };
2736
+ }
2737
+ const consentChanged = () => {
2738
+ if (context.storage.data.consent) {
2739
+ insights.init();
2740
+ } else {
2741
+ insights.forget();
2742
+ }
2743
+ };
2744
+ const handlePersonalizationResult = (data) => {
2745
+ insights.personalizationResult(data);
2746
+ };
2747
+ const handleTestResult = (result) => {
2748
+ insights.testResult(result);
2749
+ };
2750
+ const handleGoalConvert = (result) => {
2751
+ insights.goalConvert(result.goalId);
2752
+ };
2753
+ const handleScoreChange = (scores) => {
2754
+ insights.scoresChange(scores);
2755
+ };
2756
+ context.storage.events.on("goalConverted", handleGoalConvert);
2757
+ context.storage.events.on("consentUpdated", consentChanged);
2758
+ context.events.on("personalizationResult", handlePersonalizationResult);
2759
+ context.events.on("testResult", handleTestResult);
2760
+ context.events.on("scoresUpdated", handleScoreChange);
2761
+ if (context.storage.data.consent) {
2762
+ consentChanged();
2763
+ }
2764
+ return () => {
2765
+ context.storage.events.off("consentUpdated", consentChanged);
2766
+ context.storage.events.off("goalConverted", handleGoalConvert);
2767
+ context.events.off("personalizationResult", handlePersonalizationResult);
2768
+ context.events.off("testResult", handleTestResult);
2769
+ context.events.off("scoresUpdated", handleScoreChange);
2770
+ };
2771
+ },
2772
+ update: (context) => {
2773
+ if (context.url && context.url !== previousUrl) {
2774
+ previousUrl = context.url;
2775
+ insights.pageHit();
2776
+ }
2777
+ },
2778
+ forget: () => {
2779
+ insights.forget();
2780
+ }
2781
+ };
2782
+ };
2783
+ var generalRandomId = () => {
2784
+ const id = (0, import_uuid.v4)();
2785
+ return id.replaceAll("-", "").toLowerCase();
2786
+ };
2787
+
1820
2788
  // src/logging/enableConsoleLogDrain.ts
1821
2789
  var import_rfdc2 = __toESM(require("rfdc"));
1822
2790
 
@@ -2021,6 +2989,7 @@ function parseQuickConnect(serialized) {
2021
2989
  enableConsoleLogDrain,
2022
2990
  enableContextDevTools,
2023
2991
  enableDebugConsoleLogDrain,
2992
+ enableUniformInsights,
2024
2993
  evaluateVariantMatch,
2025
2994
  eventEvaluator,
2026
2995
  explainStringMatch,