@voiceflow/dtos-interact 1.64.0 → 1.65.0

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.
@@ -1285,66 +1285,78 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1285
1285
  nodeID: z.ZodString;
1286
1286
  nodeType: z.ZodString;
1287
1287
  diagramID: z.ZodString;
1288
+ diagramName: z.ZodOptional<z.ZodString>;
1288
1289
  }, "strip", z.ZodTypeAny, {
1289
1290
  type: "node";
1290
1291
  diagramID: string;
1291
1292
  nodeID: string;
1292
1293
  nodeType: string;
1294
+ diagramName?: string | undefined;
1293
1295
  }, {
1294
1296
  type: "node";
1295
1297
  diagramID: string;
1296
1298
  nodeID: string;
1297
1299
  nodeType: string;
1300
+ diagramName?: string | undefined;
1298
1301
  }>, z.ZodObject<{
1299
1302
  type: z.ZodLiteral<"agent">;
1300
1303
  nodeID: z.ZodString;
1301
1304
  agentID: z.ZodString;
1302
1305
  diagramID: z.ZodString;
1303
1306
  agentName: z.ZodOptional<z.ZodString>;
1307
+ diagramName: z.ZodOptional<z.ZodString>;
1304
1308
  }, "strip", z.ZodTypeAny, {
1305
1309
  type: "agent";
1306
1310
  diagramID: string;
1307
1311
  nodeID: string;
1308
1312
  agentID: string;
1313
+ diagramName?: string | undefined;
1309
1314
  agentName?: string | undefined;
1310
1315
  }, {
1311
1316
  type: "agent";
1312
1317
  diagramID: string;
1313
1318
  nodeID: string;
1314
1319
  agentID: string;
1320
+ diagramName?: string | undefined;
1315
1321
  agentName?: string | undefined;
1316
1322
  }>, z.ZodObject<{
1317
1323
  type: z.ZodLiteral<"prompt">;
1318
1324
  nodeID: z.ZodString;
1319
1325
  promptID: z.ZodString;
1320
1326
  diagramID: z.ZodString;
1327
+ diagramName: z.ZodOptional<z.ZodString>;
1321
1328
  }, "strip", z.ZodTypeAny, {
1322
1329
  type: "prompt";
1323
1330
  diagramID: string;
1324
1331
  nodeID: string;
1325
1332
  promptID: string;
1333
+ diagramName?: string | undefined;
1326
1334
  }, {
1327
1335
  type: "prompt";
1328
1336
  diagramID: string;
1329
1337
  nodeID: string;
1330
1338
  promptID: string;
1339
+ diagramName?: string | undefined;
1331
1340
  }>, z.ZodObject<{
1332
1341
  type: z.ZodLiteral<"api-tool">;
1333
1342
  nodeID: z.ZodString;
1334
1343
  diagramID: z.ZodString;
1335
1344
  apiToolID: z.ZodString;
1336
1345
  apiToolName: z.ZodOptional<z.ZodString>;
1346
+ diagramName: z.ZodOptional<z.ZodString>;
1337
1347
  }, "strip", z.ZodTypeAny, {
1338
1348
  type: "api-tool";
1339
1349
  diagramID: string;
1340
1350
  nodeID: string;
1341
1351
  apiToolID: string;
1352
+ diagramName?: string | undefined;
1342
1353
  apiToolName?: string | undefined;
1343
1354
  }, {
1344
1355
  type: "api-tool";
1345
1356
  diagramID: string;
1346
1357
  nodeID: string;
1347
1358
  apiToolID: string;
1359
+ diagramName?: string | undefined;
1348
1360
  apiToolName?: string | undefined;
1349
1361
  }>, z.ZodObject<{
1350
1362
  type: z.ZodLiteral<"function">;
@@ -1352,48 +1364,57 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1352
1364
  diagramID: z.ZodString;
1353
1365
  functionID: z.ZodString;
1354
1366
  functionName: z.ZodOptional<z.ZodString>;
1367
+ diagramName: z.ZodOptional<z.ZodString>;
1355
1368
  }, "strip", z.ZodTypeAny, {
1356
1369
  type: "function";
1357
1370
  diagramID: string;
1358
1371
  nodeID: string;
1359
1372
  functionID: string;
1373
+ diagramName?: string | undefined;
1360
1374
  functionName?: string | undefined;
1361
1375
  }, {
1362
1376
  type: "function";
1363
1377
  diagramID: string;
1364
1378
  nodeID: string;
1365
1379
  functionID: string;
1380
+ diagramName?: string | undefined;
1366
1381
  functionName?: string | undefined;
1367
1382
  }>, z.ZodObject<{
1368
1383
  type: z.ZodLiteral<"integration-tool">;
1369
1384
  nodeID: z.ZodString;
1370
1385
  diagramID: z.ZodString;
1386
+ diagramName: z.ZodOptional<z.ZodString>;
1371
1387
  integrationToolName: z.ZodString;
1372
1388
  }, "strip", z.ZodTypeAny, {
1373
1389
  type: "integration-tool";
1374
1390
  diagramID: string;
1375
1391
  nodeID: string;
1376
1392
  integrationToolName: string;
1393
+ diagramName?: string | undefined;
1377
1394
  }, {
1378
1395
  type: "integration-tool";
1379
1396
  diagramID: string;
1380
1397
  nodeID: string;
1381
1398
  integrationToolName: string;
1399
+ diagramName?: string | undefined;
1382
1400
  }>, z.ZodObject<{
1383
1401
  type: z.ZodLiteral<"mcp-integration-tool">;
1384
1402
  nodeID: z.ZodString;
1385
1403
  diagramID: z.ZodString;
1386
1404
  mcpToolName: z.ZodString;
1405
+ diagramName: z.ZodOptional<z.ZodString>;
1387
1406
  }, "strip", z.ZodTypeAny, {
1388
1407
  type: "mcp-integration-tool";
1389
1408
  diagramID: string;
1390
1409
  nodeID: string;
1391
1410
  mcpToolName: string;
1411
+ diagramName?: string | undefined;
1392
1412
  }, {
1393
1413
  type: "mcp-integration-tool";
1394
1414
  diagramID: string;
1395
1415
  nodeID: string;
1396
1416
  mcpToolName: string;
1417
+ diagramName?: string | undefined;
1397
1418
  }>]>>;
1398
1419
  }, "strip", z.ZodTypeAny, {
1399
1420
  messageID: string;
@@ -1405,39 +1426,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1405
1426
  diagramID: string;
1406
1427
  nodeID: string;
1407
1428
  nodeType: string;
1429
+ diagramName?: string | undefined;
1408
1430
  } | {
1409
1431
  type: "agent";
1410
1432
  diagramID: string;
1411
1433
  nodeID: string;
1412
1434
  agentID: string;
1435
+ diagramName?: string | undefined;
1413
1436
  agentName?: string | undefined;
1414
1437
  } | {
1415
1438
  type: "api-tool";
1416
1439
  diagramID: string;
1417
1440
  nodeID: string;
1418
1441
  apiToolID: string;
1442
+ diagramName?: string | undefined;
1419
1443
  apiToolName?: string | undefined;
1420
1444
  } | {
1421
1445
  type: "integration-tool";
1422
1446
  diagramID: string;
1423
1447
  nodeID: string;
1424
1448
  integrationToolName: string;
1449
+ diagramName?: string | undefined;
1425
1450
  } | {
1426
1451
  type: "mcp-integration-tool";
1427
1452
  diagramID: string;
1428
1453
  nodeID: string;
1429
1454
  mcpToolName: string;
1455
+ diagramName?: string | undefined;
1430
1456
  } | {
1431
1457
  type: "function";
1432
1458
  diagramID: string;
1433
1459
  nodeID: string;
1434
1460
  functionID: string;
1461
+ diagramName?: string | undefined;
1435
1462
  functionName?: string | undefined;
1436
1463
  } | {
1437
1464
  type: "prompt";
1438
1465
  diagramID: string;
1439
1466
  nodeID: string;
1440
1467
  promptID: string;
1468
+ diagramName?: string | undefined;
1441
1469
  } | undefined;
1442
1470
  sourceUrls?: {
1443
1471
  url: string;
@@ -1453,39 +1481,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1453
1481
  diagramID: string;
1454
1482
  nodeID: string;
1455
1483
  nodeType: string;
1484
+ diagramName?: string | undefined;
1456
1485
  } | {
1457
1486
  type: "agent";
1458
1487
  diagramID: string;
1459
1488
  nodeID: string;
1460
1489
  agentID: string;
1490
+ diagramName?: string | undefined;
1461
1491
  agentName?: string | undefined;
1462
1492
  } | {
1463
1493
  type: "api-tool";
1464
1494
  diagramID: string;
1465
1495
  nodeID: string;
1466
1496
  apiToolID: string;
1497
+ diagramName?: string | undefined;
1467
1498
  apiToolName?: string | undefined;
1468
1499
  } | {
1469
1500
  type: "integration-tool";
1470
1501
  diagramID: string;
1471
1502
  nodeID: string;
1472
1503
  integrationToolName: string;
1504
+ diagramName?: string | undefined;
1473
1505
  } | {
1474
1506
  type: "mcp-integration-tool";
1475
1507
  diagramID: string;
1476
1508
  nodeID: string;
1477
1509
  mcpToolName: string;
1510
+ diagramName?: string | undefined;
1478
1511
  } | {
1479
1512
  type: "function";
1480
1513
  diagramID: string;
1481
1514
  nodeID: string;
1482
1515
  functionID: string;
1516
+ diagramName?: string | undefined;
1483
1517
  functionName?: string | undefined;
1484
1518
  } | {
1485
1519
  type: "prompt";
1486
1520
  diagramID: string;
1487
1521
  nodeID: string;
1488
1522
  promptID: string;
1523
+ diagramName?: string | undefined;
1489
1524
  } | undefined;
