@uniformdev/canvas 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/cli/cli.js +5 -64
- package/dist/cli/cli.mjs +5 -64
- package/dist/index.d.ts +2 -2
- package/package.json +4 -4
package/dist/cli/cli.js
CHANGED
@@ -6684,7 +6684,7 @@ var require_encoding = __commonJS({
|
|
6684
6684
|
}
|
6685
6685
|
});
|
6686
6686
|
|
6687
|
-
// ../../node_modules/.pnpm/node-fetch@2.6.
|
6687
|
+
// ../../node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch/lib/index.mjs
|
6688
6688
|
var lib_exports = {};
|
6689
6689
|
__export(lib_exports, {
|
6690
6690
|
FetchError: () => FetchError,
|
@@ -7073,7 +7073,7 @@ function fetch(url, opts) {
|
|
7073
7073
|
let error = new AbortError("The user aborted a request.");
|
7074
7074
|
reject(error);
|
7075
7075
|
if (request.body && request.body instanceof import_stream.default.Readable) {
|
7076
|
-
|
7076
|
+
request.body.destroy(error);
|
7077
7077
|
}
|
7078
7078
|
if (!response || !response.body)
|
7079
7079
|
return;
|
@@ -7108,29 +7108,8 @@ function fetch(url, opts) {
|
|
7108
7108
|
}
|
7109
7109
|
req.on("error", function(err) {
|
7110
7110
|
reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, "system", err));
|
7111
|
-
if (response && response.body) {
|
7112
|
-
destroyStream(response.body, err);
|
7113
|
-
}
|
7114
7111
|
finalize();
|
7115
7112
|
});
|
7116
|
-
fixResponseChunkedTransferBadEnding(req, function(err) {
|
7117
|
-
if (signal && signal.aborted) {
|
7118
|
-
return;
|
7119
|
-
}
|
7120
|
-
destroyStream(response.body, err);
|
7121
|
-
});
|
7122
|
-
if (parseInt(process.version.substring(1)) < 14) {
|
7123
|
-
req.on("socket", function(s) {
|
7124
|
-
s.addListener("close", function(hadError) {
|
7125
|
-
const hasDataListener = s.listenerCount("data") > 0;
|
7126
|
-
if (response && hasDataListener && !hadError && !(signal && signal.aborted)) {
|
7127
|
-
const err = new Error("Premature close");
|
7128
|
-
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7129
|
-
response.body.emit("error", err);
|
7130
|
-
}
|
7131
|
-
});
|
7132
|
-
});
|
7133
|
-
}
|
7134
7113
|
req.on("response", function(res) {
|
7135
7114
|
clearTimeout(reqTimeout);
|
7136
7115
|
const headers = createHeadersLenient(res.headers);
|
@@ -7181,7 +7160,7 @@ function fetch(url, opts) {
|
|
7181
7160
|
timeout: request.timeout,
|
7182
7161
|
size: request.size
|
7183
7162
|
};
|
7184
|
-
if (!isDomainOrSubdomain(request.url, locationURL)
|
7163
|
+
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7185
7164
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7186
7165
|
requestOpts.headers.delete(name);
|
7187
7166
|
}
|
@@ -7242,12 +7221,6 @@ function fetch(url, opts) {
|
|
7242
7221
|
response = new Response(body, response_options);
|
7243
7222
|
resolve5(response);
|
7244
7223
|
});
|
7245
|
-
raw.on("end", function() {
|
7246
|
-
if (!response) {
|
7247
|
-
response = new Response(body, response_options);
|
7248
|
-
resolve5(response);
|
7249
|
-
}
|
7250
|
-
});
|
7251
7224
|
return;
|
7252
7225
|
}
|
7253
7226
|
if (codings == "br" && typeof import_zlib.default.createBrotliDecompress === "function") {
|
@@ -7262,36 +7235,9 @@ function fetch(url, opts) {
|
|
7262
7235
|
writeToStream(req, request);
|
7263
7236
|
});
|
7264
7237
|
}
|
7265
|
-
|
7266
|
-
let socket;
|
7267
|
-
request.on("socket", function(s) {
|
7268
|
-
socket = s;
|
7269
|
-
});
|
7270
|
-
request.on("response", function(response) {
|
7271
|
-
const headers = response.headers;
|
7272
|
-
if (headers["transfer-encoding"] === "chunked" && !headers["content-length"]) {
|
7273
|
-
response.once("close", function(hadError) {
|
7274
|
-
const hasDataListener = socket.listenerCount("data") > 0;
|
7275
|
-
if (hasDataListener && !hadError) {
|
7276
|
-
const err = new Error("Premature close");
|
7277
|
-
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7278
|
-
errorCallback(err);
|
7279
|
-
}
|
7280
|
-
});
|
7281
|
-
}
|
7282
|
-
});
|
7283
|
-
}
|
7284
|
-
function destroyStream(stream, err) {
|
7285
|
-
if (stream.destroy) {
|
7286
|
-
stream.destroy(err);
|
7287
|
-
} else {
|
7288
|
-
stream.emit("error", err);
|
7289
|
-
stream.end();
|
7290
|
-
}
|
7291
|
-
}
|
7292
|
-
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, URL, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, isSameProtocol, lib_default2;
|
7238
|
+
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, URL, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, lib_default2;
|
7293
7239
|
var init_lib = __esm({
|
7294
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7240
|
+
"../../node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch/lib/index.mjs"() {
|
7295
7241
|
import_stream = __toESM(require("stream"), 1);
|
7296
7242
|
import_http = __toESM(require("http"), 1);
|
7297
7243
|
import_url2 = __toESM(require("url"), 1);
|
@@ -7802,11 +7748,6 @@ var init_lib = __esm({
|
|
7802
7748
|
const dest = new URL$1(destination).hostname;
|
7803
7749
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7804
7750
|
};
|
7805
|
-
isSameProtocol = function isSameProtocol2(destination, original) {
|
7806
|
-
const orig = new URL$1(original).protocol;
|
7807
|
-
const dest = new URL$1(destination).protocol;
|
7808
|
-
return orig === dest;
|
7809
|
-
};
|
7810
7751
|
fetch.isRedirect = function(code) {
|
7811
7752
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7812
7753
|
};
|
package/dist/cli/cli.mjs
CHANGED
@@ -6640,7 +6640,7 @@ var require_encoding = __commonJS({
|
|
6640
6640
|
}
|
6641
6641
|
});
|
6642
6642
|
|
6643
|
-
// ../../node_modules/.pnpm/node-fetch@2.6.
|
6643
|
+
// ../../node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch/lib/index.mjs
|
6644
6644
|
var lib_exports = {};
|
6645
6645
|
__export(lib_exports, {
|
6646
6646
|
FetchError: () => FetchError,
|
@@ -7034,7 +7034,7 @@ function fetch(url, opts) {
|
|
7034
7034
|
let error = new AbortError("The user aborted a request.");
|
7035
7035
|
reject(error);
|
7036
7036
|
if (request.body && request.body instanceof Stream.Readable) {
|
7037
|
-
|
7037
|
+
request.body.destroy(error);
|
7038
7038
|
}
|
7039
7039
|
if (!response || !response.body)
|
7040
7040
|
return;
|
@@ -7069,29 +7069,8 @@ function fetch(url, opts) {
|
|
7069
7069
|
}
|
7070
7070
|
req.on("error", function(err) {
|
7071
7071
|
reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, "system", err));
|
7072
|
-
if (response && response.body) {
|
7073
|
-
destroyStream(response.body, err);
|
7074
|
-
}
|
7075
7072
|
finalize();
|
7076
7073
|
});
|
7077
|
-
fixResponseChunkedTransferBadEnding(req, function(err) {
|
7078
|
-
if (signal && signal.aborted) {
|
7079
|
-
return;
|
7080
|
-
}
|
7081
|
-
destroyStream(response.body, err);
|
7082
|
-
});
|
7083
|
-
if (parseInt(process.version.substring(1)) < 14) {
|
7084
|
-
req.on("socket", function(s) {
|
7085
|
-
s.addListener("close", function(hadError) {
|
7086
|
-
const hasDataListener = s.listenerCount("data") > 0;
|
7087
|
-
if (response && hasDataListener && !hadError && !(signal && signal.aborted)) {
|
7088
|
-
const err = new Error("Premature close");
|
7089
|
-
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7090
|
-
response.body.emit("error", err);
|
7091
|
-
}
|
7092
|
-
});
|
7093
|
-
});
|
7094
|
-
}
|
7095
7074
|
req.on("response", function(res) {
|
7096
7075
|
clearTimeout(reqTimeout);
|
7097
7076
|
const headers = createHeadersLenient(res.headers);
|
@@ -7142,7 +7121,7 @@ function fetch(url, opts) {
|
|
7142
7121
|
timeout: request.timeout,
|
7143
7122
|
size: request.size
|
7144
7123
|
};
|
7145
|
-
if (!isDomainOrSubdomain(request.url, locationURL)
|
7124
|
+
if (!isDomainOrSubdomain(request.url, locationURL)) {
|
7146
7125
|
for (const name of ["authorization", "www-authenticate", "cookie", "cookie2"]) {
|
7147
7126
|
requestOpts.headers.delete(name);
|
7148
7127
|
}
|
@@ -7203,12 +7182,6 @@ function fetch(url, opts) {
|
|
7203
7182
|
response = new Response(body, response_options);
|
7204
7183
|
resolve5(response);
|
7205
7184
|
});
|
7206
|
-
raw.on("end", function() {
|
7207
|
-
if (!response) {
|
7208
|
-
response = new Response(body, response_options);
|
7209
|
-
resolve5(response);
|
7210
|
-
}
|
7211
|
-
});
|
7212
7185
|
return;
|
7213
7186
|
}
|
7214
7187
|
if (codings == "br" && typeof zlib.createBrotliDecompress === "function") {
|
@@ -7223,36 +7196,9 @@ function fetch(url, opts) {
|
|
7223
7196
|
writeToStream(req, request);
|
7224
7197
|
});
|
7225
7198
|
}
|
7226
|
-
|
7227
|
-
let socket;
|
7228
|
-
request.on("socket", function(s) {
|
7229
|
-
socket = s;
|
7230
|
-
});
|
7231
|
-
request.on("response", function(response) {
|
7232
|
-
const headers = response.headers;
|
7233
|
-
if (headers["transfer-encoding"] === "chunked" && !headers["content-length"]) {
|
7234
|
-
response.once("close", function(hadError) {
|
7235
|
-
const hasDataListener = socket.listenerCount("data") > 0;
|
7236
|
-
if (hasDataListener && !hadError) {
|
7237
|
-
const err = new Error("Premature close");
|
7238
|
-
err.code = "ERR_STREAM_PREMATURE_CLOSE";
|
7239
|
-
errorCallback(err);
|
7240
|
-
}
|
7241
|
-
});
|
7242
|
-
}
|
7243
|
-
});
|
7244
|
-
}
|
7245
|
-
function destroyStream(stream, err) {
|
7246
|
-
if (stream.destroy) {
|
7247
|
-
stream.destroy(err);
|
7248
|
-
} else {
|
7249
|
-
stream.emit("error", err);
|
7250
|
-
stream.end();
|
7251
|
-
}
|
7252
|
-
}
|
7253
|
-
var import_whatwg_url, Readable, BUFFER, TYPE, Blob2, convert, INTERNALS, PassThrough, invalidTokenRegex, invalidHeaderCharRegex, MAP, Headers, INTERNAL, HeadersIteratorPrototype, INTERNALS$1, STATUS_CODES, Response, INTERNALS$2, URL, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, isSameProtocol, lib_default2;
|
7199
|
+
var import_whatwg_url, Readable, BUFFER, TYPE, Blob2, convert, INTERNALS, PassThrough, invalidTokenRegex, invalidHeaderCharRegex, MAP, Headers, INTERNAL, HeadersIteratorPrototype, INTERNALS$1, STATUS_CODES, Response, INTERNALS$2, URL, parse_url, format_url, streamDestructionSupported, Request, URL$1, PassThrough$1, isDomainOrSubdomain, lib_default2;
|
7254
7200
|
var init_lib = __esm({
|
7255
|
-
"../../node_modules/.pnpm/node-fetch@2.6.
|
7201
|
+
"../../node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch/lib/index.mjs"() {
|
7256
7202
|
import_whatwg_url = __toESM(require_public_api(), 1);
|
7257
7203
|
Readable = Stream.Readable;
|
7258
7204
|
BUFFER = Symbol("buffer");
|
@@ -7758,11 +7704,6 @@ var init_lib = __esm({
|
|
7758
7704
|
const dest = new URL$1(destination).hostname;
|
7759
7705
|
return orig === dest || orig[orig.length - dest.length - 1] === "." && orig.endsWith(dest);
|
7760
7706
|
};
|
7761
|
-
isSameProtocol = function isSameProtocol2(destination, original) {
|
7762
|
-
const orig = new URL$1(original).protocol;
|
7763
|
-
const dest = new URL$1(destination).protocol;
|
7764
|
-
return orig === dest;
|
7765
|
-
};
|
7766
7707
|
fetch.isRedirect = function(code) {
|
7767
7708
|
return code === 301 || code === 302 || code === 303 || code === 307 || code === 308;
|
7768
7709
|
};
|
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ApiClient, ClientOptions, ExceptProject, ApiClientError } from '@uniformdev/context/api';
|
2
2
|
export { ApiClientError } from '@uniformdev/context/api';
|
3
3
|
import { C as CompositionGetParameters, a as CompositionGetByNodePathParameters, D as DataResolutionOptionNegative, b as CompositionGetResponse, c as DataResolutionOptionPositive, d as DataResolutionParameters, e as CompositionResolvedGetResponse, f as CompositionGetValidResponses, g as DataResolutionOption, h as CompositionGetByNodeIdParameters, i as CompositionGetBySlugParameters, j as CompositionGetByIdParameters, k as CompositionPutParameters, l as CompositionDeleteParameters, m as ComponentDefinitionGetParameters, n as ComponentDefinitionPutParameters, o as ComponentDefinitionDeleteParameters, p as ComponentInstance, q as ComponentParameter, r as components, s as DataSourceGetParameters, t as DataSourcesGetParameters, u as DataSourcePutParameters, v as DataSourceDeleteParameters, w as DataTypeGetParameters, x as DataTypeGetResponse, y as DataTypePutParameters, z as DataTypeDeleteParameters, P as PreviewEventBus, U as UpdateCompositionMessage, R as RootComponentInstance } from './createEventBus-60ff8dc4.js';
|
4
|
-
export { B as AddComponentMessage, ah as CanvasDefinitions, O as Channel, F as ChannelMessage, T as ChannelSubscription, a4 as ComponentDefinition, Z as ComponentDefinitionAPIDeleteRequest, Y as ComponentDefinitionAPIPutRequest, X as ComponentDefinitionAPIResponse,
|
4
|
+
export { B as AddComponentMessage, ah as CanvasDefinitions, O as Channel, F as ChannelMessage, T as ChannelSubscription, a4 as ComponentDefinition, Z as ComponentDefinitionAPIDeleteRequest, Y as ComponentDefinitionAPIPutRequest, X as ComponentDefinitionAPIResponse, W as ComponentDefinitionGetResponse, _ as ComponentDefinitionListAPIOptions, $ as ComponentDefinitionParameter, a3 as ComponentDefinitionPermission, a2 as ComponentDefinitionSlot, a1 as ComponentDefinitionSlugSettings, a0 as ComponentDefinitionVariant, aa as CompositionAPIDeleteRequest, ac as CompositionAPIOptions, a9 as CompositionAPIResponse, ao as CompositionDataDiagnostic, a8 as CompositionGetListResponse, a6 as CompositionGetOrderBy, ai as CompositionIssue, ab as CompositionListAPIResponse, aj as CompositionPatternIssue, a7 as CompositionUIStatus, a5 as CreatingComponentDefinition, ak as DataElementBindingIssue, ad as DataElementConnectionDefinition, an as DataResolutionConfigIssue, ag as DataResourceDefinition, af as DataResourceDefinitions, al as DataResourceIssue, am as DataResourceVariableIssue, ae as DataResourceVariables, as as DataSource, ap as DataSourceGetResponse, aq as DataSourcesGetResponse, ar as DataType, at as DataVariableDefinition, E as DismissPlaceholderMessage, N as MessageHandler, M as MoveComponentMessage, A as ReadyMessage, S as SelectComponentMessage, Q as createCanvasChannel, V as createEventBus, J as isAddComponentMessage, L as isDismissPlaceholderMessage, K as isMovingComponentMessage, H as isReadyMessage, G as isSelectComponentMessage, I as isUpdateCompositionMessage } from './createEventBus-60ff8dc4.js';
|
5
5
|
import { Options as Options$1 } from 'p-retry';
|
6
6
|
import { Options } from 'p-throttle';
|
7
7
|
import { PersonalizedVariant, TestVariant } from '@uniformdev/context';
|
@@ -742,4 +742,4 @@ declare function mapSlotToTestVariations(slot: ComponentInstance[] | undefined):
|
|
742
742
|
|
743
743
|
declare const CanvasClientError: typeof ApiClientError;
|
744
744
|
|
745
|
-
export { BatchEnhancer, BatchEntry, CANVAS_DRAFT_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CanvasClient, CanvasClientError, ChildEnhancerBuilder, ComponentEnhancer, ComponentEnhancerFunction, ComponentEnhancerOptions, ComponentLocationReference, ComponentParameterEnhancer, ComponentParameterEnhancerFunction, ComponentParameterEnhancerOptions, DataSourceClient, DataTypeClient, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_DEFAULT_L2_CACHE_TTL_IN_HOURS, EDGE_MAX_CACHE_TTL, EDGE_MAX_L2_CACHE_TTL_IN_HOURS, EDGE_MIN_CACHE_TTL, EDGE_MIN_L2_CACHE_TTL_IN_HOURS, EnhancerBuilder, EnhancerContext, EnhancerError, EventNames, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, InvalidationInput, InvalidationPayload, InvalidationResult, LimitPolicy, PLACEHOLDER_ID, SubscribeToCompositionOptions, UncachedCanvasClient, UniqueBatchEntries, UnsubscribeCallback, WalkComponentTreeActions, compose, createBatchEnhancer, createLimitPolicy, createUniformApiEnhancer, enhance, extractLocales, generateHash, getChannelName, getComponentJsonPointer, getComponentPath, isSystemComponentDefinition, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, subscribeToComposition, walkComponentTree };
|
745
|
+
export { BatchEnhancer, BatchEntry, CANVAS_DRAFT_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CanvasClient, CanvasClientError, ChildEnhancerBuilder, ComponentDefinitionDeleteParameters, ComponentDefinitionGetParameters, ComponentDefinitionPutParameters, ComponentEnhancer, ComponentEnhancerFunction, ComponentEnhancerOptions, ComponentInstance, ComponentLocationReference, ComponentParameter, ComponentParameterEnhancer, ComponentParameterEnhancerFunction, ComponentParameterEnhancerOptions, CompositionDeleteParameters, CompositionGetByIdParameters, CompositionGetByNodeIdParameters, CompositionGetByNodePathParameters, CompositionGetBySlugParameters, CompositionGetParameters, CompositionGetResponse, CompositionGetValidResponses, CompositionPutParameters, CompositionResolvedGetResponse, DataResolutionOption, DataResolutionOptionNegative, DataResolutionOptionPositive, DataResolutionParameters, DataSourceClient, DataSourceDeleteParameters, DataSourceGetParameters, DataSourcePutParameters, DataSourcesGetParameters, DataTypeClient, DataTypeDeleteParameters, DataTypeGetParameters, DataTypeGetResponse, DataTypePutParameters, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_DEFAULT_L2_CACHE_TTL_IN_HOURS, EDGE_MAX_CACHE_TTL, EDGE_MAX_L2_CACHE_TTL_IN_HOURS, EDGE_MIN_CACHE_TTL, EDGE_MIN_L2_CACHE_TTL_IN_HOURS, EnhancerBuilder, EnhancerContext, EnhancerError, EventNames, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, InvalidationInput, InvalidationPayload, InvalidationResult, LimitPolicy, PLACEHOLDER_ID, PreviewEventBus, RootComponentInstance, SubscribeToCompositionOptions, UncachedCanvasClient, UniqueBatchEntries, UnsubscribeCallback, UpdateCompositionMessage, WalkComponentTreeActions, compose, createBatchEnhancer, createLimitPolicy, createUniformApiEnhancer, enhance, extractLocales, generateHash, getChannelName, getComponentJsonPointer, getComponentPath, isSystemComponentDefinition, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, subscribeToComposition, walkComponentTree };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.10.1-alpha.7+f2a138dc5",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -49,7 +49,7 @@
|
|
49
49
|
"devDependencies": {
|
50
50
|
"@types/retry": "0.12.1",
|
51
51
|
"@types/yargs": "17.0.22",
|
52
|
-
"@uniformdev/cli": "18.
|
52
|
+
"@uniformdev/cli": "18.10.1-alpha.7+f2a138dc5",
|
53
53
|
"p-limit": "4.0.0",
|
54
54
|
"p-retry": "5.1.2",
|
55
55
|
"p-throttle": "5.0.0",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"yargs": "17.6.2"
|
58
58
|
},
|
59
59
|
"dependencies": {
|
60
|
-
"@uniformdev/context": "18.
|
60
|
+
"@uniformdev/context": "18.10.1-alpha.7+f2a138dc5"
|
61
61
|
},
|
62
62
|
"files": [
|
63
63
|
"/dist"
|
@@ -65,5 +65,5 @@
|
|
65
65
|
"publishConfig": {
|
66
66
|
"access": "public"
|
67
67
|
},
|
68
|
-
"gitHead": "
|
68
|
+
"gitHead": "f2a138dc52971e9e89b453928f938a84283701bc"
|
69
69
|
}
|