@player-ui/metrics-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 MetricsPlugin = 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 MetricsPlugin = 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 MetricsPlugin = 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 MetricsPlugin = 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;
@@ -7488,8 +7894,234 @@ var MetricsPlugin = function() {
7488
7894
  ref: Symbol("not-started"),
7489
7895
  status: "not-started"
7490
7896
  };
7491
- var PLAYER_VERSION = true ? "0.15.4-next.0" : "unknown";
7492
- var COMMIT = true ? "23a98a4b8e5d2c8078103ef189e9167a0d96823d" : "unknown";
7897
+ var A2UI_EVENT_CONTEXT_NAMESPACE = "agent.event.context";
7898
+ var NUMERIC_SEGMENT = /^(0|[1-9]\d*)$/;
7899
+ var decodeSegment = function decodeSegment(segment) {
7900
+ return segment.replace(/~1/g, "/").replace(/~0/g, "~");
7901
+ };
7902
+ var isObject = function isObject(v) {
7903
+ return (typeof v === "undefined" ? "undefined" : _type_of(v)) === "object" && v !== null && !Array.isArray(v);
7904
+ };
7905
+ var isPathRef = function isPathRef(v) {
7906
+ return isObject(v) && typeof v.path === "string" && Object.keys(v).length === 1;
7907
+ };
7908
+ var isFunctionCall = function isFunctionCall(v) {
7909
+ return isObject(v) && typeof v.call === "string";
7910
+ };
7911
+ function renderArg(value) {
7912
+ if (value === null) return "null";
7913
+ if (value === void 0) return "null";
7914
+ if (typeof value === "boolean") return String(value);
7915
+ if (typeof value === "number") return String(value);
7916
+ if (typeof value === "string") return JSON.stringify(value);
7917
+ if (Array.isArray(value)) {
7918
+ return "[".concat(value.map(renderArg).join(", "), "]");
7919
+ }
7920
+ if (isPathRef(value)) {
7921
+ return "{{".concat(pointerToBinding(value.path), "}}");
7922
+ }
7923
+ if (isFunctionCall(value)) {
7924
+ var inner = translateFunctionCall(value);
7925
+ return inner.replace(/^@\[/, "").replace(/\]@$/, "");
7926
+ }
7927
+ return JSON.stringify(value);
7928
+ }
7929
+ var INPUT_BINDING_PROPS = {
7930
+ TextField: "text",
7931
+ CheckBox: "checked",
7932
+ DateTimeInput: "value",
7933
+ ChoicePicker: "value",
7934
+ Slider: "value"
7935
+ };
7936
+ var CHECK_TO_VALIDATOR = {
7937
+ required: "required",
7938
+ regex: "regex",
7939
+ email: "email",
7940
+ length: "length",
7941
+ numeric: "numeric"
7942
+ };
7943
+ var TYPE_PREFIX = "T_";
7944
+ var STRUCTURAL_KEYS = /* @__PURE__ */ new Set([
7945
+ "id",
7946
+ "component",
7947
+ "child",
7948
+ "children",
7949
+ "checks",
7950
+ "action"
7951
+ ]);
7952
+ function inlineComponent(component, ctx, templateScope) {
7953
+ if (ctx.inProgress.has(component.id)) {
7954
+ throw new Error("[a2ui] Component cycle detected at id '".concat(component.id, "'. A2UI requires the component graph to be a tree."));
7955
+ }
7956
+ ctx.inProgress.add(component.id);
7957
+ var asset = {
7958
+ id: component.id,
7959
+ type: component.component
7960
+ };
7961
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
7962
+ try {
7963
+ for(var _iterator = Object.entries(component)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
7964
+ var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
7965
+ if (STRUCTURAL_KEYS.has(key)) continue;
7966
+ asset[key] = translatePropValue(value, templateScope, ctx, key);
7967
+ }
7968
+ } catch (err) {
7969
+ _didIteratorError = true;
7970
+ _iteratorError = err;
7971
+ } finally{
7972
+ try {
7973
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
7974
+ _iterator.return();
7975
+ }
7976
+ } finally{
7977
+ if (_didIteratorError) {
7978
+ throw _iteratorError;
7979
+ }
7980
+ }
7981
+ }
7982
+ if (typeof component.child === "string") {
7983
+ var childId = component.child;
7984
+ asset.child = wrapInlined(resolveAndInline(childId, ctx, templateScope));
7985
+ }
7986
+ if (component.children) {
7987
+ if (Array.isArray(component.children)) {
7988
+ asset.children = component.children.map(function(id) {
7989
+ return wrapInlined(resolveAndInline(id, ctx, templateScope));
7990
+ });
7991
+ } else {
7992
+ var _component_children = component.children, path = _component_children.path, componentId = _component_children.componentId;
7993
+ var data = scopedBinding(path, templateScope);
7994
+ var templateComponent = ctx.byId.get(componentId);
7995
+ if (!templateComponent) {
7996
+ throw new Error("[a2ui] Templated children reference unknown componentId '".concat(componentId, "' on component '").concat(component.id, "'."));
7997
+ }
7998
+ var templated = inlineComponent(_object_spread_props(_object_spread({}, templateComponent), {
7999
+ id: "".concat(templateComponent.id, "-_index_")
8000
+ }), ctx, data);
8001
+ asset.template = [
8002
+ {
8003
+ data: data,
8004
+ output: "children",
8005
+ value: {
8006
+ asset: templated
8007
+ }
8008
+ }
8009
+ ];
8010
+ }
8011
+ }
8012
+ if (component.action) {
8013
+ Object.assign(asset, translateAction(component.action, ctx));
8014
+ }
8015
+ ctx.inProgress.delete(component.id);
8016
+ return asset;
8017
+ }
8018
+ var CHILD_KEY_RE = /(?:^|[a-z])Child$|^child$/;
8019
+ var CHILDREN_KEY_RE = /(?:^|[a-z])Children$|^children$/;
8020
+ function translatePropValue(value, templateScope, ctx, parentKey) {
8021
+ if (value === null || value === void 0) return value;
8022
+ if (parentKey && CHILD_KEY_RE.test(parentKey) && typeof value === "string") {
8023
+ return wrapInlined(resolveAndInline(value, ctx, templateScope));
8024
+ }
8025
+ if (parentKey && CHILDREN_KEY_RE.test(parentKey)) {
8026
+ if (Array.isArray(value) && value.every(function(v) {
8027
+ return typeof v === "string";
8028
+ })) {
8029
+ return value.map(function(id) {
8030
+ return wrapInlined(resolveAndInline(id, ctx, templateScope));
8031
+ });
8032
+ }
8033
+ if ((typeof value === "undefined" ? "undefined" : _type_of(value)) === "object" && value !== null && !Array.isArray(value) && "componentId" in value) {
8034
+ var _ctx_logger;
8035
+ (_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."));
8036
+ }
8037
+ }
8038
+ if ((typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
8039
+ if (Array.isArray(value)) {
8040
+ return value.map(function(v) {
8041
+ return translatePropValue(v, templateScope, ctx, void 0);
8042
+ });
8043
+ }
8044
+ if (isPathRef(value)) {
8045
+ return scopedBinding(value.path, templateScope);
8046
+ }
8047
+ if (isFunctionCall(value)) {
8048
+ if (templateScope) {
8049
+ return translateFunctionCall(rewritePathsInCall(value, templateScope), ctx.logger);
8050
+ }
8051
+ return translateFunctionCall(value, ctx.logger);
8052
+ }
8053
+ var out = {};
8054
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
8055
+ try {
8056
+ for(var _iterator = Object.entries(value)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
8057
+ var _step_value = _sliced_to_array(_step.value, 2), k = _step_value[0], v = _step_value[1];
8058
+ out[k] = translatePropValue(v, templateScope, ctx, k);
8059
+ }
8060
+ } catch (err) {
8061
+ _didIteratorError = true;
8062
+ _iteratorError = err;
8063
+ } finally{
8064
+ try {
8065
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
8066
+ _iterator.return();
8067
+ }
8068
+ } finally{
8069
+ if (_didIteratorError) {
8070
+ throw _iteratorError;
8071
+ }
8072
+ }
8073
+ }
8074
+ return out;
8075
+ }
8076
+ function rewritePathsInCall(value, scope) {
8077
+ if (!value || (typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") return value;
8078
+ if (Array.isArray(value)) {
8079
+ return value.map(function(v) {
8080
+ return rewritePathsInCall(v, scope);
8081
+ });
8082
+ }
8083
+ if (isPathRef(value)) {
8084
+ return {
8085
+ path: scopedPointer(value.path, scope)
8086
+ };
8087
+ }
8088
+ if (isFunctionCall(value)) {
8089
+ return _object_spread_props(_object_spread({}, value), {
8090
+ args: value.args ? Object.fromEntries(Object.entries(value.args).map(function(param) {
8091
+ var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
8092
+ return [
8093
+ k,
8094
+ rewritePathsInCall(v, scope)
8095
+ ];
8096
+ })) : value.args
8097
+ });
8098
+ }
8099
+ return Object.fromEntries(Object.entries(value).map(function(param) {
8100
+ var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
8101
+ return [
8102
+ k,
8103
+ rewritePathsInCall(v, scope)
8104
+ ];
8105
+ }));
8106
+ }
8107
+ function renderRhs(value) {
8108
+ if (value === null || value === void 0) return "null";
8109
+ if (typeof value === "boolean") return String(value);
8110
+ if (typeof value === "number") return String(value);
8111
+ if (typeof value === "string") return JSON.stringify(value);
8112
+ if (Array.isArray(value)) {
8113
+ return "[".concat(value.map(renderRhs).join(", "), "]");
8114
+ }
8115
+ if (isPathRef(value)) {
8116
+ return "{{".concat(pointerToBinding(value.path), "}}");
8117
+ }
8118
+ if (isFunctionCall(value)) {
8119
+ return translateFunctionCall(value).replace(/^@\[/, "").replace(/\]@$/, "");
8120
+ }
8121
+ return JSON.stringify(value);
8122
+ }
8123
+ var PLAYER_VERSION = true ? "0.16.0--canary.866.36538" : "unknown";
8124
+ var COMMIT = true ? "0186f1bd04fda238cbc62b8d293c8048ab26efc2" : "unknown";
7493
8125
  var _Player = /*#__PURE__*/ function() {
7494
8126
  function _Player2(config) {
7495
8127
  var _this = this;
@@ -7817,14 +8449,15 @@ var MetricsPlugin = function() {
7817
8449
  },
7818
8450
  {
7819
8451
  key: "start",
7820
- value: function start(payload) {
8452
+ value: function start(payload, options) {
7821
8453
  return _async_to_generator(function() {
7822
- var _this, _ref, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
8454
+ var _this, _ref, flow, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
7823
8455
  return _ts_generator(this, function(_state) {
7824
8456
  switch(_state.label){
7825
8457
  case 0:
7826
8458
  _this = this;
7827
- ref = Symbol((_ref = payload === null || payload === void 0 ? void 0 : payload.id) !== null && _ref !== void 0 ? _ref : "payload");
8459
+ flow = (options === null || options === void 0 ? void 0 : options.format) === "a2ui" ? adaptA2UIToFlow(payload, this.logger) : payload;
8460
+ ref = Symbol((_ref = flow === null || flow === void 0 ? void 0 : flow.id) !== null && _ref !== void 0 ? _ref : "payload");
7828
8461
  maybeUpdateState = function maybeUpdateState(newState) {
7829
8462
  if (_this.state.ref !== ref) {
7830
8463
  _this.logger.warn("Received update for a flow that's not the current one");
@@ -7845,7 +8478,7 @@ var MetricsPlugin = function() {
7845
8478
  ,
7846
8479
  4
7847
8480
  ]);
7848
- _this_setupFlow = this.setupFlow(payload), state = _this_setupFlow.state, start = _this_setupFlow.start;
8481
+ _this_setupFlow = this.setupFlow(flow), state = _this_setupFlow.state, start = _this_setupFlow.start;
7849
8482
  this.setState(_object_spread({
7850
8483
  ref: ref
7851
8484
  }, state));
@@ -7880,7 +8513,7 @@ var MetricsPlugin = function() {
7880
8513
  errorState = {
7881
8514
  status: "error",
7882
8515
  ref: ref,
7883
- flow: payload,
8516
+ flow: flow,
7884
8517
  error: error
7885
8518
  };
7886
8519
  maybeUpdateState(errorState);