@uniformdev/context 17.7.1-alpha.181 → 17.7.1-alpha.211
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.ts +2 -2
- package/dist/cli/cli.js +64 -5
- package/dist/cli/cli.mjs +64 -5
- package/dist/index.d.ts +2 -2
- package/package.json +3 -3
package/dist/api/api.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { A as AggregateGetParameters, a as AggregateGetResponse, b as AggregatePutParameters, c as AggregateDeleteParameters, D as DimensionDefinition, d as DimensionGetParameters, e as DimensionGetResponse, E as EnrichmentGetParameters, f as EnrichmentGetResponse, g as EnrichmentPutParameters, h as EnrichmentDeleteParameters, i as EnrichmentValuePutParameters, j as EnrichmentValueDeleteParameters, M as ManifestGetParameters, k as ManifestGetResponse, Q as QuirkGetParameters, l as QuirkGetResponse, m as QuirkPutParameters, n as QuirkDeleteParameters, S as SignalGetParameters, o as SignalGetResponse, p as SignalPutParameters, q as SignalDeleteParameters, T as TestGetParameters, r as TestGetResponse, s as TestPutParameters, t as TestDeleteParameters } from '../contextTypes-defd0c5d.js';
|
2
|
-
export { x as Aggregate, C as ContextDefinitions, F as CookieCriteria, J as CurrentPageCriteria, u as EnrichmentCategory, v as EnrichmentCategoryWithValues, w as EnrichmentValue, I as EventCriteria, P as PageViewCountCriteria, G as QueryStringCriteria, y as Quirk, H as QuirkCriteria, R as RootSignalCriteriaGroup, B as SignalWithId, z as Test } from '../contextTypes-defd0c5d.js';
|
2
|
+
export { x as Aggregate, c as AggregateDeleteParameters, A as AggregateGetParameters, a as AggregateGetResponse, b as AggregatePutParameters, C as ContextDefinitions, F as CookieCriteria, J as CurrentPageCriteria, D as DimensionDefinition, d as DimensionGetParameters, e as DimensionGetResponse, u as EnrichmentCategory, v as EnrichmentCategoryWithValues, h as EnrichmentDeleteParameters, E as EnrichmentGetParameters, f as EnrichmentGetResponse, g as EnrichmentPutParameters, w as EnrichmentValue, j as EnrichmentValueDeleteParameters, i as EnrichmentValuePutParameters, I as EventCriteria, M as ManifestGetParameters, k as ManifestGetResponse, P as PageViewCountCriteria, G as QueryStringCriteria, y as Quirk, H as QuirkCriteria, n as QuirkDeleteParameters, Q as QuirkGetParameters, l as QuirkGetResponse, m as QuirkPutParameters, R as RootSignalCriteriaGroup, q as SignalDeleteParameters, S as SignalGetParameters, o as SignalGetResponse, p as SignalPutParameters, B as SignalWithId, z as Test, t as TestDeleteParameters, T as TestGetParameters, r as TestGetResponse, s as TestPutParameters } from '../contextTypes-defd0c5d.js';
|
3
3
|
import { I as ManifestV2 } from '../types-1c9fdbd2.js';
|
4
4
|
import '../v2-manifest.swagger-74a3dcac.js';
|
5
5
|
import 'mitt';
|
@@ -186,4 +186,4 @@ declare class CachedContextClient extends ContextClient {
|
|
186
186
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
187
187
|
}
|
188
188
|
|
189
|
-
export { AggregateClient,
|
189
|
+
export { AggregateClient, ApiClient, ApiClientError, CachedAggregateClient, CachedContextClient, CachedDimensionClient, CachedEnrichmentClient, CachedManifestClient, CachedQuirkClient, CachedSignalClient, ClientOptions, ContextClient, DimensionClient, DimensionDisplayData, EnrichmentClient, ExceptProject, LimitPolicy, ManifestClient, QuirkClient, SignalClient, UncachedAggregateClient, UncachedContextClient, UncachedDimensionClient, UncachedEnrichmentClient, UncachedManifestClient, UncachedQuirkClient, UncachedSignalClient, computeDimensionDefinitionDisplayData, computeDimensionDisplayData, computeDimensionDisplayName, nullLimitPolicy };
|
package/dist/cli/cli.js
CHANGED
@@ -6671,7 +6671,7 @@ var require_encoding = __commonJS({
|
|
6671
6671
|
}
|
6672
6672
|
});
|
6673
6673
|
|
6674
|
-
// ../../node_modules/.pnpm/node-fetch@2.6.
|
6674
|
+
// ../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs
|
6675
6675
|
var lib_exports = {};
|
6676
6676
|
__export(lib_exports, {
|
6677
6677
|
FetchError: () => FetchError,
|
@@ -7060,7 +7060,7 @@ function fetch2(url, opts) {
|
|
7060
7060
|
let error = new AbortError("The user aborted a request.");
|
7061
7061
|
reject(error);
|
7062
7062
|
if (request.body && request.body instanceof import_stream.default.Readable) {
|
7063
|
-
request.body
|
7063
|
+
destroyStream(request.body, error);
|
7064
7064
|
}
|
7065
7065
|
if (!response || !response.body)
|
7066
7066
|
return;
|
@@ -7095,8 +7095,29 @@ function fetch2(url, opts) {
|
|
7095
7095
|
}
|
7096
7096
|
req.on("error", function(err) {
|
7097
7097
|
reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, "system", err));
|
7098
|
+
if (response && response.body) {
|
7099
|
+
destroyStream(response.body, err);
|
7100
|
+
}
|
7098
7101
|
finalize();
|
7099
7102
|
});
|
7103
|
+
fixResponseChunkedTransferBadEnding(req, function(err) {
|
7104
|
+
if (signal && signal.aborted) {
|
7105
|
+
return;
|
7106
|
+
}
|
7107
|
+
destroyStream(response.body, err);
|
7108
|
+
});
|
7109
|
+
if (parseInt(process.version.substring(1)) < 14) {
|
7110
|
+
req.on("socket", function(s) {
|
7111
|
+
s.addListener("close", function(hadError) {
|
7112
|
+
const hasDataListener = s.listenerCount("data") > 0;
|
7113
|
+
if (response && hasDataListener && !hadError && !(signal && signal.aborted)) {
|
7114
|
+
const err = new Error("Premature close");
|
7115
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7116
|
+
response.body.emit("error", err);
|
7117
|
+
}
|
7118
|
+
});
|
7119
|
+
});
|
7120
|
+
}
|
7100
7121
|
req.on("response", function(res) {
|
7101
7122
|
clearTimeout(reqTimeout);
|
7102
7123
|
const headers = createHeadersLenient(res.headers);
|
@@ -7147,7 +7168,7 @@ function fetch2(url, opts) {
|
|
7147
7168
|
timeout: request.timeout,
|
7148
7169
|
size: request.size
|
7149
7170
|
};
|
7150
|
-
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7171
|
+
if (!isDomainOrSubdomain(request.url, locationURL) || !isSameProtocol(request.url, locationURL)) {
|
7151
7172
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7152
7173
|
requestOpts.headers.delete(name);
|
7153
7174
|
}
|
@@ -7208,6 +7229,12 @@ function fetch2(url, opts) {
|
|
7208
7229
|
response = new Response(body, response_options);
|
7209
7230
|
resolve5(response);
|
7210
7231
|
});
|
7232
|
+
raw.on("end", function() {
|
7233
|
+
if (!response) {
|
7234
|
+
response = new Response(body, response_options);
|
7235
|
+
resolve5(response);
|
7236
|
+
}
|
7237
|
+
});
|
7211
7238
|
return;
|
7212
7239
|
}
|
7213
7240
|
if (codings == "br" && typeof import_zlib.default.createBrotliDecompress === "function") {
|
@@ -7222,9 +7249,36 @@ function fetch2(url, opts) {
|
|
7222
7249
|
writeToStream(req, request);
|
7223
7250
|
});
|
7224
7251
|
}
|
7225
|
-
|
7252
|
+
function fixResponseChunkedTransferBadEnding(request, errorCallback) {
|
7253
|
+
let socket;
|
7254
|
+
request.on("socket", function(s) {
|
7255
|
+
socket = s;
|
7256
|
+
});
|
7257
|
+
request.on("response", function(response) {
|
7258
|
+
const headers = response.headers;
|
7259
|
+
if (headers["transfer-encoding"] === "chunked" && !headers["content-length"]) {
|
7260
|
+
response.once("close", function(hadError) {
|
7261
|
+
const hasDataListener = socket.listenerCount("data") > 0;
|
7262
|
+
if (hasDataListener && !hadError) {
|
7263
|
+
const err = new Error("Premature close");
|
7264
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7265
|
+
errorCallback(err);
|
7266
|
+
}
|
7267
|
+
});
|
7268
|
+
}
|
7269
|
+
});
|
7270
|
+
}
|
7271
|
+
function destroyStream(stream, err) {
|
7272
|
+
if (stream.destroy) {
|
7273
|
+
stream.destroy(err);
|
7274
|
+
} else {
|
7275
|
+
stream.emit("error", err);
|
7276
|
+
stream.end();
|
7277
|
+
}
|
7278
|
+
}
|
7279
|
+
var import_stream, import_http, import_url2, import_whatwg_url, import_https, import_zlib, Readable, BUFFER, TYPE, Blob2, convert, INTERNALS, PassThrough, invalidTokenRegex, invalidHeaderCharRegex, MAP, Headers, INTERNAL, HeadersIteratorPrototype, INTERNALS$1, STATUS_CODES, Response, INTERNALS$2, URL2, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, isSameProtocol, lib_default2;
|
7226
7280
|
var init_lib = __esm({
|
7227
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7281
|
+
"../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs"() {
|
7228
7282
|
import_stream = __toESM(require("stream"), 1);
|
7229
7283
|
import_http = __toESM(require("http"), 1);
|
7230
7284
|
import_url2 = __toESM(require("url"), 1);
|
@@ -7735,6 +7789,11 @@ var init_lib = __esm({
|
|
7735
7789
|
const dest = new URL$1(destination).hostname;
|
7736
7790
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7737
7791
|
};
|
7792
|
+
isSameProtocol = function isSameProtocol2(destination, original) {
|
7793
|
+
const orig = new URL$1(original).protocol;
|
7794
|
+
const dest = new URL$1(destination).protocol;
|
7795
|
+
return orig === dest;
|
7796
|
+
};
|
7738
7797
|
fetch2.isRedirect = function(code) {
|
7739
7798
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7740
7799
|
};
|
package/dist/cli/cli.mjs
CHANGED
@@ -6677,7 +6677,7 @@ var require_encoding = __commonJS({
|
|
6677
6677
|
}
|
6678
6678
|
});
|
6679
6679
|
|
6680
|
-
// ../../node_modules/.pnpm/node-fetch@2.6.
|
6680
|
+
// ../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs
|
6681
6681
|
var lib_exports = {};
|
6682
6682
|
__export(lib_exports, {
|
6683
6683
|
FetchError: () => FetchError,
|
@@ -7071,7 +7071,7 @@ function fetch2(url, opts) {
|
|
7071
7071
|
let error = new AbortError("The user aborted a request.");
|
7072
7072
|
reject(error);
|
7073
7073
|
if (request.body && request.body instanceof Stream.Readable) {
|
7074
|
-
request.body
|
7074
|
+
destroyStream(request.body, error);
|
7075
7075
|
}
|
7076
7076
|
if (!response || !response.body)
|
7077
7077
|
return;
|
@@ -7106,8 +7106,29 @@ function fetch2(url, opts) {
|
|
7106
7106
|
}
|
7107
7107
|
req.on("error", function(err) {
|
7108
7108
|
reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, "system", err));
|
7109
|
+
if (response && response.body) {
|
7110
|
+
destroyStream(response.body, err);
|
7111
|
+
}
|
7109
7112
|
finalize();
|
7110
7113
|
});
|
7114
|
+
fixResponseChunkedTransferBadEnding(req, function(err) {
|
7115
|
+
if (signal && signal.aborted) {
|
7116
|
+
return;
|
7117
|
+
}
|
7118
|
+
destroyStream(response.body, err);
|
7119
|
+
});
|
7120
|
+
if (parseInt(process.version.substring(1)) < 14) {
|
7121
|
+
req.on("socket", function(s) {
|
7122
|
+
s.addListener("close", function(hadError) {
|
7123
|
+
const hasDataListener = s.listenerCount("data") > 0;
|
7124
|
+
if (response && hasDataListener && !hadError && !(signal && signal.aborted)) {
|
7125
|
+
const err = new Error("Premature close");
|
7126
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7127
|
+
response.body.emit("error", err);
|
7128
|
+
}
|
7129
|
+
});
|
7130
|
+
});
|
7131
|
+
}
|
7111
7132
|
req.on("response", function(res) {
|
7112
7133
|
clearTimeout(reqTimeout);
|
7113
7134
|
const headers = createHeadersLenient(res.headers);
|
@@ -7158,7 +7179,7 @@ function fetch2(url, opts) {
|
|
7158
7179
|
timeout: request.timeout,
|
7159
7180
|
size: request.size
|
7160
7181
|
};
|
7161
|
-
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7182
|
+
if (!isDomainOrSubdomain(request.url, locationURL) || !isSameProtocol(request.url, locationURL)) {
|
7162
7183
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7163
7184
|
requestOpts.headers.delete(name);
|
7164
7185
|
}
|
@@ -7219,6 +7240,12 @@ function fetch2(url, opts) {
|
|
7219
7240
|
response = new Response(body, response_options);
|
7220
7241
|
resolve5(response);
|
7221
7242
|
});
|
7243
|
+
raw.on("end", function() {
|
7244
|
+
if (!response) {
|
7245
|
+
response = new Response(body, response_options);
|
7246
|
+
resolve5(response);
|
7247
|
+
}
|
7248
|
+
});
|
7222
7249
|
return;
|
7223
7250
|
}
|
7224
7251
|
if (codings == "br" && typeof zlib.createBrotliDecompress === "function") {
|
@@ -7233,9 +7260,36 @@ function fetch2(url, opts) {
|
|
7233
7260
|
writeToStream(req, request);
|
7234
7261
|
});
|
7235
7262
|
}
|
7236
|
-
|
7263
|
+
function fixResponseChunkedTransferBadEnding(request, errorCallback) {
|
7264
|
+
let socket;
|
7265
|
+
request.on("socket", function(s) {
|
7266
|
+
socket = s;
|
7267
|
+
});
|
7268
|
+
request.on("response", function(response) {
|
7269
|
+
const headers = response.headers;
|
7270
|
+
if (headers["transfer-encoding"] === "chunked" && !headers["content-length"]) {
|
7271
|
+
response.once("close", function(hadError) {
|
7272
|
+
const hasDataListener = socket.listenerCount("data") > 0;
|
7273
|
+
if (hasDataListener && !hadError) {
|
7274
|
+
const err = new Error("Premature close");
|
7275
|
+
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7276
|
+
errorCallback(err);
|
7277
|
+
}
|
7278
|
+
});
|
7279
|
+
}
|
7280
|
+
});
|
7281
|
+
}
|
7282
|
+
function destroyStream(stream, err) {
|
7283
|
+
if (stream.destroy) {
|
7284
|
+
stream.destroy(err);
|
7285
|
+
} else {
|
7286
|
+
stream.emit("error", err);
|
7287
|
+
stream.end();
|
7288
|
+
}
|
7289
|
+
}
|
7290
|
+
var import_whatwg_url, Readable, BUFFER, TYPE, Blob2, convert, INTERNALS, PassThrough, invalidTokenRegex, invalidHeaderCharRegex, MAP, Headers, INTERNAL, HeadersIteratorPrototype, INTERNALS$1, STATUS_CODES, Response, INTERNALS$2, URL2, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, isSameProtocol, lib_default2;
|
7237
7291
|
var init_lib = __esm({
|
7238
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7292
|
+
"../../node_modules/.pnpm/node-fetch@2.6.8/node_modules/node-fetch/lib/index.mjs"() {
|
7239
7293
|
import_whatwg_url = __toESM(require_public_api(), 1);
|
7240
7294
|
Readable = Stream.Readable;
|
7241
7295
|
BUFFER = Symbol("buffer");
|
@@ -7741,6 +7795,11 @@ var init_lib = __esm({
|
|
7741
7795
|
const dest = new URL$1(destination).hostname;
|
7742
7796
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7743
7797
|
};
|
7798
|
+
isSameProtocol = function isSameProtocol2(destination, original) {
|
7799
|
+
const orig = new URL$1(original).protocol;
|
7800
|
+
const dest = new URL$1(destination).protocol;
|
7801
|
+
return orig === dest;
|
7802
|
+
};
|
7744
7803
|
fetch2.isRedirect = function(code) {
|
7745
7804
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7746
7805
|
};
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { O as OutputSeverity, L as LogDrain, C as ContextPlugin, S as ScoreVector, A as AggregateDimension, T as TransitionDataStore, a as StorageCommands, V as VisitorData, b as TransitionDataStoreOptions, D as DecayFunction, c as CriteriaEvaluator, d as StringMatch, e as VariantMatchCriteria, f as LogMessage } from './types-1c9fdbd2.js';
|
2
|
-
export { X as AggregateDimensionInput, a1 as BehaviorTag, j as Context, i as ContextEvents, g as ContextOptions, aq as ContextState, ar as ContextStateUpdate, F as CriteriaEvaluatorParameters, E as CriteriaEvaluatorResult, ah as DecayOptions, m as DevToolsActions, q as DevToolsDataEvent, n as DevToolsEvent, o as DevToolsEvents, u as DevToolsForgetEvent, r as DevToolsHelloEvent, p as DevToolsLogEvent, t as DevToolsRawCommandsEvent, l as DevToolsState, k as DevToolsUiVersion, s as DevToolsUpdateEvent, _ as DimensionMatch, R as EnrichmentCategory, an as EnrichmentData, ao as EventData, G as GroupCriteriaEvaluator, ac as IdentifyCommand, z as LogMessageGroup, y as LogMessageSingle, v as LogMessages, B as ManifestInstance, I as ManifestV2, M as MessageCategory, x as MessageFunc, a7 as ModifyScoreCommand, a8 as ModifySessionScoreCommand, U as NumberMatch, P as PersonalizationEvent, J as PersonalizationManifest, $ as PersonalizeOptions, a3 as PersonalizedResult, a2 as PersonalizedVariant, al as Quirks, af as SERVER_STATE_ID, ae as ServerToClientTransitionState, a9 as SetConsentCommand, ad as SetControlGroupCommand, aa as SetQuirkCommand, ab as SetTestCommand, w as Severity, K as Signal, Q as SignalCriteria, N as SignalCriteriaGroup, H as SignalData, a6 as StorageCommand, W as TestDefinition, h as TestEvent, Y as TestOptions, a5 as TestResult, a4 as TestVariant, am as Tests, ag as TransitionDataStoreEvents, ak as VisitorDataStore, aj as VisitorDataStoreEvents, ai as VisitorDataStoreOptions, ap as emptyVisitorData, a0 as personalizeVariations, Z as testVariations } from './types-1c9fdbd2.js';
|
2
|
+
export { A as AggregateDimension, X as AggregateDimensionInput, a1 as BehaviorTag, j as Context, i as ContextEvents, g as ContextOptions, C as ContextPlugin, aq as ContextState, ar as ContextStateUpdate, c as CriteriaEvaluator, F as CriteriaEvaluatorParameters, E as CriteriaEvaluatorResult, D as DecayFunction, ah as DecayOptions, m as DevToolsActions, q as DevToolsDataEvent, n as DevToolsEvent, o as DevToolsEvents, u as DevToolsForgetEvent, r as DevToolsHelloEvent, p as DevToolsLogEvent, t as DevToolsRawCommandsEvent, l as DevToolsState, k as DevToolsUiVersion, s as DevToolsUpdateEvent, _ as DimensionMatch, R as EnrichmentCategory, an as EnrichmentData, ao as EventData, G as GroupCriteriaEvaluator, ac as IdentifyCommand, L as LogDrain, f as LogMessage, z as LogMessageGroup, y as LogMessageSingle, v as LogMessages, B as ManifestInstance, I as ManifestV2, M as MessageCategory, x as MessageFunc, a7 as ModifyScoreCommand, a8 as ModifySessionScoreCommand, U as NumberMatch, O as OutputSeverity, P as PersonalizationEvent, J as PersonalizationManifest, $ as PersonalizeOptions, a3 as PersonalizedResult, a2 as PersonalizedVariant, al as Quirks, af as SERVER_STATE_ID, S as ScoreVector, ae as ServerToClientTransitionState, a9 as SetConsentCommand, ad as SetControlGroupCommand, aa as SetQuirkCommand, ab as SetTestCommand, w as Severity, K as Signal, Q as SignalCriteria, N as SignalCriteriaGroup, H as SignalData, a6 as StorageCommand, a as StorageCommands, d as StringMatch, W as TestDefinition, h as TestEvent, Y as TestOptions, a5 as TestResult, a4 as TestVariant, am as Tests, T as TransitionDataStore, ag as TransitionDataStoreEvents, b as TransitionDataStoreOptions, e as VariantMatchCriteria, V as VisitorData, ak as VisitorDataStore, aj as VisitorDataStoreEvents, ai as VisitorDataStoreOptions, ap as emptyVisitorData, a0 as personalizeVariations, Z as testVariations } from './types-1c9fdbd2.js';
|
3
3
|
import Cookies from 'js-cookie';
|
4
4
|
import 'mitt';
|
5
5
|
import './v2-manifest.swagger-74a3dcac.js';
|
@@ -161,4 +161,4 @@ type QuickConnectConfig = {
|
|
161
161
|
declare function serializeQuickConnect(config: QuickConnectConfig): string;
|
162
162
|
declare function parseQuickConnect(serialized: string): Required<QuickConnectConfig>;
|
163
163
|
|
164
|
-
export {
|
164
|
+
export { ConsoleDebugLogDrainOptions, CookieTransitionDataStore, CookieTransitionDataStoreOptions, EdgeNodeTagName, EdgePersonalizeComponentOptions, EdgeTestComponentOptions, EdgeTransitionDataStore, EdgeTransitionDataStoreOptions, LinearDecayOptions, QuickConnectConfig, ScriptType, UNIFORM_DEFAULT_COOKIE_NAME, computeAggregateDimensions, cookieEvaluator, createConsoleLogDrain, createDebugConsoleLogDrain, createLinearDecay, currentPageEvaluator, enableConsoleLogDrain, enableContextDevTools, enableDebugConsoleLogDrain, evaluateVariantMatch, eventEvaluator, explainStringMatch, explainStringMatchCriteria, getEnrichmentVectorKey, isStringMatch, pageViewCountDimension, pageViewCountEvaluator, parseQuickConnect, queryStringEvaluator, quirkEvaluator, serializeQuickConnect };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/context",
|
3
|
-
"version": "17.7.1-alpha.
|
3
|
+
"version": "17.7.1-alpha.211+e51b76310",
|
4
4
|
"description": "Uniform Context core package",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"devDependencies": {
|
60
60
|
"@types/js-cookie": "3.0.2",
|
61
61
|
"@types/yargs": "17.0.19",
|
62
|
-
"@uniformdev/cli": "
|
62
|
+
"@uniformdev/cli": "17.7.1-alpha.211+e51b76310",
|
63
63
|
"benny": "3.7.1",
|
64
64
|
"yargs": "17.6.2"
|
65
65
|
},
|
@@ -76,5 +76,5 @@
|
|
76
76
|
"publishConfig": {
|
77
77
|
"access": "public"
|
78
78
|
},
|
79
|
-
"gitHead": "
|
79
|
+
"gitHead": "e51b76310a677d0f0f2b35bfa1f7416c733cf25d"
|
80
80
|
}
|