@uniformdev/context 19.79.0 → 19.79.1-alpha.7

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.
@@ -9,6 +9,9 @@ type Tests = {
9
9
  type ScoreVector = {
10
10
  [key: string]: number;
11
11
  };
12
+ type Goals = {
13
+ [key: string]: boolean;
14
+ };
12
15
  type EnrichmentData = {
13
16
  /** Enrichment category name */
14
17
  cat: string;
@@ -40,6 +43,10 @@ type VisitorData = {
40
43
  * NOTE: Context.scores is more commonly correct to read scores instead of this value.
41
44
  */
42
45
  scores: ScoreVector;
46
+ /**
47
+ * Goals that this user has triggered.
48
+ */
49
+ goals?: Goals;
43
50
  /**
44
51
  * Whether consent has been given to store the visitor data
45
52
  * If false or not set: visitor data is stored in memory and is lost if the browser refreshes
@@ -73,13 +80,23 @@ type ContextStateUpdate = {
73
80
  visitor: VisitorData;
74
81
  scores: ScoreVector;
75
82
  };
83
+ type GoalStateUpdate = {
84
+ scores: ScoreVector | undefined;
85
+ quirks: Quirks | undefined;
86
+ };
76
87
 
77
88
  type StorageCommand<TID extends string = string, TData = unknown> = {
78
89
  type: TID;
79
90
  data: TData;
80
91
  };
81
92
  /** Commands that can be issued to alter the storage of Uniform Context data */
82
- type StorageCommands = ModifyScoreCommand | ModifySessionScoreCommand | SetConsentCommand | SetQuirkCommand | SetTestCommand | IdentifyCommand | SetControlGroupCommand;
93
+ type StorageCommands = ModifyScoreCommand | ModifySessionScoreCommand | SetConsentCommand | SetQuirkCommand | SetTestCommand | IdentifyCommand | SetControlGroupCommand | SetGoalCommand;
94
+ /**
95
+ * Converts the goal specified.
96
+ */
97
+ type SetGoalCommand = StorageCommand<'setgoal', {
98
+ goal: string;
99
+ }>;
83
100
  /**
84
101
  * Changes the visitor's permanent score for a given dimension
85
102
  */
@@ -270,6 +287,12 @@ type VisitorDataStoreEvents = {
270
287
  * Fired when visitor control group membership is changed
271
288
  */
272
289
  controlGroupUpdated: Pick<VisitorData, 'controlGroup'>;
290
+ /**
291
+ * Fired when a goal is converted
292
+ */
293
+ goalConverted: {
294
+ goalId: string;
295
+ };
273
296
  };
274
297
  declare class VisitorDataStore {
275
298
  #private;
@@ -312,6 +335,7 @@ declare class ManifestInstance {
312
335
  rollForControlGroup(): boolean;
313
336
  getTest(name: string): TestDefinition | undefined;
314
337
  computeSignals(update: ContextStateUpdate): StorageCommands[];
338
+ computeGoals(data: GoalStateUpdate): StorageCommands[];
315
339
  /**
316
340
  * Computes aggregated scores based on other dimensions
317
341
  */
@@ -383,6 +407,10 @@ interface components {
383
407
  test?: {
384
408
  [key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Test"];
385
409
  };
410
+ /** @description Goal settings */
411
+ goal?: {
412
+ [key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Goal"];
413
+ };
386
414
  };
387
415
  };
388
416
  PersonalizationManifest: {
@@ -643,6 +671,59 @@ interface external {
643
671
  /** @description Winning variation ID - if set, the test will not run and this variation is shown to all visitors (the test is closed) */
644
672
  wv?: string;
645
673
  };
674
+ Goal: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["SignalGoal"] | external["uniform-context-types.swagger.yml"]["components"]["schemas"]["EnrichmentGoal"] | external["uniform-context-types.swagger.yml"]["components"]["schemas"]["QuirkGoal"];
675
+ SignalGoal: {
676
+ /** @enum {string} */
677
+ type: "sig";
678
+ id: string;
679
+ /**
680
+ * @description The type of match to perform
681
+ * '=' = exact match
682
+ * '!=' = not an exact match
683
+ * '<' = less than match expression
684
+ * '>' = greater than match expression
685
+ *
686
+ * @enum {string}
687
+ */
688
+ op: "=" | "<" | ">" | "!=";
689
+ score: number;
690
+ };
691
+ EnrichmentGoal: {
692
+ /** @enum {string} */
693
+ type: "enr";
694
+ cat: string;
695
+ value: string;
696
+ /**
697
+ * @description The type of match to perform
698
+ * '=' = exact match
699
+ * '!=' = not an exact match
700
+ * '<' = less than match expression
701
+ * '>' = greater than match expression
702
+ *
703
+ * @enum {string}
704
+ */
705
+ op: "=" | "<" | ">" | "!=";
706
+ score: number;
707
+ };
708
+ QuirkGoal: {
709
+ /** @enum {string} */
710
+ type: "qrk";
711
+ id: string;
712
+ /**
713
+ * @description The match operator
714
+ * '=' = exact match
715
+ * '~' = contains match
716
+ * '//' = regular expression match
717
+ *
718
+ * Any of the above can be prefixed with '!' to invert the match (i.e. != for 'not an exact match')
719
+ *
720
+ * @enum {string}
721
+ */
722
+ op: "=" | "~" | "//" | "!=" | "!~" | "!//";
723
+ /** @description The case sensitivity of the match. Defaults to false if unspecified. */
724
+ cs?: boolean;
725
+ value: string;
726
+ };
646
727
  };
647
728
  };
648
729
  operations: {};
@@ -661,6 +742,10 @@ type NumberMatch = SharedTypes['NumberMatch'];
661
742
  type TestDefinition = SharedTypes['Test'];
662
743
  type AggregateDimension = SharedTypes['AggregateDimension'];
663
744
  type AggregateDimensionInput = SharedTypes['AggregateDimensionInput'];
745
+ type Goal = SharedTypes['Goal'];
746
+ type SignalGoal = SharedTypes['SignalGoal'];
747
+ type EnrichmentGoal = SharedTypes['EnrichmentGoal'];
748
+ type QuirkGoal = SharedTypes['QuirkGoal'];
664
749
 
665
750
  declare class GroupCriteriaEvaluator {
666
751
  #private;
@@ -939,6 +1024,8 @@ declare const CONTEXTUAL_EDITING_TEST_SELECTED_VARIANT_ID = "contextual_editing_
939
1024
  type ContextPlugin = {
940
1025
  logDrain?: LogDrain;
941
1026
  init?: (context: Context) => () => void;
1027
+ forget?: () => Promise<void> | void;
1028
+ update?: (newData: Partial<ContextState>) => Promise<void> | void;
942
1029
  };
943
1030
  type ContextOptions = {
944
1031
  /** The Context Manifest to load (from the Context API) */
@@ -1014,11 +1101,17 @@ interface ContextInstance {
1014
1101
  personalize<TVariant extends PersonalizedVariant>(options: PersonalizeOptions<TVariant>): PersonalizedResult<TVariant>;
1015
1102
  forget(fromAllDevices: boolean): Promise<void>;
1016
1103
  getServerToClientTransitionState(): ServerToClientTransitionState;
1104
+ /** @deprecated - For internal use only */
1105
+ internal_emitPersonalizationResult: (event: PersonalizationEvent) => void;
1106
+ /** @deprecated - For internal use only */
1107
+ internal_emitTestResult: (event: TestEvent) => void;
1017
1108
  }
1018
1109
  declare class Context implements ContextInstance {
1019
1110
  #private;
1020
1111
  readonly manifest: ManifestInstance;
1021
1112
  constructor(options: ContextOptions);
1113
+ internal_emitPersonalizationResult(event: PersonalizationEvent): void;
1114
+ internal_emitTestResult(event: TestEvent): void;
1022
1115
  /** Gets the current visitor's dimension score vector. */
1023
1116
  get scores(): Readonly<ScoreVector>;
1024
1117
  /** Gets the current visitor's quirks values. */
@@ -1137,4 +1230,4 @@ declare global {
1137
1230
  }
1138
1231
  }
1139
1232
 
1140
- export { TestOptions as $, AggregateDimension as A, MessageFunc as B, ContextPlugin as C, DecayFunction as D, LogMessageSingle as E, LogMessageGroup as F, ManifestInstance as G, GroupCriteriaEvaluator as H, CriteriaEvaluatorResult as I, CriteriaEvaluatorParameters as J, SignalData as K, LogDrain as L, MessageCategory as M, ManifestV2 as N, OutputSeverity as O, PersonalizationEvent as P, PersonalizationManifest as Q, Signal as R, ScoreVector as S, TransitionDataStore as T, SignalCriteriaGroup as U, VisitorData as V, SignalCriteria as W, EnrichmentCategory as X, NumberMatch as Y, TestDefinition as Z, AggregateDimensionInput as _, StorageCommands as a, testVariations as a0, DimensionMatch as a1, PersonalizeOptions as a2, personalizeVariations as a3, BehaviorTag as a4, PersonalizedVariant as a5, PersonalizedResult as a6, TestVariant as a7, TestResult as a8, StorageCommand as a9, ModifyScoreCommand as aa, ModifySessionScoreCommand as ab, SetConsentCommand as ac, SetQuirkCommand as ad, SetTestCommand as ae, IdentifyCommand as af, SetControlGroupCommand as ag, ServerToClientTransitionState as ah, SERVER_STATE_ID as ai, TransitionDataStoreEvents as aj, DecayOptions as ak, VisitorDataStoreOptions as al, VisitorDataStoreEvents as am, VisitorDataStore as an, Quirks as ao, Tests as ap, EnrichmentData as aq, EventData as ar, emptyVisitorData as as, ContextState as at, ContextStateUpdate as au, paths as av, TransitionDataStoreOptions as b, CriteriaEvaluator as c, StringMatch as d, VariantMatchCriteria as e, LogMessage as f, DevToolsEvents as g, CONTEXTUAL_EDITING_TEST_NAME as h, CONTEXTUAL_EDITING_TEST_SELECTED_VARIANT_ID as i, ContextOptions as j, TestEvent as k, ContextEvents as l, ContextInstance as m, Context as n, DevToolsUiVersion as o, DevToolsState as p, DevToolsActions as q, DevToolsEvent as r, DevToolsLogEvent as s, DevToolsDataEvent as t, DevToolsHelloEvent as u, DevToolsUpdateEvent as v, DevToolsRawCommandsEvent as w, DevToolsForgetEvent as x, LogMessages as y, Severity as z };
1233
+ export { type Goal as $, type AggregateDimension as A, type MessageFunc as B, type ContextPlugin as C, type DecayFunction as D, type LogMessageSingle as E, type LogMessageGroup as F, ManifestInstance as G, GroupCriteriaEvaluator as H, type CriteriaEvaluatorResult as I, type CriteriaEvaluatorParameters as J, type SignalData as K, type LogDrain as L, type MessageCategory as M, type ManifestV2 as N, type OutputSeverity as O, type PersonalizationEvent as P, type PersonalizationManifest as Q, type Signal as R, type ScoreVector as S, TransitionDataStore as T, type SignalCriteriaGroup as U, type VisitorData as V, type SignalCriteria as W, type EnrichmentCategory as X, type NumberMatch as Y, type TestDefinition as Z, type AggregateDimensionInput as _, type StorageCommands as a, type SignalGoal as a0, type EnrichmentGoal as a1, type QuirkGoal as a2, type TestOptions as a3, testVariations as a4, type DimensionMatch as a5, type PersonalizeOptions as a6, personalizeVariations as a7, type BehaviorTag as a8, type PersonalizedVariant as a9, type ContextStateUpdate as aA, type GoalStateUpdate as aB, type paths as aC, type PersonalizedResult as aa, type TestVariant as ab, type TestResult as ac, type StorageCommand as ad, type SetGoalCommand as ae, type ModifyScoreCommand as af, type ModifySessionScoreCommand as ag, type SetConsentCommand as ah, type SetQuirkCommand as ai, type SetTestCommand as aj, type IdentifyCommand as ak, type SetControlGroupCommand as al, type ServerToClientTransitionState as am, SERVER_STATE_ID as an, type TransitionDataStoreEvents as ao, type DecayOptions as ap, type VisitorDataStoreOptions as aq, type VisitorDataStoreEvents as ar, VisitorDataStore as as, type Quirks as at, type Tests as au, type Goals as av, type EnrichmentData as aw, type EventData as ax, emptyVisitorData as ay, type ContextState as az, type TransitionDataStoreOptions as b, type CriteriaEvaluator as c, type StringMatch as d, type VariantMatchCriteria as e, type LogMessage as f, type DevToolsEvents as g, CONTEXTUAL_EDITING_TEST_NAME as h, CONTEXTUAL_EDITING_TEST_SELECTED_VARIANT_ID as i, type ContextOptions as j, type TestEvent as k, type ContextEvents as l, type ContextInstance as m, Context as n, type DevToolsUiVersion as o, type DevToolsState as p, type DevToolsActions as q, type DevToolsEvent as r, type DevToolsLogEvent as s, type DevToolsDataEvent as t, type DevToolsHelloEvent as u, type DevToolsUpdateEvent as v, type DevToolsRawCommandsEvent as w, type DevToolsForgetEvent as x, type LogMessages as y, type Severity as z };