1490
1525
  sourceUrls?: {
1491
1526
  url: string;
@@ -1507,66 +1542,78 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1507
1542
  nodeID: z.ZodString;
1508
1543
  nodeType: z.ZodString;
1509
1544
  diagramID: z.ZodString;
1545
+ diagramName: z.ZodOptional<z.ZodString>;
1510
1546
  }, "strip", z.ZodTypeAny, {
1511
1547
  type: "node";
1512
1548
  diagramID: string;
1513
1549
  nodeID: string;
1514
1550
  nodeType: string;
1551
+ diagramName?: string | undefined;
1515
1552
  }, {
1516
1553
  type: "node";
1517
1554
  diagramID: string;
1518
1555
  nodeID: string;
1519
1556
  nodeType: string;
1557
+ diagramName?: string | undefined;
1520
1558
  }>, z.ZodObject<{
1521
1559
  type: z.ZodLiteral<"agent">;
1522
1560
  nodeID: z.ZodString;
1523
1561
  agentID: z.ZodString;
1524
1562
  diagramID: z.ZodString;
1525
1563
  agentName: z.ZodOptional<z.ZodString>;
1564
+ diagramName: z.ZodOptional<z.ZodString>;
1526
1565
  }, "strip", z.ZodTypeAny, {
1527
1566
  type: "agent";
1528
1567
  diagramID: string;
1529
1568
  nodeID: string;
1530
1569
  agentID: string;
1570
+ diagramName?: string | undefined;
1531
1571
  agentName?: string | undefined;
1532
1572
  }, {
1533
1573
  type: "agent";
1534
1574
  diagramID: string;
1535
1575
  nodeID: string;
1536
1576
  agentID: string;
1577
+ diagramName?: string | undefined;
1537
1578
  agentName?: string | undefined;
1538
1579
  }>, z.ZodObject<{
1539
1580
  type: z.ZodLiteral<"prompt">;
1540
1581
  nodeID: z.ZodString;
1541
1582
  promptID: z.ZodString;
1542
1583
  diagramID: z.ZodString;
1584
+ diagramName: z.ZodOptional<z.ZodString>;
1543
1585
  }, "strip", z.ZodTypeAny, {
1544
1586
  type: "prompt";
1545
1587
  diagramID: string;
1546
1588
  nodeID: string;
1547
1589
  promptID: string;
1590
+ diagramName?: string | undefined;
1548
1591
  }, {
1549
1592
  type: "prompt";
1550
1593
  diagramID: string;
1551
1594
  nodeID: string;
1552
1595
  promptID: string;
1596
+ diagramName?: string | undefined;
1553
1597
  }>, z.ZodObject<{
1554
1598
  type: z.ZodLiteral<"api-tool">;
1555
1599
  nodeID: z.ZodString;
1556
1600
  diagramID: z.ZodString;
1557
1601
  apiToolID: z.ZodString;
1558
1602
  apiToolName: z.ZodOptional<z.ZodString>;
1603
+ diagramName: z.ZodOptional<z.ZodString>;
1559
1604
  }, "strip", z.ZodTypeAny, {
1560
1605
  type: "api-tool";
1561
1606
  diagramID: string;
1562
1607
  nodeID: string;
1563
1608
  apiToolID: string;
1609
+ diagramName?: string | undefined;
1564
1610
  apiToolName?: string | undefined;
1565
1611
  }, {
1566
1612
  type: "api-tool";
1567
1613
  diagramID: string;
1568
1614
  nodeID: string;
1569
1615
  apiToolID: string;
1616
+ diagramName?: string | undefined;
1570
1617
  apiToolName?: string | undefined;
1571
1618
  }>, z.ZodObject<{
1572
1619
  type: z.ZodLiteral<"function">;
@@ -1574,48 +1621,57 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1574
1621
  diagramID: z.ZodString;
1575
1622
  functionID: z.ZodString;
1576
1623
  functionName: z.ZodOptional<z.ZodString>;
1624
+ diagramName: z.ZodOptional<z.ZodString>;
1577
1625
  }, "strip", z.ZodTypeAny, {
1578
1626
  type: "function";
1579
1627
  diagramID: string;
1580
1628
  nodeID: string;
1581
1629
  functionID: string;
1630
+ diagramName?: string | undefined;
1582
1631
  functionName?: string | undefined;
1583
1632
  }, {
1584
1633
  type: "function";
1585
1634
  diagramID: string;
1586
1635
  nodeID: string;
1587
1636
  functionID: string;
1637
+ diagramName?: string | undefined;
1588
1638
  functionName?: string | undefined;
1589
1639
  }>, z.ZodObject<{
1590
1640
  type: z.ZodLiteral<"integration-tool">;
1591
1641
  nodeID: z.ZodString;
1592
1642
  diagramID: z.ZodString;
1643
+ diagramName: z.ZodOptional<z.ZodString>;
1593
1644
  integrationToolName: z.ZodString;
1594
1645
  }, "strip", z.ZodTypeAny, {
1595
1646
  type: "integration-tool";
1596
1647
  diagramID: string;
1597
1648
  nodeID: string;
1598
1649
  integrationToolName: string;
1650
+ diagramName?: string | undefined;
1599
1651
  }, {
1600
1652
  type: "integration-tool";
1601
1653
  diagramID: string;
1602
1654
  nodeID: string;
1603
1655
  integrationToolName: string;
1656
+ diagramName?: string | undefined;
1604
1657
  }>, z.ZodObject<{
1605
1658
  type: z.ZodLiteral<"mcp-integration-tool">;
1606
1659
  nodeID: z.ZodString;
1607
1660
  diagramID: z.ZodString;
1608
1661
  mcpToolName: z.ZodString;
1662
+ diagramName: z.ZodOptional<z.ZodString>;
1609
1663
  }, "strip", z.ZodTypeAny, {
1610
1664
  type: "mcp-integration-tool";
1611
1665
  diagramID: string;
1612
1666
  nodeID: string;
1613
1667
  mcpToolName: string;
1668
+ diagramName?: string | undefined;
1614
1669
  }, {
1615
1670
  type: "mcp-integration-tool";
1616
1671
  diagramID: string;
1617
1672
  nodeID: string;
1618
1673
  mcpToolName: string;
1674
+ diagramName?: string | undefined;
1619
1675
  }>]>>;
1620
1676
  }, "strip", z.ZodTypeAny, {
1621
1677
  state: "end";
@@ -1624,39 +1680,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1624
1680
  diagramID: string;
1625
1681
  nodeID: string;
1626
1682
  nodeType: string;
1683
+ diagramName?: string | undefined;
1627
1684
  } | {
1628
1685
  type: "agent";
1629
1686
  diagramID: string;
1630
1687
  nodeID: string;
1631
1688
  agentID: string;
1689
+ diagramName?: string | undefined;
1632
1690
  agentName?: string | undefined;
1633
1691
  } | {
1634
1692
  type: "api-tool";
1635
1693
  diagramID: string;
1636
1694
  nodeID: string;
1637
1695
  apiToolID: string;
1696
+ diagramName?: string | undefined;
1638
1697
  apiToolName?: string | undefined;
1639
1698
  } | {
1640
1699
  type: "integration-tool";
1641
1700
  diagramID: string;
1642
1701
  nodeID: string;
1643
1702
  integrationToolName: string;
1703
+ diagramName?: string | undefined;
1644
1704
  } | {
1645
1705
  type: "mcp-integration-tool";
1646
1706
  diagramID: string;
1647
1707
  nodeID: string;
1648
1708
  mcpToolName: string;
1709
+ diagramName?: string | undefined;
1649
1710
  } | {
1650
1711
  type: "function";
1651
1712
  diagramID: string;
1652
1713
  nodeID: string;
1653
1714
  functionID: string;
1715
+ diagramName?: string | undefined;
1654
1716
  functionName?: string | undefined;
1655
1717
  } | {
1656
1718
  type: "prompt";
1657
1719
  diagramID: string;
1658
1720
  nodeID: string;
1659
1721
  promptID: string;
1722
+ diagramName?: string | undefined;
1660
1723
  } | undefined;
1661
1724
  }, {
1662
1725
  state: "end";
@@ -1665,39 +1728,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1665
1728
  diagramID: string;
1666
1729
  nodeID: string;
1667
1730
  nodeType: string;
1731
+ diagramName?: string | undefined;
1668
1732
  } | {
1669
1733
  type: "agent";
1670
1734
  diagramID: string;
1671
1735
  nodeID: string;
1672
1736
  agentID: string;
1737
+ diagramName?: string | undefined;
1673
1738
  agentName?: string | undefined;
1674
1739
  } | {
1675
1740
  type: "api-tool";
1676
1741
  diagramID: string;
1677
1742
  nodeID: string;
1678
1743
  apiToolID: string;
1744
+ diagramName?: string | undefined;
1679
1745
  apiToolName?: string | undefined;
1680
1746
  } | {
1681
1747
  type: "integration-tool";
1682
1748
  diagramID: string;
1683
1749
  nodeID: string;
1684
1750
  integrationToolName: string;
1751
+ diagramName?: string | undefined;
1685
1752
  } | {
1686
1753
  type: "mcp-integration-tool";
1687
1754
  diagramID: string;
1688
1755
  nodeID: string;
1689
1756
  mcpToolName: string;
1757
+ diagramName?: string | undefined;
1690
1758
  } | {
1691
1759
  type: "function";
1692
1760
  diagramID: string;
1693
1761
  nodeID: string;
1694
1762
  functionID: string;
1763
+ diagramName?: string | undefined;
1695
1764
  functionName?: string | undefined;
1696
1765
  } | {
1697
1766
  type: "prompt";
1698
1767
  diagramID: string;
1699
1768
  nodeID: string;
1700
1769
  promptID: string;
1770
+ diagramName?: string | undefined;
1701
1771
  } | undefined;
1702
1772
  }>]>;
