@uniformdev/context 18.9.0 → 18.10.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.
- package/dist/api/api.d.ts +2 -2
- package/dist/cli/cli.js +5 -64
- package/dist/cli/cli.mjs +5 -64
- 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,
|
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';
|
3
3
|
import { I as ManifestV2 } from '../types-1c9fdbd2.js';
|
4
4
|
import '../v2-manifest.swagger-74a3dcac.js';
|
5
5
|
import 'mitt';
|
@@ -188,4 +188,4 @@ declare class CachedContextClient extends ContextClient {
|
|
188
188
|
constructor(options: Omit<ClientOptions, 'bypassCache'>);
|
189
189
|
}
|
190
190
|
|
191
|
-
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, handleRateLimits, nullLimitPolicy };
|
191
|
+
export { AggregateClient, AggregateDeleteParameters, AggregateGetParameters, AggregateGetResponse, AggregatePutParameters, ApiClient, ApiClientError, CachedAggregateClient, CachedContextClient, CachedDimensionClient, CachedEnrichmentClient, CachedManifestClient, CachedQuirkClient, CachedSignalClient, ClientOptions, ContextClient, DimensionClient, DimensionDefinition, DimensionDisplayData, DimensionGetParameters, DimensionGetResponse, EnrichmentClient, EnrichmentDeleteParameters, EnrichmentGetParameters, EnrichmentGetResponse, EnrichmentPutParameters, EnrichmentValueDeleteParameters, EnrichmentValuePutParameters, ExceptProject, LimitPolicy, ManifestClient, ManifestGetParameters, ManifestGetResponse, QuirkClient, QuirkDeleteParameters, QuirkGetParameters, QuirkGetResponse, QuirkPutParameters, SignalClient, SignalDeleteParameters, SignalGetParameters, SignalGetResponse, SignalPutParameters, TestDeleteParameters, TestGetParameters, TestGetResponse, TestPutParameters, UncachedAggregateClient, UncachedContextClient, UncachedDimensionClient, UncachedEnrichmentClient, UncachedManifestClient, UncachedQuirkClient, UncachedSignalClient, computeDimensionDefinitionDisplayData, computeDimensionDisplayData, computeDimensionDisplayName, handleRateLimits, 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.7/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
|
-
|
7063
|
+
request.body.destroy(error);
|
7064
7064
|
}
|
7065
7065
|
if (!response || !response.body)
|
7066
7066
|
return;
|
@@ -7095,29 +7095,8 @@ 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
|
-
}
|
7101
7098
|
finalize();
|
7102
7099
|
});
|
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
|
-
}
|
7121
7100
|
req.on("response", function(res) {
|
7122
7101
|
clearTimeout(reqTimeout);
|
7123
7102
|
const headers = createHeadersLenient(res.headers);
|
@@ -7168,7 +7147,7 @@ function fetch2(url, opts) {
|
|
7168
7147
|
timeout: request.timeout,
|
7169
7148
|
size: request.size
|
7170
7149
|
};
|
7171
|
-
if (!isDomainOrSubdomain(request.url, locationURL)
|
7150
|
+
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7172
7151
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7173
7152
|
requestOpts.headers.delete(name);
|
7174
7153
|
}
|
@@ -7229,12 +7208,6 @@ function fetch2(url, opts) {
|
|
7229
7208
|
response = new Response(body, response_options);
|
7230
7209
|
resolve5(response);
|
7231
7210
|
});
|
7232
|
-
raw.on("end", function() {
|
7233
|
-
if (!response) {
|
7234
|
-
response = new Response(body, response_options);
|
7235
|
-
resolve5(response);
|
7236
|
-
}
|
7237
|
-
});
|
7238
7211
|
return;
|
7239
7212
|
}
|
7240
7213
|
if (codings == "br" && typeof import_zlib.default.createBrotliDecompress === "function") {
|
@@ -7249,36 +7222,9 @@ function fetch2(url, opts) {
|
|
7249
7222
|
writeToStream(req, request);
|
7250
7223
|
});
|
7251
7224
|
}
|
7252
|
-
|
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;
|
7225
|
+
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, lib_default2;
|
7280
7226
|
var init_lib = __esm({
|
7281
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7227
|
+
"../../node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch/lib/index.mjs"() {
|
7282
7228
|
import_stream = __toESM(require("stream"), 1);
|
7283
7229
|
import_http = __toESM(require("http"), 1);
|
7284
7230
|
import_url2 = __toESM(require("url"), 1);
|
@@ -7789,11 +7735,6 @@ var init_lib = __esm({
|
|
7789
7735
|
const dest = new URL$1(destination).hostname;
|
7790
7736
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7791
7737
|
};
|
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
|
-
};
|
7797
7738
|
fetch2.isRedirect = function(code) {
|
7798
7739
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7799
7740
|
};
|
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.7/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
|
-
|
7074
|
+
request.body.destroy(error);
|
7075
7075
|
}
|
7076
7076
|
if (!response || !response.body)
|
7077
7077
|
return;
|
@@ -7106,29 +7106,8 @@ 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
|
-
}
|
7112
7109
|
finalize();
|
7113
7110
|
});
|
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
|
-
}
|
7132
7111
|
req.on("response", function(res) {
|
7133
7112
|
clearTimeout(reqTimeout);
|
7134
7113
|
const headers = createHeadersLenient(res.headers);
|
@@ -7179,7 +7158,7 @@ function fetch2(url, opts) {
|
|
7179
7158
|
timeout: request.timeout,
|
7180
7159
|
size: request.size
|
7181
7160
|
};
|
7182
|
-
if (!isDomainOrSubdomain(request.url, locationURL)
|
7161
|
+
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7183
7162
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7184
7163
|
requestOpts.headers.delete(name);
|
7185
7164
|
}
|
@@ -7240,12 +7219,6 @@ function fetch2(url, opts) {
|
|
7240
7219
|
response = new Response(body, response_options);
|
7241
7220
|
resolve5(response);
|
7242
7221
|
});
|
7243
|
-
raw.on("end", function() {
|
7244
|
-
if (!response) {
|
7245
|
-
response = new Response(body, response_options);
|
7246
|
-
resolve5(response);
|
7247
|
-
}
|
7248
|
-
});
|
7249
7222
|
return;
|
7250
7223
|
}
|
7251
7224
|
if (codings == "br" && typeof zlib.createBrotliDecompress === "function") {
|
@@ -7260,36 +7233,9 @@ function fetch2(url, opts) {
|
|
7260
7233
|
writeToStream(req, request);
|
7261
7234
|
});
|
7262
7235
|
}
|
7263
|
-
|
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;
|
7236
|
+
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, lib_default2;
|
7291
7237
|
var init_lib = __esm({
|
7292
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7238
|
+
"../../node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch/lib/index.mjs"() {
|
7293
7239
|
import_whatwg_url = __toESM(require_public_api(), 1);
|
7294
7240
|
Readable = Stream.Readable;
|
7295
7241
|
BUFFER = Symbol("buffer");
|
@@ -7795,11 +7741,6 @@ var init_lib = __esm({
|
|
7795
7741
|
const dest = new URL$1(destination).hostname;
|
7796
7742
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7797
7743
|
};
|
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
|
-
};
|
7803
7744
|
fetch2.isRedirect = function(code) {
|
7804
7745
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7805
7746
|
};
|
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 {
|
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';
|
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 { 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 };
|
164
|
+
export { AggregateDimension, ConsoleDebugLogDrainOptions, ContextPlugin, CookieTransitionDataStore, CookieTransitionDataStoreOptions, CriteriaEvaluator, DecayFunction, EdgeNodeTagName, EdgePersonalizeComponentOptions, EdgeTestComponentOptions, EdgeTransitionDataStore, EdgeTransitionDataStoreOptions, LinearDecayOptions, LogDrain, LogMessage, OutputSeverity, QuickConnectConfig, ScoreVector, ScriptType, StorageCommands, StringMatch, TransitionDataStore, TransitionDataStoreOptions, UNIFORM_DEFAULT_COOKIE_NAME, VariantMatchCriteria, VisitorData, 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": "18.
|
3
|
+
"version": "18.10.1-alpha.7+f2a138dc5",
|
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.22",
|
62
|
-
"@uniformdev/cli": "18.
|
62
|
+
"@uniformdev/cli": "18.10.1-alpha.7+f2a138dc5",
|
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": "f2a138dc52971e9e89b453928f938a84283701bc"
|
80
80
|
}
|