@superdoc-dev/sdk 1.6.0 → 1.8.0-next.1

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,153 @@
1513
1513
  "properties": {
1514
1514
  "id": {
1515
1515
  "type": "string"
1516
+ },
1517
+ "story": {
1518
+ "oneOf": [
1519
+ {
1520
+ "type": "object",
1521
+ "properties": {
1522
+ "kind": {
1523
+ "const": "story",
1524
+ "type": "string"
1525
+ },
1526
+ "storyType": {
1527
+ "const": "body",
1528
+ "type": "string"
1529
+ }
1530
+ },
1531
+ "required": [
1532
+ "kind",
1533
+ "storyType"
1534
+ ]
1535
+ },
1536
+ {
1537
+ "type": "object",
1538
+ "properties": {
1539
+ "kind": {
1540
+ "const": "story",
1541
+ "type": "string"
1542
+ },
1543
+ "storyType": {
1544
+ "const": "headerFooterSlot",
1545
+ "type": "string"
1546
+ },
1547
+ "section": {
1548
+ "type": "object",
1549
+ "properties": {
1550
+ "kind": {
1551
+ "const": "section",
1552
+ "type": "string"
1553
+ },
1554
+ "sectionId": {
1555
+ "type": "string"
1556
+ }
1557
+ },
1558
+ "required": [
1559
+ "kind",
1560
+ "sectionId"
1561
+ ]
1562
+ },
1563
+ "headerFooterKind": {
1564
+ "enum": [
1565
+ "header",
1566
+ "footer"
1567
+ ]
1568
+ },
1569
+ "variant": {
1570
+ "enum": [
1571
+ "default",
1572
+ "first",
1573
+ "even"
1574
+ ]
1575
+ },
1576
+ "resolution": {
1577
+ "enum": [
1578
+ "effective",
1579
+ "explicit"
1580
+ ]
1581
+ },
1582
+ "onWrite": {
1583
+ "enum": [
1584
+ "materializeIfInherited",
1585
+ "editResolvedPart",
1586
+ "error"
1587
+ ]
1588
+ }
1589
+ },
1590
+ "required": [
1591
+ "kind",
1592
+ "storyType",
1593
+ "section",
1594
+ "headerFooterKind",
1595
+ "variant"
1596
+ ]
1597
+ },
1598
+ {
1599
+ "type": "object",
1600
+ "properties": {
1601
+ "kind": {
1602
+ "const": "story",
1603
+ "type": "string"
1604
+ },
1605
+ "storyType": {
1606
+ "const": "headerFooterPart",
1607
+ "type": "string"
1608
+ },
1609
+ "refId": {
1610
+ "type": "string"
1611
+ }
1612
+ },
1613
+ "required": [
1614
+ "kind",
1615
+ "storyType",
1616
+ "refId"
1617
+ ]
1618
+ },
1619
+ {
1620
+ "type": "object",
1621
+ "properties": {
1622
+ "kind": {
1623
+ "const": "story",
1624
+ "type": "string"
1625
+ },
1626
+ "storyType": {
1627
+ "const": "footnote",
1628
+ "type": "string"
1629
+ },
1630
+ "noteId": {
1631
+ "type": "string"
1632
+ }
1633
+ },
1634
+ "required": [
1635
+ "kind",
1636
+ "storyType",
1637
+ "noteId"
1638
+ ]
1639
+ },
1640
+ {
1641
+ "type": "object",
1642
+ "properties": {
1643
+ "kind": {
1644
+ "const": "story",
1645
+ "type": "string"
1646
+ },
1647
+ "storyType": {
1648
+ "const": "endnote",
1649
+ "type": "string"
1650
+ },
1651
+ "noteId": {
1652
+ "type": "string"
1653
+ }
1654
+ },
1655
+ "required": [
1656
+ "kind",
1657
+ "storyType",
1658
+ "noteId"
1659
+ ]
1660
+ }
1661
+ ],
1662
+ "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."
1516
1663
  }
1517
1664
  },
1518
1665
  "required": [