1703
1773
  }, "strip", z.ZodTypeAny, {
@@ -1712,39 +1782,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1712
1782
  diagramID: string;
1713
1783
  nodeID: string;
1714
1784
  nodeType: string;
1785
+ diagramName?: string | undefined;
1715
1786
  } | {
1716
1787
  type: "agent";
1717
1788
  diagramID: string;
1718
1789
  nodeID: string;
1719
1790
  agentID: string;
1791
+ diagramName?: string | undefined;
1720
1792
  agentName?: string | undefined;
1721
1793
  } | {
1722
1794
  type: "api-tool";
1723
1795
  diagramID: string;
1724
1796
  nodeID: string;
1725
1797
  apiToolID: string;
1798
+ diagramName?: string | undefined;
1726
1799
  apiToolName?: string | undefined;
1727
1800
  } | {
1728
1801
  type: "integration-tool";
1729
1802
  diagramID: string;
1730
1803
  nodeID: string;
1731
1804
  integrationToolName: string;
1805
+ diagramName?: string | undefined;
1732
1806
  } | {
1733
1807
  type: "mcp-integration-tool";
1734
1808
  diagramID: string;
1735
1809
  nodeID: string;
1736
1810
  mcpToolName: string;
1811
+ diagramName?: string | undefined;
1737
1812
  } | {
1738
1813
  type: "function";
1739
1814
  diagramID: string;
1740
1815
  nodeID: string;
1741
1816
  functionID: string;
1817
+ diagramName?: string | undefined;
1742
1818
  functionName?: string | undefined;
1743
1819
  } | {
1744
1820
  type: "prompt";
1745
1821
  diagramID: string;
1746
1822
  nodeID: string;
1747
1823
  promptID: string;
1824
+ diagramName?: string | undefined;
1748
1825
  } | undefined;
1749
1826
  sourceUrls?: {
1750
1827
  url: string;
@@ -1760,39 +1837,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1760
1837
  diagramID: string;
1761
1838
  nodeID: string;
1762
1839
  nodeType: string;
1840
+ diagramName?: string | undefined;
1763
1841
  } | {
1764
1842
  type: "agent";
1765
1843
  diagramID: string;
1766
1844
  nodeID: string;
1767
1845
  agentID: string;
1846
+ diagramName?: string | undefined;
1768
1847
  agentName?: string | undefined;
1769
1848
  } | {
1770
1849
  type: "api-tool";
1771
1850
  diagramID: string;
1772
1851
  nodeID: string;
1773
1852
  apiToolID: string;
1853
+ diagramName?: string | undefined;
1774
1854
  apiToolName?: string | undefined;
1775
1855
  } | {
1776
1856
  type: "integration-tool";
1777
1857
  diagramID: string;
1778
1858
  nodeID: string;
1779
1859
  integrationToolName: string;
1860
+ diagramName?: string | undefined;
1780
1861
  } | {
1781
1862
  type: "mcp-integration-tool";
1782
1863
  diagramID: string;
1783
1864
  nodeID: string;
1784
1865
  mcpToolName: string;
1866
+ diagramName?: string | undefined;
1785
1867
  } | {
1786
1868
  type: "function";
1787
1869
  diagramID: string;
1788
1870
  nodeID: string;
1789
1871
  functionID: string;
1872
+ diagramName?: string | undefined;
1790
1873
  functionName?: string | undefined;
1791
1874
  } | {
1792
1875
  type: "prompt";
1793
1876
  diagramID: string;
1794
1877
  nodeID: string;
1795
1878
  promptID: string;
1879
+ diagramName?: string | undefined;
1796
1880
  } | undefined;
1797
1881
  };
1798
1882
  time?: number | undefined;
@@ -1821,39 +1905,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1821
1905
  diagramID: string;
1822
1906
  nodeID: string;
1823
1907
  nodeType: string;
1908
+ diagramName?: string | undefined;
1824
1909
  } | {
1825
1910
  type: "agent";
1826
1911
  diagramID: string;
1827
1912
  nodeID: string;
1828
1913
  agentID: string;
1914
+ diagramName?: string | undefined;
1829
1915
  agentName?: string | undefined;
1830
1916
  } | {
1831
1917
  type: "api-tool";
1832
1918
  diagramID: string;
1833
1919
  nodeID: string;
1834
1920
  apiToolID: string;
1921
+ diagramName?: string | undefined;
1835
1922
  apiToolName?: string | undefined;
1836
1923
  } | {
1837
1924
  type: "integration-tool";
1838
1925
  diagramID: string;
1839
1926
  nodeID: string;
1840
1927
  integrationToolName: string;
1928
+ diagramName?: string | undefined;
1841
1929
  } | {
1842
1930
  type: "mcp-integration-tool";
1843
1931
  diagramID: string;
1844
1932
  nodeID: string;
1845
1933
  mcpToolName: string;
1934
+ diagramName?: string | undefined;
1846
1935
  } | {
1847
1936
  type: "function";
1848
1937
  diagramID: string;
1849
1938
  nodeID: string;
1850
1939
  functionID: string;
1940
+ diagramName?: string | undefined;
1851
1941
  functionName?: string | undefined;
1852
1942
  } | {
1853
1943
  type: "prompt";
1854
1944
  diagramID: string;
1855
1945
  nodeID: string;
1856
1946
  promptID: string;
1947
+ diagramName?: string | undefined;
1857
1948
  } | undefined;
1858
1949
  sourceUrls?: {
1859
1950
  url: string;
@@ -1869,39 +1960,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1869
1960
  diagramID: string;
1870
1961
  nodeID: string;
1871
1962
  nodeType: string;
1963
+ diagramName?: string | undefined;
1872
1964
  } | {
1873
1965
  type: "agent";
1874
1966
  diagramID: string;
1875
1967
  nodeID: string;
1876
1968
  agentID: string;
1969
+ diagramName?: string | undefined;
1877
1970
  agentName?: string | undefined;
1878
1971
  } | {
1879
1972
  type: "api-tool";
1880
1973
  diagramID: string;
1881
1974
  nodeID: string;
1882
1975
  apiToolID: string;
1976
+ diagramName?: string | undefined;
1883
1977
  apiToolName?: string | undefined;
1884
1978
  } | {
1885
1979
  type: "integration-tool";
1886
1980
  diagramID: string;
1887
1981
  nodeID: string;
1888
1982
  integrationToolName: string;
1983
+ diagramName?: string | undefined;
1889
1984
  } | {
1890
1985
  type: "mcp-integration-tool";
1891
1986
  diagramID: string;
1892
1987
  nodeID: string;
1893
1988
  mcpToolName: string;
1989
+ diagramName?: string | undefined;
1894
1990
  } | {
1895
1991
  type: "function";
1896
1992
  diagramID: string;
1897
1993
  nodeID: string;
1898
1994
  functionID: string;
1995
+ diagramName?: string | undefined;
1899
1996
  functionName?: string | undefined;
1900
1997
  } | {
1901
1998
  type: "prompt";
1902
1999
  diagramID: string;
1903
2000
  nodeID: string;
1904
2001
  promptID: string;
2002
+ diagramName?: string | undefined;
1905
2003
  } | undefined;
1906
2004
  };
1907
2005
  time?: number | undefined;
@@ -1971,66 +2069,78 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
1971
2069
  nodeID: z.ZodString;
1972
2070
  nodeType: z.ZodString;
1973
2071
  diagramID: z.ZodString;
2072
+ diagramName: z.ZodOptional<z.ZodString>;
1974
2073
  }, "strip", z.ZodTypeAny, {
1975
2074
  type: "node";
1976
2075
  diagramID: string;
1977
2076
  nodeID: string;
1978
2077
  nodeType: string;
2078
+ diagramName?: string | undefined;
1979
2079
  }, {
1980
2080
  type: "node";
1981
2081
  diagramID: string;
1982
2082
  nodeID: string;
1983
2083
  nodeType: string;
2084
+ diagramName?: string | undefined;
1984
2085
  }>, z.ZodObject<{
1985
2086
  type: z.ZodLiteral<"agent">;
1986
2087
  nodeID: z.ZodString;
1987
2088
  agentID: z.ZodString;
1988
2089
  diagramID: z.ZodString;
1989
2090
  agentName: z.ZodOptional<z.ZodString>;
2091
+ diagramName: z.ZodOptional<z.ZodString>;
1990
2092
  }, "strip", z.ZodTypeAny, {
1991
2093
  type: "agent";
1992
2094
  diagramID: string;
1993
2095
  nodeID: string;
1994
2096
  agentID: string;
2097
+ diagramName?: string | undefined;
1995
2098
  agentName?: string | undefined;
1996
2099
  }, {
1997
2100
  type: "agent";
1998
2101
  diagramID: string;
1999
2102
  nodeID: string;
2000
2103
  agentID: string;
2104
+ diagramName?: string | undefined;
2001
2105
  agentName?: string | undefined;
2002
2106
  }>, z.ZodObject<{
2003
2107
  type: z.ZodLiteral<"prompt">;
2004
2108
  nodeID: z.ZodString;
2005
2109
  promptID: z.ZodString;
2006
2110
  diagramID: z.ZodString;
2111
+ diagramName: z.ZodOptional<z.ZodString>;
2007
2112
  }, "strip", z.ZodTypeAny, {
2008
2113
  type: "prompt";
2009
2114
  diagramID: string;
2010
2115
  nodeID: string;
2011
2116
  promptID: string;
2117
+ diagramName?: string | undefined;
2012
2118
  }, {
2013
2119
  type: "prompt";
2014
2120
  diagramID: string;
2015
2121
  nodeID: string;
2016
2122
  promptID: string;
2123
+ diagramName?: string | undefined;
2017
2124
  }>, z.ZodObject<{
2018
2125
  type: z.ZodLiteral<"api-tool">;
2019
2126
  nodeID: z.ZodString;
2020
2127
  diagramID: z.ZodString;
2021
2128
  apiToolID: z.ZodString;
2022
2129
  apiToolName: z.ZodOptional<z.ZodString>;
2130
+ diagramName: z.ZodOptional<z.ZodString>;
2023
2131
  }, "strip", z.ZodTypeAny, {
2024
2132
  type: "api-tool";
2025
2133
  diagramID: string;
2026
2134
  nodeID: string;
2027
2135
  apiToolID: string;
2136
+ diagramName?: string | undefined;
2028
2137
  apiToolName?: string | undefined;
2029
2138
  }, {
2030
2139
  type: "api-tool";
2031
2140
  diagramID: string;
2032
2141
  nodeID: string;
2033
2142
  apiToolID: string;
2143
+ diagramName?: string | undefined;
2034
2144
  apiToolName?: string | undefined;
2035
2145
  }>, z.ZodObject<{
2036
2146
  type: z.ZodLiteral<"function">;
@@ -2038,48 +2148,57 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
2038
2148
  diagramID: z.ZodString;
2039
2149
  functionID: z.ZodString;
2040
2150
  functionName: z.ZodOptional<z.ZodString>;
2151
+ diagramName: z.ZodOptional<z.ZodString>;
2041
2152
  }, "strip", z.ZodTypeAny, {
2042
2153
  type: "function";
2043
2154
  diagramID: string;
2044
2155
  nodeID: string;
2045
2156
  functionID: string;
2157
+ diagramName?: string | undefined;
2046
2158
  functionName?: string | undefined;
2047
2159
  }, {
2048
2160
  type: "function";
2049
2161
  diagramID: string;
2050
2162
  nodeID: string;
2051
2163
  functionID: string;
2164
+ diagramName?: string | undefined;
2052
2165
  functionName?: string | undefined;
2053
2166
  }>, z.ZodObject<{
2054
2167
  type: z.ZodLiteral<"integration-tool">;
2055
2168
  nodeID: z.ZodString;
2056
2169
  diagramID: z.ZodString;
2170
+ diagramName: z.ZodOptional<z.ZodString>;
2057
2171
  integrationToolName: z.ZodString;
2058
2172
  }, "strip", z.ZodTypeAny, {
2059
2173
  type: "integration-tool";
2060
2174
  diagramID: string;
2061
2175
  nodeID: string;
2062
2176
  integrationToolName: string;
2177
+ diagramName?: string | undefined;
2063
2178
  }, {
2064
2179
  type: "integration-tool";
2065
2180
  diagramID: string;
2066
2181
  nodeID: string;
2067
2182
  integrationToolName: string;
2183
+ diagramName?: string | undefined;
2068
2184
  }>, z.ZodObject<{
2069
2185
  type: z.ZodLiteral<"mcp-integration-tool">;
2070
2186
  nodeID: z.ZodString;
2071
2187
  diagramID: z.ZodString;
2072
2188
  mcpToolName: z.ZodString;
2189
+ diagramName: z.ZodOptional<z.ZodString>;
2073
2190
  }, "strip", z.ZodTypeAny, {
2074
2191
  type: "mcp-integration-tool";
2075
2192
  diagramID: string;
2076
2193
  nodeID: string;
2077
2194
  mcpToolName: string;
2195
+ diagramName?: string | undefined;
2078
2196
  }, {
2079
2197
  type: "mcp-integration-tool";
2080
2198
  diagramID: string;
2081
2199
  nodeID: string;
2082
2200
  mcpToolName: string;
2201
+ diagramName?: string | undefined;
2083
2202
  }>]>>;
