@player-ui/stage-revert-data-plugin 0.15.4-next.0 → 0.16.0--canary.866.36538

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.
@@ -1513,6 +1513,412 @@ var StageRevertDataPlugin = function() {
1513
1513
  });
1514
1514
  return batchTxn;
1515
1515
  };
1516
+ var pointerToBinding = function pointerToBinding(pointer) {
1517
+ if (!pointer || pointer === "/") return "";
1518
+ var absolute = pointer.startsWith("/");
1519
+ var raw = absolute ? pointer.slice(1) : pointer;
1520
+ var segments = raw.split("/").map(decodeSegment);
1521
+ var out = "";
1522
+ for(var i = 0; i < segments.length; i++){
1523
+ var seg = segments[i];
1524
+ if (NUMERIC_SEGMENT.test(seg)) {
1525
+ out += "[".concat(seg, "]");
1526
+ } else {
1527
+ out += i === 0 ? seg : ".".concat(seg);
1528
+ }
1529
+ }
1530
+ return out;
1531
+ };
1532
+ var bindingToSegments = function bindingToSegments(binding) {
1533
+ if (!binding) return [];
1534
+ var segments = [];
1535
+ var parts = binding.split(".");
1536
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1537
+ try {
1538
+ for(var _iterator = parts[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1539
+ var part = _step.value;
1540
+ var match = part.match(/^([^[]+)((?:\[\d+\])*)$/);
1541
+ if (!match) {
1542
+ segments.push(part);
1543
+ continue;
1544
+ }
1545
+ var _match = _sliced_to_array(match, 3), name = _match[1], arrays = _match[2];
1546
+ if (name) segments.push(name);
1547
+ if (arrays) {
1548
+ var _segments;
1549
+ var _arrays_match;
1550
+ var arrayMatches = (_arrays_match = arrays.match(/\[\d+\]/g)) !== null && _arrays_match !== void 0 ? _arrays_match : [];
1551
+ (_segments = segments).push.apply(_segments, _to_consumable_array(arrayMatches));
1552
+ }
1553
+ }
1554
+ } catch (err) {
1555
+ _didIteratorError = true;
1556
+ _iteratorError = err;
1557
+ } finally{
1558
+ try {
1559
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
1560
+ _iterator.return();
1561
+ }
1562
+ } finally{
1563
+ if (_didIteratorError) {
1564
+ throw _iteratorError;
1565
+ }
1566
+ }
1567
+ }
1568
+ return segments;
1569
+ };
1570
+ var interpolatePointers = function interpolatePointers(input) {
1571
+ return input.replace(/\$\{([^}]+)\}/g, function(_, pointer) {
1572
+ return "{{".concat(pointerToBinding(pointer), "}}");
1573
+ });
1574
+ };
1575
+ var translateFunctionCall = function translateFunctionCall(call, logger) {
1576
+ if (call.call === "formatString") {
1577
+ var _call_args;
1578
+ var value = (_call_args = call.args) === null || _call_args === void 0 ? void 0 : _call_args.value;
1579
+ if (typeof value === "string") return interpolatePointers(value);
1580
+ logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] formatString received non-string 'value' arg; emitting expression form");
1581
+ }
1582
+ var argList = renderArgList(call.args);
1583
+ if (call.call === "formatString") {
1584
+ return "@[formatString(".concat(argList, ")]@");
1585
+ }
1586
+ return "@[".concat(call.call, "(").concat(argList, ")]@");
1587
+ };
1588
+ var renderArgList = function renderArgList(args) {
1589
+ if (!args) return "";
1590
+ return Object.values(args).map(renderArg).join(", ");
1591
+ };
1592
+ var newBuilder = function newBuilder() {
1593
+ return {
1594
+ schema: {
1595
+ ROOT: {}
1596
+ },
1597
+ knownTypes: /* @__PURE__ */ new Set([
1598
+ "ROOT"
1599
+ ])
1600
+ };
1601
+ };
1602
+ var findBoundPath = function findBoundPath(component, logger) {
1603
+ var lookupProp = INPUT_BINDING_PROPS[component.component];
1604
+ if (lookupProp) {
1605
+ var prop = component[lookupProp];
1606
+ if (isPathRef(prop)) return prop.path;
1607
+ }
1608
+ var pathRefs = collectPathRefs(component);
1609
+ if (pathRefs.length === 1) return pathRefs[0];
1610
+ if (pathRefs.length > 1) {
1611
+ logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Component '".concat(component.id, "' (").concat(component.component, ") has checks but multiple {path} refs; skipping schema synthesis for this component"));
1612
+ } else {
1613
+ logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Component '".concat(component.id, "' (").concat(component.component, ") has checks but no bound path could be determined; skipping"));
1614
+ }
1615
+ return void 0;
1616
+ };
1617
+ var collectPathRefs = function collectPathRefs(component) {
1618
+ var found = [];
1619
+ var walk = function walk1(v) {
1620
+ if (!v || (typeof v === "undefined" ? "undefined" : _type_of(v)) !== "object") return;
1621
+ if (Array.isArray(v)) {
1622
+ v.forEach(walk);
1623
+ return;
1624
+ }
1625
+ if (isPathRef(v)) {
1626
+ found.push(v.path);
1627
+ return;
1628
+ }
1629
+ Object.values(v).forEach(walk);
1630
+ };
1631
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1632
+ try {
1633
+ for(var _iterator = Object.entries(component)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1634
+ var _step_value = _sliced_to_array(_step.value, 2), k = _step_value[0], v = _step_value[1];
1635
+ if (k === "id" || k === "component" || k === "checks" || k === "action") {
1636
+ continue;
1637
+ }
1638
+ walk(v);
1639
+ }
1640
+ } catch (err) {
1641
+ _didIteratorError = true;
1642
+ _iteratorError = err;
1643
+ } finally{
1644
+ try {
1645
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
1646
+ _iterator.return();
1647
+ }
1648
+ } finally{
1649
+ if (_didIteratorError) {
1650
+ throw _iteratorError;
1651
+ }
1652
+ }
1653
+ }
1654
+ return found;
1655
+ };
1656
+ var translateCheck = function translateCheck(check, logger) {
1657
+ var _check_args;
1658
+ var type = CHECK_TO_VALIDATOR[check.call];
1659
+ if (!type) {
1660
+ logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Unknown validation check '".concat(check.call, "'; dropping"));
1661
+ return void 0;
1662
+ }
1663
+ var ref = {
1664
+ type: type,
1665
+ severity: "error"
1666
+ };
1667
+ if (check.message) ref.message = check.message;
1668
+ if (check.call === "regex" && ((_check_args = check.args) === null || _check_args === void 0 ? void 0 : _check_args.pattern)) {
1669
+ ref.regex = unwrapLiteral(check.args.pattern);
1670
+ }
1671
+ if (check.call === "length") {
1672
+ var _check_args1, _check_args2;
1673
+ if (((_check_args1 = check.args) === null || _check_args1 === void 0 ? void 0 : _check_args1.min) !== void 0) ref.min = unwrapLiteral(check.args.min);
1674
+ if (((_check_args2 = check.args) === null || _check_args2 === void 0 ? void 0 : _check_args2.max) !== void 0) ref.max = unwrapLiteral(check.args.max);
1675
+ }
1676
+ return ref;
1677
+ };
1678
+ var unwrapLiteral = function unwrapLiteral(value) {
1679
+ if (typeof value === "string" || typeof value === "number" || typeof value === "boolean" || value === null) {
1680
+ return value;
1681
+ }
1682
+ return value;
1683
+ };
1684
+ var installAtPath = function installAtPath(builder, binding, leafType, validations, logger) {
1685
+ var segments = bindingToSegments(binding).filter(function(s) {
1686
+ return !s.startsWith("[");
1687
+ });
1688
+ if (segments.length === 0) {
1689
+ logger === null || logger === void 0 ? void 0 : logger.warn("[a2ui] Cannot install schema validation at empty path; skipping");
1690
+ return;
1691
+ }
1692
+ var currentNode = builder.schema.ROOT;
1693
+ var ownerPath = [];
1694
+ for(var i = 0; i < segments.length - 1; i++){
1695
+ var seg = segments[i];
1696
+ ownerPath.push(seg);
1697
+ var typeName = "".concat(TYPE_PREFIX).concat(ownerPath.join("_"));
1698
+ var existing = currentNode[seg];
1699
+ if (!existing) {
1700
+ currentNode[seg] = {
1701
+ type: typeName
1702
+ };
1703
+ } else if (existing.type !== typeName) {}
1704
+ var ref = currentNode[seg].type;
1705
+ if (!builder.schema[ref]) {
1706
+ builder.schema[ref] = {};
1707
+ builder.knownTypes.add(ref);
1708
+ }
1709
+ currentNode = builder.schema[ref];
1710
+ }
1711
+ var leafSeg = segments[segments.length - 1];
1712
+ var existingLeaf = currentNode[leafSeg];
1713
+ if (existingLeaf) {
1714
+ var _existingLeaf_validation;
1715
+ var merged = _object_spread_props(_object_spread({}, existingLeaf), {
1716
+ type: pickLeafType(existingLeaf.type, leafType),
1717
+ validation: _to_consumable_array((_existingLeaf_validation = existingLeaf.validation) !== null && _existingLeaf_validation !== void 0 ? _existingLeaf_validation : []).concat(_to_consumable_array(validations))
1718
+ });
1719
+ currentNode[leafSeg] = merged;
1720
+ } else {
1721
+ currentNode[leafSeg] = {
1722
+ type: leafType,
1723
+ validation: validations
1724
+ };
1725
+ }
1726
+ };
1727
+ var pickLeafType = function pickLeafType(existing, incoming) {
1728
+ if (incoming !== "string") return incoming;
1729
+ return existing;
1730
+ };
1731
+ var defaultLeafType = function defaultLeafType(component, checks) {
1732
+ if (component.component === "CheckBox") return "boolean";
1733
+ if (checks.some(function(c) {
1734
+ return c.call === "numeric";
1735
+ })) return "number";
1736
+ return "string";
1737
+ };
1738
+ var synthesizeSchema = function synthesizeSchema(components, logger) {
1739
+ var builder = newBuilder();
1740
+ var found = false;
1741
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1742
+ try {
1743
+ for(var _iterator = components[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1744
+ var component = _step.value;
1745
+ if (!component.checks || component.checks.length === 0) continue;
1746
+ var pointer = findBoundPath(component, logger);
1747
+ if (!pointer) continue;
1748
+ var binding = pointerToBinding(pointer);
1749
+ if (!binding) continue;
1750
+ var validations = component.checks.map(function(c) {
1751
+ return translateCheck(c, logger);
1752
+ }).filter(function(v) {
1753
+ return v !== void 0;
1754
+ });
1755
+ if (validations.length === 0) continue;
1756
+ installAtPath(builder, binding, defaultLeafType(component, component.checks), validations, logger);
1757
+ found = true;
1758
+ }
1759
+ } catch (err) {
1760
+ _didIteratorError = true;
1761
+ _iteratorError = err;
1762
+ } finally{
1763
+ try {
1764
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
1765
+ _iterator.return();
1766
+ }
1767
+ } finally{
1768
+ if (_didIteratorError) {
1769
+ throw _iteratorError;
1770
+ }
1771
+ }
1772
+ }
1773
+ return found ? builder.schema : void 0;
1774
+ };
1775
+ var resolveAndInline = function resolveAndInline(id, ctx, templateScope) {
1776
+ var component = ctx.byId.get(id);
1777
+ if (!component) {
1778
+ throw new Error("[a2ui] Component reference '".concat(id, "' could not be resolved in the snapshot."));
1779
+ }
1780
+ return inlineComponent(component, ctx, templateScope);
1781
+ };
1782
+ var wrapInlined = function wrapInlined(asset) {
1783
+ return {
1784
+ asset: asset
1785
+ };
1786
+ };
1787
+ var scopedBinding = function scopedBinding(pointer, scope) {
1788
+ if (!pointer || pointer === "/") return scope !== null && scope !== void 0 ? scope : "";
1789
+ if (pointer.startsWith("/")) return pointerToBinding(pointer);
1790
+ if (!scope) return pointerToBinding(pointer);
1791
+ var relative = pointerToBinding(pointer);
1792
+ return relative ? "".concat(scope, "._index_.").concat(relative) : "".concat(scope, "._index_");
1793
+ };
1794
+ var scopedPointer = function scopedPointer(pointer, scope) {
1795
+ if (pointer.startsWith("/")) return pointer;
1796
+ return "/".concat(scope, "/_index_/").concat(pointer);
1797
+ };
1798
+ var translateAction = function translateAction(action, ctx) {
1799
+ if ("event" in action) {
1800
+ var _action_event = action.event, name = _action_event.name, context = _action_event.context;
1801
+ ctx.eventNames.add(name);
1802
+ var result = {
1803
+ value: name
1804
+ };
1805
+ if (context && Object.keys(context).length > 0) {
1806
+ result.exp = buildContextWriteExpressions(context);
1807
+ }
1808
+ return result;
1809
+ }
1810
+ return {
1811
+ exp: translateFunctionCall(action.functionCall, ctx.logger)
1812
+ };
1813
+ };
1814
+ var buildContextWriteExpressions = function buildContextWriteExpressions(context) {
1815
+ return Object.entries(context).map(function(param) {
1816
+ var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];
1817
+ var lhs = "{{".concat(A2UI_EVENT_CONTEXT_NAMESPACE, ".").concat(key, "}}");
1818
+ return "".concat(lhs, " = ").concat(renderRhs(value));
1819
+ });
1820
+ };
1821
+ var buildNavigation = function buildNavigation(surfaceId, eventNames) {
1822
+ var view = {
1823
+ state_type: "VIEW",
1824
+ ref: surfaceId,
1825
+ transitions: {
1826
+ "*": "END_Done"
1827
+ }
1828
+ };
1829
+ var endStates = {
1830
+ END_Done: {
1831
+ state_type: "END",
1832
+ outcome: "done"
1833
+ }
1834
+ };
1835
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1836
+ try {
1837
+ for(var _iterator = eventNames[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1838
+ var name = _step.value;
1839
+ var endName = "END_".concat(name);
1840
+ view.transitions[name] = endName;
1841
+ endStates[endName] = {
1842
+ state_type: "END",
1843
+ outcome: name
1844
+ };
1845
+ }
1846
+ } catch (err) {
1847
+ _didIteratorError = true;
1848
+ _iteratorError = err;
1849
+ } finally{
1850
+ try {
1851
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
1852
+ _iterator.return();
1853
+ }
1854
+ } finally{
1855
+ if (_didIteratorError) {
1856
+ throw _iteratorError;
1857
+ }
1858
+ }
1859
+ }
1860
+ var flow = _object_spread({
1861
+ startState: "VIEW_1",
1862
+ VIEW_1: view
1863
+ }, endStates);
1864
+ return {
1865
+ BEGIN: "FLOW_1",
1866
+ FLOW_1: flow
1867
+ };
1868
+ };
1869
+ var adaptA2UIToFlow = function adaptA2UIToFlow(snapshot, logger) {
1870
+ var _snapshot_data;
1871
+ if (!snapshot || !Array.isArray(snapshot.components)) {
1872
+ throw new Error("[a2ui] snapshot.components must be an array");
1873
+ }
1874
+ var byId = /* @__PURE__ */ new Map();
1875
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1876
+ try {
1877
+ for(var _iterator = snapshot.components[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
1878
+ var component = _step.value;
1879
+ if (!(component === null || component === void 0 ? void 0 : component.id)) {
1880
+ throw new Error("[a2ui] every component must have an id");
1881
+ }
1882
+ byId.set(component.id, component);
1883
+ }
1884
+ } catch (err) {
1885
+ _didIteratorError = true;
1886
+ _iteratorError = err;
1887
+ } finally{
1888
+ try {
1889
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
1890
+ _iterator.return();
1891
+ }
1892
+ } finally{
1893
+ if (_didIteratorError) {
1894
+ throw _iteratorError;
1895
+ }
1896
+ }
1897
+ }
1898
+ var root = byId.get("root");
1899
+ if (!root) {
1900
+ throw new Error("[a2ui] snapshot must contain a component with id 'root'");
1901
+ }
1902
+ var ctx = {
1903
+ byId: byId,
1904
+ inProgress: /* @__PURE__ */ new Set(),
1905
+ eventNames: /* @__PURE__ */ new Set(),
1906
+ logger: logger
1907
+ };
1908
+ var rootAsset = inlineComponent(root, ctx);
1909
+ rootAsset.id = snapshot.surfaceId;
1910
+ var schema = synthesizeSchema(snapshot.components, logger);
1911
+ var flow = {
1912
+ id: snapshot.surfaceId,
1913
+ views: [
1914
+ rootAsset
1915
+ ],
1916
+ data: (_snapshot_data = snapshot.data) !== null && _snapshot_data !== void 0 ? _snapshot_data : {},
1917
+ navigation: buildNavigation(snapshot.surfaceId, ctx.eventNames)
1918
+ };
1919
+ if (schema) flow.schema = schema;
1920
+ return flow;
1921
+ };
1516
1922
  var __create = Object.create;
