@superdoc-dev/sdk 1.8.0-next.23 → 1.8.0-next.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client.d.ts +823 -13
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/contract.cjs +1910 -0
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +1913 -0
- package/package.json +6 -6
- package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/__pycache__/intent_dispatch_generated.cpython-312.pyc +0 -0
- package/tools/catalog.json +147 -0
- package/tools/tools-policy.json +1 -1
- package/tools/tools.anthropic.json +147 -0
- package/tools/tools.generic.json +147 -0
- package/tools/tools.openai.json +147 -0
- package/tools/tools.vercel.json +147 -0
package/tools/tools.vercel.json
CHANGED
|
@@ -1494,6 +1494,153 @@
|
|
|
1494
1494
|
"range"
|
|
1495
1495
|
]
|
|
1496
1496
|
}
|
|
1497
|
+
},
|
|
1498
|
+
"story": {
|
|
1499
|
+
"oneOf": [
|
|
1500
|
+
{
|
|
1501
|
+
"type": "object",
|
|
1502
|
+
"properties": {
|
|
1503
|
+
"kind": {
|
|
1504
|
+
"const": "story",
|
|
1505
|
+
"type": "string"
|
|
1506
|
+
},
|
|
1507
|
+
"storyType": {
|
|
1508
|
+
"const": "body",
|
|
1509
|
+
"type": "string"
|
|
1510
|
+
}
|
|
1511
|
+
},
|
|
1512
|
+
"required": [
|
|
1513
|
+
"kind",
|
|
1514
|
+
"storyType"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"type": "object",
|
|
1519
|
+
"properties": {
|
|
1520
|
+
"kind": {
|
|
1521
|
+
"const": "story",
|
|
1522
|
+
"type": "string"
|
|
1523
|
+
},
|
|
1524
|
+
"storyType": {
|
|
1525
|
+
"const": "headerFooterSlot",
|
|
1526
|
+
"type": "string"
|
|
1527
|
+
},
|
|
1528
|
+
"section": {
|
|
1529
|
+
"type": "object",
|
|
1530
|
+
"properties": {
|
|
1531
|
+
"kind": {
|
|
1532
|
+
"const": "section",
|
|
1533
|
+
"type": "string"
|
|
1534
|
+
},
|
|
1535
|
+
"sectionId": {
|
|
1536
|
+
"type": "string"
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1539
|
+
"required": [
|
|
1540
|
+
"kind",
|
|
1541
|
+
"sectionId"
|
|
1542
|
+
]
|
|
1543
|
+
},
|
|
1544
|
+
"headerFooterKind": {
|
|
1545
|
+
"enum": [
|
|
1546
|
+
"header",
|
|
1547
|
+
"footer"
|
|
1548
|
+
]
|
|
1549
|
+
},
|
|
1550
|
+
"variant": {
|
|
1551
|
+
"enum": [
|
|
1552
|
+
"default",
|
|
1553
|
+
"first",
|
|
1554
|
+
"even"
|
|
1555
|
+
]
|
|
1556
|
+
},
|
|
1557
|
+
"resolution": {
|
|
1558
|
+
"enum": [
|
|
1559
|
+
"effective",
|
|
1560
|
+
"explicit"
|
|
1561
|
+
]
|
|
1562
|
+
},
|
|
1563
|
+
"onWrite": {
|
|
1564
|
+
"enum": [
|
|
1565
|
+
"materializeIfInherited",
|
|
1566
|
+
"editResolvedPart",
|
|
1567
|
+
"error"
|
|
1568
|
+
]
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
"required": [
|
|
1572
|
+
"kind",
|
|
1573
|
+
"storyType",
|
|
1574
|
+
"section",
|
|
1575
|
+
"headerFooterKind",
|
|
1576
|
+
"variant"
|
|
1577
|
+
]
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"type": "object",
|
|
1581
|
+
"properties": {
|
|
1582
|
+
"kind": {
|
|
1583
|
+
"const": "story",
|
|
1584
|
+
"type": "string"
|
|
1585
|
+
},
|
|
1586
|
+
"storyType": {
|
|
1587
|
+
"const": "headerFooterPart",
|
|
1588
|
+
"type": "string"
|
|
1589
|
+
},
|
|
1590
|
+
"refId": {
|
|
1591
|
+
"type": "string"
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
"required": [
|
|
1595
|
+
"kind",
|
|
1596
|
+
"storyType",
|
|
1597
|
+
"refId"
|
|
1598
|
+
]
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"type": "object",
|
|
1602
|
+
"properties": {
|
|
1603
|
+
"kind": {
|
|
1604
|
+
"const": "story",
|
|
1605
|
+
"type": "string"
|
|
1606
|
+
},
|
|
1607
|
+
"storyType": {
|
|
1608
|
+
"const": "footnote",
|
|
1609
|
+
"type": "string"
|
|
1610
|
+
},
|
|
1611
|
+
"noteId": {
|
|
1612
|
+
"type": "string"
|
|
1613
|
+
}
|
|
1614
|
+
},
|
|
1615
|
+
"required": [
|
|
1616
|
+
"kind",
|
|
1617
|
+
"storyType",
|
|
1618
|
+
"noteId"
|
|
1619
|
+
]
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"type": "object",
|
|
1623
|
+
"properties": {
|
|
1624
|
+
"kind": {
|
|
1625
|
+
"const": "story",
|
|
1626
|
+
"type": "string"
|
|
1627
|
+
},
|
|
1628
|
+
"storyType": {
|
|
1629
|
+
"const": "endnote",
|
|
1630
|
+
"type": "string"
|
|
1631
|
+
},
|
|
1632
|
+
"noteId": {
|
|
1633
|
+
"type": "string"
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
"required": [
|
|
1637
|
+
"kind",
|
|
1638
|
+
"storyType",
|
|
1639
|
+
"noteId"
|
|
1640
|
+
]
|
|
1641
|
+
}
|
|
1642
|
+
],
|
|
1643
|
+
"description": "Story scope. Defaults to document body when omitted. Use {kind:'story', storyType:'body'} for body, or other storyType values for headers, footers, footnotes, endnotes."
|
|
1497
1644
|
}
|
|
1498
1645
|
},
|
|
1499
1646
|
"required": [
|