2084
2203
  type: z.ZodOptional<z.ZodString>;
2085
2204
  level: z.ZodOptional<z.ZodNativeEnum<{
@@ -2101,39 +2220,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
2101
2220
  diagramID: string;
2102
2221
  nodeID: string;
2103
2222
  nodeType: string;
2223
+ diagramName?: string | undefined;
2104
2224
  } | {
2105
2225
  type: "agent";
2106
2226
  diagramID: string;
2107
2227
  nodeID: string;
2108
2228
  agentID: string;
2229
+ diagramName?: string | undefined;
2109
2230
  agentName?: string | undefined;
2110
2231
  } | {
2111
2232
  type: "api-tool";
2112
2233
  diagramID: string;
2113
2234
  nodeID: string;
2114
2235
  apiToolID: string;
2236
+ diagramName?: string | undefined;
2115
2237
  apiToolName?: string | undefined;
2116
2238
  } | {
2117
2239
  type: "integration-tool";
2118
2240
  diagramID: string;
2119
2241
  nodeID: string;
2120
2242
  integrationToolName: string;
2243
+ diagramName?: string | undefined;
2121
2244
  } | {
2122
2245
  type: "mcp-integration-tool";
2123
2246
  diagramID: string;
2124
2247
  nodeID: string;
2125
2248
  mcpToolName: string;
2249
+ diagramName?: string | undefined;
2126
2250
  } | {
2127
2251
  type: "function";
2128
2252
  diagramID: string;
2129
2253
  nodeID: string;
2130
2254
  functionID: string;
2255
+ diagramName?: string | undefined;
2131
2256
  functionName?: string | undefined;
2132
2257
  } | {
2133
2258
  type: "prompt";
2134
2259
  diagramID: string;
2135
2260
  nodeID: string;
2136
2261
  promptID: string;
2262
+ diagramName?: string | undefined;
2137
2263
  } | undefined;
2138
2264
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
2139
2265
  context?: string | undefined;
@@ -2146,39 +2272,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
2146
2272
  diagramID: string;
2147
2273
  nodeID: string;
2148
2274
  nodeType: string;
2275
+ diagramName?: string | undefined;
2149
2276
  } | {
2150
2277
  type: "agent";
2151
2278
  diagramID: string;
2152
2279
  nodeID: string;
2153
2280
  agentID: string;
2281
+ diagramName?: string | undefined;
2154
2282
  agentName?: string | undefined;
2155
2283
  } | {
2156
2284
  type: "api-tool";
2157
2285
  diagramID: string;
2158
2286
  nodeID: string;
2159
2287
  apiToolID: string;
2288
+ diagramName?: string | undefined;
2160
2289
  apiToolName?: string | undefined;
2161
2290
  } | {
2162
2291
  type: "integration-tool";
2163
2292
  diagramID: string;
2164
2293
  nodeID: string;
2165
2294
  integrationToolName: string;
2295
+ diagramName?: string | undefined;
2166
2296
  } | {
2167
2297
  type: "mcp-integration-tool";
2168
2298
  diagramID: string;
2169
2299
  nodeID: string;
2170
2300
  mcpToolName: string;
2301
+ diagramName?: string | undefined;
2171
2302
  } | {
2172
2303
  type: "function";
2173
2304
  diagramID: string;
2174
2305
  nodeID: string;
2175
2306
  functionID: string;
2307
+ diagramName?: string | undefined;
2176
2308
  functionName?: string | undefined;
2177
2309
  } | {
2178
2310
  type: "prompt";
2179
2311
  diagramID: string;
2180
2312
  nodeID: string;
2181
2313
  promptID: string;
2314
+ diagramName?: string | undefined;
2182
2315
  } | undefined;
2183
2316
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
2184
2317
  context?: string | undefined;
@@ -2194,39 +2327,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
2194
2327
  diagramID: string;
2195
2328
  nodeID: string;
2196
2329
  nodeType: string;
2330
+ diagramName?: string | undefined;
2197
2331
  } | {
2198
2332
  type: "agent";
2199
2333
  diagramID: string;
2200
2334
  nodeID: string;
2201
2335
  agentID: string;
2336
+ diagramName?: string | undefined;
2202
2337
  agentName?: string | undefined;
2203
2338
  } | {
2204
2339
  type: "api-tool";
2205
2340
  diagramID: string;
2206
2341
  nodeID: string;
2207
2342
  apiToolID: string;
2343
+ diagramName?: string | undefined;
2208
2344
  apiToolName?: string | undefined;
2209
2345
  } | {
2210
2346
  type: "integration-tool";
2211
2347
  diagramID: string;
2212
2348
  nodeID: string;
2213
2349
  integrationToolName: string;
2350
+ diagramName?: string | undefined;
2214
2351
  } | {
2215
2352
  type: "mcp-integration-tool";
2216
2353
  diagramID: string;
2217
2354
  nodeID: string;
2218
2355
  mcpToolName: string;
2356
+ diagramName?: string | undefined;
2219
2357
  } | {
2220
2358
  type: "function";
2221
2359
  diagramID: string;
2222
2360
  nodeID: string;
2223
2361
  functionID: string;
2362
+ diagramName?: string | undefined;
2224
2363
  functionName?: string | undefined;
2225
2364
  } | {
2226
2365
  type: "prompt";
2227
2366
  diagramID: string;
2228
2367
  nodeID: string;
2229
2368
  promptID: string;
2369
+ diagramName?: string | undefined;
2230
2370
  } | undefined;
2231
2371
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
2232
2372
  context?: string | undefined;
@@ -2256,39 +2396,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
2256
2396
  diagramID: string;
2257
2397
  nodeID: string;
2258
2398
  nodeType: string;
2399
+ diagramName?: string | undefined;
2259
2400
  } | {
2260
2401
  type: "agent";
2261
2402
  diagramID: string;
2262
2403
  nodeID: string;
2263
2404
  agentID: string;
2405
+ diagramName?: string | undefined;
2264
2406
  agentName?: string | undefined;
2265
2407
  } | {
2266
2408
  type: "api-tool";
2267
2409
  diagramID: string;
2268
2410
  nodeID: string;
2269
2411
  apiToolID: string;
2412
+ diagramName?: string | undefined;
2270
2413
  apiToolName?: string | undefined;
2271
2414
  } | {
2272
2415
  type: "integration-tool";
2273
2416
  diagramID: string;
2274
2417
  nodeID: string;
2275
2418
  integrationToolName: string;
2419
+ diagramName?: string | undefined;
2276
2420
  } | {
2277
2421
  type: "mcp-integration-tool";
2278
2422
  diagramID: string;
2279
2423
  nodeID: string;
2280
2424
  mcpToolName: string;
2425
+ diagramName?: string | undefined;
2281
2426
  } | {
2282
2427
  type: "function";
2283
2428
  diagramID: string;
2284
2429
  nodeID: string;
2285
2430
  functionID: string;
2431
+ diagramName?: string | undefined;
2286
2432
  functionName?: string | undefined;
2287
2433
  } | {
2288
2434
  type: "prompt";
2289
2435
  diagramID: string;
2290
2436
  nodeID: string;
2291
2437
  promptID: string;
2438
+ diagramName?: string | undefined;
2292
2439
  } | undefined;
2293
2440
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
2294
2441
  context?: string | undefined;
@@ -3441,66 +3588,78 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
3441
3588
  nodeID: z.ZodString;
3442
3589
  nodeType: z.ZodString;
3443
3590
  diagramID: z.ZodString;
