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

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