@uniformdev/context 19.79.1-alpha.25 → 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.
- package/dist/api/api.d.mts +16 -160
- package/dist/api/api.d.ts +16 -160
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +213 -292
- package/dist/index.js +213 -292
- package/dist/index.mjs +213 -292
- package/dist/{types-D4Fs5NVm.d.mts → types-C1eZBD3H.d.mts} +6 -62
- package/dist/{types-D4Fs5NVm.d.ts → types-C1eZBD3H.d.ts} +6 -62
- package/package.json +2 -2
@@ -423,10 +423,6 @@ interface components {
|
|
423
423
|
test?: {
|
424
424
|
[key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Test"];
|
425
425
|
};
|
426
|
-
/** @description Goal settings */
|
427
|
-
goal?: {
|
428
|
-
[key: string]: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Goal"];
|
429
|
-
};
|
430
426
|
};
|
431
427
|
};
|
432
428
|
PersonalizationManifest: {
|
@@ -519,6 +515,7 @@ interface external {
|
|
519
515
|
*/
|
520
516
|
dur: "s" | "p" | "t";
|
521
517
|
crit: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["RootSignalCriteriaGroup"];
|
518
|
+
conversion?: external["uniform-context-types.swagger.yml"]["components"]["schemas"]["Conversion"];
|
522
519
|
};
|
523
520
|
RootSignalCriteriaGroup: {
|
524
521
|
/**
|
@@ -540,6 +537,10 @@ interface external {
|
|
540
537
|
/** @description The criteria clauses that make up this grouping of criteria */
|
541
538
|
clauses: (external["uniform-context-types.swagger.yml"]["components"]["schemas"]["SignalCriteriaGroup"] | external["uniform-context-types.swagger.yml"]["components"]["schemas"]["SignalCriteria"])[];
|
542
539
|
};
|
540
|
+
Conversion: {
|
541
|
+
/** @enum {string} */
|
542
|
+
freq: "O";
|
543
|
+
};
|
543
544
|
SignalCriteriaGroup: {
|
544
545
|
/**
|
545
546
|
* @description Criteria type (Group of other criteria)
|
@@ -687,59 +688,6 @@ interface external {
|
|
687
688
|
/** @description Winning variation ID - if set, the test will not run and this variation is shown to all visitors (the test is closed) */
|
688
689
|
wv?: string;
|
689
690
|
};
|
690
|
-
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"];
|
691
|
-
SignalGoal: {
|
692
|
-
/** @enum {string} */
|
693
|
-
type: "sig";
|
694
|
-
id: string;
|
695
|
-
/**
|
696
|
-
* @description The type of match to perform
|
697
|
-
* '=' = exact match
|
698
|
-
* '!=' = not an exact match
|
699
|
-
* '<' = less than match expression
|
700
|
-
* '>' = greater than match expression
|
701
|
-
*
|
702
|
-
* @enum {string}
|
703
|
-
*/
|
704
|
-
op: "=" | "<" | ">" | "!=";
|
705
|
-
score: number;
|
706
|
-
};
|
707
|
-
EnrichmentGoal: {
|
708
|
-
/** @enum {string} */
|
709
|
-
type: "enr";
|
710
|
-
cat: string;
|
711
|
-
value: string;
|
712
|
-
/**
|
713
|
-
* @description The type of match to perform
|
714
|
-
* '=' = exact match
|
715
|
-
* '!=' = not an exact match
|
716
|
-
* '<' = less than match expression
|
717
|
-
* '>' = greater than match expression
|
718
|
-
*
|
719
|
-
* @enum {string}
|
720
|
-
*/
|
721
|
-
op: "=" | "<" | ">" | "!=";
|
722
|
-
score: number;
|
723
|
-
};
|
724
|
-
QuirkGoal: {
|
725
|
-
/** @enum {string} */
|
726
|
-
type: "qrk";
|
727
|
-
id: string;
|
728
|
-
/**
|
729
|
-
* @description The match operator
|
730
|
-
* '=' = exact match
|
731
|
-
* '~' = contains match
|
732
|
-
* '//' = regular expression match
|
733
|
-
*
|
734
|
-
* Any of the above can be prefixed with '!' to invert the match (i.e. != for 'not an exact match')
|
735
|
-
*
|
736
|
-
* @enum {string}
|
737
|
-
*/
|
738
|
-
op: "=" | "~" | "//" | "!=" | "!~" | "!//";
|
739
|
-
/** @description The case sensitivity of the match. Defaults to false if unspecified. */
|
740
|
-
cs?: boolean;
|
741
|
-
value: string;
|
742
|
-
};
|
743
691
|
};
|
744
692
|
};
|
745
693
|
operations: {};
|
@@ -758,10 +706,6 @@ type NumberMatch = SharedTypes['NumberMatch'];
|
|
758
706
|
type TestDefinition = SharedTypes['Test'];
|
759
707
|
type AggregateDimension = SharedTypes['AggregateDimension'];
|
760
708
|
type AggregateDimensionInput = SharedTypes['AggregateDimensionInput'];
|
761
|
-
type Goal = SharedTypes['Goal'];
|
762
|
-
type SignalGoal = SharedTypes['SignalGoal'];
|
763
|
-
type EnrichmentGoal = SharedTypes['EnrichmentGoal'];
|
764
|
-
type QuirkGoal = SharedTypes['QuirkGoal'];
|
765
709
|
|
766
710
|
declare class GroupCriteriaEvaluator {
|
767
711
|
#private;
|
@@ -1260,4 +1204,4 @@ declare global {
|
|
1260
1204
|
}
|
1261
1205
|
}
|
1262
1206
|
|
1263
|
-
export { type
|
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.
|
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": "
|
71
|
+
"gitHead": "090e487591b6cae5af1629967351ebf08824c264"
|
72
72
|
}
|