3591
+ diagramName: z.ZodOptional<z.ZodString>;
3444
3592
  }, "strip", z.ZodTypeAny, {
3445
3593
  type: "node";
3446
3594
  diagramID: string;
3447
3595
  nodeID: string;
3448
3596
  nodeType: string;
3597
+ diagramName?: string | undefined;
3449
3598
  }, {
3450
3599
  type: "node";
3451
3600
  diagramID: string;
3452
3601
  nodeID: string;
3453
3602
  nodeType: string;
3603
+ diagramName?: string | undefined;
3454
3604
  }>, z.ZodObject<{
3455
3605
  type: z.ZodLiteral<"agent">;
3456
3606
  nodeID: z.ZodString;
3457
3607
  agentID: z.ZodString;
3458
3608
  diagramID: z.ZodString;
3459
3609
  agentName: z.ZodOptional<z.ZodString>;
3610
+ diagramName: z.ZodOptional<z.ZodString>;
3460
3611
  }, "strip", z.ZodTypeAny, {
3461
3612
  type: "agent";
3462
3613
  diagramID: string;
3463
3614
  nodeID: string;
3464
3615
  agentID: string;
3616
+ diagramName?: string | undefined;
3465
3617
  agentName?: string | undefined;
3466
3618
  }, {
3467
3619
  type: "agent";
3468
3620
  diagramID: string;
3469
3621
  nodeID: string;
3470
3622
  agentID: string;
3623
+ diagramName?: string | undefined;
3471
3624
  agentName?: string | undefined;
3472
3625
  }>, z.ZodObject<{
3473
3626
  type: z.ZodLiteral<"prompt">;
3474
3627
  nodeID: z.ZodString;
3475
3628
  promptID: z.ZodString;
3476
3629
  diagramID: z.ZodString;
3630
+ diagramName: z.ZodOptional<z.ZodString>;
3477
3631
  }, "strip", z.ZodTypeAny, {
3478
3632
  type: "prompt";
3479
3633
  diagramID: string;
3480
3634
  nodeID: string;
3481
3635
  promptID: string;
3636
+ diagramName?: string | undefined;
3482
3637
  }, {
3483
3638
  type: "prompt";
3484
3639
  diagramID: string;
3485
3640
  nodeID: string;
3486
3641
  promptID: string;
3642
+ diagramName?: string | undefined;
3487
3643
  }>, z.ZodObject<{
3488
3644
  type: z.ZodLiteral<"api-tool">;
3489
3645
  nodeID: z.ZodString;
3490
3646
  diagramID: z.ZodString;
3491
3647
  apiToolID: z.ZodString;
3492
3648
  apiToolName: z.ZodOptional<z.ZodString>;
3649
+ diagramName: z.ZodOptional<z.ZodString>;
3493
3650
  }, "strip", z.ZodTypeAny, {
3494
3651
  type: "api-tool";
3495
3652
  diagramID: string;
3496
3653
  nodeID: string;
3497
3654
  apiToolID: string;
3655
+ diagramName?: string | undefined;
3498
3656
  apiToolName?: string | undefined;
3499
3657
  }, {
3500
3658
  type: "api-tool";
3501
3659
  diagramID: string;
3502
3660
  nodeID: string;
3503
3661
  apiToolID: string;
3662
+ diagramName?: string | undefined;
3504
3663
  apiToolName?: string | undefined;
3505
3664
  }>, z.ZodObject<{
3506
3665
  type: z.ZodLiteral<"function">;
@@ -3508,48 +3667,57 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
3508
3667
  diagramID: z.ZodString;
3509
3668
  functionID: z.ZodString;
3510
3669
  functionName: z.ZodOptional<z.ZodString>;
3670
+ diagramName: z.ZodOptional<z.ZodString>;
3511
3671
  }, "strip", z.ZodTypeAny, {
3512
3672
  type: "function";
3513
3673
  diagramID: string;
3514
3674
  nodeID: string;
3515
3675
  functionID: string;
3676
+ diagramName?: string | undefined;
3516
3677
  functionName?: string | undefined;
3517
3678
  }, {
3518
3679
  type: "function";
3519
3680
  diagramID: string;
3520
3681
  nodeID: string;
3521
3682
  functionID: string;
3683
+ diagramName?: string | undefined;
3522
3684
  functionName?: string | undefined;
3523
3685
  }>, z.ZodObject<{
3524
3686
  type: z.ZodLiteral<"integration-tool">;
3525
3687
  nodeID: z.ZodString;
3526
3688
  diagramID: z.ZodString;
3689
+ diagramName: z.ZodOptional<z.ZodString>;
3527
3690
  integrationToolName: z.ZodString;
3528
3691
  }, "strip", z.ZodTypeAny, {
3529
3692
  type: "integration-tool";
3530
3693
  diagramID: string;
3531
3694
  nodeID: string;
3532
3695
  integrationToolName: string;
3696
+ diagramName?: string | undefined;
3533
3697
  }, {
3534
3698
  type: "integration-tool";
3535
3699
  diagramID: string;
3536
3700
  nodeID: string;
3537
3701
  integrationToolName: string;
3702
+ diagramName?: string | undefined;
3538
3703
  }>, z.ZodObject<{
3539
3704
  type: z.ZodLiteral<"mcp-integration-tool">;
3540
3705
  nodeID: z.ZodString;
3541
3706
  diagramID: z.ZodString;
3542
3707
  mcpToolName: z.ZodString;
3708
+ diagramName: z.ZodOptional<z.ZodString>;
3543
3709
  }, "strip", z.ZodTypeAny, {
3544
3710
  type: "mcp-integration-tool";
3545
3711
  diagramID: string;
3546
3712
  nodeID: string;
3547
3713
  mcpToolName: string;
3714
+ diagramName?: string | undefined;
3548
3715
  }, {
3549
3716
  type: "mcp-integration-tool";
3550
3717
  diagramID: string;
3551
3718
  nodeID: string;
3552
3719
  mcpToolName: string;
3720
+ diagramName?: string | undefined;
3553
3721
  }>]>>;
3554
3722
  slate: z.ZodObject<{
3555
3723
  id: z.ZodString;
@@ -3599,39 +3767,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
3599
3767
  diagramID: string;
3600
3768
  nodeID: string;
3601
3769
  nodeType: string;
3770
+ diagramName?: string | undefined;
3602
3771
  } | {
3603
3772
  type: "agent";
3604
3773
  diagramID: string;
3605
3774
  nodeID: string;
3606
3775
  agentID: string;
3776
+ diagramName?: string | undefined;
3607
3777
  agentName?: string | undefined;
3608
3778
  } | {
3609
3779
  type: "api-tool";
3610
3780
  diagramID: string;
3611
3781
  nodeID: string;
3612
3782
  apiToolID: string;
3783
+ diagramName?: string | undefined;
3613
3784
  apiToolName?: string | undefined;
3614
3785
  } | {
3615
3786
  type: "integration-tool";
3616
3787
  diagramID: string;
3617
3788
  nodeID: string;
3618
3789
  integrationToolName: string;
3790
+ diagramName?: string | undefined;
3619
3791
  } | {
3620
3792
  type: "mcp-integration-tool";
3621
3793
  diagramID: string;
3622
3794
  nodeID: string;
3623
3795
  mcpToolName: string;
3796
+ diagramName?: string | undefined;
3624
3797
  } | {
3625
3798
  type: "function";
3626
3799
  diagramID: string;
3627
3800
  nodeID: string;
3628
3801
  functionID: string;
3802
+ diagramName?: string | undefined;
3629
3803
  functionName?: string | undefined;
3630
3804
  } | {
3631
3805
  type: "prompt";
3632
3806
  diagramID: string;
3633
3807
  nodeID: string;
3634
3808
  promptID: string;
3809
+ diagramName?: string | undefined;
3635
3810
  } | undefined;
3636
3811
  sourceUrls?: {
3637
3812
  url: string;
@@ -3655,39 +3830,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
3655
3830
  diagramID: string;
3656
3831
  nodeID: string;
3657
3832
  nodeType: string;
3833
+ diagramName?: string | undefined;
3658
3834
  } | {
3659
3835
  type: "agent";
3660
3836
  diagramID: string;
3661
3837
  nodeID: string;
3662
3838
  agentID: string;
3839
+ diagramName?: string | undefined;
3663
3840
  agentName?: string | undefined;
3664
3841
  } | {
3665
3842
  type: "api-tool";
3666
3843
  diagramID: string;
3667
3844
  nodeID: string;
3668
3845
  apiToolID: string;
3846
+ diagramName?: string | undefined;
3669
3847
  apiToolName?: string | undefined;
3670
3848
  } | {
3671
3849
  type: "integration-tool";
3672
3850
  diagramID: string;
3673
3851
  nodeID: string;
3674
3852
  integrationToolName: string;
3853
+ diagramName?: string | undefined;
3675
3854
  } | {
3676
3855
  type: "mcp-integration-tool";
3677
3856
  diagramID: string;
3678
3857
  nodeID: string;
3679
3858
  mcpToolName: string;
3859
+ diagramName?: string | undefined;
3680
3860
  } | {
3681
3861
  type: "function";
3682
3862
  diagramID: string;
3683
3863
  nodeID: string;
3684
3864
  functionID: string;
3865
+ diagramName?: string | undefined;
3685
3866
  functionName?: string | undefined;
3686
3867
  } | {
3687
3868
  type: "prompt";
3688
3869
  diagramID: string;
3689
3870
  nodeID: string;
3690
3871
  promptID: string;
3872
+ diagramName?: string | undefined;
3691
3873
  } | undefined;
3692
3874
  sourceUrls?: {
3693
3875
  url: string;
@@ -3714,39 +3896,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
3714
3896
  diagramID: string;
3715
3897
  nodeID: string;
3716
3898
  nodeType: string;
3899
+ diagramName?: string | undefined;
3717
3900
  } | {
3718
3901
  type: "agent";
3719
3902
  diagramID: string;
3720
3903
  nodeID: string;
3721
3904
  agentID: string;
3905
+ diagramName?: string | undefined;
3722
3906
  agentName?: string | undefined;
3723
3907
  } | {
3724
3908
  type: "api-tool";
3725
3909
  diagramID: string;
3726
3910
  nodeID: string;
3727
3911
  apiToolID: string;
3912
+ diagramName?: string | undefined;
3728
3913
  apiToolName?: string | undefined;
3729
3914
  } | {
3730
3915
  type: "integration-tool";
3731
3916
  diagramID: string;
3732
3917
  nodeID: string;
3733
3918
  integrationToolName: string;
3919
+ diagramName?: string | undefined;
3734
3920
  } | {
3735
3921
  type: "mcp-integration-tool";
3736
3922
  diagramID: string;
3737
3923
  nodeID: string;
3738
3924
  mcpToolName: string;
3925
+ diagramName?: string | undefined;
3739
3926
  } | {
3740
3927
  type: "function";
3741
3928
  diagramID: string;
3742
3929
  nodeID: string;
3743
3930
  functionID: string;
3931
+ diagramName?: string | undefined;
3744
3932
  functionName?: string | undefined;
3745
3933
  } | {
3746
3934
  type: "prompt";
3747
3935
  diagramID: string;
3748
3936
  nodeID: string;
3749
3937
  promptID: string;
3938
+ diagramName?: string | undefined;
3750
3939
  } | undefined;
