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

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.
@@ -20,6 +20,13 @@ type EnrichmentData = {
20
20
  /** Strength value (amount of score added when viewing content) */
21
21
  str: number;
22
22
  };
23
+ type PersonalizeControlVariant = {
24
+ index: number;
25
+ control: boolean;
26
+ };
27
+ type PersonalizeVariants = {
28
+ [key: string]: PersonalizeControlVariant[];
29
+ };
23
30
  /** An event that has occurred (i.e. an analytics track) which may trigger an Event signal */
24
31
  type EventData = {
25
32
  /** The event name that has been fired */
@@ -62,6 +69,10 @@ type VisitorData = {
62
69
  * based on the control group size.
63
70
  */
64
71
  controlGroup?: boolean;
72
+ /**
73
+ * Records of personalized variants that have been shown to the visitor and their control group status
74
+ */
75
+ personalizeVariants?: PersonalizeVariants;
65
76
  };
66
77
  declare const emptyVisitorData: () => VisitorData;
67
78
  /**
@@ -90,7 +101,7 @@ type StorageCommand<TID extends string = string, TData = unknown> = {
90
101
  data: TData;
91
102
  };
92
103
  /** Commands that can be issued to alter the storage of Uniform Context data */
93
- type StorageCommands = ModifyScoreCommand | ModifySessionScoreCommand | SetConsentCommand | SetQuirkCommand | SetTestCommand | IdentifyCommand | SetControlGroupCommand | SetGoalCommand;
104
+ type StorageCommands = ModifyScoreCommand | ModifySessionScoreCommand | SetConsentCommand | SetQuirkCommand | SetTestCommand | IdentifyCommand | SetControlGroupCommand | SetPersonalizeVariantControlCommand | SetGoalCommand;
94
105
  /**
95
106
  * Converts the goal specified.
96
107
  */
@@ -142,11 +153,16 @@ type IdentifyCommand = StorageCommand<'identify', {
142
153
  * this command is intended mostly for diagnostics and testing purposes.
143
154
  */
144
155
  type SetControlGroupCommand = StorageCommand<'setcontrol', boolean>;
156
+ type SetPersonalizeVariantControlCommand = StorageCommand<'setpersonalizecontrol', {
157
+ personlizationName: string;
158
+ index: number;
159
+ control: boolean;
160
+ }>;
145
161
 
146
162
  type TransitionDataStoreOptions = {
147
163
  initialData?: Partial<VisitorData>;
148
164
  };
149
- type ServerToClientTransitionState = Pick<Partial<VisitorData>, 'quirks' | 'tests'> & {
165
+ type ServerToClientTransitionState = Pick<Partial<VisitorData>, 'quirks' | 'tests' | 'personalizeVariants'> & {
150
166
  /**
151
167
  * Server Score Vector - the resultant scores _on the server side_ after the server/edge render completes
152
168
  * Note that the client side does not trust these scores; they are only used until it's done with initial
@@ -407,10 +423,6 @@ interface components {
407
423
  test?: {
408
424
  [key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Test"];
409
425
  };
410
- /** @description Goal settings */
411
- goal?: {
412
- [key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Goal"];
413
- };
414
426
  };
415
427
  };
416
428
  PersonalizationManifest: {
@@ -503,6 +515,7 @@ interface external {
503
515
  */
504
516
  dur: "s" | "p" | "t";
505
517
  crit: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["RootSignalCriteriaGroup"];
518
+ conversion?: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Conversion"];
506
519
  };
507
520
  RootSignalCriteriaGroup: {
508
521
  /**
@@ -524,6 +537,10 @@ interface external {
524
537
  /** @description The criteria clauses that make up this grouping of criteria */
525
538
  clauses: (external["uniform-context-types.swagger.yml"]["components"]["schemas"]["SignalCriteriaGroup"] | external["uniform-context-types.swagger.yml"]["components"]["schemas"]["SignalCriteria"])[];
526
539
  };
540
+ Conversion: {
541
+ /** @enum {string} */
542
+ freq: "O";
543
+ };
527
544
  SignalCriteriaGroup: {
528
545
  /**
529
546
  * @description Criteria type (Group of other criteria)
@@ -671,59 +688,6 @@ interface external {
671
688
  /** @description Winning variation ID - if set, the test will not run and this variation is shown to all visitors (the test is closed) */
672
689
  wv?: string;
673
690
  };
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
- };
727
691
  };
728
692
  };
729
693
  operations: {};
@@ -742,10 +706,6 @@ type NumberMatch = SharedTypes['NumberMatch'];
742
706
  type TestDefinition = SharedTypes['Test'];
743
707
  type AggregateDimension = SharedTypes['AggregateDimension'];
744
708
  type AggregateDimensionInput = SharedTypes['AggregateDimensionInput'];
745
- type Goal = SharedTypes['Goal'];
746
- type SignalGoal = SharedTypes['SignalGoal'];
747
- type EnrichmentGoal = SharedTypes['EnrichmentGoal'];
748
- type QuirkGoal = SharedTypes['QuirkGoal'];
749
709
 
750
710
  declare class GroupCriteriaEvaluator {
751
711
  #private;
@@ -911,6 +871,10 @@ type VariantMatchCriteria = {
911
871
  * Name of the variant for analytics tracking.
912
872
  */
913
873
  name?: string;
874
+ /**
875
+ * Control group percentage for the variant.
876
+ */
877
+ control?: number;
914
878
  };
915
879
  type DimensionMatch = {
916
880
  /**
@@ -921,7 +885,8 @@ type DimensionMatch = {
921
885
  /**
922
886
  * Operator of the match expression
923
887
  * Whole-vector (RHS only) operators - these do not require a `r` or `rDim` set:
924
- * +: `l` is the strongest dimension in the score vector
888
+ * +: `l` is the strongest dimension in the score vector across all categories
889
+ * ^: `l` is the strongest dimension in the specified category
925
890
  * -: `l` is the weakest dimension in the score vector. This does not match if the dimension has no score at all.
926
891
  *
927
892
  * Comparison operators:
@@ -932,7 +897,7 @@ type DimensionMatch = {
932
897
  * =: `l` is equal to the right hand side expression
933
898
  * !=: `l` is not equal to the right hand side expression
934
899
  */
935
- op: '+' | '-' | '>' | '>=' | '<' | '<=' | '=' | '!=';
900
+ op: '+' | '-' | '>' | '>=' | '<' | '<=' | '=' | '!=' | '^';
936
901
  /**
937
902
  * Right hand side of the match expression (not required for op = + or - which have no right side)
938
903
  * This value is treated as a constant value, if it is present. If it's a string, it is parsed to an integer.
@@ -966,7 +931,9 @@ type PersonalizedResult<TVariant> = {
966
931
  /** Whether or not this result contains a personalized result */
967
932
  personalized: boolean;
968
933
  /** Matching variations */
969
- variations: Array<TVariant>;
934
+ variations: Array<TVariant & {
935
+ control: boolean;
936
+ }>;
970
937
  };
971
938
  /** Defines the shape of a A/B test variant */
972
939
  type TestVariant = {
@@ -1044,7 +1011,10 @@ type PersonalizationEvent = {
1044
1011
  /** Name of the personalized placement */
1045
1012
  name: string;
1046
1013
  /** Selected variant ID(s) */
1047
- variantIds: string[];
1014
+ variantIds: {
1015
+ id: string;
1016
+ control: boolean;
1017
+ }[];
1048
1018
  /** Whether the user was part of the control group (and did not receive any personalization) */
1049
1019
  control: boolean | undefined;
1050
1020
  /**
@@ -1143,6 +1113,7 @@ declare class Context implements ContextInstance {
1143
1113
  getTestVariantId(testName: string): string | null | undefined;
1144
1114
  /** use test() instead */
1145
1115
  setTestVariantId(testName: string, variantId: string): void;
1116
+ getPersonalizeVariantControl(name: string, index: number): boolean | undefined;
1146
1117
  /**
1147
1118
  * Writes a message to the Context log sink.
1148
1119
  * Used by Uniform internal SDK; not intended for public use.
@@ -1233,4 +1204,4 @@ declare global {
1233
1204
  }
1234
1205
  }
1235
1206
 
1236
- 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 };
1207
+ export { type TestOptions 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, testVariations as a0, type DimensionMatch as a1, type PersonalizeOptions as a2, personalizeVariations as a3, type BehaviorTag as a4, type PersonalizedVariant as a5, type PersonalizedResult as a6, type TestVariant as a7, type TestResult as a8, type StorageCommand as a9, type GoalStateUpdate as aA, type paths as aB, type SetGoalCommand as aa, type ModifyScoreCommand as ab, type ModifySessionScoreCommand as ac, type SetConsentCommand as ad, type SetQuirkCommand as ae, type SetTestCommand as af, type IdentifyCommand as ag, type SetControlGroupCommand as ah, type SetPersonalizeVariantControlCommand as ai, type ServerToClientTransitionState as aj, SERVER_STATE_ID as ak, type TransitionDataStoreEvents as al, type DecayOptions as am, type VisitorDataStoreOptions as an, type VisitorDataStoreEvents as ao, VisitorDataStore as ap, type Quirks as aq, type Tests as ar, type Goals as as, type EnrichmentData as at, type PersonalizeControlVariant as au, type PersonalizeVariants as av, type EventData as aw, emptyVisitorData as ax, type ContextState as ay, type ContextStateUpdate 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 };
@@ -20,6 +20,13 @@ type EnrichmentData = {
20
20
  /** Strength value (amount of score added when viewing content) */
21
21
  str: number;
22
22
  };
23
+ type PersonalizeControlVariant = {
24
+ index: number;
25
+ control: boolean;
26
+ };
27
+ type PersonalizeVariants = {
28
+ [key: string]: PersonalizeControlVariant[];
29
+ };
23
30
  /** An event that has occurred (i.e. an analytics track) which may trigger an Event signal */
24
31
  type EventData = {
25
32
  /** The event name that has been fired */
@@ -62,6 +69,10 @@ type VisitorData = {
62
69
  * based on the control group size.
63
70
  */
64
71
  controlGroup?: boolean;
72
+ /**
73
+ * Records of personalized variants that have been shown to the visitor and their control group status
74
+ */
75
+ personalizeVariants?: PersonalizeVariants;
65
76
  };
66
77
  declare const emptyVisitorData: () => VisitorData;
67
78
  /**
@@ -90,7 +101,7 @@ type StorageCommand<TID extends string = string, TData = unknown> = {
90
101
  data: TData;
91
102
  };
92
103
  /** Commands that can be issued to alter the storage of Uniform Context data */
93
- type StorageCommands = ModifyScoreCommand | ModifySessionScoreCommand | SetConsentCommand | SetQuirkCommand | SetTestCommand | IdentifyCommand | SetControlGroupCommand | SetGoalCommand;
104
+ type StorageCommands = ModifyScoreCommand | ModifySessionScoreCommand | SetConsentCommand | SetQuirkCommand | SetTestCommand | IdentifyCommand | SetControlGroupCommand | SetPersonalizeVariantControlCommand | SetGoalCommand;
94
105
  /**
95
106
  * Converts the goal specified.
96
107
  */
@@ -142,11 +153,16 @@ type IdentifyCommand = StorageCommand<'identify', {
142
153
  * this command is intended mostly for diagnostics and testing purposes.
143
154
  */
144
155
  type SetControlGroupCommand = StorageCommand<'setcontrol', boolean>;
156
+ type SetPersonalizeVariantControlCommand = StorageCommand<'setpersonalizecontrol', {
157
+ personlizationName: string;
158
+ index: number;
159
+ control: boolean;
160
+ }>;
145
161
 
146
162
  type TransitionDataStoreOptions = {
147
163
  initialData?: Partial<VisitorData>;
148
164
  };
149
- type ServerToClientTransitionState = Pick<Partial<VisitorData>, 'quirks' | 'tests'> & {
165
+ type ServerToClientTransitionState = Pick<Partial<VisitorData>, 'quirks' | 'tests' | 'personalizeVariants'> & {
150
166
  /**
151
167
  * Server Score Vector - the resultant scores _on the server side_ after the server/edge render completes
152
168
  * Note that the client side does not trust these scores; they are only used until it's done with initial
@@ -407,10 +423,6 @@ interface components {
407
423
  test?: {
408
424
  [key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Test"];
409
425
  };
410
- /** @description Goal settings */
411
- goal?: {
412
- [key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Goal"];
413
- };
414
426
  };
415
427
  };
416
428
  PersonalizationManifest: {
@@ -503,6 +515,7 @@ interface external {
503
515
  */
504
516
  dur: "s" | "p" | "t";
505
517
  crit: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["RootSignalCriteriaGroup"];
518
+ conversion?: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Conversion"];
506
519
  };
507
520
  RootSignalCriteriaGroup: {
508
521
  /**
@@ -524,6 +537,10 @@ interface external {
524
537
  /** @description The criteria clauses that make up this grouping of criteria */
525
538
  clauses: (external["uniform-context-types.swagger.yml"]["components"]["schemas"]["SignalCriteriaGroup"] | external["uniform-context-types.swagger.yml"]["components"]["schemas"]["SignalCriteria"])[];
526
539
  };
540
+ Conversion: {
541
+ /** @enum {string} */
542
+ freq: "O";
543
+ };
527
544
  SignalCriteriaGroup: {
528
545
  /**
529
546
  * @description Criteria type (Group of other criteria)
@@ -671,59 +688,6 @@ interface external {
671
688
  /** @description Winning variation ID - if set, the test will not run and this variation is shown to all visitors (the test is closed) */
672
689
  wv?: string;
673
690
  };
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
- };
727
691
  };
728
692
  };
729
693
  operations: {};
@@ -742,10 +706,6 @@ type NumberMatch = SharedTypes['NumberMatch'];
742
706
  type TestDefinition = SharedTypes['Test'];
743
707
  type AggregateDimension = SharedTypes['AggregateDimension'];
744
708
  type AggregateDimensionInput = SharedTypes['AggregateDimensionInput'];
745
- type Goal = SharedTypes['Goal'];
746
- type SignalGoal = SharedTypes['SignalGoal'];
747
- type EnrichmentGoal = SharedTypes['EnrichmentGoal'];
748
- type QuirkGoal = SharedTypes['QuirkGoal'];
749
709
 
750
710
  declare class GroupCriteriaEvaluator {
751
711
  #private;
@@ -911,6 +871,10 @@ type VariantMatchCriteria = {
911
871
  * Name of the variant for analytics tracking.
912
872
  */
913
873
  name?: string;
874
+ /**
875
+ * Control group percentage for the variant.
876
+ */
877
+ control?: number;
914
878
  };
915
879
  type DimensionMatch = {
916
880
  /**
@@ -921,7 +885,8 @@ type DimensionMatch = {
921
885
  /**
922
886
  * Operator of the match expression
923
887
  * Whole-vector (RHS only) operators - these do not require a `r` or `rDim` set:
924
- * +: `l` is the strongest dimension in the score vector
888
+ * +: `l` is the strongest dimension in the score vector across all categories
889
+ * ^: `l` is the strongest dimension in the specified category
925
890
  * -: `l` is the weakest dimension in the score vector. This does not match if the dimension has no score at all.
926
891
  *
927
892
  * Comparison operators:
@@ -932,7 +897,7 @@ type DimensionMatch = {
932
897
  * =: `l` is equal to the right hand side expression
933
898
  * !=: `l` is not equal to the right hand side expression
934
899
  */
935
- op: '+' | '-' | '>' | '>=' | '<' | '<=' | '=' | '!=';
900
+ op: '+' | '-' | '>' | '>=' | '<' | '<=' | '=' | '!=' | '^';
936
901
  /**
937
902
  * Right hand side of the match expression (not required for op = + or - which have no right side)
938
903
  * This value is treated as a constant value, if it is present. If it's a string, it is parsed to an integer.
@@ -966,7 +931,9 @@ type PersonalizedResult<TVariant> = {
966
931
  /** Whether or not this result contains a personalized result */
967
932
  personalized: boolean;
968
933
  /** Matching variations */
969
- variations: Array<TVariant>;
934
+ variations: Array<TVariant & {
935
+ control: boolean;
936
+ }>;
970
937
  };
971
938
  /** Defines the shape of a A/B test variant */
972
939
  type TestVariant = {
@@ -1044,7 +1011,10 @@ type PersonalizationEvent = {
1044
1011
  /** Name of the personalized placement */
1045
1012
  name: string;
1046
1013
  /** Selected variant ID(s) */
1047
- variantIds: string[];
1014
+ variantIds: {
1015
+ id: string;
1016
+ control: boolean;
1017
+ }[];
1048
1018
  /** Whether the user was part of the control group (and did not receive any personalization) */
1049
1019
  control: boolean | undefined;
1050
1020
  /**
@@ -1143,6 +1113,7 @@ declare class Context implements ContextInstance {
1143
1113
  getTestVariantId(testName: string): string | null | undefined;
1144
1114
  /** use test() instead */
1145
1115
  setTestVariantId(testName: string, variantId: string): void;
1116
+ getPersonalizeVariantControl(name: string, index: number): boolean | undefined;
1146
1117
  /**
1147
1118
  * Writes a message to the Context log sink.
1148
1119
  * Used by Uniform internal SDK; not intended for public use.
@@ -1233,4 +1204,4 @@ declare global {
1233
1204
  }
1234
1205
  }
1235
1206
 
1236
- 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 };
1207
+ export { type TestOptions 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, testVariations as a0, type DimensionMatch as a1, type PersonalizeOptions as a2, personalizeVariations as a3, type BehaviorTag as a4, type PersonalizedVariant as a5, type PersonalizedResult as a6, type TestVariant as a7, type TestResult as a8, type StorageCommand as a9, type GoalStateUpdate as aA, type paths as aB, type SetGoalCommand as aa, type ModifyScoreCommand as ab, type ModifySessionScoreCommand as ac, type SetConsentCommand as ad, type SetQuirkCommand as ae, type SetTestCommand as af, type IdentifyCommand as ag, type SetControlGroupCommand as ah, type SetPersonalizeVariantControlCommand as ai, type ServerToClientTransitionState as aj, SERVER_STATE_ID as ak, type TransitionDataStoreEvents as al, type DecayOptions as am, type VisitorDataStoreOptions as an, type VisitorDataStoreEvents as ao, VisitorDataStore as ap, type Quirks as aq, type Tests as ar, type Goals as as, type EnrichmentData as at, type PersonalizeControlVariant as au, type PersonalizeVariants as av, type EventData as aw, emptyVisitorData as ax, type ContextState as ay, type ContextStateUpdate 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context",
3
- "version": "19.79.1-alpha.18+12234b9350",
3
+ "version": "19.79.1-alpha.26+090e487591",
4
4
  "description": "Uniform Context core package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -68,5 +68,5 @@
68
68
  "publishConfig": {
69
69
  "access": "public"
70
70
  },
71
- "gitHead": "12234b9350cfa4209bc7e242701d2dc535ece19e"
71
+ "gitHead": "090e487591b6cae5af1629967351ebf08824c264"
72
72
  }