@uniformdev/context 19.180.0 → 19.181.1-alpha.2
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.d.mts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.esm.js +26 -2
- package/dist/index.js +38 -2
- package/dist/index.mjs +26 -2
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
@@ -50,6 +50,18 @@ declare class CookieTransitionDataStore extends TransitionDataStore {
|
|
50
50
|
handleDelete(): Promise<void>;
|
51
51
|
handleUpdateData(_: StorageCommands[], computedValue: VisitorData): Promise<void>;
|
52
52
|
}
|
53
|
+
declare const TYPE_SEP = "~";
|
54
|
+
declare const PAIR_SEP = "!";
|
55
|
+
declare const KV_SEP = "-";
|
56
|
+
declare function parseScoreCookie(cookieValue: string | undefined): Partial<VisitorData> | undefined;
|
57
|
+
declare function parseCookieScores(type: string | undefined): Record<string, string>;
|
58
|
+
declare function parseCookieType(type: string | undefined): Record<string, string>;
|
59
|
+
declare function decodeCookieType(type: Record<string, string>): Record<string, number>;
|
60
|
+
declare function serializeCookie(data: VisitorData): string;
|
61
|
+
declare function serializePersonalizeVariants({ personalizeVariants, }: Pick<VisitorData, 'personalizeVariants'>): string;
|
62
|
+
declare function decodePersonalizeVariants(data: string | undefined): VisitorData['personalizeVariants'];
|
63
|
+
declare function encodeCookieType(type: Record<string, number>): Record<string, string>;
|
64
|
+
declare function serializeCookieType(type: Record<string, string>): string;
|
53
65
|
|
54
66
|
type EdgeTransitionDataStoreOptions = TransitionDataStoreOptions & {
|
55
67
|
serverCookieValue?: string;
|
@@ -177,4 +189,4 @@ type QuickConnectConfig = {
|
|
177
189
|
declare function serializeQuickConnect(config: QuickConnectConfig): string;
|
178
190
|
declare function parseQuickConnect(serialized: string): Required<QuickConnectConfig>;
|
179
191
|
|
180
|
-
export { AggregateDimension, type ConsoleDebugLogDrainOptions, type ContextDevToolOptions, ContextPlugin, CookieTransitionDataStore, type CookieTransitionDataStoreOptions, CriteriaEvaluator, DecayFunction, DevToolsEvents, EdgeNodeTagName, type EdgePersonalizeComponentOptions, type EdgeTestComponentOptions, EdgeTransitionDataStore, type EdgeTransitionDataStoreOptions, type EnableUniformInsightsOptions, type LinearDecayOptions, LogDrain, LogMessage, OutputSeverity, type QuickConnectConfig, ScoreVector, ScriptType, StorageCommands, StringMatch, TransitionDataStore, TransitionDataStoreOptions, UNIFORM_DEFAULT_COOKIE_NAME, VariantMatchCriteria, VisitorData, computeAggregateDimensions, cookieEvaluator, createConsoleLogDrain, createDebugConsoleLogDrain, createLinearDecay, currentPageEvaluator, enableConsoleLogDrain, enableContextDevTools, enableDebugConsoleLogDrain, enableUniformInsights, evaluateVariantMatch, eventEvaluator, explainStringMatch, explainStringMatchCriteria, getEnrichmentVectorKey, isStringMatch, pageViewCountDimension, pageViewCountEvaluator, parseQuickConnect, queryStringEvaluator, quirkEvaluator, serializeQuickConnect };
|
192
|
+
export { AggregateDimension, type ConsoleDebugLogDrainOptions, type ContextDevToolOptions, ContextPlugin, CookieTransitionDataStore, type CookieTransitionDataStoreOptions, CriteriaEvaluator, DecayFunction, DevToolsEvents, EdgeNodeTagName, type EdgePersonalizeComponentOptions, type EdgeTestComponentOptions, EdgeTransitionDataStore, type EdgeTransitionDataStoreOptions, type EnableUniformInsightsOptions, KV_SEP, type LinearDecayOptions, LogDrain, LogMessage, OutputSeverity, PAIR_SEP, type QuickConnectConfig, ScoreVector, ScriptType, StorageCommands, StringMatch, TYPE_SEP, TransitionDataStore, TransitionDataStoreOptions, UNIFORM_DEFAULT_COOKIE_NAME, VariantMatchCriteria, VisitorData, computeAggregateDimensions, cookieEvaluator, createConsoleLogDrain, createDebugConsoleLogDrain, createLinearDecay, currentPageEvaluator, decodeCookieType, decodePersonalizeVariants, enableConsoleLogDrain, enableContextDevTools, enableDebugConsoleLogDrain, enableUniformInsights, encodeCookieType, evaluateVariantMatch, eventEvaluator, explainStringMatch, explainStringMatchCriteria, getEnrichmentVectorKey, isStringMatch, pageViewCountDimension, pageViewCountEvaluator, parseCookieScores, parseCookieType, parseQuickConnect, parseScoreCookie, queryStringEvaluator, quirkEvaluator, serializeCookie, serializeCookieType, serializePersonalizeVariants, serializeQuickConnect };
|
package/dist/index.d.ts
CHANGED
@@ -50,6 +50,18 @@ declare class CookieTransitionDataStore extends TransitionDataStore {
|
|
50
50
|
handleDelete(): Promise<void>;
|
51
51
|
handleUpdateData(_: StorageCommands[], computedValue: VisitorData): Promise<void>;
|
52
52
|
}
|
53
|
+
declare const TYPE_SEP = "~";
|
54
|
+
declare const PAIR_SEP = "!";
|
55
|
+
declare const KV_SEP = "-";
|
56
|
+
declare function parseScoreCookie(cookieValue: string | undefined): Partial<VisitorData> | undefined;
|
57
|
+
declare function parseCookieScores(type: string | undefined): Record<string, string>;
|
58
|
+
declare function parseCookieType(type: string | undefined): Record<string, string>;
|
59
|
+
declare function decodeCookieType(type: Record<string, string>): Record<string, number>;
|
60
|
+
declare function serializeCookie(data: VisitorData): string;
|
61
|
+
declare function serializePersonalizeVariants({ personalizeVariants, }: Pick<VisitorData, 'personalizeVariants'>): string;
|
62
|
+
declare function decodePersonalizeVariants(data: string | undefined): VisitorData['personalizeVariants'];
|
63
|
+
declare function encodeCookieType(type: Record<string, number>): Record<string, string>;
|
64
|
+
declare function serializeCookieType(type: Record<string, string>): string;
|
53
65
|
|
54
66
|
type EdgeTransitionDataStoreOptions = TransitionDataStoreOptions & {
|
55
67
|
serverCookieValue?: string;
|
@@ -177,4 +189,4 @@ type QuickConnectConfig = {
|
|
177
189
|
declare function serializeQuickConnect(config: QuickConnectConfig): string;
|
178
190
|
declare function parseQuickConnect(serialized: string): Required<QuickConnectConfig>;
|
179
191
|
|
180
|
-
export { AggregateDimension, type ConsoleDebugLogDrainOptions, type ContextDevToolOptions, ContextPlugin, CookieTransitionDataStore, type CookieTransitionDataStoreOptions, CriteriaEvaluator, DecayFunction, DevToolsEvents, EdgeNodeTagName, type EdgePersonalizeComponentOptions, type EdgeTestComponentOptions, EdgeTransitionDataStore, type EdgeTransitionDataStoreOptions, type EnableUniformInsightsOptions, type LinearDecayOptions, LogDrain, LogMessage, OutputSeverity, type QuickConnectConfig, ScoreVector, ScriptType, StorageCommands, StringMatch, TransitionDataStore, TransitionDataStoreOptions, UNIFORM_DEFAULT_COOKIE_NAME, VariantMatchCriteria, VisitorData, computeAggregateDimensions, cookieEvaluator, createConsoleLogDrain, createDebugConsoleLogDrain, createLinearDecay, currentPageEvaluator, enableConsoleLogDrain, enableContextDevTools, enableDebugConsoleLogDrain, enableUniformInsights, evaluateVariantMatch, eventEvaluator, explainStringMatch, explainStringMatchCriteria, getEnrichmentVectorKey, isStringMatch, pageViewCountDimension, pageViewCountEvaluator, parseQuickConnect, queryStringEvaluator, quirkEvaluator, serializeQuickConnect };
|
192
|
+
export { AggregateDimension, type ConsoleDebugLogDrainOptions, type ContextDevToolOptions, ContextPlugin, CookieTransitionDataStore, type CookieTransitionDataStoreOptions, CriteriaEvaluator, DecayFunction, DevToolsEvents, EdgeNodeTagName, type EdgePersonalizeComponentOptions, type EdgeTestComponentOptions, EdgeTransitionDataStore, type EdgeTransitionDataStoreOptions, type EnableUniformInsightsOptions, KV_SEP, type LinearDecayOptions, LogDrain, LogMessage, OutputSeverity, PAIR_SEP, type QuickConnectConfig, ScoreVector, ScriptType, StorageCommands, StringMatch, TYPE_SEP, TransitionDataStore, TransitionDataStoreOptions, UNIFORM_DEFAULT_COOKIE_NAME, VariantMatchCriteria, VisitorData, computeAggregateDimensions, cookieEvaluator, createConsoleLogDrain, createDebugConsoleLogDrain, createLinearDecay, currentPageEvaluator, decodeCookieType, decodePersonalizeVariants, enableConsoleLogDrain, enableContextDevTools, enableDebugConsoleLogDrain, enableUniformInsights, encodeCookieType, evaluateVariantMatch, eventEvaluator, explainStringMatch, explainStringMatchCriteria, getEnrichmentVectorKey, isStringMatch, pageViewCountDimension, pageViewCountEvaluator, parseCookieScores, parseCookieType, parseQuickConnect, parseScoreCookie, queryStringEvaluator, quirkEvaluator, serializeCookie, serializeCookieType, serializePersonalizeVariants, serializeQuickConnect };
|
package/dist/index.esm.js
CHANGED
@@ -959,14 +959,26 @@ function parseScoreCookie(cookieValue) {
|
|
959
959
|
const data = {
|
960
960
|
// this is true since we're reading a cookie, which wouldn't exist if consent wasn't given
|
961
961
|
consent: true,
|
962
|
-
sessionScores: decodeCookieType(
|
963
|
-
scores: decodeCookieType(
|
962
|
+
sessionScores: decodeCookieType(parseCookieScores(sessionScores)),
|
963
|
+
scores: decodeCookieType(parseCookieScores(visitorScores)),
|
964
964
|
tests: parseCookieType(abTestData),
|
965
965
|
controlGroup: controlGroup === "1",
|
966
966
|
personalizeVariants: decodePersonalizeVariants(personalizeVariants)
|
967
967
|
};
|
968
968
|
return data;
|
969
969
|
}
|
970
|
+
function parseCookieScores(type) {
|
971
|
+
if (!type) {
|
972
|
+
return {};
|
973
|
+
}
|
974
|
+
const pairs = type.split(PAIR_SEP).map((pair) => pair.split(KV_SEP));
|
975
|
+
return pairs.reduce((acc, cur) => {
|
976
|
+
if (cur.length < 2) return acc;
|
977
|
+
const key = cur.slice(0, -1).join(KV_SEP);
|
978
|
+
acc[key] = cur[cur.length - 1];
|
979
|
+
return acc;
|
980
|
+
}, {});
|
981
|
+
}
|
970
982
|
function parseCookieType(type) {
|
971
983
|
if (!type) {
|
972
984
|
return {};
|
@@ -2536,9 +2548,12 @@ export {
|
|
2536
2548
|
EdgeNodeTagName,
|
2537
2549
|
EdgeTransitionDataStore,
|
2538
2550
|
GroupCriteriaEvaluator,
|
2551
|
+
KV_SEP,
|
2539
2552
|
ManifestInstance,
|
2553
|
+
PAIR_SEP,
|
2540
2554
|
SERVER_STATE_ID,
|
2541
2555
|
ScriptType,
|
2556
|
+
TYPE_SEP,
|
2542
2557
|
TransitionDataStore,
|
2543
2558
|
UNIFORM_DEFAULT_COOKIE_NAME,
|
2544
2559
|
VisitorDataStore,
|
@@ -2549,11 +2564,14 @@ export {
|
|
2549
2564
|
createDebugConsoleLogDrain,
|
2550
2565
|
createLinearDecay,
|
2551
2566
|
currentPageEvaluator,
|
2567
|
+
decodeCookieType,
|
2568
|
+
decodePersonalizeVariants,
|
2552
2569
|
emptyVisitorData,
|
2553
2570
|
enableConsoleLogDrain,
|
2554
2571
|
enableContextDevTools,
|
2555
2572
|
enableDebugConsoleLogDrain,
|
2556
2573
|
enableUniformInsights,
|
2574
|
+
encodeCookieType,
|
2557
2575
|
evaluateVariantMatch,
|
2558
2576
|
eventEvaluator,
|
2559
2577
|
explainStringMatch,
|
@@ -2562,10 +2580,16 @@ export {
|
|
2562
2580
|
isStringMatch,
|
2563
2581
|
pageViewCountDimension,
|
2564
2582
|
pageViewCountEvaluator,
|
2583
|
+
parseCookieScores,
|
2584
|
+
parseCookieType,
|
2565
2585
|
parseQuickConnect,
|
2586
|
+
parseScoreCookie,
|
2566
2587
|
personalizeVariations,
|
2567
2588
|
queryStringEvaluator,
|
2568
2589
|
quirkEvaluator,
|
2590
|
+
serializeCookie,
|
2591
|
+
serializeCookieType,
|
2592
|
+
serializePersonalizeVariants,
|
2569
2593
|
serializeQuickConnect,
|
2570
2594
|
testVariations
|
2571
2595
|
};
|
package/dist/index.js
CHANGED
@@ -47,9 +47,12 @@ __export(src_exports, {
|
|
47
47
|
EdgeNodeTagName: () => EdgeNodeTagName,
|
48
48
|
EdgeTransitionDataStore: () => EdgeTransitionDataStore,
|
49
49
|
GroupCriteriaEvaluator: () => GroupCriteriaEvaluator,
|
50
|
+
KV_SEP: () => KV_SEP,
|
50
51
|
ManifestInstance: () => ManifestInstance,
|
52
|
+
PAIR_SEP: () => PAIR_SEP,
|
51
53
|
SERVER_STATE_ID: () => SERVER_STATE_ID,
|
52
54
|
ScriptType: () => ScriptType,
|
55
|
+
TYPE_SEP: () => TYPE_SEP,
|
53
56
|
TransitionDataStore: () => TransitionDataStore,
|
54
57
|
UNIFORM_DEFAULT_COOKIE_NAME: () => UNIFORM_DEFAULT_COOKIE_NAME,
|
55
58
|
VisitorDataStore: () => VisitorDataStore,
|
@@ -60,11 +63,14 @@ __export(src_exports, {
|
|
60
63
|
createDebugConsoleLogDrain: () => createDebugConsoleLogDrain,
|
61
64
|
createLinearDecay: () => createLinearDecay,
|
62
65
|
currentPageEvaluator: () => currentPageEvaluator,
|
66
|
+
decodeCookieType: () => decodeCookieType,
|
67
|
+
decodePersonalizeVariants: () => decodePersonalizeVariants,
|
63
68
|
emptyVisitorData: () => emptyVisitorData,
|
64
69
|
enableConsoleLogDrain: () => enableConsoleLogDrain,
|
65
70
|
enableContextDevTools: () => enableContextDevTools,
|
66
71
|
enableDebugConsoleLogDrain: () => enableDebugConsoleLogDrain,
|
67
72
|
enableUniformInsights: () => enableUniformInsights,
|
73
|
+
encodeCookieType: () => encodeCookieType,
|
68
74
|
evaluateVariantMatch: () => evaluateVariantMatch,
|
69
75
|
eventEvaluator: () => eventEvaluator,
|
70
76
|
explainStringMatch: () => explainStringMatch,
|
@@ -73,10 +79,16 @@ __export(src_exports, {
|
|
73
79
|
isStringMatch: () => isStringMatch,
|
74
80
|
pageViewCountDimension: () => pageViewCountDimension,
|
75
81
|
pageViewCountEvaluator: () => pageViewCountEvaluator,
|
82
|
+
parseCookieScores: () => parseCookieScores,
|
83
|
+
parseCookieType: () => parseCookieType,
|
76
84
|
parseQuickConnect: () => parseQuickConnect,
|
85
|
+
parseScoreCookie: () => parseScoreCookie,
|
77
86
|
personalizeVariations: () => personalizeVariations,
|
78
87
|
queryStringEvaluator: () => queryStringEvaluator,
|
79
88
|
quirkEvaluator: () => quirkEvaluator,
|
89
|
+
serializeCookie: () => serializeCookie,
|
90
|
+
serializeCookieType: () => serializeCookieType,
|
91
|
+
serializePersonalizeVariants: () => serializePersonalizeVariants,
|
80
92
|
serializeQuickConnect: () => serializeQuickConnect,
|
81
93
|
testVariations: () => testVariations
|
82
94
|
});
|
@@ -1031,14 +1043,26 @@ function parseScoreCookie(cookieValue) {
|
|
1031
1043
|
const data = {
|
1032
1044
|
// this is true since we're reading a cookie, which wouldn't exist if consent wasn't given
|
1033
1045
|
consent: true,
|
1034
|
-
sessionScores: decodeCookieType(
|
1035
|
-
scores: decodeCookieType(
|
1046
|
+
sessionScores: decodeCookieType(parseCookieScores(sessionScores)),
|
1047
|
+
scores: decodeCookieType(parseCookieScores(visitorScores)),
|
1036
1048
|
tests: parseCookieType(abTestData),
|
1037
1049
|
controlGroup: controlGroup === "1",
|
1038
1050
|
personalizeVariants: decodePersonalizeVariants(personalizeVariants)
|
1039
1051
|
};
|
1040
1052
|
return data;
|
1041
1053
|
}
|
1054
|
+
function parseCookieScores(type) {
|
1055
|
+
if (!type) {
|
1056
|
+
return {};
|
1057
|
+
}
|
1058
|
+
const pairs = type.split(PAIR_SEP).map((pair) => pair.split(KV_SEP));
|
1059
|
+
return pairs.reduce((acc, cur) => {
|
1060
|
+
if (cur.length < 2) return acc;
|
1061
|
+
const key = cur.slice(0, -1).join(KV_SEP);
|
1062
|
+
acc[key] = cur[cur.length - 1];
|
1063
|
+
return acc;
|
1064
|
+
}, {});
|
1065
|
+
}
|
1042
1066
|
function parseCookieType(type) {
|
1043
1067
|
if (!type) {
|
1044
1068
|
return {};
|
@@ -2609,9 +2633,12 @@ function parseQuickConnect(serialized) {
|
|
2609
2633
|
EdgeNodeTagName,
|
2610
2634
|
EdgeTransitionDataStore,
|
2611
2635
|
GroupCriteriaEvaluator,
|
2636
|
+
KV_SEP,
|
2612
2637
|
ManifestInstance,
|
2638
|
+
PAIR_SEP,
|
2613
2639
|
SERVER_STATE_ID,
|
2614
2640
|
ScriptType,
|
2641
|
+
TYPE_SEP,
|
2615
2642
|
TransitionDataStore,
|
2616
2643
|
UNIFORM_DEFAULT_COOKIE_NAME,
|
2617
2644
|
VisitorDataStore,
|
@@ -2622,11 +2649,14 @@ function parseQuickConnect(serialized) {
|
|
2622
2649
|
createDebugConsoleLogDrain,
|
2623
2650
|
createLinearDecay,
|
2624
2651
|
currentPageEvaluator,
|
2652
|
+
decodeCookieType,
|
2653
|
+
decodePersonalizeVariants,
|
2625
2654
|
emptyVisitorData,
|
2626
2655
|
enableConsoleLogDrain,
|
2627
2656
|
enableContextDevTools,
|
2628
2657
|
enableDebugConsoleLogDrain,
|
2629
2658
|
enableUniformInsights,
|
2659
|
+
encodeCookieType,
|
2630
2660
|
evaluateVariantMatch,
|
2631
2661
|
eventEvaluator,
|
2632
2662
|
explainStringMatch,
|
@@ -2635,10 +2665,16 @@ function parseQuickConnect(serialized) {
|
|
2635
2665
|
isStringMatch,
|
2636
2666
|
pageViewCountDimension,
|
2637
2667
|
pageViewCountEvaluator,
|
2668
|
+
parseCookieScores,
|
2669
|
+
parseCookieType,
|
2638
2670
|
parseQuickConnect,
|
2671
|
+
parseScoreCookie,
|
2639
2672
|
personalizeVariations,
|
2640
2673
|
queryStringEvaluator,
|
2641
2674
|
quirkEvaluator,
|
2675
|
+
serializeCookie,
|
2676
|
+
serializeCookieType,
|
2677
|
+
serializePersonalizeVariants,
|
2642
2678
|
serializeQuickConnect,
|
2643
2679
|
testVariations
|
2644
2680
|
});
|
package/dist/index.mjs
CHANGED
@@ -959,14 +959,26 @@ function parseScoreCookie(cookieValue) {
|
|
959
959
|
const data = {
|
960
960
|
// this is true since we're reading a cookie, which wouldn't exist if consent wasn't given
|
961
961
|
consent: true,
|
962
|
-
sessionScores: decodeCookieType(
|
963
|
-
scores: decodeCookieType(
|
962
|
+
sessionScores: decodeCookieType(parseCookieScores(sessionScores)),
|
963
|
+
scores: decodeCookieType(parseCookieScores(visitorScores)),
|
964
964
|
tests: parseCookieType(abTestData),
|
965
965
|
controlGroup: controlGroup === "1",
|
966
966
|
personalizeVariants: decodePersonalizeVariants(personalizeVariants)
|
967
967
|
};
|
968
968
|
return data;
|
969
969
|
}
|
970
|
+
function parseCookieScores(type) {
|
971
|
+
if (!type) {
|
972
|
+
return {};
|
973
|
+
}
|
974
|
+
const pairs = type.split(PAIR_SEP).map((pair) => pair.split(KV_SEP));
|
975
|
+
return pairs.reduce((acc, cur) => {
|
976
|
+
if (cur.length < 2) return acc;
|
977
|
+
const key = cur.slice(0, -1).join(KV_SEP);
|
978
|
+
acc[key] = cur[cur.length - 1];
|
979
|
+
return acc;
|
980
|
+
}, {});
|
981
|
+
}
|
970
982
|
function parseCookieType(type) {
|
971
983
|
if (!type) {
|
972
984
|
return {};
|
@@ -2536,9 +2548,12 @@ export {
|
|
2536
2548
|
EdgeNodeTagName,
|
2537
2549
|
EdgeTransitionDataStore,
|
2538
2550
|
GroupCriteriaEvaluator,
|
2551
|
+
KV_SEP,
|
2539
2552
|
ManifestInstance,
|
2553
|
+
PAIR_SEP,
|
2540
2554
|
SERVER_STATE_ID,
|
2541
2555
|
ScriptType,
|
2556
|
+
TYPE_SEP,
|
2542
2557
|
TransitionDataStore,
|
2543
2558
|
UNIFORM_DEFAULT_COOKIE_NAME,
|
2544
2559
|
VisitorDataStore,
|
@@ -2549,11 +2564,14 @@ export {
|
|
2549
2564
|
createDebugConsoleLogDrain,
|
2550
2565
|
createLinearDecay,
|
2551
2566
|
currentPageEvaluator,
|
2567
|
+
decodeCookieType,
|
2568
|
+
decodePersonalizeVariants,
|
2552
2569
|
emptyVisitorData,
|
2553
2570
|
enableConsoleLogDrain,
|
2554
2571
|
enableContextDevTools,
|
2555
2572
|
enableDebugConsoleLogDrain,
|
2556
2573
|
enableUniformInsights,
|
2574
|
+
encodeCookieType,
|
2557
2575
|
evaluateVariantMatch,
|
2558
2576
|
eventEvaluator,
|
2559
2577
|
explainStringMatch,
|
@@ -2562,10 +2580,16 @@ export {
|
|
2562
2580
|
isStringMatch,
|
2563
2581
|
pageViewCountDimension,
|
2564
2582
|
pageViewCountEvaluator,
|
2583
|
+
parseCookieScores,
|
2584
|
+
parseCookieType,
|
2565
2585
|
parseQuickConnect,
|
2586
|
+
parseScoreCookie,
|
2566
2587
|
personalizeVariations,
|
2567
2588
|
queryStringEvaluator,
|
2568
2589
|
quirkEvaluator,
|
2590
|
+
serializeCookie,
|
2591
|
+
serializeCookieType,
|
2592
|
+
serializePersonalizeVariants,
|
2569
2593
|
serializeQuickConnect,
|
2570
2594
|
testVariations
|
2571
2595
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/context",
|
3
|
-
"version": "19.
|
3
|
+
"version": "19.181.1-alpha.2+1550fd924e",
|
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": "1550fd924e67e2b21c13aa480054152001dbb0d3"
|
72
72
|
}
|