3751
3940
  sourceUrls?: {
3752
3941
  url: string;
@@ -3787,39 +3976,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
3787
3976
  diagramID: string;
3788
3977
  nodeID: string;
3789
3978
  nodeType: string;
3979
+ diagramName?: string | undefined;
3790
3980
  } | {
3791
3981
  type: "agent";
3792
3982
  diagramID: string;
3793
3983
  nodeID: string;
3794
3984
  agentID: string;
3985
+ diagramName?: string | undefined;
3795
3986
  agentName?: string | undefined;
3796
3987
  } | {
3797
3988
  type: "api-tool";
3798
3989
  diagramID: string;
3799
3990
  nodeID: string;
3800
3991
  apiToolID: string;
3992
+ diagramName?: string | undefined;
3801
3993
  apiToolName?: string | undefined;
3802
3994
  } | {
3803
3995
  type: "integration-tool";
3804
3996
  diagramID: string;
3805
3997
  nodeID: string;
3806
3998
  integrationToolName: string;
3999
+ diagramName?: string | undefined;
3807
4000
  } | {
3808
4001
  type: "mcp-integration-tool";
3809
4002
  diagramID: string;
3810
4003
  nodeID: string;
3811
4004
  mcpToolName: string;
4005
+ diagramName?: string | undefined;
3812
4006
  } | {
3813
4007
  type: "function";
3814
4008
  diagramID: string;
3815
4009
  nodeID: string;
3816
4010
  functionID: string;
4011
+ diagramName?: string | undefined;
3817
4012
  functionName?: string | undefined;
3818
4013
  } | {
3819
4014
  type: "prompt";
3820
4015
  diagramID: string;
3821
4016
  nodeID: string;
3822
4017
  promptID: string;
4018
+ diagramName?: string | undefined;
3823
4019
  } | undefined;
3824
4020
  sourceUrls?: {
3825
4021
  url: string;
@@ -5088,39 +5284,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
5088
5284
  diagramID: string;
5089
5285
  nodeID: string;
5090
5286
  nodeType: string;
5287
+ diagramName?: string | undefined;
5091
5288
  } | {
5092
5289
  type: "agent";
5093
5290
  diagramID: string;
5094
5291
  nodeID: string;
5095
5292
  agentID: string;
5293
+ diagramName?: string | undefined;
5096
5294
  agentName?: string | undefined;
5097
5295
  } | {
5098
5296
  type: "api-tool";
5099
5297
  diagramID: string;
5100
5298
  nodeID: string;
5101
5299
  apiToolID: string;
5300
+ diagramName?: string | undefined;
5102
5301
  apiToolName?: string | undefined;
5103
5302
  } | {
5104
5303
  type: "integration-tool";
5105
5304
  diagramID: string;
5106
5305
  nodeID: string;
5107
5306
  integrationToolName: string;
5307
+ diagramName?: string | undefined;
5108
5308
  } | {
5109
5309
  type: "mcp-integration-tool";
5110
5310
  diagramID: string;
5111
5311
  nodeID: string;
5112
5312
  mcpToolName: string;
5313
+ diagramName?: string | undefined;
5113
5314
  } | {
5114
5315
  type: "function";
5115
5316
  diagramID: string;
5116
5317
  nodeID: string;
5117
5318
  functionID: string;
5319
+ diagramName?: string | undefined;
5118
5320
  functionName?: string | undefined;
5119
5321
  } | {
5120
5322
  type: "prompt";
5121
5323
  diagramID: string;
5122
5324
  nodeID: string;
5123
5325
  promptID: string;
5326
+ diagramName?: string | undefined;
5124
5327
  } | undefined;
5125
5328
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
5126
5329
  context?: string | undefined;
@@ -5151,39 +5354,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
5151
5354
  diagramID: string;
5152
5355
  nodeID: string;
5153
5356
  nodeType: string;
5357
+ diagramName?: string | undefined;
5154
5358
  } | {
5155
5359
  type: "agent";
5156
5360
  diagramID: string;
5157
5361
  nodeID: string;
5158
5362
  agentID: string;
5363
+ diagramName?: string | undefined;
5159
5364
  agentName?: string | undefined;
5160
5365
  } | {
5161
5366
  type: "api-tool";
5162
5367
  diagramID: string;
5163
5368
  nodeID: string;
5164
5369
  apiToolID: string;
5370
+ diagramName?: string | undefined;
5165
5371
  apiToolName?: string | undefined;
5166
5372
  } | {
5167
5373
  type: "integration-tool";
5168
5374
  diagramID: string;
5169
5375
  nodeID: string;
5170
5376
  integrationToolName: string;
5377
+ diagramName?: string | undefined;
5171
5378
  } | {
5172
5379
  type: "mcp-integration-tool";
5173
5380
  diagramID: string;
5174
5381
  nodeID: string;
5175
5382
  mcpToolName: string;
5383
+ diagramName?: string | undefined;
5176
5384
  } | {
5177
5385
  type: "function";
5178
5386
  diagramID: string;
5179
5387
  nodeID: string;
5180
5388
  functionID: string;
5389
+ diagramName?: string | undefined;
5181
5390
  functionName?: string | undefined;
5182
5391
  } | {
5183
5392
  type: "prompt";
5184
5393
  diagramID: string;
5185
5394
  nodeID: string;
5186
5395
  promptID: string;
5396
+ diagramName?: string | undefined;
5187
5397
  } | undefined;
5188
5398
  sourceUrls?: {
5189
5399
  url: string;
@@ -5199,39 +5409,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
5199
5409
  diagramID: string;
5200
5410
  nodeID: string;
5201
5411
  nodeType: string;
5412
+ diagramName?: string | undefined;
5202
5413
  } | {
5203
5414
  type: "agent";
5204
5415
  diagramID: string;
5205
5416
  nodeID: string;
5206
5417
  agentID: string;
5418
+ diagramName?: string | undefined;
5207
5419
  agentName?: string | undefined;
5208
5420
  } | {
5209
5421
  type: "api-tool";
5210
5422
  diagramID: string;
5211
5423
  nodeID: string;
5212
5424
  apiToolID: string;
5425
+ diagramName?: string | undefined;
5213
5426
  apiToolName?: string | undefined;
5214
5427
  } | {
5215
5428
  type: "integration-tool";
5216
5429
  diagramID: string;
5217
5430
  nodeID: string;
5218
5431
  integrationToolName: string;
5432
+ diagramName?: string | undefined;
5219
5433
  } | {
5220
5434
  type: "mcp-integration-tool";
5221
5435
  diagramID: string;
5222
5436
  nodeID: string;
5223
5437
  mcpToolName: string;
5438
+ diagramName?: string | undefined;
5224
5439
  } | {
5225
5440
  type: "function";
5226
5441
  diagramID: string;
5227
5442
  nodeID: string;
5228
5443
  functionID: string;
5444
+ diagramName?: string | undefined;
5229
5445
  functionName?: string | undefined;
5230
5446
  } | {
5231
5447
  type: "prompt";
5232
5448
  diagramID: string;
5233
5449
  nodeID: string;
5234
5450
  promptID: string;
5451
+ diagramName?: string | undefined;
5235
5452
  } | undefined;
5236
5453
  };
5237
5454
  time?: number | undefined;
@@ -5648,39 +5865,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
5648
5865
  diagramID: string;
5649
5866
  nodeID: string;
5650
5867
  nodeType: string;
5868
+ diagramName?: string | undefined;
5651
5869
  } | {
5652
5870
  type: "agent";
5653
5871
  diagramID: string;
5654
5872
  nodeID: string;
5655
5873
  agentID: string;
5874
+ diagramName?: string | undefined;
5656
5875
  agentName?: string | undefined;
5657
5876
  } | {
5658
5877
  type: "api-tool";
5659
5878
  diagramID: string;
5660
5879
  nodeID: string;
5661
5880
  apiToolID: string;
5881
+ diagramName?: string | undefined;
5662
5882
  apiToolName?: string | undefined;
5663
5883
  } | {
5664
5884
  type: "integration-tool";
5665
5885
  diagramID: string;
5666
5886
  nodeID: string;
5667
5887
  integrationToolName: string;
5888
+ diagramName?: string | undefined;
5668
5889
  } | {
5669
5890
  type: "mcp-integration-tool";
5670
5891
  diagramID: string;
5671
5892
  nodeID: string;
5672
5893
  mcpToolName: string;
5894
+ diagramName?: string | undefined;
5673
5895
  } | {
5674
5896
  type: "function";
5675
5897
  diagramID: string;
5676
5898
  nodeID: string;
5677
5899
  functionID: string;
5900
+ diagramName?: string | undefined;
5678
5901
  functionName?: string | undefined;
5679
5902
  } | {
5680
5903
  type: "prompt";
5681
5904
  diagramID: string;
5682
5905
  nodeID: string;
5683
5906
  promptID: string;
5907
+ diagramName?: string | undefined;
5684
5908
  } | undefined;
5685
5909
  sourceUrls?: {
5686
5910
  url: string;
@@ -5936,39 +6160,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
5936
6160
  diagramID: string;
5937
6161
  nodeID: string;
5938
6162
  nodeType: string;
6163
+ diagramName?: string | undefined;
5939
6164
  } | {
5940
6165
  type: "agent";
5941
6166
  diagramID: string;
5942
6167
  nodeID: string;
5943
6168
  agentID: string;
6169
+ diagramName?: string | undefined;
5944
6170
  agentName?: string | undefined;
5945
6171
  } | {
5946
6172
  type: "api-tool";
5947
6173
  diagramID: string;
5948
6174
  nodeID: string;
5949
6175
  apiToolID: string;
6176
+ diagramName?: string | undefined;
5950
6177
  apiToolName?: string | undefined;
5951
6178
  } | {
5952
6179
  type: "integration-tool";
5953
6180
  diagramID: string;
5954
6181
  nodeID: string;
5955
6182
  integrationToolName: string;
6183
+ diagramName?: string | undefined;
5956
6184
  } | {
5957
6185
  type: "mcp-integration-tool";
5958
6186
  diagramID: string;
5959
6187
  nodeID: string;
5960
6188
  mcpToolName: string;
6189
+ diagramName?: string | undefined;
5961
6190
  } | {
5962
6191
  type: "function";
5963
6192
  diagramID: string;
5964
6193
  nodeID: string;
5965
6194
  functionID: string;
6195
+ diagramName?: string | undefined;
5966
6196
  functionName?: string | undefined;
5967
6197
  } | {
5968
6198
  type: "prompt";
5969
6199
  diagramID: string;
5970
6200
  nodeID: string;
5971
6201
  promptID: string;
6202
+ diagramName?: string | undefined;
5972
6203
  } | undefined;