1517
1923
  var __defProp = Object.defineProperty;
1518
1924
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -1732,7 +2138,7 @@ var StageRevertDataPlugin = function() {
1732
2138
  }
1733
2139
  return out;
1734
2140
  }
1735
- function isObject(o) {
2141
+ function isObject2(o) {
1736
2142
  return o != null && (typeof o === "undefined" ? "undefined" : _type_of(o)) === "object";
1737
2143
  }
1738
2144
  function addLast2(array, val) {
@@ -1805,7 +2211,7 @@ var StageRevertDataPlugin = function() {
1805
2211
  if (idx === path.length - 1) {
1806
2212
  newValue = val;
1807
2213
  } else {
1808
- var nestedObj = isObject(obj) && isObject(obj[key]) ? obj[key] : typeof path[idx + 1] === "number" ? [] : {};
2214
+ var nestedObj = isObject2(obj) && isObject2(obj[key]) ? obj[key] : typeof path[idx + 1] === "number" ? [] : {};
1809
2215
  newValue = doSetIn(nestedObj, path, val, idx + 1);
1810
2216
  }
1811
2217
  return set2(obj, key, newValue);
@@ -1935,7 +2341,7 @@ var StageRevertDataPlugin = function() {
1935
2341
  var key = keys[j];
1936
2342
  if (fAddDefaults && out[key] !== void 0) continue;
1937
2343
  var nextVal = obj[key];
1938
- if (fDeep && isObject(out[key]) && isObject(nextVal)) {
2344
+ if (fDeep && isObject2(out[key]) && isObject2(nextVal)) {
1939
2345
  nextVal = doMerge(fAddDefaults, fDeep, out[key], nextVal);
1940
2346
  }
1941
2347
  if (nextVal === void 0 || nextVal === out[key]) continue;
@@ -7394,8 +7800,234 @@ var StageRevertDataPlugin = function() {
7394
7800
  ref: Symbol("not-started"),
7395
7801
  status: "not-started"
7396
7802
  };
7397
- var PLAYER_VERSION = true ? "0.15.4-next.0" : "unknown";
7398
- var COMMIT = true ? "23a98a4b8e5d2c8078103ef189e9167a0d96823d" : "unknown";
7803
+ var A2UI_EVENT_CONTEXT_NAMESPACE = "agent.event.context";
7804
+ var NUMERIC_SEGMENT = /^(0|[1-9]\d*)$/;
7805
+ var decodeSegment = function decodeSegment(segment) {
7806
+ return segment.replace(/~1/g, "/").replace(/~0/g, "~");
7807
+ };
7808
+ var isObject = function isObject(v) {
7809
+ return (typeof v === "undefined" ? "undefined" : _type_of(v)) === "object" && v !== null && !Array.isArray(v);
7810
+ };
7811
+ var isPathRef = function isPathRef(v) {
7812
+ return isObject(v) && typeof v.path === "string" && Object.keys(v).length === 1;
7813
+ };
7814
+ var isFunctionCall = function isFunctionCall(v) {
7815
+ return isObject(v) && typeof v.call === "string";
7816
+ };
7817
+ function renderArg(value) {
7818
+ if (value === null) return "null";
7819
+ if (value === void 0) return "null";
7820
+ if (typeof value === "boolean") return String(value);
7821
+ if (typeof value === "number") return String(value);
7822
+ if (typeof value === "string") return JSON.stringify(value);
7823
+ if (Array.isArray(value)) {
7824
+ return "[".concat(value.map(renderArg).join(", "), "]");
7825
+ }
7826
+ if (isPathRef(value)) {
7827
+ return "{{".concat(pointerToBinding(value.path), "}}");
7828
+ }
7829
+ if (isFunctionCall(value)) {
7830
+ var inner = translateFunctionCall(value);
7831
+ return inner.replace(/^@\[/, "").replace(/\]@$/, "");
7832
+ }
7833
+ return JSON.stringify(value);
7834
+ }
7835
+ var INPUT_BINDING_PROPS = {
7836
+ TextField: "text",
7837
+ CheckBox: "checked",
7838
+ DateTimeInput: "value",
7839
+ ChoicePicker: "value",
7840
+ Slider: "value"
7841
+ };
7842
+ var CHECK_TO_VALIDATOR = {
7843
+ required: "required",
7844
+ regex: "regex",
7845
+ email: "email",
7846
+ length: "length",
7847
+ numeric: "numeric"
7848
+ };
7849
+ var TYPE_PREFIX = "T_";
7850
+ var STRUCTURAL_KEYS = /* @__PURE__ */ new Set([
7851
+ "id",
7852
+ "component",
7853
+ "child",
7854
+ "children",
7855
+ "checks",
7856
+ "action"
7857
+ ]);
7858
+ function inlineComponent(component, ctx, templateScope) {
7859
+ if (ctx.inProgress.has(component.id)) {
7860
+ throw new Error("[a2ui] Component cycle detected at id '".concat(component.id, "'. A2UI requires the component graph to be a tree."));
7861
+ }
7862
+ ctx.inProgress.add(component.id);
7863
+ var asset = {
7864
+ id: component.id,
7865
+ type: component.component
7866
+ };
7867
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
7868
+ try {
7869
+ for(var _iterator = Object.entries(component)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
7870
+ var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
7871
+ if (STRUCTURAL_KEYS.has(key)) continue;
7872
+ asset[key] = translatePropValue(value, templateScope, ctx, key);
7873
+ }
7874
+ } catch (err) {
7875
+ _didIteratorError = true;
7876
+ _iteratorError = err;
7877
+ } finally{
7878
+ try {
7879
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
7880
+ _iterator.return();
7881
+ }
7882
+ } finally{
7883
+ if (_didIteratorError) {
7884
+ throw _iteratorError;
7885
+ }
7886
+ }
7887
+ }
7888
+ if (typeof component.child === "string") {
7889
+ var childId = component.child;
7890
+ asset.child = wrapInlined(resolveAndInline(childId, ctx, templateScope));
7891
+ }
7892
+ if (component.children) {
7893
+ if (Array.isArray(component.children)) {
7894
+ asset.children = component.children.map(function(id) {
7895
+ return wrapInlined(resolveAndInline(id, ctx, templateScope));
7896
+ });
7897
+ } else {
7898
+ var _component_children = component.children, path = _component_children.path, componentId = _component_children.componentId;
7899
+ var data = scopedBinding(path, templateScope);
7900
+ var templateComponent = ctx.byId.get(componentId);
7901
+ if (!templateComponent) {
7902
+ throw new Error("[a2ui] Templated children reference unknown componentId '".concat(componentId, "' on component '").concat(component.id, "'."));
7903
+ }
7904
+ var templated = inlineComponent(_object_spread_props(_object_spread({}, templateComponent), {
7905
+ id: "".concat(templateComponent.id, "-_index_")
7906
+ }), ctx, data);
7907
+ asset.template = [
7908
+ {
7909
+ data: data,
7910
+ output: "children",
7911
+ value: {
7912
+ asset: templated
7913
+ }
7914
+ }
7915
+ ];
7916
+ }
7917
+ }
7918
+ if (component.action) {
7919
+ Object.assign(asset, translateAction(component.action, ctx));
7920
+ }
7921
+ ctx.inProgress.delete(component.id);
7922
+ return asset;
7923
+ }
7924
+ var CHILD_KEY_RE = /(?:^|[a-z])Child$|^child$/;
7925
+ var CHILDREN_KEY_RE = /(?:^|[a-z])Children$|^children$/;
7926
+ function translatePropValue(value, templateScope, ctx, parentKey) {
7927
+ if (value === null || value === void 0) return value;
7928
+ if (parentKey && CHILD_KEY_RE.test(parentKey) && typeof value === "string") {
7929
+ return wrapInlined(resolveAndInline(value, ctx, templateScope));
7930
+ }
7931
+ if (parentKey && CHILDREN_KEY_RE.test(parentKey)) {
7932
+ if (Array.isArray(value) && value.every(function(v) {
7933
+ return typeof v === "string";
7934
+ })) {
7935
+ return value.map(function(id) {
7936
+ return wrapInlined(resolveAndInline(id, ctx, templateScope));
7937
+ });
7938
+ }
7939
+ if ((typeof value === "undefined" ? "undefined" : _type_of(value)) === "object" && value !== null && !Array.isArray(value) && "componentId" in value) {
7940
+ var _ctx_logger;
7941
+ (_ctx_logger = ctx.logger) === null || _ctx_logger === void 0 ? void 0 : _ctx_logger.warn("[a2ui] Templated children are only supported at top-level 'children'; '".concat(parentKey, "' will be left unresolved."));
7942
+ }
7943
+ }
7944
+ if ((typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
7945
+ if (Array.isArray(value)) {
7946
+ return value.map(function(v) {
7947
+ return translatePropValue(v, templateScope, ctx, void 0);
7948
+ });
7949
+ }
7950
+ if (isPathRef(value)) {
7951
+ return scopedBinding(value.path, templateScope);
7952
+ }
7953
+ if (isFunctionCall(value)) {
7954
+ if (templateScope) {
7955
+ return translateFunctionCall(rewritePathsInCall(value, templateScope), ctx.logger);
7956
+ }
7957
+ return translateFunctionCall(value, ctx.logger);
7958
+ }
7959
+ var out = {};
7960
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
7961
+ try {
7962
+ for(var _iterator = Object.entries(value)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
7963
+ var _step_value = _sliced_to_array(_step.value, 2), k = _step_value[0], v = _step_value[1];
7964
+ out[k] = translatePropValue(v, templateScope, ctx, k);
7965
+ }
7966
+ } catch (err) {
7967
+ _didIteratorError = true;
7968
+ _iteratorError = err;
7969
+ } finally{
7970
+ try {
7971
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
7972
+ _iterator.return();
7973
+ }
7974
+ } finally{
7975
+ if (_didIteratorError) {
7976
+ throw _iteratorError;
7977
+ }
7978
+ }
7979
+ }
7980
+ return out;
7981
+ }
7982
+ function rewritePathsInCall(value, scope) {
7983
+ if (!value || (typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
7984
+ if (Array.isArray(value)) {
7985
+ return value.map(function(v) {
7986
+ return rewritePathsInCall(v, scope);
7987
+ });
7988
+ }
7989
+ if (isPathRef(value)) {
7990
+ return {
7991
+ path: scopedPointer(value.path, scope)
7992
+ };
7993
+ }
7994
+ if (isFunctionCall(value)) {
7995
+ return _object_spread_props(_object_spread({}, value), {
7996
+ args: value.args ? Object.fromEntries(Object.entries(value.args).map(function(param) {
7997
+ var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
7998
+ return [
7999
+ k,
8000
+ rewritePathsInCall(v, scope)
8001
+ ];
8002
+ })) : value.args
8003
+ });
8004
+ }
8005
+ return Object.fromEntries(Object.entries(value).map(function(param) {
8006
+ var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
8007
+ return [
8008
+ k,
8009
+ rewritePathsInCall(v, scope)
8010
+ ];
8011
+ }));
8012
+ }
8013
+ function renderRhs(value) {
8014
+ if (value === null || value === void 0) return "null";
8015
+ if (typeof value === "boolean") return String(value);
8016
+ if (typeof value === "number") return String(value);
8017
+ if (typeof value === "string") return JSON.stringify(value);
8018
+ if (Array.isArray(value)) {
8019
+ return "[".concat(value.map(renderRhs).join(", "), "]");
8020
+ }
8021
+ if (isPathRef(value)) {
8022
+ return "{{".concat(pointerToBinding(value.path), "}}");
8023
+ }
8024
+ if (isFunctionCall(value)) {
8025
+ return translateFunctionCall(value).replace(/^@\[/, "").replace(/\]@$/, "");
8026
+ }
8027
+ return JSON.stringify(value);
8028
+ }
8029
+ var PLAYER_VERSION = true ? "0.16.0--canary.866.36538" : "unknown";
8030
+ var COMMIT = true ? "0186f1bd04fda238cbc62b8d293c8048ab26efc2" : "unknown";
7399
8031
  var _Player = /*#__PURE__*/ function() {
7400
8032
  function _Player2(config) {
7401
8033
  var _this = this;
@@ -7723,14 +8355,15 @@ var StageRevertDataPlugin = function() {
7723
8355
  },
7724
8356
  {
7725
8357
  key: "start",
7726
- value: function start(payload) {
8358
+ value: function start(payload, options) {
7727
8359
  return _async_to_generator(function() {
7728
- var _this, _ref, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
8360
+ var _this, _ref, flow, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
7729
8361
  return _ts_generator(this, function(_state) {
7730
8362
  switch(_state.label){
7731
8363
  case 0:
7732
8364
  _this = this;
7733
- ref = Symbol((_ref = payload === null || payload === void 0 ? void 0 : payload.id) !== null && _ref !== void 0 ? _ref : "payload");
8365
+ flow = (options === null || options === void 0 ? void 0 : options.format) === "a2ui" ? adaptA2UIToFlow(payload, this.logger) : payload;
8366
+ ref = Symbol((_ref = flow === null || flow === void 0 ? void 0 : flow.id) !== null && _ref !== void 0 ? _ref : "payload");
7734
8367
  maybeUpdateState = function maybeUpdateState(newState) {
7735
8368
  if (_this.state.ref !== ref) {
7736
8369
  _this.logger.warn("Received update for a flow that's not the current one");
@@ -7751,7 +8384,7 @@ var StageRevertDataPlugin = function() {
7751
8384
  ,
7752
8385
  4
7753
8386
  ]);
7754
- _this_setupFlow = this.setupFlow(payload), state = _this_setupFlow.state, start = _this_setupFlow.start;
8387
+ _this_setupFlow = this.setupFlow(flow), state = _this_setupFlow.state, start = _this_setupFlow.start;
7755
8388
  this.setState(_object_spread({
7756
8389
  ref: ref
7757
8390
  }, state));
@@ -7786,7 +8419,7 @@ var StageRevertDataPlugin = function() {
7786
8419
  errorState = {
7787
8420
  status: "error",
7788
8421
  ref: ref,
7789
- flow: payload,
8422
+ flow: flow,
7790
8423
  error: error
7791
8424
  };
7792
8425
  maybeUpdateState(errorState);