@uniformdev/canvas 19.79.0 → 19.79.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/index.js CHANGED
@@ -277,13 +277,16 @@ var require_retry2 = __commonJS({
277
277
  // src/index.ts
278
278
  var src_exports = {};
279
279
  __export(src_exports, {
280
+ ASSETS_SOURCE_CUSTOM_URL: () => ASSETS_SOURCE_CUSTOM_URL,
281
+ ASSETS_SOURCE_UNIFORM: () => ASSETS_SOURCE_UNIFORM,
282
+ ASSET_PARAMETER_TYPE: () => ASSET_PARAMETER_TYPE,
280
283
  ATTRIBUTE_COMPONENT_ID: () => ATTRIBUTE_COMPONENT_ID,
281
284
  ATTRIBUTE_MULTILINE: () => ATTRIBUTE_MULTILINE,
282
285
  ATTRIBUTE_PARAMETER_ID: () => ATTRIBUTE_PARAMETER_ID,
283
286
  ATTRIBUTE_PARAMETER_TYPE: () => ATTRIBUTE_PARAMETER_TYPE,
284
287
  ATTRIBUTE_PARAMETER_VALUE: () => ATTRIBUTE_PARAMETER_VALUE,
285
288
  ATTRIBUTE_PLACEHOLDER: () => ATTRIBUTE_PLACEHOLDER,
286
- ApiClientError: () => import_api10.ApiClientError,
289
+ ApiClientError: () => import_api11.ApiClientError,
287
290
  BatchEntry: () => BatchEntry,
288
291
  CANVAS_BLOCK_PARAM_TYPE: () => CANVAS_BLOCK_PARAM_TYPE,
289
292
  CANVAS_DRAFT_STATE: () => CANVAS_DRAFT_STATE,
@@ -320,6 +323,8 @@ __export(src_exports, {
320
323
  IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM: () => IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
321
324
  IN_CONTEXT_EDITOR_QUERY_STRING_PARAM: () => IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
322
325
  IS_RENDERED_BY_UNIFORM_ATTRIBUTE: () => IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
326
+ LOCALE_DYNAMIC_INPUT_NAME: () => LOCALE_DYNAMIC_INPUT_NAME,
327
+ LocaleClient: () => LocaleClient,
323
328
  PLACEHOLDER_ID: () => PLACEHOLDER_ID,
324
329
  PromptClient: () => PromptClient,
325
330
  RouteClient: () => RouteClient,
@@ -340,21 +345,29 @@ __export(src_exports, {
340
345
  createVariableReference: () => createVariableReference,
341
346
  enhance: () => enhance,
342
347
  extractLocales: () => extractLocales,
348
+ findParameterInNodeTree: () => findParameterInNodeTree,
349
+ flattenValues: () => flattenValues,
343
350
  generateComponentPlaceholderId: () => generateComponentPlaceholderId,
344
351
  generateHash: () => generateHash,
345
352
  getBlockValue: () => getBlockValue,
346
353
  getChannelName: () => getChannelName,
347
354
  getComponentJsonPointer: () => getComponentJsonPointer,
348
355
  getComponentPath: () => getComponentPath,
356
+ getNounForLocation: () => getNounForLocation,
357
+ getNounForNode: () => getNounForNode,
349
358
  getParameterAttributes: () => getParameterAttributes,
350
359
  getPropertiesValue: () => getPropertiesValue,
360
+ getPropertyValue: () => getPropertyValue,
351
361
  isAddComponentMessage: () => isAddComponentMessage,
352
362
  isAllowedReferrer: () => isAllowedReferrer,
363
+ isAssetParamValue: () => isAssetParamValue,
364
+ isAssetParamValueItem: () => isAssetParamValueItem,
353
365
  isComponentActionMessage: () => isComponentActionMessage,
354
366
  isComponentPlaceholderId: () => isComponentPlaceholderId,
355
367
  isDismissPlaceholderMessage: () => isDismissPlaceholderMessage,
356
368
  isEntryData: () => isEntryData,
357
369
  isMovingComponentMessage: () => isMovingComponentMessage,
370
+ isNestedNodeType: () => isNestedNodeType,
358
371
  isOpenParameterEditorMessage: () => isOpenParameterEditorMessage,
359
372
  isReadyMessage: () => isReadyMessage,
360
373
  isReportRenderedCompositionsMessage: () => isReportRenderedCompositionsMessage,
@@ -590,6 +603,7 @@ var CanvasClient = class extends import_api2.ApiClient {
590
603
  }
591
604
  super(options);
592
605
  this.edgeApiHost = (_a = options.edgeApiHost) != null ? _a : "https://uniform.global";
606
+ this.edgeApiRequestInit = options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0;
593
607
  }
594
608
  /** Fetches lists of Canvas compositions, optionally by type */
595
609
  async getCompositionList(params = {}) {
@@ -605,7 +619,7 @@ var CanvasClient = class extends import_api2.ApiClient {
605
619
  ...params.diagnostics ? { diagnostics: "true" } : {}
606
620
  };
607
621
  const edgeUrl = this.createUrl("/api/v1/compositions", edgeParams, this.edgeApiHost);
608
- return this.apiClient(edgeUrl);
622
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
609
623
  }
610
624
  getCompositionByNodePath(options) {
611
625
  return this.getOneComposition(options);
@@ -645,7 +659,7 @@ var CanvasClient = class extends import_api2.ApiClient {
645
659
  ...diagnostics ? { diagnostics: "true" } : {}
646
660
  };
647
661
  const edgeUrl = this.createUrl("/api/v1/composition", edgeParams, this.edgeApiHost);
648
- return this.apiClient(edgeUrl);
662
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
649
663
  }
650
664
  /** Updates or creates a Canvas component definition */
651
665
  async updateComposition(body) {
@@ -748,13 +762,15 @@ var unstable_CompositionRelationshipClient = class extends import_api4.ApiClient
748
762
  super(options);
749
763
  this.getDefinitionsRelationships = async ({
750
764
  definitionIds,
751
- withCompositions
765
+ withCompositions,
766
+ entityType = "composition"
752
767
  }) => {
753
768
  const url = this.createUrl(COMPOSITION_RELATIONSHIP_URL, {
754
769
  type: "definition",
755
770
  projectId: this._options.projectId,
756
771
  definitionIds: definitionIds.join(","),
757
- withCompositions
772
+ withCompositions,
773
+ entityType
758
774
  });
759
775
  return this.apiClient(url);
760
776
  };
@@ -820,8 +836,15 @@ var _ContentClient = class _ContentClient extends import_api5.ApiClient {
820
836
  getEntries(options) {
821
837
  const { projectId } = this.options;
822
838
  const { skipDataResolution, ...params } = options;
823
- const fetchUri = skipDataResolution ? this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId }) : this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
824
- return this.apiClient(fetchUri);
839
+ if (skipDataResolution) {
840
+ const url = this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId });
841
+ return this.apiClient(url);
842
+ }
843
+ const edgeUrl = this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
844
+ return this.apiClient(
845
+ edgeUrl,
846
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
847
+ );
825
848
  }
826
849
  /** Fetches historical versions of an entry */
827
850
  async getEntryHistory(options) {
@@ -1114,25 +1137,9 @@ var EDGE_MIN_CACHE_TTL = 10;
1114
1137
  var EDGE_MAX_CACHE_TTL = 24 * 60 * 60;
1115
1138
  var EDGE_DEFAULT_CACHE_TTL = 30;
1116
1139
  var EDGE_CACHE_DISABLED = -1;
1117
-
1118
- // src/utils/entryConverter.ts
1119
- function convertEntryToPutEntry(entry) {
1120
- return {
1121
- entry: {
1122
- type: entry.entry.type,
1123
- _dataResources: entry.entry._dataResources,
1124
- _id: entry.entry._id,
1125
- _name: entry.entry._name,
1126
- _slug: entry.entry._slug,
1127
- fields: entry.entry.fields
1128
- },
1129
- state: entry.state,
1130
- projectId: entry.projectId
1131
- };
1132
- }
1133
- function getPropertiesValue(entity) {
1134
- return "parameters" in entity && entity.parameters ? entity.parameters : "fields" in entity && entity.fields ? entity.fields : void 0;
1135
- }
1140
+ var ASSET_PARAMETER_TYPE = "asset";
1141
+ var ASSETS_SOURCE_UNIFORM = "uniform-assets";
1142
+ var ASSETS_SOURCE_CUSTOM_URL = "custom-url";
1136
1143
 
1137
1144
  // src/utils/guards.ts
1138
1145
  function isRootEntryReference(root) {
@@ -1141,6 +1148,49 @@ function isRootEntryReference(root) {
1141
1148
  function isEntryData(entryData) {
1142
1149
  return Boolean(entryData && typeof entryData === "object" && "fields" in entryData);
1143
1150
  }
1151
+ function isAssetParamValue(value) {
1152
+ return Array.isArray(value) && (value.length > 0 ? isAssetParamValueItem(value[0]) : true);
1153
+ }
1154
+ function isAssetParamValueItem(item) {
1155
+ return Boolean(
1156
+ item instanceof Object && "_source" in item && "fields" in item && item.fields instanceof Object && "url" in item.fields && item.fields.url instanceof Object
1157
+ );
1158
+ }
1159
+
1160
+ // src/utils/properties.ts
1161
+ function getPropertiesValue(entity) {
1162
+ return "parameters" in entity && entity.parameters ? entity.parameters : "fields" in entity && entity.fields ? entity.fields : void 0;
1163
+ }
1164
+ function getPropertyValue(parameter) {
1165
+ return parameter ? parameter.value : parameter;
1166
+ }
1167
+ function flattenValues(data, options = {}) {
1168
+ if (!data) {
1169
+ return data;
1170
+ } else if (Array.isArray(data) && options.toSingle) {
1171
+ return data.length > 0 ? flattenSingleNodeValues(data[0]) : void 0;
1172
+ } else if (Array.isArray(data)) {
1173
+ return data.map((node) => flattenSingleNodeValues(node, options));
1174
+ } else {
1175
+ return flattenSingleNodeValues(data, options);
1176
+ }
1177
+ }
1178
+ function flattenSingleNodeValues(data, options = {}) {
1179
+ const { levels = 1 } = options;
1180
+ const properties = getPropertiesValue(data);
1181
+ return properties ? Object.fromEntries(
1182
+ Object.entries(properties).map(([id, parameter]) => {
1183
+ const value = getPropertyValue(parameter);
1184
+ if (levels > 0 && Array.isArray(value) && // In the future ASSET_PARAMETER_TYPE will be a nested data type
1185
+ (isNestedNodeType(parameter.type) || parameter.type === ASSET_PARAMETER_TYPE)) {
1186
+ const nestedOptions = { ...options, levels: levels - 1 };
1187
+ return [id, value.map((item) => flattenValues(item, nestedOptions))];
1188
+ } else {
1189
+ return [id, value];
1190
+ }
1191
+ })
1192
+ ) : properties;
1193
+ }
1144
1194
 
1145
1195
  // src/enhancement/walkNodeTree.ts
1146
1196
  function walkNodeTree(node, visitor, options) {
@@ -1364,7 +1414,7 @@ function walkNodeTree(node, visitor, options) {
1364
1414
  const propertyEntries = Object.entries(properties);
1365
1415
  for (let propIndex = propertyEntries.length - 1; propIndex >= 0; propIndex--) {
1366
1416
  const [propKey, propObject] = propertyEntries[propIndex];
1367
- if (propObject.type !== CANVAS_BLOCK_PARAM_TYPE)
1417
+ if (!isNestedNodeType(propObject.type))
1368
1418
  continue;
1369
1419
  const blocks = (_b = propObject.value) != null ? _b : [];
1370
1420
  for (let blockIndex = blocks.length - 1; blockIndex >= 0; blockIndex--) {
@@ -1390,6 +1440,9 @@ function walkNodeTree(node, visitor, options) {
1390
1440
  }
1391
1441
  } while (componentQueue.length > 0);
1392
1442
  }
1443
+ function isNestedNodeType(type) {
1444
+ return type === CANVAS_BLOCK_PARAM_TYPE;
1445
+ }
1393
1446
  function getBlockValue(component, parameterName) {
1394
1447
  var _a;
1395
1448
  const parameter = (_a = getPropertiesValue(component)) == null ? void 0 : _a[parameterName];
@@ -1681,6 +1734,31 @@ function getNounForLocation(parentLocation) {
1681
1734
  }
1682
1735
  return noun;
1683
1736
  }
1737
+ function getNounForNode(node) {
1738
+ let noun = "parameters";
1739
+ if (isEntryData(node)) {
1740
+ noun = "fields";
1741
+ }
1742
+ return noun;
1743
+ }
1744
+
1745
+ // src/enhancement/findInNodeTree.ts
1746
+ function findParameterInNodeTree(data, predicate) {
1747
+ const results = [];
1748
+ walkNodeTree(data, ({ node, ancestorsAndSelf }) => {
1749
+ const parameters = getPropertiesValue(node);
1750
+ if (parameters) {
1751
+ Object.entries(parameters).filter(([key, field]) => predicate(field, key, node)).forEach(([key, field]) => {
1752
+ results.push({
1753
+ key,
1754
+ pointer: (ancestorsAndSelf.length === 1 ? "" : getComponentJsonPointer(ancestorsAndSelf)) + `/${getNounForNode(node)}/${key}`,
1755
+ parameter: field
1756
+ });
1757
+ });
1758
+ }
1759
+ });
1760
+ return results;
1761
+ }
1684
1762
 
1685
1763
  // src/enhancement/localize.ts
1686
1764
  function extractLocales({ component }) {
@@ -1697,23 +1775,31 @@ function extractLocales({ component }) {
1697
1775
  });
1698
1776
  return variations;
1699
1777
  }
1700
- function localize({
1701
- composition,
1702
- locale
1703
- }) {
1704
- walkNodeTree(composition, ({ type, node, actions }) => {
1778
+ function localize(options) {
1779
+ const nodes = "nodes" in options ? options.nodes : options.composition;
1780
+ const locale = options.locale;
1781
+ walkNodeTree(nodes, ({ type, node, actions }) => {
1705
1782
  if (type !== "component") {
1706
- actions.stopProcessingDescendants();
1783
+ if (typeof locale === "string") {
1784
+ localizeProperties(node.fields, locale);
1785
+ }
1707
1786
  return;
1708
1787
  }
1788
+ const shouldRunPropertyLocalization = typeof locale === "string";
1709
1789
  if (node.type === CANVAS_LOCALIZATION_TYPE) {
1710
1790
  const locales = extractLocales({ component: node });
1711
- const resolvedLocale = typeof locale === "string" ? locale : locale({ component: node, locales });
1791
+ const resolvedLocale = typeof locale === "string" ? locale : locale == null ? void 0 : locale({ component: node, locales });
1712
1792
  let replaceComponent;
1713
1793
  if (resolvedLocale) {
1714
1794
  replaceComponent = locales[resolvedLocale];
1715
1795
  }
1716
1796
  if (replaceComponent == null ? void 0 : replaceComponent.length) {
1797
+ replaceComponent.forEach((component) => {
1798
+ removeLocaleProperty(component);
1799
+ if (shouldRunPropertyLocalization) {
1800
+ localizeProperties(getPropertiesValue(component), locale);
1801
+ }
1802
+ });
1717
1803
  const [first, ...rest] = replaceComponent;
1718
1804
  actions.replace(first);
1719
1805
  if (rest.length) {
@@ -1722,6 +1808,42 @@ function localize({
1722
1808
  } else {
1723
1809
  actions.remove();
1724
1810
  }
1811
+ } else if (shouldRunPropertyLocalization) {
1812
+ localizeProperties(getPropertiesValue(node), locale);
1813
+ }
1814
+ });
1815
+ }
1816
+ function removeLocaleProperty(component) {
1817
+ const properties = getPropertiesValue(component);
1818
+ const localeTagProperty = properties == null ? void 0 : properties[CANVAS_LOCALE_TAG_PARAM];
1819
+ if (localeTagProperty) {
1820
+ delete properties[CANVAS_LOCALE_TAG_PARAM];
1821
+ }
1822
+ if (properties && Object.keys(properties).length === 0) {
1823
+ if ("fields" in component) {
1824
+ delete component.fields;
1825
+ }
1826
+ if ("parameters" in component) {
1827
+ delete component.parameters;
1828
+ }
1829
+ }
1830
+ }
1831
+ function localizeProperties(properties, locale) {
1832
+ if (!properties) {
1833
+ return void 0;
1834
+ }
1835
+ Object.entries(properties).forEach(([key, property]) => {
1836
+ var _a;
1837
+ if (!locale) {
1838
+ delete property.locales;
1839
+ }
1840
+ const currentLocaleValue = locale ? (_a = property.locales) == null ? void 0 : _a[locale] : void 0;
1841
+ if (currentLocaleValue !== void 0) {
1842
+ property.value = currentLocaleValue;
1843
+ }
1844
+ delete property.locales;
1845
+ if (property.value === void 0) {
1846
+ delete properties[key];
1725
1847
  }
1726
1848
  });
1727
1849
  }
@@ -1871,6 +1993,39 @@ function walkComponentTree(component, visitor, initialContext) {
1871
1993
  } while (componentQueue.length > 0);
1872
1994
  }
1873
1995
 
1996
+ // src/LocaleClient.ts
1997
+ var import_api8 = require("@uniformdev/context/api");
1998
+ var localesUrl = "/api/v1/locales";
1999
+ var LocaleClient = class extends import_api8.ApiClient {
2000
+ constructor(options) {
2001
+ super(options);
2002
+ }
2003
+ /** Fetches all locales for a project */
2004
+ async get(options) {
2005
+ const { projectId } = this.options;
2006
+ const fetchUri = this.createUrl(localesUrl, { ...options, projectId });
2007
+ return await this.apiClient(fetchUri);
2008
+ }
2009
+ /** Updates or creates (based on id) a locale */
2010
+ async upsert(body) {
2011
+ const fetchUri = this.createUrl(localesUrl);
2012
+ await this.apiClient(fetchUri, {
2013
+ method: "PUT",
2014
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
2015
+ expectNoContent: true
2016
+ });
2017
+ }
2018
+ /** Deletes a locale */
2019
+ async remove(body) {
2020
+ const fetchUri = this.createUrl(localesUrl);
2021
+ await this.apiClient(fetchUri, {
2022
+ method: "DELETE",
2023
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
2024
+ expectNoContent: true
2025
+ });
2026
+ }
2027
+ };
2028
+
1874
2029
  // src/utils/hash.ts
1875
2030
  var generateHash = ({
1876
2031
  composition,
@@ -2228,9 +2383,9 @@ function subscribeToComposition({
2228
2383
  }
2229
2384
 
2230
2385
  // src/PromptClient.ts
2231
- var import_api8 = require("@uniformdev/context/api");
2386
+ var import_api9 = require("@uniformdev/context/api");
2232
2387
  var PromptsUrl = "/api/v1/prompts";
2233
- var PromptClient = class extends import_api8.ApiClient {
2388
+ var PromptClient = class extends import_api9.ApiClient {
2234
2389
  constructor(options) {
2235
2390
  super(options);
2236
2391
  }
@@ -2261,9 +2416,9 @@ var PromptClient = class extends import_api8.ApiClient {
2261
2416
  };
2262
2417
 
2263
2418
  // src/RouteClient.ts
2264
- var import_api9 = require("@uniformdev/context/api");
2419
+ var import_api10 = require("@uniformdev/context/api");
2265
2420
  var ROUTE_URL = "/api/v1/route";
2266
- var RouteClient = class extends import_api9.ApiClient {
2421
+ var RouteClient = class extends import_api10.ApiClient {
2267
2422
  constructor(options) {
2268
2423
  var _a;
2269
2424
  if (!options.limitPolicy) {
@@ -2276,10 +2431,16 @@ var RouteClient = class extends import_api9.ApiClient {
2276
2431
  async getRoute(options) {
2277
2432
  const { projectId } = this.options;
2278
2433
  const fetchUri = this.createUrl(ROUTE_URL, { ...options, projectId }, this.edgeApiHost);
2279
- return await this.apiClient(fetchUri);
2434
+ return await this.apiClient(
2435
+ fetchUri,
2436
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
2437
+ );
2280
2438
  }
2281
2439
  };
2282
2440
 
2441
+ // src/types/locales.ts
2442
+ var LOCALE_DYNAMIC_INPUT_NAME = "locale";
2443
+
2283
2444
  // src/utils/createApiEnhancer.ts
2284
2445
  var createUniformApiEnhancer = ({ apiUrl }) => {
2285
2446
  return async (message) => {
@@ -2302,6 +2463,26 @@ var createUniformApiEnhancer = ({ apiUrl }) => {
2302
2463
  };
2303
2464
  };
2304
2465
 
2466
+ // src/utils/entryConverter.ts
2467
+ function convertEntryToPutEntry(entry) {
2468
+ return {
2469
+ entry: {
2470
+ type: entry.entry.type,
2471
+ _dataResources: entry.entry._dataResources,
2472
+ _id: entry.entry._id,
2473
+ _name: entry.entry._name,
2474
+ _slug: entry.entry._slug,
2475
+ _pattern: entry.entry._pattern,
2476
+ _overridability: entry.entry._overridability,
2477
+ _overrides: entry.entry._overrides,
2478
+ fields: entry.entry.fields,
2479
+ _locales: entry.entry._locales
2480
+ },
2481
+ state: entry.state,
2482
+ projectId: entry.projectId
2483
+ };
2484
+ }
2485
+
2305
2486
  // src/utils/getParameterAttributes.ts
2306
2487
  var ATTRIBUTE_COMPONENT_ID = "data-uniform-component-id";
2307
2488
  var ATTRIBUTE_PARAMETER_ID = "data-uniform-parameter-id";
@@ -2431,9 +2612,14 @@ function parseVariableExpression(serialized, onToken) {
2431
2612
  continue;
2432
2613
  }
2433
2614
  if (char === variableSuffix && state === "variable") {
2615
+ if (serialized[index - 1] === escapeCharacter) {
2616
+ bufferEndIndex++;
2617
+ continue;
2618
+ }
2434
2619
  state = "text";
2435
2620
  if (bufferEndIndex > bufferStartIndex) {
2436
- if (handleToken(serialized.substring(bufferStartIndex, bufferEndIndex), "variable") === false) {
2621
+ const unescapedVariableName = serialized.substring(bufferStartIndex, bufferEndIndex).replace(/\\([${}])/g, "$1");
2622
+ if (handleToken(unescapedVariableName, "variable") === false) {
2437
2623
  return tokenCount;
2438
2624
  }
2439
2625
  bufferStartIndex = bufferEndIndex + variableSuffix.length;
@@ -2493,7 +2679,7 @@ var import_immer = require("immer");
2493
2679
 
2494
2680
  // src/utils/variables/createVariableReference.ts
2495
2681
  function createVariableReference(variableName) {
2496
- return `\${${variableName}}`;
2682
+ return `\${${variableName.replace(/([${}])/g, "\\$1")}}`;
2497
2683
  }
2498
2684
 
2499
2685
  // src/utils/variables/bindVariablesToObject.ts
@@ -2574,10 +2760,13 @@ function handleRichTextNodeBinding(object, options) {
2574
2760
  }
2575
2761
 
2576
2762
  // src/index.ts
2577
- var import_api10 = require("@uniformdev/context/api");
2578
- var CanvasClientError = import_api10.ApiClientError;
2763
+ var import_api11 = require("@uniformdev/context/api");
2764
+ var CanvasClientError = import_api11.ApiClientError;
2579
2765
  // Annotate the CommonJS export names for ESM import in node:
2580
2766
  0 && (module.exports = {
2767
+ ASSETS_SOURCE_CUSTOM_URL,
2768
+ ASSETS_SOURCE_UNIFORM,
2769
+ ASSET_PARAMETER_TYPE,
2581
2770
  ATTRIBUTE_COMPONENT_ID,
2582
2771
  ATTRIBUTE_MULTILINE,
2583
2772
  ATTRIBUTE_PARAMETER_ID,
@@ -2621,6 +2810,8 @@ var CanvasClientError = import_api10.ApiClientError;
2621
2810
  IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
2622
2811
  IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
2623
2812
  IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
2813
+ LOCALE_DYNAMIC_INPUT_NAME,
2814
+ LocaleClient,
2624
2815
  PLACEHOLDER_ID,
2625
2816
  PromptClient,
2626
2817
  RouteClient,
@@ -2641,21 +2832,29 @@ var CanvasClientError = import_api10.ApiClientError;
2641
2832
  createVariableReference,
2642
2833
  enhance,
2643
2834
  extractLocales,
2835
+ findParameterInNodeTree,
2836
+ flattenValues,
2644
2837
  generateComponentPlaceholderId,
2645
2838
  generateHash,
2646
2839
  getBlockValue,
2647
2840
  getChannelName,
2648
2841
  getComponentJsonPointer,
2649
2842
  getComponentPath,
2843
+ getNounForLocation,
2844
+ getNounForNode,
2650
2845
  getParameterAttributes,
2651
2846
  getPropertiesValue,
2847
+ getPropertyValue,
2652
2848
  isAddComponentMessage,
2653
2849
  isAllowedReferrer,
2850
+ isAssetParamValue,
2851
+ isAssetParamValueItem,
2654
2852
  isComponentActionMessage,
2655
2853
  isComponentPlaceholderId,
2656
2854
  isDismissPlaceholderMessage,
2657
2855
  isEntryData,
2658
2856
  isMovingComponentMessage,
2857
+ isNestedNodeType,
2659
2858
  isOpenParameterEditorMessage,
2660
2859
  isReadyMessage,
2661
2860
  isReportRenderedCompositionsMessage,