5973
6204
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
5974
6205
  context?: string | undefined;
@@ -5999,39 +6230,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
5999
6230
  diagramID: string;
6000
6231
  nodeID: string;
6001
6232
  nodeType: string;
6233
+ diagramName?: string | undefined;
6002
6234
  } | {
6003
6235
  type: "agent";
6004
6236
  diagramID: string;
6005
6237
  nodeID: string;
6006
6238
  agentID: string;
6239
+ diagramName?: string | undefined;
6007
6240
  agentName?: string | undefined;
6008
6241
  } | {
6009
6242
  type: "api-tool";
6010
6243
  diagramID: string;
6011
6244
  nodeID: string;
6012
6245
  apiToolID: string;
6246
+ diagramName?: string | undefined;
6013
6247
  apiToolName?: string | undefined;
6014
6248
  } | {
6015
6249
  type: "integration-tool";
6016
6250
  diagramID: string;
6017
6251
  nodeID: string;
6018
6252
  integrationToolName: string;
6253
+ diagramName?: string | undefined;
6019
6254
  } | {
6020
6255
  type: "mcp-integration-tool";
6021
6256
  diagramID: string;
6022
6257
  nodeID: string;
6023
6258
  mcpToolName: string;
6259
+ diagramName?: string | undefined;
6024
6260
  } | {
6025
6261
  type: "function";
6026
6262
  diagramID: string;
6027
6263
  nodeID: string;
6028
6264
  functionID: string;
6265
+ diagramName?: string | undefined;
6029
6266
  functionName?: string | undefined;
6030
6267
  } | {
6031
6268
  type: "prompt";
6032
6269
  diagramID: string;
6033
6270
  nodeID: string;
6034
6271
  promptID: string;
6272
+ diagramName?: string | undefined;
6035
6273
  } | undefined;
6036
6274
  sourceUrls?: {
6037
6275
  url: string;
@@ -6047,39 +6285,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
6047
6285
  diagramID: string;
6048
6286
  nodeID: string;
6049
6287
  nodeType: string;
6288
+ diagramName?: string | undefined;
6050
6289
  } | {
6051
6290
  type: "agent";
6052
6291
  diagramID: string;
6053
6292
  nodeID: string;
6054
6293
  agentID: string;
6294
+ diagramName?: string | undefined;
6055
6295
  agentName?: string | undefined;
6056
6296
  } | {
6057
6297
  type: "api-tool";
6058
6298
  diagramID: string;
6059
6299
  nodeID: string;
6060
6300
  apiToolID: string;
6301
+ diagramName?: string | undefined;
6061
6302
  apiToolName?: string | undefined;
6062
6303
  } | {
6063
6304
  type: "integration-tool";
6064
6305
  diagramID: string;
6065
6306
  nodeID: string;
6066
6307
  integrationToolName: string;
6308
+ diagramName?: string | undefined;
6067
6309
  } | {
6068
6310
  type: "mcp-integration-tool";
6069
6311
  diagramID: string;
6070
6312
  nodeID: string;
6071
6313
  mcpToolName: string;
6314
+ diagramName?: string | undefined;
6072
6315
  } | {
6073
6316
  type: "function";
6074
6317
  diagramID: string;
6075
6318
  nodeID: string;
6076
6319
  functionID: string;
6320
+ diagramName?: string | undefined;
6077
6321
  functionName?: string | undefined;
6078
6322
  } | {
6079
6323
  type: "prompt";
6080
6324
  diagramID: string;
6081
6325
  nodeID: string;
6082
6326
  promptID: string;
6327
+ diagramName?: string | undefined;
6083
6328
  } | undefined;
6084
6329
  };
6085
6330
  time?: number | undefined;
@@ -6496,39 +6741,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
6496
6741
  diagramID: string;
6497
6742
  nodeID: string;
6498
6743
  nodeType: string;
6744
+ diagramName?: string | undefined;
6499
6745
  } | {
6500
6746
  type: "agent";
6501
6747
  diagramID: string;
6502
6748
  nodeID: string;
6503
6749
  agentID: string;
6750
+ diagramName?: string | undefined;
6504
6751
  agentName?: string | undefined;
6505
6752
  } | {
6506
6753
  type: "api-tool";
6507
6754
  diagramID: string;
6508
6755
  nodeID: string;
6509
6756
  apiToolID: string;
6757
+ diagramName?: string | undefined;
6510
6758
  apiToolName?: string | undefined;
6511
6759
  } | {
6512
6760
  type: "integration-tool";
6513
6761
  diagramID: string;
6514
6762
  nodeID: string;
6515
6763
  integrationToolName: string;
6764
+ diagramName?: string | undefined;
6516
6765
  } | {
6517
6766
  type: "mcp-integration-tool";
6518
6767
  diagramID: string;
6519
6768
  nodeID: string;
6520
6769
  mcpToolName: string;
6770
+ diagramName?: string | undefined;
6521
6771
  } | {
6522
6772
  type: "function";
6523
6773
  diagramID: string;
6524
6774
  nodeID: string;
6525
6775
  functionID: string;
6776
+ diagramName?: string | undefined;
6526
6777
  functionName?: string | undefined;
6527
6778
  } | {
6528
6779
  type: "prompt";
6529
6780
  diagramID: string;
6530
6781
  nodeID: string;
6531
6782
  promptID: string;
6783
+ diagramName?: string | undefined;
6532
6784
  } | undefined;
6533
6785
  sourceUrls?: {
6534
6786
  url: string;
@@ -6787,39 +7039,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
6787
7039
  diagramID: string;
6788
7040
  nodeID: string;
6789
7041
  nodeType: string;
7042
+ diagramName?: string | undefined;
6790
7043
  } | {
6791
7044
  type: "agent";
6792
7045
  diagramID: string;
6793
7046
  nodeID: string;
6794
7047
  agentID: string;
7048
+ diagramName?: string | undefined;
6795
7049
  agentName?: string | undefined;
6796
7050
  } | {
6797
7051
  type: "api-tool";
6798
7052
  diagramID: string;
6799
7053
  nodeID: string;
6800
7054
  apiToolID: string;
7055
+ diagramName?: string | undefined;
6801
7056
  apiToolName?: string | undefined;
6802
7057
  } | {
6803
7058
  type: "integration-tool";
6804
7059
  diagramID: string;
6805
7060
  nodeID: string;
6806
7061
  integrationToolName: string;
7062
+ diagramName?: string | undefined;
6807
7063
  } | {
6808
7064
  type: "mcp-integration-tool";
6809
7065
  diagramID: string;
6810
7066
  nodeID: string;
6811
7067
  mcpToolName: string;
7068
+ diagramName?: string | undefined;
6812
7069
  } | {
6813
7070
  type: "function";
6814
7071
  diagramID: string;
6815
7072
  nodeID: string;
6816
7073
  functionID: string;
7074
+ diagramName?: string | undefined;
6817
7075
  functionName?: string | undefined;
6818
7076
  } | {
6819
7077
  type: "prompt";
6820
7078
  diagramID: string;
6821
7079
  nodeID: string;
6822
7080
  promptID: string;
7081
+ diagramName?: string | undefined;
6823
7082
  } | undefined;
6824
7083
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
6825
7084
  context?: string | undefined;
@@ -6850,39 +7109,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
6850
7109
  diagramID: string;
6851
7110
  nodeID: string;
6852
7111
  nodeType: string;
7112
+ diagramName?: string | undefined;
6853
7113
  } | {
6854
7114
  type: "agent";
6855
7115
  diagramID: string;
6856
7116
  nodeID: string;
6857
7117
  agentID: string;
7118
+ diagramName?: string | undefined;
6858
7119
  agentName?: string | undefined;
6859
7120
  } | {
6860
7121
  type: "api-tool";
6861
7122
  diagramID: string;
6862
7123
  nodeID: string;
6863
7124
  apiToolID: string;
7125
+ diagramName?: string | undefined;
6864
7126
  apiToolName?: string | undefined;
6865
7127
  } | {
6866
7128
  type: "integration-tool";
6867
7129
  diagramID: string;
6868
7130
  nodeID: string;
6869
7131
  integrationToolName: string;
7132
+ diagramName?: string | undefined;
6870
7133
  } | {
6871
7134
  type: "mcp-integration-tool";
6872
7135
  diagramID: string;
6873
7136
  nodeID: string;
6874
7137
  mcpToolName: string;
7138
+ diagramName?: string | undefined;
6875
7139
  } | {
6876
7140
  type: "function";
6877
7141
  diagramID: string;
6878
7142
  nodeID: string;
6879
7143
  functionID: string;
7144
+ diagramName?: string | undefined;
6880
7145
  functionName?: string | undefined;
6881
7146
  } | {
6882
7147
  type: "prompt";
6883
7148
  diagramID: string;
6884
7149
  nodeID: string;
6885
7150
  promptID: string;
7151
+ diagramName?: string | undefined;
6886
7152
  } | undefined;
6887
7153
  sourceUrls?: {
6888
7154
  url: string;
@@ -6898,39 +7164,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
6898
7164
  diagramID: string;
6899
7165
  nodeID: string;
6900
7166
  nodeType: string;
7167
+ diagramName?: string | undefined;
6901
7168
  } | {
6902
7169
  type: "agent";
6903
7170
  diagramID: string;
6904
7171
  nodeID: string;
6905
7172
  agentID: string;
7173
+ diagramName?: string | undefined;
6906
7174
  agentName?: string | undefined;
6907
7175
  } | {
6908
7176
  type: "api-tool";
6909
7177
  diagramID: string;
6910
7178
  nodeID: string;
6911
7179
  apiToolID: string;
7180
+ diagramName?: string | undefined;
6912
7181
  apiToolName?: string | undefined;
6913
7182
  } | {
6914
7183
  type: "integration-tool";
6915
7184
  diagramID: string;
6916
7185
  nodeID: string;
6917
7186
  integrationToolName: string;
7187
+ diagramName?: string | undefined;
6918
7188
  } | {
6919
7189
  type: "mcp-integration-tool";
6920
7190
  diagramID: string;
6921
7191
  nodeID: string;
6922
7192
  mcpToolName: string;
7193
+ diagramName?: string | undefined;
6923
7194
  } | {
6924
7195
  type: "function";
6925
7196
  diagramID: string;
6926
7197
  nodeID: string;
6927
7198
  functionID: string;
7199
+ diagramName?: string | undefined;
6928
7200
  functionName?: string | undefined;
6929
7201
  } | {
6930
7202
  type: "prompt";
6931
7203
  diagramID: string;
6932
7204
  nodeID: string;
6933
7205
  promptID: string;
7206
+ diagramName?: string | undefined;
6934
7207
  } | undefined;
6935
7208
  };
6936
7209
  time?: number | undefined;
@@ -7347,39 +7620,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
7347
7620
  diagramID: string;
7348
7621
  nodeID: string;
7349
7622
  nodeType: string;
7623
+ diagramName?: string | undefined;
7350
7624
  } | {
7351
7625
  type: "agent";
7352
7626
  diagramID: string;
7353
7627
  nodeID: string;
7354
7628
  agentID: string;
7629
+ diagramName?: string | undefined;
7355
7630
  agentName?: string | undefined;
7356
7631
  } | {
7357
7632
  type: "api-tool";
7358
7633
  diagramID: string;
7359
7634
  nodeID: string;
7360
7635
  apiToolID: string;
7636
+ diagramName?: string | undefined;
7361
7637
  apiToolName?: string | undefined;
7362
7638
  } | {
7363
7639
  type: "integration-tool";
7364
7640
  diagramID: string;
7365
7641
  nodeID: string;
7366
7642
  integrationToolName: string;
7643
+ diagramName?: string | undefined;
7367
7644
  } | {
7368
7645
  type: "mcp-integration-tool";
7369
7646
  diagramID: string;
7370
7647
  nodeID: string;
7371
7648
  mcpToolName: string;
7649
+ diagramName?: string | undefined;
7372
7650
  } | {
7373
7651
  type: "function";
7374
7652
  diagramID: string;
7375
7653
  nodeID: string;
7376
7654
  functionID: string;
7655
+ diagramName?: string | undefined;
7377
7656
  functionName?: string | undefined;
7378
7657
  } | {
7379
7658
  type: "prompt";
7380
7659
  diagramID: string;
7381
7660
  nodeID: string;
7382
7661
  promptID: string;
7662
+ diagramName?: string | undefined;
7383
7663
  } | undefined;
7384
7664
  sourceUrls?: {
7385
7665
  url: string;
@@ -7638,39 +7918,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
7638
7918
  diagramID: string;
7639
7919
  nodeID: string;
7640
7920
  nodeType: string;
7921
+ diagramName?: string | undefined;
7641
7922
  } | {
7642
7923
  type: "agent";
7643
7924
  diagramID: string;
7644
7925
  nodeID: string;
7645
7926
  agentID: string;
7927
+ diagramName?: string | undefined;
7646
7928
  agentName?: string | undefined;
7647
7929
  } | {
7648
7930
  type: "api-tool";
7649
7931
  diagramID: string;
7650
7932
  nodeID: string;
7651
7933
  apiToolID: string;
7934
+ diagramName?: string | undefined;
7652
7935
  apiToolName?: string | undefined;
7653
7936
  } | {
7654
7937
  type: "integration-tool";
7655
7938
  diagramID: string;
7656
7939
  nodeID: string;
7657
7940
  integrationToolName: string;
7941
+ diagramName?: string | undefined;
7658
7942
  } | {
7659
7943
  type: "mcp-integration-tool";
7660
7944
  diagramID: string;
7661
7945
  nodeID: string;
7662
7946
  mcpToolName: string;
7947
+ diagramName?: string | undefined;
7663
7948
  } | {
7664
7949
  type: "function";
7665
7950
  diagramID: string;
7666
7951
  nodeID: string;
7667
7952
  functionID: string;
7953
+ diagramName?: string | undefined;
7668
7954
  functionName?: string | undefined;
7669
7955
  } | {
7670
7956
  type: "prompt";
7671
7957
  diagramID: string;
7672
7958
  nodeID: string;
7673
7959
  promptID: string;
7960
+ diagramName?: string | undefined;
7674
7961
  } | undefined;
7675
7962
  level?: "error" | "debug" | "fatal" | "warn" | "info" | undefined;
7676
7963
  context?: string | undefined;
@@ -7701,39 +7988,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
7701
7988
  diagramID: string;
7702
7989
  nodeID: string;
7703
7990
  nodeType: string;
7991
+ diagramName?: string | undefined;
7704
7992
  } | {
7705
7993
  type: "agent";
7706
7994
  diagramID: string;
7707
7995
  nodeID: string;
7708
7996
  agentID: string;
7997
+ diagramName?: string | undefined;
7709
7998
  agentName?: string | undefined;
7710
7999
  } | {
7711
8000
  type: "api-tool";
7712
8001
  diagramID: string;
7713
8002
  nodeID: string;
7714
8003
  apiToolID: string;
8004
+ diagramName?: string | undefined;
7715
8005
  apiToolName?: string | undefined;
7716
8006
  } | {
7717
8007
  type: "integration-tool";
7718
8008
  diagramID: string;
7719
8009
  nodeID: string;
7720
8010
  integrationToolName: string;
8011
+ diagramName?: string | undefined;
7721
8012
  } | {
7722
8013
  type: "mcp-integration-tool";
7723
8014
  diagramID: string;
7724
8015
  nodeID: string;
7725
8016
  mcpToolName: string;
8017
+ diagramName?: string | undefined;
7726
8018
  } | {
7727
8019
  type: "function";
7728
8020
  diagramID: string;
7729
8021
  nodeID: string;
7730
8022
  functionID: string;
8023
+ diagramName?: string | undefined;
7731
8024
  functionName?: string | undefined;
7732
8025
  } | {
7733
8026
  type: "prompt";
7734
8027
  diagramID: string;
7735
8028
  nodeID: string;
7736
8029
  promptID: string;
8030
+ diagramName?: string | undefined;
7737
8031
  } | undefined;
7738
8032
  sourceUrls?: {
7739
8033
  url: string;
@@ -7749,39 +8043,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
7749
8043
  diagramID: string;
7750
8044
  nodeID: string;
7751
8045
  nodeType: string;
8046
+ diagramName?: string | undefined;
7752
8047
  } | {
7753
8048
  type: "agent";
7754
8049
  diagramID: string;
7755
8050
  nodeID: string;
7756
8051
  agentID: string;
8052
+ diagramName?: string | undefined;
7757
8053
  agentName?: string | undefined;
7758
8054
  } | {
7759
8055
  type: "api-tool";
7760
8056
  diagramID: string;
7761
8057
  nodeID: string;
7762
8058
  apiToolID: string;
8059
+ diagramName?: string | undefined;
7763
8060
  apiToolName?: string | undefined;
7764
8061
  } | {
7765
8062
  type: "integration-tool";
7766
8063
  diagramID: string;
7767
8064
  nodeID: string;
7768
8065
  integrationToolName: string;
8066
+ diagramName?: string | undefined;
7769
8067
  } | {
7770
8068
  type: "mcp-integration-tool";
7771
8069
  diagramID: string;
7772
8070
  nodeID: string;
7773
8071
  mcpToolName: string;
8072
+ diagramName?: string | undefined;
7774
8073
  } | {
7775
8074
  type: "function";
7776
8075
  diagramID: string;
7777
8076
  nodeID: string;
7778
8077
  functionID: string;
8078
+ diagramName?: string | undefined;
7779
8079
  functionName?: string | undefined;
7780
8080
  } | {
7781
8081
  type: "prompt";
7782
8082
  diagramID: string;
7783
8083
  nodeID: string;
7784
8084
  promptID: string;
8085
+ diagramName?: string | undefined;
7785
8086
  } | undefined;
7786
8087
  };
7787
8088
  time?: number | undefined;
@@ -8198,39 +8499,46 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
8198
8499
  diagramID: string;
8199
8500
  nodeID: string;
8200
8501
  nodeType: string;
8502
+ diagramName?: string | undefined;
8201
8503
  } | {
8202
8504
  type: "agent";
8203
8505
  diagramID: string;
8204
8506
  nodeID: string;
8205
8507
  agentID: string;
8508
+ diagramName?: string | undefined;
8206
8509
  agentName?: string | undefined;
8207
8510
  } | {
8208
8511
  type: "api-tool";
8209
8512
  diagramID: string;
8210
8513
  nodeID: string;
8211
8514
  apiToolID: string;
8515
+ diagramName?: string | undefined;
8212
8516
  apiToolName?: string | undefined;
8213
8517
  } | {
8214
8518
  type: "integration-tool";
8215
8519
  diagramID: string;
8216
8520
  nodeID: string;
8217
8521
  integrationToolName: string;
8522
+ diagramName?: string | undefined;
8218
8523
  } | {
8219
8524
  type: "mcp-integration-tool";
8220
8525
  diagramID: string;
8221
8526
  nodeID: string;
8222
8527
  mcpToolName: string;
8528
+ diagramName?: string | undefined;
8223
8529
  } | {
8224
8530
  type: "function";
8225
8531
  diagramID: string;
8226
8532
  nodeID: string;
8227
8533
  functionID: string;
8534
+ diagramName?: string | undefined;
8228
8535
  functionName?: string | undefined;
8229
8536
  } | {
8230
8537
  type: "prompt";
8231
8538
  diagramID: string;
8232
8539
  nodeID: string;
8233
8540
  promptID: string;
8541
+ diagramName?: string | undefined;
8234
8542
  } | undefined;
8235
8543
  sourceUrls?: {
8236
8544
  url: string;