@superdoc-dev/sdk 1.8.0-next.4 → 1.8.0-next.41
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.cjs +4 -0
- package/dist/generated/client.d.ts +924 -15
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/client.js +4 -0
- package/dist/generated/contract.cjs +2735 -158
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +2738 -158
- package/dist/generated/intent-dispatch.generated.cjs +5 -0
- package/dist/generated/intent-dispatch.generated.d.ts.map +1 -1
- package/dist/generated/intent-dispatch.generated.js +5 -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 +239 -10
- package/tools/intent_dispatch_generated.py +10 -0
- package/tools/prompt-templates/system-prompt-core.md +88 -0
- package/tools/system-prompt-mcp.md +88 -0
- package/tools/system-prompt.md +88 -0
- package/tools/tools-policy.json +1 -1
- package/tools/tools.anthropic.json +201 -10
- package/tools/tools.generic.json +207 -11
- package/tools/tools.openai.json +201 -10
- package/tools/tools.vercel.json +201 -10
|
@@ -102,7 +102,7 @@ const CONTRACT = {
|
|
|
102
102
|
"find"
|
|
103
103
|
],
|
|
104
104
|
"category": "core",
|
|
105
|
-
"description": "Search the document for text or node matches using SDM/1 selectors. Returns discovery-grade results
|
|
105
|
+
"description": "Search the document for text or node matches using SDM/1 selectors. Returns discovery-grade results: for mutation targeting, use query.match instead.",
|
|
106
106
|
"requiresDocumentContext": true,
|
|
107
107
|
"docRequirement": "optional",
|
|
108
108
|
"responseEnvelopeKey": "result",
|
|
@@ -2013,7 +2013,7 @@ const CONTRACT = {
|
|
|
2013
2013
|
"extract"
|
|
2014
2014
|
],
|
|
2015
2015
|
"category": "core",
|
|
2016
|
-
"description": "Extract all document content with stable IDs for RAG pipelines. Returns blocks with full text, comments, and tracked changes
|
|
2016
|
+
"description": "Extract all document content with stable IDs for RAG pipelines. Returns blocks with full text, comments, and tracked changes: each with an ID compatible with scrollToElement().",
|
|
2017
2017
|
"requiresDocumentContext": true,
|
|
2018
2018
|
"docRequirement": "optional",
|
|
2019
2019
|
"responseEnvelopeKey": null,
|
|
@@ -2052,7 +2052,7 @@ const CONTRACT = {
|
|
|
2052
2052
|
"properties": {
|
|
2053
2053
|
"nodeId": {
|
|
2054
2054
|
"type": "string",
|
|
2055
|
-
"description": "Stable block ID
|
|
2055
|
+
"description": "Stable block ID: pass to scrollToElement() for navigation."
|
|
2056
2056
|
},
|
|
2057
2057
|
"type": {
|
|
2058
2058
|
"type": "string",
|
|
@@ -2062,9 +2062,52 @@ const CONTRACT = {
|
|
|
2062
2062
|
"type": "string",
|
|
2063
2063
|
"description": "Full plain text content of the block."
|
|
2064
2064
|
},
|
|
2065
|
+
"textSpans": {
|
|
2066
|
+
"type": "array",
|
|
2067
|
+
"description": "Block text broken into runs with tracked-change marks preserved per run. Present only when the block contains at least one tracked change. Concatenating span text yields `text`.",
|
|
2068
|
+
"items": {
|
|
2069
|
+
"type": "object",
|
|
2070
|
+
"properties": {
|
|
2071
|
+
"text": {
|
|
2072
|
+
"type": "string",
|
|
2073
|
+
"description": "Raw text of the run."
|
|
2074
|
+
},
|
|
2075
|
+
"trackedChanges": {
|
|
2076
|
+
"type": "array",
|
|
2077
|
+
"description": "Tracked-change marks applied to this run.",
|
|
2078
|
+
"items": {
|
|
2079
|
+
"type": "object",
|
|
2080
|
+
"properties": {
|
|
2081
|
+
"entityId": {
|
|
2082
|
+
"type": "string",
|
|
2083
|
+
"description": "Tracked change entity ID matching an entry in trackedChanges[]."
|
|
2084
|
+
},
|
|
2085
|
+
"type": {
|
|
2086
|
+
"type": "string",
|
|
2087
|
+
"enum": [
|
|
2088
|
+
"insert",
|
|
2089
|
+
"delete",
|
|
2090
|
+
"format"
|
|
2091
|
+
]
|
|
2092
|
+
}
|
|
2093
|
+
},
|
|
2094
|
+
"additionalProperties": false,
|
|
2095
|
+
"required": [
|
|
2096
|
+
"entityId",
|
|
2097
|
+
"type"
|
|
2098
|
+
]
|
|
2099
|
+
}
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
2102
|
+
"additionalProperties": false,
|
|
2103
|
+
"required": [
|
|
2104
|
+
"text"
|
|
2105
|
+
]
|
|
2106
|
+
}
|
|
2107
|
+
},
|
|
2065
2108
|
"headingLevel": {
|
|
2066
2109
|
"type": "integer",
|
|
2067
|
-
"description": "Heading level (1
|
|
2110
|
+
"description": "Heading level (1-6). Only present for headings."
|
|
2068
2111
|
},
|
|
2069
2112
|
"tableContext": {
|
|
2070
2113
|
"type": "object",
|
|
@@ -2127,7 +2170,7 @@ const CONTRACT = {
|
|
|
2127
2170
|
"properties": {
|
|
2128
2171
|
"entityId": {
|
|
2129
2172
|
"type": "string",
|
|
2130
|
-
"description": "Comment entity ID
|
|
2173
|
+
"description": "Comment entity ID: pass to scrollToElement() for navigation."
|
|
2131
2174
|
},
|
|
2132
2175
|
"text": {
|
|
2133
2176
|
"type": "string",
|
|
@@ -2167,7 +2210,7 @@ const CONTRACT = {
|
|
|
2167
2210
|
"properties": {
|
|
2168
2211
|
"entityId": {
|
|
2169
2212
|
"type": "string",
|
|
2170
|
-
"description": "Tracked change entity ID
|
|
2213
|
+
"description": "Tracked change entity ID. Pass to scrollToElement() for navigation."
|
|
2171
2214
|
},
|
|
2172
2215
|
"type": {
|
|
2173
2216
|
"type": "string",
|
|
@@ -2175,11 +2218,37 @@ const CONTRACT = {
|
|
|
2175
2218
|
"insert",
|
|
2176
2219
|
"delete",
|
|
2177
2220
|
"format"
|
|
2178
|
-
]
|
|
2221
|
+
],
|
|
2222
|
+
"description": "Aggregate type at the entity level. In paired replacement mode, a delete+insert pair shares one entity and this collapses to 'insert'; per-half type lives on block.textSpans[].trackedChanges[]."
|
|
2223
|
+
},
|
|
2224
|
+
"blockIds": {
|
|
2225
|
+
"type": "array",
|
|
2226
|
+
"description": "Block IDs whose textSpans carry this change.",
|
|
2227
|
+
"items": {
|
|
2228
|
+
"type": "string"
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
"wordRevisionIds": {
|
|
2232
|
+
"type": "object",
|
|
2233
|
+
"properties": {
|
|
2234
|
+
"insert": {
|
|
2235
|
+
"type": "string",
|
|
2236
|
+
"description": "Original OOXML w:id from a w:ins mark."
|
|
2237
|
+
},
|
|
2238
|
+
"delete": {
|
|
2239
|
+
"type": "string",
|
|
2240
|
+
"description": "Original OOXML w:id from a w:del mark."
|
|
2241
|
+
},
|
|
2242
|
+
"format": {
|
|
2243
|
+
"type": "string",
|
|
2244
|
+
"description": "Original OOXML w:id from a w:rPrChange mark."
|
|
2245
|
+
}
|
|
2246
|
+
},
|
|
2247
|
+
"additionalProperties": false
|
|
2179
2248
|
},
|
|
2180
2249
|
"excerpt": {
|
|
2181
2250
|
"type": "string",
|
|
2182
|
-
"description": "Short text excerpt of the changed content."
|
|
2251
|
+
"description": "Short text excerpt of the changed content. Omitted for paired replacements; read block.textSpans for the per-half text."
|
|
2183
2252
|
},
|
|
2184
2253
|
"author": {
|
|
2185
2254
|
"type": "string",
|
|
@@ -33708,7 +33777,7 @@ const CONTRACT = {
|
|
|
33708
33777
|
"name": "text",
|
|
33709
33778
|
"kind": "flag",
|
|
33710
33779
|
"type": "string",
|
|
33711
|
-
"description": "Paragraph text content. Each call creates ONE paragraph. For multiple items (e.g. list items), call superdoc_create separately for each item
|
|
33780
|
+
"description": "Paragraph text content. Each call creates ONE paragraph. For multiple items (e.g. list items), call superdoc_create separately for each item: do NOT use newlines to put multiple items in one paragraph."
|
|
33712
33781
|
},
|
|
33713
33782
|
{
|
|
33714
33783
|
"name": "input",
|
|
@@ -33792,7 +33861,7 @@ const CONTRACT = {
|
|
|
33792
33861
|
},
|
|
33793
33862
|
"text": {
|
|
33794
33863
|
"type": "string",
|
|
33795
|
-
"description": "Paragraph text content. Each call creates ONE paragraph. For multiple items (e.g. list items), call superdoc_create separately for each item
|
|
33864
|
+
"description": "Paragraph text content. Each call creates ONE paragraph. For multiple items (e.g. list items), call superdoc_create separately for each item: do NOT use newlines to put multiple items in one paragraph."
|
|
33796
33865
|
}
|
|
33797
33866
|
},
|
|
33798
33867
|
"additionalProperties": false
|
|
@@ -50131,7 +50200,7 @@ const CONTRACT = {
|
|
|
50131
50200
|
"create"
|
|
50132
50201
|
],
|
|
50133
50202
|
"category": "lists",
|
|
50134
|
-
"description": "Create a new list from one or more paragraphs. Supports optional preset or style for new sequences. When sequence.mode is \"continuePrevious\", preset and style are not allowed
|
|
50203
|
+
"description": "Create a new list from one or more paragraphs. Supports optional preset or style for new sequences. When sequence.mode is \"continuePrevious\", preset and style are not allowed: the new items inherit formatting from the previous sequence.",
|
|
50135
50204
|
"requiresDocumentContext": true,
|
|
50136
50205
|
"docRequirement": "optional",
|
|
50137
50206
|
"responseEnvelopeKey": "result",
|
|
@@ -50201,9 +50270,9 @@ const CONTRACT = {
|
|
|
50201
50270
|
"const": "fromParagraphs"
|
|
50202
50271
|
}
|
|
50203
50272
|
],
|
|
50204
|
-
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items
|
|
50273
|
+
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items: each paragraph becomes one item, so create one paragraph per item first. 'empty' creates a new empty list at 'at'."
|
|
50205
50274
|
},
|
|
50206
|
-
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items
|
|
50275
|
+
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items: each paragraph becomes one item, so create one paragraph per item first. 'empty' creates a new empty list at 'at'."
|
|
50207
50276
|
},
|
|
50208
50277
|
{
|
|
50209
50278
|
"name": "at",
|
|
@@ -50518,7 +50587,7 @@ const CONTRACT = {
|
|
|
50518
50587
|
"empty",
|
|
50519
50588
|
"fromParagraphs"
|
|
50520
50589
|
],
|
|
50521
|
-
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items
|
|
50590
|
+
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items: each paragraph becomes one item, so create one paragraph per item first. 'empty' creates a new empty list at 'at'."
|
|
50522
50591
|
},
|
|
50523
50592
|
"at": {
|
|
50524
50593
|
"$ref": "#/$defs/BlockAddress",
|
|
@@ -51156,7 +51225,9 @@ const CONTRACT = {
|
|
|
51156
51225
|
"success",
|
|
51157
51226
|
"failure"
|
|
51158
51227
|
]
|
|
51159
|
-
}
|
|
51228
|
+
},
|
|
51229
|
+
"intentGroup": "list",
|
|
51230
|
+
"intentAction": "attach"
|
|
51160
51231
|
},
|
|
51161
51232
|
"doc.lists.detach": {
|
|
51162
51233
|
"operationId": "doc.lists.detach",
|
|
@@ -52454,19 +52525,19 @@ const CONTRACT = {
|
|
|
52454
52525
|
]
|
|
52455
52526
|
}
|
|
52456
52527
|
},
|
|
52457
|
-
"doc.lists.
|
|
52458
|
-
"operationId": "doc.lists.
|
|
52528
|
+
"doc.lists.merge": {
|
|
52529
|
+
"operationId": "doc.lists.merge",
|
|
52459
52530
|
"sdkSurface": "document",
|
|
52460
|
-
"command": "lists
|
|
52531
|
+
"command": "lists merge",
|
|
52461
52532
|
"commandTokens": [
|
|
52462
52533
|
"lists",
|
|
52463
|
-
"
|
|
52534
|
+
"merge"
|
|
52464
52535
|
],
|
|
52465
52536
|
"category": "lists",
|
|
52466
|
-
"description": "
|
|
52537
|
+
"description": "Compound: merge two adjacent list sequences into one. Reassigns numId on the absorbed sequence (no strict abstractNumId check: absorbed items adopt the absorbing definition) and deletes empty paragraphs between the two sequences. Use this instead of lists.join for the user-facing \"merge these lists\" intent.",
|
|
52467
52538
|
"requiresDocumentContext": true,
|
|
52468
52539
|
"docRequirement": "optional",
|
|
52469
|
-
"responseEnvelopeKey":
|
|
52540
|
+
"responseEnvelopeKey": null,
|
|
52470
52541
|
"params": [
|
|
52471
52542
|
{
|
|
52472
52543
|
"name": "doc",
|
|
@@ -52525,6 +52596,7 @@ const CONTRACT = {
|
|
|
52525
52596
|
"kind": "jsonFlag",
|
|
52526
52597
|
"type": "json",
|
|
52527
52598
|
"flag": "target-json",
|
|
52599
|
+
"required": true,
|
|
52528
52600
|
"schema": {
|
|
52529
52601
|
"type": "object",
|
|
52530
52602
|
"properties": {
|
|
@@ -52546,23 +52618,20 @@ const CONTRACT = {
|
|
|
52546
52618
|
}
|
|
52547
52619
|
},
|
|
52548
52620
|
{
|
|
52549
|
-
"name": "
|
|
52550
|
-
"kind": "flag",
|
|
52551
|
-
"type": "number"
|
|
52552
|
-
},
|
|
52553
|
-
{
|
|
52554
|
-
"name": "input",
|
|
52555
|
-
"kind": "jsonFlag",
|
|
52556
|
-
"type": "json",
|
|
52557
|
-
"flag": "input-json",
|
|
52558
|
-
"description": "Operation input as JSON object."
|
|
52559
|
-
},
|
|
52560
|
-
{
|
|
52561
|
-
"name": "nodeId",
|
|
52621
|
+
"name": "direction",
|
|
52562
52622
|
"kind": "flag",
|
|
52563
52623
|
"type": "string",
|
|
52564
|
-
"
|
|
52565
|
-
"
|
|
52624
|
+
"required": true,
|
|
52625
|
+
"schema": {
|
|
52626
|
+
"oneOf": [
|
|
52627
|
+
{
|
|
52628
|
+
"const": "withPrevious"
|
|
52629
|
+
},
|
|
52630
|
+
{
|
|
52631
|
+
"const": "withNext"
|
|
52632
|
+
}
|
|
52633
|
+
]
|
|
52634
|
+
}
|
|
52566
52635
|
}
|
|
52567
52636
|
],
|
|
52568
52637
|
"constraints": null,
|
|
@@ -52576,16 +52645,17 @@ const CONTRACT = {
|
|
|
52576
52645
|
"target": {
|
|
52577
52646
|
"$ref": "#/$defs/ListItemAddress"
|
|
52578
52647
|
},
|
|
52579
|
-
"
|
|
52580
|
-
"
|
|
52581
|
-
|
|
52582
|
-
|
|
52648
|
+
"direction": {
|
|
52649
|
+
"enum": [
|
|
52650
|
+
"withPrevious",
|
|
52651
|
+
"withNext"
|
|
52652
|
+
]
|
|
52583
52653
|
}
|
|
52584
52654
|
},
|
|
52585
52655
|
"additionalProperties": false,
|
|
52586
52656
|
"required": [
|
|
52587
52657
|
"target",
|
|
52588
|
-
"
|
|
52658
|
+
"direction"
|
|
52589
52659
|
]
|
|
52590
52660
|
},
|
|
52591
52661
|
"outputSchema": {
|
|
@@ -52596,14 +52666,22 @@ const CONTRACT = {
|
|
|
52596
52666
|
"success": {
|
|
52597
52667
|
"const": true
|
|
52598
52668
|
},
|
|
52599
|
-
"
|
|
52600
|
-
"
|
|
52669
|
+
"listId": {
|
|
52670
|
+
"type": "string"
|
|
52671
|
+
},
|
|
52672
|
+
"absorbedCount": {
|
|
52673
|
+
"type": "integer"
|
|
52674
|
+
},
|
|
52675
|
+
"removedEmptyBlocks": {
|
|
52676
|
+
"type": "integer"
|
|
52601
52677
|
}
|
|
52602
52678
|
},
|
|
52603
52679
|
"additionalProperties": false,
|
|
52604
52680
|
"required": [
|
|
52605
52681
|
"success",
|
|
52606
|
-
"
|
|
52682
|
+
"listId",
|
|
52683
|
+
"absorbedCount",
|
|
52684
|
+
"removedEmptyBlocks"
|
|
52607
52685
|
]
|
|
52608
52686
|
},
|
|
52609
52687
|
{
|
|
@@ -52618,7 +52696,7 @@ const CONTRACT = {
|
|
|
52618
52696
|
"code": {
|
|
52619
52697
|
"enum": [
|
|
52620
52698
|
"INVALID_TARGET",
|
|
52621
|
-
"
|
|
52699
|
+
"NO_ADJACENT_SEQUENCE",
|
|
52622
52700
|
"NO_OP"
|
|
52623
52701
|
]
|
|
52624
52702
|
},
|
|
@@ -52648,14 +52726,22 @@ const CONTRACT = {
|
|
|
52648
52726
|
"success": {
|
|
52649
52727
|
"const": true
|
|
52650
52728
|
},
|
|
52651
|
-
"
|
|
52652
|
-
"
|
|
52729
|
+
"listId": {
|
|
52730
|
+
"type": "string"
|
|
52731
|
+
},
|
|
52732
|
+
"absorbedCount": {
|
|
52733
|
+
"type": "integer"
|
|
52734
|
+
},
|
|
52735
|
+
"removedEmptyBlocks": {
|
|
52736
|
+
"type": "integer"
|
|
52653
52737
|
}
|
|
52654
52738
|
},
|
|
52655
52739
|
"additionalProperties": false,
|
|
52656
52740
|
"required": [
|
|
52657
52741
|
"success",
|
|
52658
|
-
"
|
|
52742
|
+
"listId",
|
|
52743
|
+
"absorbedCount",
|
|
52744
|
+
"removedEmptyBlocks"
|
|
52659
52745
|
]
|
|
52660
52746
|
},
|
|
52661
52747
|
"failureSchema": {
|
|
@@ -52670,7 +52756,7 @@ const CONTRACT = {
|
|
|
52670
52756
|
"code": {
|
|
52671
52757
|
"enum": [
|
|
52672
52758
|
"INVALID_TARGET",
|
|
52673
|
-
"
|
|
52759
|
+
"NO_ADJACENT_SEQUENCE",
|
|
52674
52760
|
"NO_OP"
|
|
52675
52761
|
]
|
|
52676
52762
|
},
|
|
@@ -52693,21 +52779,21 @@ const CONTRACT = {
|
|
|
52693
52779
|
]
|
|
52694
52780
|
},
|
|
52695
52781
|
"intentGroup": "list",
|
|
52696
|
-
"intentAction": "
|
|
52782
|
+
"intentAction": "merge"
|
|
52697
52783
|
},
|
|
52698
|
-
"doc.lists.
|
|
52699
|
-
"operationId": "doc.lists.
|
|
52784
|
+
"doc.lists.split": {
|
|
52785
|
+
"operationId": "doc.lists.split",
|
|
52700
52786
|
"sdkSurface": "document",
|
|
52701
|
-
"command": "lists
|
|
52787
|
+
"command": "lists split",
|
|
52702
52788
|
"commandTokens": [
|
|
52703
52789
|
"lists",
|
|
52704
|
-
"
|
|
52790
|
+
"split"
|
|
52705
52791
|
],
|
|
52706
52792
|
"category": "lists",
|
|
52707
|
-
"description": "
|
|
52793
|
+
"description": "Compound: split a list sequence at the target item into two independent sequences. Runs lists.separate then (by default) lists.setValue(1) so the new half starts numbering fresh at 1. Pass restartNumbering:false for raw separate semantics (new half continues the previous count).",
|
|
52708
52794
|
"requiresDocumentContext": true,
|
|
52709
52795
|
"docRequirement": "optional",
|
|
52710
|
-
"responseEnvelopeKey":
|
|
52796
|
+
"responseEnvelopeKey": null,
|
|
52711
52797
|
"params": [
|
|
52712
52798
|
{
|
|
52713
52799
|
"name": "doc",
|
|
@@ -52766,6 +52852,7 @@ const CONTRACT = {
|
|
|
52766
52852
|
"kind": "jsonFlag",
|
|
52767
52853
|
"type": "json",
|
|
52768
52854
|
"flag": "target-json",
|
|
52855
|
+
"required": true,
|
|
52769
52856
|
"schema": {
|
|
52770
52857
|
"type": "object",
|
|
52771
52858
|
"properties": {
|
|
@@ -52787,27 +52874,10 @@ const CONTRACT = {
|
|
|
52787
52874
|
}
|
|
52788
52875
|
},
|
|
52789
52876
|
{
|
|
52790
|
-
"name": "
|
|
52791
|
-
"kind": "jsonFlag",
|
|
52792
|
-
"type": "json",
|
|
52793
|
-
"flag": "value-json",
|
|
52794
|
-
"schema": {
|
|
52795
|
-
"type": "json"
|
|
52796
|
-
}
|
|
52797
|
-
},
|
|
52798
|
-
{
|
|
52799
|
-
"name": "input",
|
|
52800
|
-
"kind": "jsonFlag",
|
|
52801
|
-
"type": "json",
|
|
52802
|
-
"flag": "input-json",
|
|
52803
|
-
"description": "Operation input as JSON object."
|
|
52804
|
-
},
|
|
52805
|
-
{
|
|
52806
|
-
"name": "nodeId",
|
|
52877
|
+
"name": "restartNumbering",
|
|
52807
52878
|
"kind": "flag",
|
|
52808
|
-
"type": "
|
|
52809
|
-
"flag": "
|
|
52810
|
-
"description": "Node ID of the target list item."
|
|
52879
|
+
"type": "boolean",
|
|
52880
|
+
"flag": "restart-numbering"
|
|
52811
52881
|
}
|
|
52812
52882
|
],
|
|
52813
52883
|
"constraints": null,
|
|
@@ -52821,17 +52891,13 @@ const CONTRACT = {
|
|
|
52821
52891
|
"target": {
|
|
52822
52892
|
"$ref": "#/$defs/ListItemAddress"
|
|
52823
52893
|
},
|
|
52824
|
-
"
|
|
52825
|
-
"type":
|
|
52826
|
-
"integer",
|
|
52827
|
-
"null"
|
|
52828
|
-
]
|
|
52894
|
+
"restartNumbering": {
|
|
52895
|
+
"type": "boolean"
|
|
52829
52896
|
}
|
|
52830
52897
|
},
|
|
52831
52898
|
"additionalProperties": false,
|
|
52832
52899
|
"required": [
|
|
52833
|
-
"target"
|
|
52834
|
-
"value"
|
|
52900
|
+
"target"
|
|
52835
52901
|
]
|
|
52836
52902
|
},
|
|
52837
52903
|
"outputSchema": {
|
|
@@ -52842,14 +52908,25 @@ const CONTRACT = {
|
|
|
52842
52908
|
"success": {
|
|
52843
52909
|
"const": true
|
|
52844
52910
|
},
|
|
52845
|
-
"
|
|
52846
|
-
"
|
|
52911
|
+
"listId": {
|
|
52912
|
+
"type": "string"
|
|
52913
|
+
},
|
|
52914
|
+
"numId": {
|
|
52915
|
+
"type": "integer"
|
|
52916
|
+
},
|
|
52917
|
+
"restartedAt": {
|
|
52918
|
+
"type": [
|
|
52919
|
+
"integer",
|
|
52920
|
+
"null"
|
|
52921
|
+
]
|
|
52847
52922
|
}
|
|
52848
52923
|
},
|
|
52849
52924
|
"additionalProperties": false,
|
|
52850
52925
|
"required": [
|
|
52851
52926
|
"success",
|
|
52852
|
-
"
|
|
52927
|
+
"listId",
|
|
52928
|
+
"numId",
|
|
52929
|
+
"restartedAt"
|
|
52853
52930
|
]
|
|
52854
52931
|
},
|
|
52855
52932
|
{
|
|
@@ -52893,14 +52970,25 @@ const CONTRACT = {
|
|
|
52893
52970
|
"success": {
|
|
52894
52971
|
"const": true
|
|
52895
52972
|
},
|
|
52896
|
-
"
|
|
52897
|
-
"
|
|
52973
|
+
"listId": {
|
|
52974
|
+
"type": "string"
|
|
52975
|
+
},
|
|
52976
|
+
"numId": {
|
|
52977
|
+
"type": "integer"
|
|
52978
|
+
},
|
|
52979
|
+
"restartedAt": {
|
|
52980
|
+
"type": [
|
|
52981
|
+
"integer",
|
|
52982
|
+
"null"
|
|
52983
|
+
]
|
|
52898
52984
|
}
|
|
52899
52985
|
},
|
|
52900
52986
|
"additionalProperties": false,
|
|
52901
52987
|
"required": [
|
|
52902
52988
|
"success",
|
|
52903
|
-
"
|
|
52989
|
+
"listId",
|
|
52990
|
+
"numId",
|
|
52991
|
+
"restartedAt"
|
|
52904
52992
|
]
|
|
52905
52993
|
},
|
|
52906
52994
|
"failureSchema": {
|
|
@@ -52935,18 +53023,20 @@ const CONTRACT = {
|
|
|
52935
53023
|
"success",
|
|
52936
53024
|
"failure"
|
|
52937
53025
|
]
|
|
52938
|
-
}
|
|
53026
|
+
},
|
|
53027
|
+
"intentGroup": "list",
|
|
53028
|
+
"intentAction": "split"
|
|
52939
53029
|
},
|
|
52940
|
-
"doc.lists.
|
|
52941
|
-
"operationId": "doc.lists.
|
|
53030
|
+
"doc.lists.setLevel": {
|
|
53031
|
+
"operationId": "doc.lists.setLevel",
|
|
52942
53032
|
"sdkSurface": "document",
|
|
52943
|
-
"command": "lists
|
|
53033
|
+
"command": "lists set-level",
|
|
52944
53034
|
"commandTokens": [
|
|
52945
53035
|
"lists",
|
|
52946
|
-
"
|
|
53036
|
+
"set-level"
|
|
52947
53037
|
],
|
|
52948
53038
|
"category": "lists",
|
|
52949
|
-
"description": "
|
|
53039
|
+
"description": "Set the absolute nesting level (0..8) of a list item.",
|
|
52950
53040
|
"requiresDocumentContext": true,
|
|
52951
53041
|
"docRequirement": "optional",
|
|
52952
53042
|
"responseEnvelopeKey": "result",
|
|
@@ -53028,6 +53118,11 @@ const CONTRACT = {
|
|
|
53028
53118
|
]
|
|
53029
53119
|
}
|
|
53030
53120
|
},
|
|
53121
|
+
{
|
|
53122
|
+
"name": "level",
|
|
53123
|
+
"kind": "flag",
|
|
53124
|
+
"type": "number"
|
|
53125
|
+
},
|
|
53031
53126
|
{
|
|
53032
53127
|
"name": "input",
|
|
53033
53128
|
"kind": "jsonFlag",
|
|
@@ -53053,11 +53148,17 @@ const CONTRACT = {
|
|
|
53053
53148
|
"properties": {
|
|
53054
53149
|
"target": {
|
|
53055
53150
|
"$ref": "#/$defs/ListItemAddress"
|
|
53151
|
+
},
|
|
53152
|
+
"level": {
|
|
53153
|
+
"type": "integer",
|
|
53154
|
+
"minimum": 0,
|
|
53155
|
+
"maximum": 8
|
|
53056
53156
|
}
|
|
53057
53157
|
},
|
|
53058
53158
|
"additionalProperties": false,
|
|
53059
53159
|
"required": [
|
|
53060
|
-
"target"
|
|
53160
|
+
"target",
|
|
53161
|
+
"level"
|
|
53061
53162
|
]
|
|
53062
53163
|
},
|
|
53063
53164
|
"outputSchema": {
|
|
@@ -53090,8 +53191,8 @@ const CONTRACT = {
|
|
|
53090
53191
|
"code": {
|
|
53091
53192
|
"enum": [
|
|
53092
53193
|
"INVALID_TARGET",
|
|
53093
|
-
"
|
|
53094
|
-
"
|
|
53194
|
+
"LEVEL_OUT_OF_RANGE",
|
|
53195
|
+
"NO_OP"
|
|
53095
53196
|
]
|
|
53096
53197
|
},
|
|
53097
53198
|
"message": {
|
|
@@ -53142,8 +53243,8 @@ const CONTRACT = {
|
|
|
53142
53243
|
"code": {
|
|
53143
53244
|
"enum": [
|
|
53144
53245
|
"INVALID_TARGET",
|
|
53145
|
-
"
|
|
53146
|
-
"
|
|
53246
|
+
"LEVEL_OUT_OF_RANGE",
|
|
53247
|
+
"NO_OP"
|
|
53147
53248
|
]
|
|
53148
53249
|
},
|
|
53149
53250
|
"message": {
|
|
@@ -53163,18 +53264,494 @@ const CONTRACT = {
|
|
|
53163
53264
|
"success",
|
|
53164
53265
|
"failure"
|
|
53165
53266
|
]
|
|
53166
|
-
}
|
|
53267
|
+
},
|
|
53268
|
+
"intentGroup": "list",
|
|
53269
|
+
"intentAction": "set_level"
|
|
53167
53270
|
},
|
|
53168
|
-
"doc.lists.
|
|
53169
|
-
"operationId": "doc.lists.
|
|
53271
|
+
"doc.lists.setValue": {
|
|
53272
|
+
"operationId": "doc.lists.setValue",
|
|
53170
53273
|
"sdkSurface": "document",
|
|
53171
|
-
"command": "lists
|
|
53274
|
+
"command": "lists set-value",
|
|
53172
53275
|
"commandTokens": [
|
|
53173
53276
|
"lists",
|
|
53174
|
-
"
|
|
53277
|
+
"set-value"
|
|
53175
53278
|
],
|
|
53176
53279
|
"category": "lists",
|
|
53177
|
-
"description": "
|
|
53280
|
+
"description": "Set an explicit numbering value at the target item. Mid-sequence targets are atomically separated first.",
|
|
53281
|
+
"requiresDocumentContext": true,
|
|
53282
|
+
"docRequirement": "optional",
|
|
53283
|
+
"responseEnvelopeKey": "result",
|
|
53284
|
+
"params": [
|
|
53285
|
+
{
|
|
53286
|
+
"name": "doc",
|
|
53287
|
+
"kind": "doc",
|
|
53288
|
+
"type": "string",
|
|
53289
|
+
"description": "Document path. Optional when a session is already open."
|
|
53290
|
+
},
|
|
53291
|
+
{
|
|
53292
|
+
"name": "sessionId",
|
|
53293
|
+
"kind": "flag",
|
|
53294
|
+
"type": "string",
|
|
53295
|
+
"flag": "session",
|
|
53296
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
53297
|
+
},
|
|
53298
|
+
{
|
|
53299
|
+
"name": "out",
|
|
53300
|
+
"kind": "flag",
|
|
53301
|
+
"type": "string",
|
|
53302
|
+
"agentVisible": false
|
|
53303
|
+
},
|
|
53304
|
+
{
|
|
53305
|
+
"name": "force",
|
|
53306
|
+
"kind": "flag",
|
|
53307
|
+
"type": "boolean",
|
|
53308
|
+
"description": "Bypass confirmation checks."
|
|
53309
|
+
},
|
|
53310
|
+
{
|
|
53311
|
+
"name": "expectedRevision",
|
|
53312
|
+
"kind": "flag",
|
|
53313
|
+
"type": "number",
|
|
53314
|
+
"flag": "expected-revision",
|
|
53315
|
+
"agentVisible": false
|
|
53316
|
+
},
|
|
53317
|
+
{
|
|
53318
|
+
"name": "changeMode",
|
|
53319
|
+
"kind": "flag",
|
|
53320
|
+
"type": "string",
|
|
53321
|
+
"flag": "change-mode",
|
|
53322
|
+
"schema": {
|
|
53323
|
+
"enum": [
|
|
53324
|
+
"direct",
|
|
53325
|
+
"tracked"
|
|
53326
|
+
]
|
|
53327
|
+
},
|
|
53328
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
53329
|
+
},
|
|
53330
|
+
{
|
|
53331
|
+
"name": "dryRun",
|
|
53332
|
+
"kind": "flag",
|
|
53333
|
+
"type": "boolean",
|
|
53334
|
+
"flag": "dry-run",
|
|
53335
|
+
"description": "Preview the result without applying changes."
|
|
53336
|
+
},
|
|
53337
|
+
{
|
|
53338
|
+
"name": "target",
|
|
53339
|
+
"kind": "jsonFlag",
|
|
53340
|
+
"type": "json",
|
|
53341
|
+
"flag": "target-json",
|
|
53342
|
+
"schema": {
|
|
53343
|
+
"type": "object",
|
|
53344
|
+
"properties": {
|
|
53345
|
+
"kind": {
|
|
53346
|
+
"const": "block"
|
|
53347
|
+
},
|
|
53348
|
+
"nodeType": {
|
|
53349
|
+
"const": "listItem"
|
|
53350
|
+
},
|
|
53351
|
+
"nodeId": {
|
|
53352
|
+
"type": "string"
|
|
53353
|
+
}
|
|
53354
|
+
},
|
|
53355
|
+
"required": [
|
|
53356
|
+
"kind",
|
|
53357
|
+
"nodeType",
|
|
53358
|
+
"nodeId"
|
|
53359
|
+
]
|
|
53360
|
+
}
|
|
53361
|
+
},
|
|
53362
|
+
{
|
|
53363
|
+
"name": "value",
|
|
53364
|
+
"kind": "jsonFlag",
|
|
53365
|
+
"type": "json",
|
|
53366
|
+
"flag": "value-json",
|
|
53367
|
+
"schema": {
|
|
53368
|
+
"type": "json"
|
|
53369
|
+
}
|
|
53370
|
+
},
|
|
53371
|
+
{
|
|
53372
|
+
"name": "input",
|
|
53373
|
+
"kind": "jsonFlag",
|
|
53374
|
+
"type": "json",
|
|
53375
|
+
"flag": "input-json",
|
|
53376
|
+
"description": "Operation input as JSON object."
|
|
53377
|
+
},
|
|
53378
|
+
{
|
|
53379
|
+
"name": "nodeId",
|
|
53380
|
+
"kind": "flag",
|
|
53381
|
+
"type": "string",
|
|
53382
|
+
"flag": "node-id",
|
|
53383
|
+
"description": "Node ID of the target list item."
|
|
53384
|
+
}
|
|
53385
|
+
],
|
|
53386
|
+
"constraints": null,
|
|
53387
|
+
"mutates": true,
|
|
53388
|
+
"idempotency": "conditional",
|
|
53389
|
+
"supportsTrackedMode": false,
|
|
53390
|
+
"supportsDryRun": true,
|
|
53391
|
+
"inputSchema": {
|
|
53392
|
+
"type": "object",
|
|
53393
|
+
"properties": {
|
|
53394
|
+
"target": {
|
|
53395
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
53396
|
+
},
|
|
53397
|
+
"value": {
|
|
53398
|
+
"type": [
|
|
53399
|
+
"integer",
|
|
53400
|
+
"null"
|
|
53401
|
+
]
|
|
53402
|
+
}
|
|
53403
|
+
},
|
|
53404
|
+
"additionalProperties": false,
|
|
53405
|
+
"required": [
|
|
53406
|
+
"target",
|
|
53407
|
+
"value"
|
|
53408
|
+
]
|
|
53409
|
+
},
|
|
53410
|
+
"outputSchema": {
|
|
53411
|
+
"oneOf": [
|
|
53412
|
+
{
|
|
53413
|
+
"type": "object",
|
|
53414
|
+
"properties": {
|
|
53415
|
+
"success": {
|
|
53416
|
+
"const": true
|
|
53417
|
+
},
|
|
53418
|
+
"item": {
|
|
53419
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
53420
|
+
}
|
|
53421
|
+
},
|
|
53422
|
+
"additionalProperties": false,
|
|
53423
|
+
"required": [
|
|
53424
|
+
"success",
|
|
53425
|
+
"item"
|
|
53426
|
+
]
|
|
53427
|
+
},
|
|
53428
|
+
{
|
|
53429
|
+
"type": "object",
|
|
53430
|
+
"properties": {
|
|
53431
|
+
"success": {
|
|
53432
|
+
"const": false
|
|
53433
|
+
},
|
|
53434
|
+
"failure": {
|
|
53435
|
+
"type": "object",
|
|
53436
|
+
"properties": {
|
|
53437
|
+
"code": {
|
|
53438
|
+
"enum": [
|
|
53439
|
+
"INVALID_TARGET",
|
|
53440
|
+
"NO_OP"
|
|
53441
|
+
]
|
|
53442
|
+
},
|
|
53443
|
+
"message": {
|
|
53444
|
+
"type": "string"
|
|
53445
|
+
},
|
|
53446
|
+
"details": {}
|
|
53447
|
+
},
|
|
53448
|
+
"additionalProperties": false,
|
|
53449
|
+
"required": [
|
|
53450
|
+
"code",
|
|
53451
|
+
"message"
|
|
53452
|
+
]
|
|
53453
|
+
}
|
|
53454
|
+
},
|
|
53455
|
+
"additionalProperties": false,
|
|
53456
|
+
"required": [
|
|
53457
|
+
"success",
|
|
53458
|
+
"failure"
|
|
53459
|
+
]
|
|
53460
|
+
}
|
|
53461
|
+
]
|
|
53462
|
+
},
|
|
53463
|
+
"successSchema": {
|
|
53464
|
+
"type": "object",
|
|
53465
|
+
"properties": {
|
|
53466
|
+
"success": {
|
|
53467
|
+
"const": true
|
|
53468
|
+
},
|
|
53469
|
+
"item": {
|
|
53470
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
53471
|
+
}
|
|
53472
|
+
},
|
|
53473
|
+
"additionalProperties": false,
|
|
53474
|
+
"required": [
|
|
53475
|
+
"success",
|
|
53476
|
+
"item"
|
|
53477
|
+
]
|
|
53478
|
+
},
|
|
53479
|
+
"failureSchema": {
|
|
53480
|
+
"type": "object",
|
|
53481
|
+
"properties": {
|
|
53482
|
+
"success": {
|
|
53483
|
+
"const": false
|
|
53484
|
+
},
|
|
53485
|
+
"failure": {
|
|
53486
|
+
"type": "object",
|
|
53487
|
+
"properties": {
|
|
53488
|
+
"code": {
|
|
53489
|
+
"enum": [
|
|
53490
|
+
"INVALID_TARGET",
|
|
53491
|
+
"NO_OP"
|
|
53492
|
+
]
|
|
53493
|
+
},
|
|
53494
|
+
"message": {
|
|
53495
|
+
"type": "string"
|
|
53496
|
+
},
|
|
53497
|
+
"details": {}
|
|
53498
|
+
},
|
|
53499
|
+
"additionalProperties": false,
|
|
53500
|
+
"required": [
|
|
53501
|
+
"code",
|
|
53502
|
+
"message"
|
|
53503
|
+
]
|
|
53504
|
+
}
|
|
53505
|
+
},
|
|
53506
|
+
"additionalProperties": false,
|
|
53507
|
+
"required": [
|
|
53508
|
+
"success",
|
|
53509
|
+
"failure"
|
|
53510
|
+
]
|
|
53511
|
+
},
|
|
53512
|
+
"intentGroup": "list",
|
|
53513
|
+
"intentAction": "set_value"
|
|
53514
|
+
},
|
|
53515
|
+
"doc.lists.continuePrevious": {
|
|
53516
|
+
"operationId": "doc.lists.continuePrevious",
|
|
53517
|
+
"sdkSurface": "document",
|
|
53518
|
+
"command": "lists continue-previous",
|
|
53519
|
+
"commandTokens": [
|
|
53520
|
+
"lists",
|
|
53521
|
+
"continue-previous"
|
|
53522
|
+
],
|
|
53523
|
+
"category": "lists",
|
|
53524
|
+
"description": "Continue numbering from the nearest compatible previous list sequence.",
|
|
53525
|
+
"requiresDocumentContext": true,
|
|
53526
|
+
"docRequirement": "optional",
|
|
53527
|
+
"responseEnvelopeKey": "result",
|
|
53528
|
+
"params": [
|
|
53529
|
+
{
|
|
53530
|
+
"name": "doc",
|
|
53531
|
+
"kind": "doc",
|
|
53532
|
+
"type": "string",
|
|
53533
|
+
"description": "Document path. Optional when a session is already open."
|
|
53534
|
+
},
|
|
53535
|
+
{
|
|
53536
|
+
"name": "sessionId",
|
|
53537
|
+
"kind": "flag",
|
|
53538
|
+
"type": "string",
|
|
53539
|
+
"flag": "session",
|
|
53540
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
53541
|
+
},
|
|
53542
|
+
{
|
|
53543
|
+
"name": "out",
|
|
53544
|
+
"kind": "flag",
|
|
53545
|
+
"type": "string",
|
|
53546
|
+
"agentVisible": false
|
|
53547
|
+
},
|
|
53548
|
+
{
|
|
53549
|
+
"name": "force",
|
|
53550
|
+
"kind": "flag",
|
|
53551
|
+
"type": "boolean",
|
|
53552
|
+
"description": "Bypass confirmation checks."
|
|
53553
|
+
},
|
|
53554
|
+
{
|
|
53555
|
+
"name": "expectedRevision",
|
|
53556
|
+
"kind": "flag",
|
|
53557
|
+
"type": "number",
|
|
53558
|
+
"flag": "expected-revision",
|
|
53559
|
+
"agentVisible": false
|
|
53560
|
+
},
|
|
53561
|
+
{
|
|
53562
|
+
"name": "changeMode",
|
|
53563
|
+
"kind": "flag",
|
|
53564
|
+
"type": "string",
|
|
53565
|
+
"flag": "change-mode",
|
|
53566
|
+
"schema": {
|
|
53567
|
+
"enum": [
|
|
53568
|
+
"direct",
|
|
53569
|
+
"tracked"
|
|
53570
|
+
]
|
|
53571
|
+
},
|
|
53572
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
53573
|
+
},
|
|
53574
|
+
{
|
|
53575
|
+
"name": "dryRun",
|
|
53576
|
+
"kind": "flag",
|
|
53577
|
+
"type": "boolean",
|
|
53578
|
+
"flag": "dry-run",
|
|
53579
|
+
"description": "Preview the result without applying changes."
|
|
53580
|
+
},
|
|
53581
|
+
{
|
|
53582
|
+
"name": "target",
|
|
53583
|
+
"kind": "jsonFlag",
|
|
53584
|
+
"type": "json",
|
|
53585
|
+
"flag": "target-json",
|
|
53586
|
+
"schema": {
|
|
53587
|
+
"type": "object",
|
|
53588
|
+
"properties": {
|
|
53589
|
+
"kind": {
|
|
53590
|
+
"const": "block"
|
|
53591
|
+
},
|
|
53592
|
+
"nodeType": {
|
|
53593
|
+
"const": "listItem"
|
|
53594
|
+
},
|
|
53595
|
+
"nodeId": {
|
|
53596
|
+
"type": "string"
|
|
53597
|
+
}
|
|
53598
|
+
},
|
|
53599
|
+
"required": [
|
|
53600
|
+
"kind",
|
|
53601
|
+
"nodeType",
|
|
53602
|
+
"nodeId"
|
|
53603
|
+
]
|
|
53604
|
+
}
|
|
53605
|
+
},
|
|
53606
|
+
{
|
|
53607
|
+
"name": "input",
|
|
53608
|
+
"kind": "jsonFlag",
|
|
53609
|
+
"type": "json",
|
|
53610
|
+
"flag": "input-json",
|
|
53611
|
+
"description": "Operation input as JSON object."
|
|
53612
|
+
},
|
|
53613
|
+
{
|
|
53614
|
+
"name": "nodeId",
|
|
53615
|
+
"kind": "flag",
|
|
53616
|
+
"type": "string",
|
|
53617
|
+
"flag": "node-id",
|
|
53618
|
+
"description": "Node ID of the target list item."
|
|
53619
|
+
}
|
|
53620
|
+
],
|
|
53621
|
+
"constraints": null,
|
|
53622
|
+
"mutates": true,
|
|
53623
|
+
"idempotency": "conditional",
|
|
53624
|
+
"supportsTrackedMode": false,
|
|
53625
|
+
"supportsDryRun": true,
|
|
53626
|
+
"inputSchema": {
|
|
53627
|
+
"type": "object",
|
|
53628
|
+
"properties": {
|
|
53629
|
+
"target": {
|
|
53630
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
53631
|
+
}
|
|
53632
|
+
},
|
|
53633
|
+
"additionalProperties": false,
|
|
53634
|
+
"required": [
|
|
53635
|
+
"target"
|
|
53636
|
+
]
|
|
53637
|
+
},
|
|
53638
|
+
"outputSchema": {
|
|
53639
|
+
"oneOf": [
|
|
53640
|
+
{
|
|
53641
|
+
"type": "object",
|
|
53642
|
+
"properties": {
|
|
53643
|
+
"success": {
|
|
53644
|
+
"const": true
|
|
53645
|
+
},
|
|
53646
|
+
"item": {
|
|
53647
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
53648
|
+
}
|
|
53649
|
+
},
|
|
53650
|
+
"additionalProperties": false,
|
|
53651
|
+
"required": [
|
|
53652
|
+
"success",
|
|
53653
|
+
"item"
|
|
53654
|
+
]
|
|
53655
|
+
},
|
|
53656
|
+
{
|
|
53657
|
+
"type": "object",
|
|
53658
|
+
"properties": {
|
|
53659
|
+
"success": {
|
|
53660
|
+
"const": false
|
|
53661
|
+
},
|
|
53662
|
+
"failure": {
|
|
53663
|
+
"type": "object",
|
|
53664
|
+
"properties": {
|
|
53665
|
+
"code": {
|
|
53666
|
+
"enum": [
|
|
53667
|
+
"INVALID_TARGET",
|
|
53668
|
+
"NO_COMPATIBLE_PREVIOUS",
|
|
53669
|
+
"ALREADY_CONTINUOUS"
|
|
53670
|
+
]
|
|
53671
|
+
},
|
|
53672
|
+
"message": {
|
|
53673
|
+
"type": "string"
|
|
53674
|
+
},
|
|
53675
|
+
"details": {}
|
|
53676
|
+
},
|
|
53677
|
+
"additionalProperties": false,
|
|
53678
|
+
"required": [
|
|
53679
|
+
"code",
|
|
53680
|
+
"message"
|
|
53681
|
+
]
|
|
53682
|
+
}
|
|
53683
|
+
},
|
|
53684
|
+
"additionalProperties": false,
|
|
53685
|
+
"required": [
|
|
53686
|
+
"success",
|
|
53687
|
+
"failure"
|
|
53688
|
+
]
|
|
53689
|
+
}
|
|
53690
|
+
]
|
|
53691
|
+
},
|
|
53692
|
+
"successSchema": {
|
|
53693
|
+
"type": "object",
|
|
53694
|
+
"properties": {
|
|
53695
|
+
"success": {
|
|
53696
|
+
"const": true
|
|
53697
|
+
},
|
|
53698
|
+
"item": {
|
|
53699
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
53700
|
+
}
|
|
53701
|
+
},
|
|
53702
|
+
"additionalProperties": false,
|
|
53703
|
+
"required": [
|
|
53704
|
+
"success",
|
|
53705
|
+
"item"
|
|
53706
|
+
]
|
|
53707
|
+
},
|
|
53708
|
+
"failureSchema": {
|
|
53709
|
+
"type": "object",
|
|
53710
|
+
"properties": {
|
|
53711
|
+
"success": {
|
|
53712
|
+
"const": false
|
|
53713
|
+
},
|
|
53714
|
+
"failure": {
|
|
53715
|
+
"type": "object",
|
|
53716
|
+
"properties": {
|
|
53717
|
+
"code": {
|
|
53718
|
+
"enum": [
|
|
53719
|
+
"INVALID_TARGET",
|
|
53720
|
+
"NO_COMPATIBLE_PREVIOUS",
|
|
53721
|
+
"ALREADY_CONTINUOUS"
|
|
53722
|
+
]
|
|
53723
|
+
},
|
|
53724
|
+
"message": {
|
|
53725
|
+
"type": "string"
|
|
53726
|
+
},
|
|
53727
|
+
"details": {}
|
|
53728
|
+
},
|
|
53729
|
+
"additionalProperties": false,
|
|
53730
|
+
"required": [
|
|
53731
|
+
"code",
|
|
53732
|
+
"message"
|
|
53733
|
+
]
|
|
53734
|
+
}
|
|
53735
|
+
},
|
|
53736
|
+
"additionalProperties": false,
|
|
53737
|
+
"required": [
|
|
53738
|
+
"success",
|
|
53739
|
+
"failure"
|
|
53740
|
+
]
|
|
53741
|
+
},
|
|
53742
|
+
"intentGroup": "list",
|
|
53743
|
+
"intentAction": "continue_previous"
|
|
53744
|
+
},
|
|
53745
|
+
"doc.lists.canContinuePrevious": {
|
|
53746
|
+
"operationId": "doc.lists.canContinuePrevious",
|
|
53747
|
+
"sdkSurface": "document",
|
|
53748
|
+
"command": "lists can-continue-previous",
|
|
53749
|
+
"commandTokens": [
|
|
53750
|
+
"lists",
|
|
53751
|
+
"can-continue-previous"
|
|
53752
|
+
],
|
|
53753
|
+
"category": "lists",
|
|
53754
|
+
"description": "Check whether the target sequence can continue numbering from a previous compatible sequence.",
|
|
53178
53755
|
"requiresDocumentContext": true,
|
|
53179
53756
|
"docRequirement": "optional",
|
|
53180
53757
|
"responseEnvelopeKey": "result",
|
|
@@ -58112,7 +58689,7 @@ const CONTRACT = {
|
|
|
58112
58689
|
"set-level-number-style"
|
|
58113
58690
|
],
|
|
58114
58691
|
"category": "lists",
|
|
58115
|
-
"description": "Set the numbering style (e.g. decimal, lowerLetter, upperRoman) for a specific list level. Rejects \"bullet\"
|
|
58692
|
+
"description": "Set the numbering style (e.g. decimal, lowerLetter, upperRoman) for a specific list level. Rejects \"bullet\": use setLevelBullet instead. Sequence-local: clones shared definitions.",
|
|
58116
58693
|
"requiresDocumentContext": true,
|
|
58117
58694
|
"docRequirement": "optional",
|
|
58118
58695
|
"responseEnvelopeKey": null,
|
|
@@ -58838,7 +59415,7 @@ const CONTRACT = {
|
|
|
58838
59415
|
"set-level-layout"
|
|
58839
59416
|
],
|
|
58840
59417
|
"category": "lists",
|
|
58841
|
-
"description": "Set the layout properties (alignment, indentation, trailing character, tab stop) for a specific list level. Accepts partial updates
|
|
59418
|
+
"description": "Set the layout properties (alignment, indentation, trailing character, tab stop) for a specific list level. Accepts partial updates: omitted fields are left unchanged. Sequence-local: clones shared definitions.",
|
|
58842
59419
|
"requiresDocumentContext": true,
|
|
58843
59420
|
"docRequirement": "optional",
|
|
58844
59421
|
"responseEnvelopeKey": null,
|
|
@@ -59278,6 +59855,162 @@ const CONTRACT = {
|
|
|
59278
59855
|
"range"
|
|
59279
59856
|
]
|
|
59280
59857
|
}
|
|
59858
|
+
},
|
|
59859
|
+
"story": {
|
|
59860
|
+
"oneOf": [
|
|
59861
|
+
{
|
|
59862
|
+
"type": "object",
|
|
59863
|
+
"properties": {
|
|
59864
|
+
"kind": {
|
|
59865
|
+
"const": "story"
|
|
59866
|
+
},
|
|
59867
|
+
"storyType": {
|
|
59868
|
+
"const": "body"
|
|
59869
|
+
}
|
|
59870
|
+
},
|
|
59871
|
+
"required": [
|
|
59872
|
+
"kind",
|
|
59873
|
+
"storyType"
|
|
59874
|
+
]
|
|
59875
|
+
},
|
|
59876
|
+
{
|
|
59877
|
+
"type": "object",
|
|
59878
|
+
"properties": {
|
|
59879
|
+
"kind": {
|
|
59880
|
+
"const": "story"
|
|
59881
|
+
},
|
|
59882
|
+
"storyType": {
|
|
59883
|
+
"const": "headerFooterSlot"
|
|
59884
|
+
},
|
|
59885
|
+
"section": {
|
|
59886
|
+
"type": "object",
|
|
59887
|
+
"properties": {
|
|
59888
|
+
"kind": {
|
|
59889
|
+
"const": "section"
|
|
59890
|
+
},
|
|
59891
|
+
"sectionId": {
|
|
59892
|
+
"type": "string"
|
|
59893
|
+
}
|
|
59894
|
+
},
|
|
59895
|
+
"required": [
|
|
59896
|
+
"kind",
|
|
59897
|
+
"sectionId"
|
|
59898
|
+
]
|
|
59899
|
+
},
|
|
59900
|
+
"headerFooterKind": {
|
|
59901
|
+
"oneOf": [
|
|
59902
|
+
{
|
|
59903
|
+
"const": "header"
|
|
59904
|
+
},
|
|
59905
|
+
{
|
|
59906
|
+
"const": "footer"
|
|
59907
|
+
}
|
|
59908
|
+
]
|
|
59909
|
+
},
|
|
59910
|
+
"variant": {
|
|
59911
|
+
"oneOf": [
|
|
59912
|
+
{
|
|
59913
|
+
"const": "default"
|
|
59914
|
+
},
|
|
59915
|
+
{
|
|
59916
|
+
"const": "first"
|
|
59917
|
+
},
|
|
59918
|
+
{
|
|
59919
|
+
"const": "even"
|
|
59920
|
+
}
|
|
59921
|
+
]
|
|
59922
|
+
},
|
|
59923
|
+
"resolution": {
|
|
59924
|
+
"oneOf": [
|
|
59925
|
+
{
|
|
59926
|
+
"const": "effective"
|
|
59927
|
+
},
|
|
59928
|
+
{
|
|
59929
|
+
"const": "explicit"
|
|
59930
|
+
}
|
|
59931
|
+
]
|
|
59932
|
+
},
|
|
59933
|
+
"onWrite": {
|
|
59934
|
+
"oneOf": [
|
|
59935
|
+
{
|
|
59936
|
+
"const": "materializeIfInherited"
|
|
59937
|
+
},
|
|
59938
|
+
{
|
|
59939
|
+
"const": "editResolvedPart"
|
|
59940
|
+
},
|
|
59941
|
+
{
|
|
59942
|
+
"const": "error"
|
|
59943
|
+
}
|
|
59944
|
+
]
|
|
59945
|
+
}
|
|
59946
|
+
},
|
|
59947
|
+
"required": [
|
|
59948
|
+
"kind",
|
|
59949
|
+
"storyType",
|
|
59950
|
+
"section",
|
|
59951
|
+
"headerFooterKind",
|
|
59952
|
+
"variant"
|
|
59953
|
+
]
|
|
59954
|
+
},
|
|
59955
|
+
{
|
|
59956
|
+
"type": "object",
|
|
59957
|
+
"properties": {
|
|
59958
|
+
"kind": {
|
|
59959
|
+
"const": "story"
|
|
59960
|
+
},
|
|
59961
|
+
"storyType": {
|
|
59962
|
+
"const": "headerFooterPart"
|
|
59963
|
+
},
|
|
59964
|
+
"refId": {
|
|
59965
|
+
"type": "string"
|
|
59966
|
+
}
|
|
59967
|
+
},
|
|
59968
|
+
"required": [
|
|
59969
|
+
"kind",
|
|
59970
|
+
"storyType",
|
|
59971
|
+
"refId"
|
|
59972
|
+
]
|
|
59973
|
+
},
|
|
59974
|
+
{
|
|
59975
|
+
"type": "object",
|
|
59976
|
+
"properties": {
|
|
59977
|
+
"kind": {
|
|
59978
|
+
"const": "story"
|
|
59979
|
+
},
|
|
59980
|
+
"storyType": {
|
|
59981
|
+
"const": "footnote"
|
|
59982
|
+
},
|
|
59983
|
+
"noteId": {
|
|
59984
|
+
"type": "string"
|
|
59985
|
+
}
|
|
59986
|
+
},
|
|
59987
|
+
"required": [
|
|
59988
|
+
"kind",
|
|
59989
|
+
"storyType",
|
|
59990
|
+
"noteId"
|
|
59991
|
+
]
|
|
59992
|
+
},
|
|
59993
|
+
{
|
|
59994
|
+
"type": "object",
|
|
59995
|
+
"properties": {
|
|
59996
|
+
"kind": {
|
|
59997
|
+
"const": "story"
|
|
59998
|
+
},
|
|
59999
|
+
"storyType": {
|
|
60000
|
+
"const": "endnote"
|
|
60001
|
+
},
|
|
60002
|
+
"noteId": {
|
|
60003
|
+
"type": "string"
|
|
60004
|
+
}
|
|
60005
|
+
},
|
|
60006
|
+
"required": [
|
|
60007
|
+
"kind",
|
|
60008
|
+
"storyType",
|
|
60009
|
+
"noteId"
|
|
60010
|
+
]
|
|
60011
|
+
}
|
|
60012
|
+
],
|
|
60013
|
+
"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."
|
|
59281
60014
|
}
|
|
59282
60015
|
},
|
|
59283
60016
|
"required": [
|
|
@@ -59547,11 +60280,14 @@ const CONTRACT = {
|
|
|
59547
60280
|
"oneOf": [
|
|
59548
60281
|
{
|
|
59549
60282
|
"const": "resolved"
|
|
60283
|
+
},
|
|
60284
|
+
{
|
|
60285
|
+
"const": "active"
|
|
59550
60286
|
}
|
|
59551
60287
|
],
|
|
59552
|
-
"description": "Set comment status. Use 'resolved' to
|
|
60288
|
+
"description": "Set comment status. Use 'resolved' to resolve a comment, or 'active' to reopen a previously resolved comment (lifecycle inverse)."
|
|
59553
60289
|
},
|
|
59554
|
-
"description": "Set comment status. Use 'resolved' to
|
|
60290
|
+
"description": "Set comment status. Use 'resolved' to resolve a comment, or 'active' to reopen a previously resolved comment (lifecycle inverse)."
|
|
59555
60291
|
},
|
|
59556
60292
|
{
|
|
59557
60293
|
"name": "isInternal",
|
|
@@ -59603,9 +60339,10 @@ const CONTRACT = {
|
|
|
59603
60339
|
},
|
|
59604
60340
|
"status": {
|
|
59605
60341
|
"enum": [
|
|
59606
|
-
"resolved"
|
|
60342
|
+
"resolved",
|
|
60343
|
+
"active"
|
|
59607
60344
|
],
|
|
59608
|
-
"description": "Set comment status. Use 'resolved' to
|
|
60345
|
+
"description": "Set comment status. Use 'resolved' to resolve a comment, or 'active' to reopen a previously resolved comment (lifecycle inverse)."
|
|
59609
60346
|
},
|
|
59610
60347
|
"isInternal": {
|
|
59611
60348
|
"type": "boolean",
|
|
@@ -62501,6 +63238,18 @@ const CONTRACT = {
|
|
|
62501
63238
|
"type": "string"
|
|
62502
63239
|
}
|
|
62503
63240
|
},
|
|
63241
|
+
"activeCommentIds": {
|
|
63242
|
+
"type": "array",
|
|
63243
|
+
"items": {
|
|
63244
|
+
"type": "string"
|
|
63245
|
+
}
|
|
63246
|
+
},
|
|
63247
|
+
"activeChangeIds": {
|
|
63248
|
+
"type": "array",
|
|
63249
|
+
"items": {
|
|
63250
|
+
"type": "string"
|
|
63251
|
+
}
|
|
63252
|
+
},
|
|
62504
63253
|
"text": {
|
|
62505
63254
|
"type": "string"
|
|
62506
63255
|
}
|
|
@@ -62509,7 +63258,9 @@ const CONTRACT = {
|
|
|
62509
63258
|
"required": [
|
|
62510
63259
|
"empty",
|
|
62511
63260
|
"target",
|
|
62512
|
-
"activeMarks"
|
|
63261
|
+
"activeMarks",
|
|
63262
|
+
"activeCommentIds",
|
|
63263
|
+
"activeChangeIds"
|
|
62513
63264
|
]
|
|
62514
63265
|
}
|
|
62515
63266
|
},
|
|
@@ -79790,7 +80541,7 @@ const CONTRACT = {
|
|
|
79790
80541
|
"dryRun"
|
|
79791
80542
|
]
|
|
79792
80543
|
},
|
|
79793
|
-
"lists.
|
|
80544
|
+
"lists.merge": {
|
|
79794
80545
|
"type": "object",
|
|
79795
80546
|
"properties": {
|
|
79796
80547
|
"available": {
|
|
@@ -79825,7 +80576,7 @@ const CONTRACT = {
|
|
|
79825
80576
|
"dryRun"
|
|
79826
80577
|
]
|
|
79827
80578
|
},
|
|
79828
|
-
"lists.
|
|
80579
|
+
"lists.split": {
|
|
79829
80580
|
"type": "object",
|
|
79830
80581
|
"properties": {
|
|
79831
80582
|
"available": {
|
|
@@ -79860,7 +80611,7 @@ const CONTRACT = {
|
|
|
79860
80611
|
"dryRun"
|
|
79861
80612
|
]
|
|
79862
80613
|
},
|
|
79863
|
-
"lists.
|
|
80614
|
+
"lists.setLevel": {
|
|
79864
80615
|
"type": "object",
|
|
79865
80616
|
"properties": {
|
|
79866
80617
|
"available": {
|
|
@@ -79895,7 +80646,7 @@ const CONTRACT = {
|
|
|
79895
80646
|
"dryRun"
|
|
79896
80647
|
]
|
|
79897
80648
|
},
|
|
79898
|
-
"lists.
|
|
80649
|
+
"lists.setValue": {
|
|
79899
80650
|
"type": "object",
|
|
79900
80651
|
"properties": {
|
|
79901
80652
|
"available": {
|
|
@@ -79930,7 +80681,7 @@ const CONTRACT = {
|
|
|
79930
80681
|
"dryRun"
|
|
79931
80682
|
]
|
|
79932
80683
|
},
|
|
79933
|
-
"lists.
|
|
80684
|
+
"lists.continuePrevious": {
|
|
79934
80685
|
"type": "object",
|
|
79935
80686
|
"properties": {
|
|
79936
80687
|
"available": {
|
|
@@ -79965,7 +80716,7 @@ const CONTRACT = {
|
|
|
79965
80716
|
"dryRun"
|
|
79966
80717
|
]
|
|
79967
80718
|
},
|
|
79968
|
-
"lists.
|
|
80719
|
+
"lists.canContinuePrevious": {
|
|
79969
80720
|
"type": "object",
|
|
79970
80721
|
"properties": {
|
|
79971
80722
|
"available": {
|
|
@@ -80000,7 +80751,7 @@ const CONTRACT = {
|
|
|
80000
80751
|
"dryRun"
|
|
80001
80752
|
]
|
|
80002
80753
|
},
|
|
80003
|
-
"lists.
|
|
80754
|
+
"lists.setLevelRestart": {
|
|
80004
80755
|
"type": "object",
|
|
80005
80756
|
"properties": {
|
|
80006
80757
|
"available": {
|
|
@@ -80035,7 +80786,7 @@ const CONTRACT = {
|
|
|
80035
80786
|
"dryRun"
|
|
80036
80787
|
]
|
|
80037
80788
|
},
|
|
80038
|
-
"lists.
|
|
80789
|
+
"lists.convertToText": {
|
|
80039
80790
|
"type": "object",
|
|
80040
80791
|
"properties": {
|
|
80041
80792
|
"available": {
|
|
@@ -80070,7 +80821,7 @@ const CONTRACT = {
|
|
|
80070
80821
|
"dryRun"
|
|
80071
80822
|
]
|
|
80072
80823
|
},
|
|
80073
|
-
"lists.
|
|
80824
|
+
"lists.applyTemplate": {
|
|
80074
80825
|
"type": "object",
|
|
80075
80826
|
"properties": {
|
|
80076
80827
|
"available": {
|
|
@@ -80105,7 +80856,7 @@ const CONTRACT = {
|
|
|
80105
80856
|
"dryRun"
|
|
80106
80857
|
]
|
|
80107
80858
|
},
|
|
80108
|
-
"lists.
|
|
80859
|
+
"lists.applyPreset": {
|
|
80109
80860
|
"type": "object",
|
|
80110
80861
|
"properties": {
|
|
80111
80862
|
"available": {
|
|
@@ -80140,7 +80891,7 @@ const CONTRACT = {
|
|
|
80140
80891
|
"dryRun"
|
|
80141
80892
|
]
|
|
80142
80893
|
},
|
|
80143
|
-
"lists.
|
|
80894
|
+
"lists.setType": {
|
|
80144
80895
|
"type": "object",
|
|
80145
80896
|
"properties": {
|
|
80146
80897
|
"available": {
|
|
@@ -80175,7 +80926,7 @@ const CONTRACT = {
|
|
|
80175
80926
|
"dryRun"
|
|
80176
80927
|
]
|
|
80177
80928
|
},
|
|
80178
|
-
"lists.
|
|
80929
|
+
"lists.captureTemplate": {
|
|
80179
80930
|
"type": "object",
|
|
80180
80931
|
"properties": {
|
|
80181
80932
|
"available": {
|
|
@@ -80210,7 +80961,7 @@ const CONTRACT = {
|
|
|
80210
80961
|
"dryRun"
|
|
80211
80962
|
]
|
|
80212
80963
|
},
|
|
80213
|
-
"lists.
|
|
80964
|
+
"lists.setLevelNumbering": {
|
|
80214
80965
|
"type": "object",
|
|
80215
80966
|
"properties": {
|
|
80216
80967
|
"available": {
|
|
@@ -80245,7 +80996,7 @@ const CONTRACT = {
|
|
|
80245
80996
|
"dryRun"
|
|
80246
80997
|
]
|
|
80247
80998
|
},
|
|
80248
|
-
"lists.
|
|
80999
|
+
"lists.setLevelBullet": {
|
|
80249
81000
|
"type": "object",
|
|
80250
81001
|
"properties": {
|
|
80251
81002
|
"available": {
|
|
@@ -80280,7 +81031,7 @@ const CONTRACT = {
|
|
|
80280
81031
|
"dryRun"
|
|
80281
81032
|
]
|
|
80282
81033
|
},
|
|
80283
|
-
"lists.
|
|
81034
|
+
"lists.setLevelPictureBullet": {
|
|
80284
81035
|
"type": "object",
|
|
80285
81036
|
"properties": {
|
|
80286
81037
|
"available": {
|
|
@@ -80315,7 +81066,7 @@ const CONTRACT = {
|
|
|
80315
81066
|
"dryRun"
|
|
80316
81067
|
]
|
|
80317
81068
|
},
|
|
80318
|
-
"lists.
|
|
81069
|
+
"lists.setLevelAlignment": {
|
|
80319
81070
|
"type": "object",
|
|
80320
81071
|
"properties": {
|
|
80321
81072
|
"available": {
|
|
@@ -80350,7 +81101,7 @@ const CONTRACT = {
|
|
|
80350
81101
|
"dryRun"
|
|
80351
81102
|
]
|
|
80352
81103
|
},
|
|
80353
|
-
"lists.
|
|
81104
|
+
"lists.setLevelIndents": {
|
|
80354
81105
|
"type": "object",
|
|
80355
81106
|
"properties": {
|
|
80356
81107
|
"available": {
|
|
@@ -80385,7 +81136,7 @@ const CONTRACT = {
|
|
|
80385
81136
|
"dryRun"
|
|
80386
81137
|
]
|
|
80387
81138
|
},
|
|
80388
|
-
"lists.
|
|
81139
|
+
"lists.setLevelTrailingCharacter": {
|
|
80389
81140
|
"type": "object",
|
|
80390
81141
|
"properties": {
|
|
80391
81142
|
"available": {
|
|
@@ -80420,7 +81171,7 @@ const CONTRACT = {
|
|
|
80420
81171
|
"dryRun"
|
|
80421
81172
|
]
|
|
80422
81173
|
},
|
|
80423
|
-
"lists.
|
|
81174
|
+
"lists.setLevelMarkerFont": {
|
|
80424
81175
|
"type": "object",
|
|
80425
81176
|
"properties": {
|
|
80426
81177
|
"available": {
|
|
@@ -80455,7 +81206,7 @@ const CONTRACT = {
|
|
|
80455
81206
|
"dryRun"
|
|
80456
81207
|
]
|
|
80457
81208
|
},
|
|
80458
|
-
"lists.
|
|
81209
|
+
"lists.clearLevelOverrides": {
|
|
80459
81210
|
"type": "object",
|
|
80460
81211
|
"properties": {
|
|
80461
81212
|
"available": {
|
|
@@ -80490,7 +81241,7 @@ const CONTRACT = {
|
|
|
80490
81241
|
"dryRun"
|
|
80491
81242
|
]
|
|
80492
81243
|
},
|
|
80493
|
-
"lists.
|
|
81244
|
+
"lists.getStyle": {
|
|
80494
81245
|
"type": "object",
|
|
80495
81246
|
"properties": {
|
|
80496
81247
|
"available": {
|
|
@@ -80525,7 +81276,7 @@ const CONTRACT = {
|
|
|
80525
81276
|
"dryRun"
|
|
80526
81277
|
]
|
|
80527
81278
|
},
|
|
80528
|
-
"lists.
|
|
81279
|
+
"lists.applyStyle": {
|
|
80529
81280
|
"type": "object",
|
|
80530
81281
|
"properties": {
|
|
80531
81282
|
"available": {
|
|
@@ -80560,7 +81311,7 @@ const CONTRACT = {
|
|
|
80560
81311
|
"dryRun"
|
|
80561
81312
|
]
|
|
80562
81313
|
},
|
|
80563
|
-
"lists.
|
|
81314
|
+
"lists.restartAt": {
|
|
80564
81315
|
"type": "object",
|
|
80565
81316
|
"properties": {
|
|
80566
81317
|
"available": {
|
|
@@ -80595,7 +81346,7 @@ const CONTRACT = {
|
|
|
80595
81346
|
"dryRun"
|
|
80596
81347
|
]
|
|
80597
81348
|
},
|
|
80598
|
-
"lists.
|
|
81349
|
+
"lists.setLevelNumberStyle": {
|
|
80599
81350
|
"type": "object",
|
|
80600
81351
|
"properties": {
|
|
80601
81352
|
"available": {
|
|
@@ -80630,7 +81381,7 @@ const CONTRACT = {
|
|
|
80630
81381
|
"dryRun"
|
|
80631
81382
|
]
|
|
80632
81383
|
},
|
|
80633
|
-
"lists.
|
|
81384
|
+
"lists.setLevelText": {
|
|
80634
81385
|
"type": "object",
|
|
80635
81386
|
"properties": {
|
|
80636
81387
|
"available": {
|
|
@@ -80665,7 +81416,7 @@ const CONTRACT = {
|
|
|
80665
81416
|
"dryRun"
|
|
80666
81417
|
]
|
|
80667
81418
|
},
|
|
80668
|
-
"
|
|
81419
|
+
"lists.setLevelStart": {
|
|
80669
81420
|
"type": "object",
|
|
80670
81421
|
"properties": {
|
|
80671
81422
|
"available": {
|
|
@@ -80700,7 +81451,7 @@ const CONTRACT = {
|
|
|
80700
81451
|
"dryRun"
|
|
80701
81452
|
]
|
|
80702
81453
|
},
|
|
80703
|
-
"
|
|
81454
|
+
"lists.setLevelLayout": {
|
|
80704
81455
|
"type": "object",
|
|
80705
81456
|
"properties": {
|
|
80706
81457
|
"available": {
|
|
@@ -80735,7 +81486,7 @@ const CONTRACT = {
|
|
|
80735
81486
|
"dryRun"
|
|
80736
81487
|
]
|
|
80737
81488
|
},
|
|
80738
|
-
"comments.
|
|
81489
|
+
"comments.create": {
|
|
80739
81490
|
"type": "object",
|
|
80740
81491
|
"properties": {
|
|
80741
81492
|
"available": {
|
|
@@ -80770,7 +81521,7 @@ const CONTRACT = {
|
|
|
80770
81521
|
"dryRun"
|
|
80771
81522
|
]
|
|
80772
81523
|
},
|
|
80773
|
-
"comments.
|
|
81524
|
+
"comments.patch": {
|
|
80774
81525
|
"type": "object",
|
|
80775
81526
|
"properties": {
|
|
80776
81527
|
"available": {
|
|
@@ -80805,7 +81556,7 @@ const CONTRACT = {
|
|
|
80805
81556
|
"dryRun"
|
|
80806
81557
|
]
|
|
80807
81558
|
},
|
|
80808
|
-
"comments.
|
|
81559
|
+
"comments.delete": {
|
|
80809
81560
|
"type": "object",
|
|
80810
81561
|
"properties": {
|
|
80811
81562
|
"available": {
|
|
@@ -80840,7 +81591,7 @@ const CONTRACT = {
|
|
|
80840
81591
|
"dryRun"
|
|
80841
81592
|
]
|
|
80842
81593
|
},
|
|
80843
|
-
"
|
|
81594
|
+
"comments.get": {
|
|
80844
81595
|
"type": "object",
|
|
80845
81596
|
"properties": {
|
|
80846
81597
|
"available": {
|
|
@@ -80875,7 +81626,7 @@ const CONTRACT = {
|
|
|
80875
81626
|
"dryRun"
|
|
80876
81627
|
]
|
|
80877
81628
|
},
|
|
80878
|
-
"
|
|
81629
|
+
"comments.list": {
|
|
80879
81630
|
"type": "object",
|
|
80880
81631
|
"properties": {
|
|
80881
81632
|
"available": {
|
|
@@ -80910,7 +81661,7 @@ const CONTRACT = {
|
|
|
80910
81661
|
"dryRun"
|
|
80911
81662
|
]
|
|
80912
81663
|
},
|
|
80913
|
-
"trackChanges.
|
|
81664
|
+
"trackChanges.list": {
|
|
80914
81665
|
"type": "object",
|
|
80915
81666
|
"properties": {
|
|
80916
81667
|
"available": {
|
|
@@ -80945,7 +81696,7 @@ const CONTRACT = {
|
|
|
80945
81696
|
"dryRun"
|
|
80946
81697
|
]
|
|
80947
81698
|
},
|
|
80948
|
-
"
|
|
81699
|
+
"trackChanges.get": {
|
|
80949
81700
|
"type": "object",
|
|
80950
81701
|
"properties": {
|
|
80951
81702
|
"available": {
|
|
@@ -80980,7 +81731,7 @@ const CONTRACT = {
|
|
|
80980
81731
|
"dryRun"
|
|
80981
81732
|
]
|
|
80982
81733
|
},
|
|
80983
|
-
"
|
|
81734
|
+
"trackChanges.decide": {
|
|
80984
81735
|
"type": "object",
|
|
80985
81736
|
"properties": {
|
|
80986
81737
|
"available": {
|
|
@@ -81015,7 +81766,7 @@ const CONTRACT = {
|
|
|
81015
81766
|
"dryRun"
|
|
81016
81767
|
]
|
|
81017
81768
|
},
|
|
81018
|
-
"
|
|
81769
|
+
"query.match": {
|
|
81019
81770
|
"type": "object",
|
|
81020
81771
|
"properties": {
|
|
81021
81772
|
"available": {
|
|
@@ -81050,7 +81801,7 @@ const CONTRACT = {
|
|
|
81050
81801
|
"dryRun"
|
|
81051
81802
|
]
|
|
81052
81803
|
},
|
|
81053
|
-
"
|
|
81804
|
+
"ranges.resolve": {
|
|
81054
81805
|
"type": "object",
|
|
81055
81806
|
"properties": {
|
|
81056
81807
|
"available": {
|
|
@@ -81085,7 +81836,7 @@ const CONTRACT = {
|
|
|
81085
81836
|
"dryRun"
|
|
81086
81837
|
]
|
|
81087
81838
|
},
|
|
81088
|
-
"
|
|
81839
|
+
"selection.current": {
|
|
81089
81840
|
"type": "object",
|
|
81090
81841
|
"properties": {
|
|
81091
81842
|
"available": {
|
|
@@ -81120,7 +81871,7 @@ const CONTRACT = {
|
|
|
81120
81871
|
"dryRun"
|
|
81121
81872
|
]
|
|
81122
81873
|
},
|
|
81123
|
-
"
|
|
81874
|
+
"mutations.preview": {
|
|
81124
81875
|
"type": "object",
|
|
81125
81876
|
"properties": {
|
|
81126
81877
|
"available": {
|
|
@@ -81155,7 +81906,7 @@ const CONTRACT = {
|
|
|
81155
81906
|
"dryRun"
|
|
81156
81907
|
]
|
|
81157
81908
|
},
|
|
81158
|
-
"
|
|
81909
|
+
"mutations.apply": {
|
|
81159
81910
|
"type": "object",
|
|
81160
81911
|
"properties": {
|
|
81161
81912
|
"available": {
|
|
@@ -81190,7 +81941,7 @@ const CONTRACT = {
|
|
|
81190
81941
|
"dryRun"
|
|
81191
81942
|
]
|
|
81192
81943
|
},
|
|
81193
|
-
"
|
|
81944
|
+
"capabilities.get": {
|
|
81194
81945
|
"type": "object",
|
|
81195
81946
|
"properties": {
|
|
81196
81947
|
"available": {
|
|
@@ -81225,7 +81976,7 @@ const CONTRACT = {
|
|
|
81225
81976
|
"dryRun"
|
|
81226
81977
|
]
|
|
81227
81978
|
},
|
|
81228
|
-
"
|
|
81979
|
+
"create.table": {
|
|
81229
81980
|
"type": "object",
|
|
81230
81981
|
"properties": {
|
|
81231
81982
|
"available": {
|
|
@@ -81260,7 +82011,7 @@ const CONTRACT = {
|
|
|
81260
82011
|
"dryRun"
|
|
81261
82012
|
]
|
|
81262
82013
|
},
|
|
81263
|
-
"tables.
|
|
82014
|
+
"tables.convertFromText": {
|
|
81264
82015
|
"type": "object",
|
|
81265
82016
|
"properties": {
|
|
81266
82017
|
"available": {
|
|
@@ -81295,7 +82046,7 @@ const CONTRACT = {
|
|
|
81295
82046
|
"dryRun"
|
|
81296
82047
|
]
|
|
81297
82048
|
},
|
|
81298
|
-
"tables.
|
|
82049
|
+
"tables.delete": {
|
|
81299
82050
|
"type": "object",
|
|
81300
82051
|
"properties": {
|
|
81301
82052
|
"available": {
|
|
@@ -81330,7 +82081,77 @@ const CONTRACT = {
|
|
|
81330
82081
|
"dryRun"
|
|
81331
82082
|
]
|
|
81332
82083
|
},
|
|
81333
|
-
"tables.
|
|
82084
|
+
"tables.clearContents": {
|
|
82085
|
+
"type": "object",
|
|
82086
|
+
"properties": {
|
|
82087
|
+
"available": {
|
|
82088
|
+
"type": "boolean"
|
|
82089
|
+
},
|
|
82090
|
+
"tracked": {
|
|
82091
|
+
"type": "boolean"
|
|
82092
|
+
},
|
|
82093
|
+
"dryRun": {
|
|
82094
|
+
"type": "boolean"
|
|
82095
|
+
},
|
|
82096
|
+
"reasons": {
|
|
82097
|
+
"type": "array",
|
|
82098
|
+
"items": {
|
|
82099
|
+
"enum": [
|
|
82100
|
+
"COMMAND_UNAVAILABLE",
|
|
82101
|
+
"HELPER_UNAVAILABLE",
|
|
82102
|
+
"OPERATION_UNAVAILABLE",
|
|
82103
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
82104
|
+
"DRY_RUN_UNAVAILABLE",
|
|
82105
|
+
"NAMESPACE_UNAVAILABLE",
|
|
82106
|
+
"STYLES_PART_MISSING",
|
|
82107
|
+
"COLLABORATION_ACTIVE"
|
|
82108
|
+
]
|
|
82109
|
+
}
|
|
82110
|
+
}
|
|
82111
|
+
},
|
|
82112
|
+
"additionalProperties": false,
|
|
82113
|
+
"required": [
|
|
82114
|
+
"available",
|
|
82115
|
+
"tracked",
|
|
82116
|
+
"dryRun"
|
|
82117
|
+
]
|
|
82118
|
+
},
|
|
82119
|
+
"tables.move": {
|
|
82120
|
+
"type": "object",
|
|
82121
|
+
"properties": {
|
|
82122
|
+
"available": {
|
|
82123
|
+
"type": "boolean"
|
|
82124
|
+
},
|
|
82125
|
+
"tracked": {
|
|
82126
|
+
"type": "boolean"
|
|
82127
|
+
},
|
|
82128
|
+
"dryRun": {
|
|
82129
|
+
"type": "boolean"
|
|
82130
|
+
},
|
|
82131
|
+
"reasons": {
|
|
82132
|
+
"type": "array",
|
|
82133
|
+
"items": {
|
|
82134
|
+
"enum": [
|
|
82135
|
+
"COMMAND_UNAVAILABLE",
|
|
82136
|
+
"HELPER_UNAVAILABLE",
|
|
82137
|
+
"OPERATION_UNAVAILABLE",
|
|
82138
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
82139
|
+
"DRY_RUN_UNAVAILABLE",
|
|
82140
|
+
"NAMESPACE_UNAVAILABLE",
|
|
82141
|
+
"STYLES_PART_MISSING",
|
|
82142
|
+
"COLLABORATION_ACTIVE"
|
|
82143
|
+
]
|
|
82144
|
+
}
|
|
82145
|
+
}
|
|
82146
|
+
},
|
|
82147
|
+
"additionalProperties": false,
|
|
82148
|
+
"required": [
|
|
82149
|
+
"available",
|
|
82150
|
+
"tracked",
|
|
82151
|
+
"dryRun"
|
|
82152
|
+
]
|
|
82153
|
+
},
|
|
82154
|
+
"tables.split": {
|
|
81334
82155
|
"type": "object",
|
|
81335
82156
|
"properties": {
|
|
81336
82157
|
"available": {
|
|
@@ -89428,6 +90249,8 @@ const CONTRACT = {
|
|
|
89428
90249
|
"lists.join",
|
|
89429
90250
|
"lists.canJoin",
|
|
89430
90251
|
"lists.separate",
|
|
90252
|
+
"lists.merge",
|
|
90253
|
+
"lists.split",
|
|
89431
90254
|
"lists.setLevel",
|
|
89432
90255
|
"lists.setValue",
|
|
89433
90256
|
"lists.continuePrevious",
|
|
@@ -130771,6 +131594,170 @@ const CONTRACT = {
|
|
|
130771
131594
|
"name": "offset",
|
|
130772
131595
|
"kind": "flag",
|
|
130773
131596
|
"type": "number"
|
|
131597
|
+
},
|
|
131598
|
+
{
|
|
131599
|
+
"name": "in",
|
|
131600
|
+
"kind": "jsonFlag",
|
|
131601
|
+
"type": "json",
|
|
131602
|
+
"flag": "in-json",
|
|
131603
|
+
"schema": {
|
|
131604
|
+
"oneOf": [
|
|
131605
|
+
{
|
|
131606
|
+
"type": "object",
|
|
131607
|
+
"properties": {
|
|
131608
|
+
"kind": {
|
|
131609
|
+
"const": "story"
|
|
131610
|
+
},
|
|
131611
|
+
"storyType": {
|
|
131612
|
+
"const": "body"
|
|
131613
|
+
}
|
|
131614
|
+
},
|
|
131615
|
+
"required": [
|
|
131616
|
+
"kind",
|
|
131617
|
+
"storyType"
|
|
131618
|
+
]
|
|
131619
|
+
},
|
|
131620
|
+
{
|
|
131621
|
+
"type": "object",
|
|
131622
|
+
"properties": {
|
|
131623
|
+
"kind": {
|
|
131624
|
+
"const": "story"
|
|
131625
|
+
},
|
|
131626
|
+
"storyType": {
|
|
131627
|
+
"const": "headerFooterSlot"
|
|
131628
|
+
},
|
|
131629
|
+
"section": {
|
|
131630
|
+
"type": "object",
|
|
131631
|
+
"properties": {
|
|
131632
|
+
"kind": {
|
|
131633
|
+
"const": "section"
|
|
131634
|
+
},
|
|
131635
|
+
"sectionId": {
|
|
131636
|
+
"type": "string"
|
|
131637
|
+
}
|
|
131638
|
+
},
|
|
131639
|
+
"required": [
|
|
131640
|
+
"kind",
|
|
131641
|
+
"sectionId"
|
|
131642
|
+
]
|
|
131643
|
+
},
|
|
131644
|
+
"headerFooterKind": {
|
|
131645
|
+
"oneOf": [
|
|
131646
|
+
{
|
|
131647
|
+
"const": "header"
|
|
131648
|
+
},
|
|
131649
|
+
{
|
|
131650
|
+
"const": "footer"
|
|
131651
|
+
}
|
|
131652
|
+
]
|
|
131653
|
+
},
|
|
131654
|
+
"variant": {
|
|
131655
|
+
"oneOf": [
|
|
131656
|
+
{
|
|
131657
|
+
"const": "default"
|
|
131658
|
+
},
|
|
131659
|
+
{
|
|
131660
|
+
"const": "first"
|
|
131661
|
+
},
|
|
131662
|
+
{
|
|
131663
|
+
"const": "even"
|
|
131664
|
+
}
|
|
131665
|
+
]
|
|
131666
|
+
},
|
|
131667
|
+
"resolution": {
|
|
131668
|
+
"oneOf": [
|
|
131669
|
+
{
|
|
131670
|
+
"const": "effective"
|
|
131671
|
+
},
|
|
131672
|
+
{
|
|
131673
|
+
"const": "explicit"
|
|
131674
|
+
}
|
|
131675
|
+
]
|
|
131676
|
+
},
|
|
131677
|
+
"onWrite": {
|
|
131678
|
+
"oneOf": [
|
|
131679
|
+
{
|
|
131680
|
+
"const": "materializeIfInherited"
|
|
131681
|
+
},
|
|
131682
|
+
{
|
|
131683
|
+
"const": "editResolvedPart"
|
|
131684
|
+
},
|
|
131685
|
+
{
|
|
131686
|
+
"const": "error"
|
|
131687
|
+
}
|
|
131688
|
+
]
|
|
131689
|
+
}
|
|
131690
|
+
},
|
|
131691
|
+
"required": [
|
|
131692
|
+
"kind",
|
|
131693
|
+
"storyType",
|
|
131694
|
+
"section",
|
|
131695
|
+
"headerFooterKind",
|
|
131696
|
+
"variant"
|
|
131697
|
+
]
|
|
131698
|
+
},
|
|
131699
|
+
{
|
|
131700
|
+
"type": "object",
|
|
131701
|
+
"properties": {
|
|
131702
|
+
"kind": {
|
|
131703
|
+
"const": "story"
|
|
131704
|
+
},
|
|
131705
|
+
"storyType": {
|
|
131706
|
+
"const": "headerFooterPart"
|
|
131707
|
+
},
|
|
131708
|
+
"refId": {
|
|
131709
|
+
"type": "string"
|
|
131710
|
+
}
|
|
131711
|
+
},
|
|
131712
|
+
"required": [
|
|
131713
|
+
"kind",
|
|
131714
|
+
"storyType",
|
|
131715
|
+
"refId"
|
|
131716
|
+
]
|
|
131717
|
+
},
|
|
131718
|
+
{
|
|
131719
|
+
"type": "object",
|
|
131720
|
+
"properties": {
|
|
131721
|
+
"kind": {
|
|
131722
|
+
"const": "story"
|
|
131723
|
+
},
|
|
131724
|
+
"storyType": {
|
|
131725
|
+
"const": "footnote"
|
|
131726
|
+
},
|
|
131727
|
+
"noteId": {
|
|
131728
|
+
"type": "string"
|
|
131729
|
+
}
|
|
131730
|
+
},
|
|
131731
|
+
"required": [
|
|
131732
|
+
"kind",
|
|
131733
|
+
"storyType",
|
|
131734
|
+
"noteId"
|
|
131735
|
+
]
|
|
131736
|
+
},
|
|
131737
|
+
{
|
|
131738
|
+
"type": "object",
|
|
131739
|
+
"properties": {
|
|
131740
|
+
"kind": {
|
|
131741
|
+
"const": "story"
|
|
131742
|
+
},
|
|
131743
|
+
"storyType": {
|
|
131744
|
+
"const": "endnote"
|
|
131745
|
+
},
|
|
131746
|
+
"noteId": {
|
|
131747
|
+
"type": "string"
|
|
131748
|
+
}
|
|
131749
|
+
},
|
|
131750
|
+
"required": [
|
|
131751
|
+
"kind",
|
|
131752
|
+
"storyType",
|
|
131753
|
+
"noteId"
|
|
131754
|
+
]
|
|
131755
|
+
}
|
|
131756
|
+
],
|
|
131757
|
+
"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."
|
|
131758
|
+
},
|
|
131759
|
+
"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.",
|
|
131760
|
+
"agentVisible": false
|
|
130774
131761
|
}
|
|
130775
131762
|
],
|
|
130776
131763
|
"constraints": null,
|
|
@@ -130788,6 +131775,9 @@ const CONTRACT = {
|
|
|
130788
131775
|
"offset": {
|
|
130789
131776
|
"type": "integer",
|
|
130790
131777
|
"minimum": 0
|
|
131778
|
+
},
|
|
131779
|
+
"in": {
|
|
131780
|
+
"$ref": "#/$defs/StoryLocator"
|
|
130791
131781
|
}
|
|
130792
131782
|
},
|
|
130793
131783
|
"additionalProperties": false
|
|
@@ -130840,6 +131830,162 @@ const CONTRACT = {
|
|
|
130840
131830
|
},
|
|
130841
131831
|
"name": {
|
|
130842
131832
|
"type": "string"
|
|
131833
|
+
},
|
|
131834
|
+
"story": {
|
|
131835
|
+
"oneOf": [
|
|
131836
|
+
{
|
|
131837
|
+
"type": "object",
|
|
131838
|
+
"properties": {
|
|
131839
|
+
"kind": {
|
|
131840
|
+
"const": "story"
|
|
131841
|
+
},
|
|
131842
|
+
"storyType": {
|
|
131843
|
+
"const": "body"
|
|
131844
|
+
}
|
|
131845
|
+
},
|
|
131846
|
+
"required": [
|
|
131847
|
+
"kind",
|
|
131848
|
+
"storyType"
|
|
131849
|
+
]
|
|
131850
|
+
},
|
|
131851
|
+
{
|
|
131852
|
+
"type": "object",
|
|
131853
|
+
"properties": {
|
|
131854
|
+
"kind": {
|
|
131855
|
+
"const": "story"
|
|
131856
|
+
},
|
|
131857
|
+
"storyType": {
|
|
131858
|
+
"const": "headerFooterSlot"
|
|
131859
|
+
},
|
|
131860
|
+
"section": {
|
|
131861
|
+
"type": "object",
|
|
131862
|
+
"properties": {
|
|
131863
|
+
"kind": {
|
|
131864
|
+
"const": "section"
|
|
131865
|
+
},
|
|
131866
|
+
"sectionId": {
|
|
131867
|
+
"type": "string"
|
|
131868
|
+
}
|
|
131869
|
+
},
|
|
131870
|
+
"required": [
|
|
131871
|
+
"kind",
|
|
131872
|
+
"sectionId"
|
|
131873
|
+
]
|
|
131874
|
+
},
|
|
131875
|
+
"headerFooterKind": {
|
|
131876
|
+
"oneOf": [
|
|
131877
|
+
{
|
|
131878
|
+
"const": "header"
|
|
131879
|
+
},
|
|
131880
|
+
{
|
|
131881
|
+
"const": "footer"
|
|
131882
|
+
}
|
|
131883
|
+
]
|
|
131884
|
+
},
|
|
131885
|
+
"variant": {
|
|
131886
|
+
"oneOf": [
|
|
131887
|
+
{
|
|
131888
|
+
"const": "default"
|
|
131889
|
+
},
|
|
131890
|
+
{
|
|
131891
|
+
"const": "first"
|
|
131892
|
+
},
|
|
131893
|
+
{
|
|
131894
|
+
"const": "even"
|
|
131895
|
+
}
|
|
131896
|
+
]
|
|
131897
|
+
},
|
|
131898
|
+
"resolution": {
|
|
131899
|
+
"oneOf": [
|
|
131900
|
+
{
|
|
131901
|
+
"const": "effective"
|
|
131902
|
+
},
|
|
131903
|
+
{
|
|
131904
|
+
"const": "explicit"
|
|
131905
|
+
}
|
|
131906
|
+
]
|
|
131907
|
+
},
|
|
131908
|
+
"onWrite": {
|
|
131909
|
+
"oneOf": [
|
|
131910
|
+
{
|
|
131911
|
+
"const": "materializeIfInherited"
|
|
131912
|
+
},
|
|
131913
|
+
{
|
|
131914
|
+
"const": "editResolvedPart"
|
|
131915
|
+
},
|
|
131916
|
+
{
|
|
131917
|
+
"const": "error"
|
|
131918
|
+
}
|
|
131919
|
+
]
|
|
131920
|
+
}
|
|
131921
|
+
},
|
|
131922
|
+
"required": [
|
|
131923
|
+
"kind",
|
|
131924
|
+
"storyType",
|
|
131925
|
+
"section",
|
|
131926
|
+
"headerFooterKind",
|
|
131927
|
+
"variant"
|
|
131928
|
+
]
|
|
131929
|
+
},
|
|
131930
|
+
{
|
|
131931
|
+
"type": "object",
|
|
131932
|
+
"properties": {
|
|
131933
|
+
"kind": {
|
|
131934
|
+
"const": "story"
|
|
131935
|
+
},
|
|
131936
|
+
"storyType": {
|
|
131937
|
+
"const": "headerFooterPart"
|
|
131938
|
+
},
|
|
131939
|
+
"refId": {
|
|
131940
|
+
"type": "string"
|
|
131941
|
+
}
|
|
131942
|
+
},
|
|
131943
|
+
"required": [
|
|
131944
|
+
"kind",
|
|
131945
|
+
"storyType",
|
|
131946
|
+
"refId"
|
|
131947
|
+
]
|
|
131948
|
+
},
|
|
131949
|
+
{
|
|
131950
|
+
"type": "object",
|
|
131951
|
+
"properties": {
|
|
131952
|
+
"kind": {
|
|
131953
|
+
"const": "story"
|
|
131954
|
+
},
|
|
131955
|
+
"storyType": {
|
|
131956
|
+
"const": "footnote"
|
|
131957
|
+
},
|
|
131958
|
+
"noteId": {
|
|
131959
|
+
"type": "string"
|
|
131960
|
+
}
|
|
131961
|
+
},
|
|
131962
|
+
"required": [
|
|
131963
|
+
"kind",
|
|
131964
|
+
"storyType",
|
|
131965
|
+
"noteId"
|
|
131966
|
+
]
|
|
131967
|
+
},
|
|
131968
|
+
{
|
|
131969
|
+
"type": "object",
|
|
131970
|
+
"properties": {
|
|
131971
|
+
"kind": {
|
|
131972
|
+
"const": "story"
|
|
131973
|
+
},
|
|
131974
|
+
"storyType": {
|
|
131975
|
+
"const": "endnote"
|
|
131976
|
+
},
|
|
131977
|
+
"noteId": {
|
|
131978
|
+
"type": "string"
|
|
131979
|
+
}
|
|
131980
|
+
},
|
|
131981
|
+
"required": [
|
|
131982
|
+
"kind",
|
|
131983
|
+
"storyType",
|
|
131984
|
+
"noteId"
|
|
131985
|
+
]
|
|
131986
|
+
}
|
|
131987
|
+
],
|
|
131988
|
+
"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."
|
|
130843
131989
|
}
|
|
130844
131990
|
},
|
|
130845
131991
|
"required": [
|
|
@@ -130869,6 +132015,9 @@ const CONTRACT = {
|
|
|
130869
132015
|
},
|
|
130870
132016
|
"name": {
|
|
130871
132017
|
"type": "string"
|
|
132018
|
+
},
|
|
132019
|
+
"story": {
|
|
132020
|
+
"$ref": "#/$defs/StoryLocator"
|
|
130872
132021
|
}
|
|
130873
132022
|
},
|
|
130874
132023
|
"additionalProperties": false,
|
|
@@ -131001,6 +132150,162 @@ const CONTRACT = {
|
|
|
131001
132150
|
"range"
|
|
131002
132151
|
]
|
|
131003
132152
|
}
|
|
132153
|
+
},
|
|
132154
|
+
"story": {
|
|
132155
|
+
"oneOf": [
|
|
132156
|
+
{
|
|
132157
|
+
"type": "object",
|
|
132158
|
+
"properties": {
|
|
132159
|
+
"kind": {
|
|
132160
|
+
"const": "story"
|
|
132161
|
+
},
|
|
132162
|
+
"storyType": {
|
|
132163
|
+
"const": "body"
|
|
132164
|
+
}
|
|
132165
|
+
},
|
|
132166
|
+
"required": [
|
|
132167
|
+
"kind",
|
|
132168
|
+
"storyType"
|
|
132169
|
+
]
|
|
132170
|
+
},
|
|
132171
|
+
{
|
|
132172
|
+
"type": "object",
|
|
132173
|
+
"properties": {
|
|
132174
|
+
"kind": {
|
|
132175
|
+
"const": "story"
|
|
132176
|
+
},
|
|
132177
|
+
"storyType": {
|
|
132178
|
+
"const": "headerFooterSlot"
|
|
132179
|
+
},
|
|
132180
|
+
"section": {
|
|
132181
|
+
"type": "object",
|
|
132182
|
+
"properties": {
|
|
132183
|
+
"kind": {
|
|
132184
|
+
"const": "section"
|
|
132185
|
+
},
|
|
132186
|
+
"sectionId": {
|
|
132187
|
+
"type": "string"
|
|
132188
|
+
}
|
|
132189
|
+
},
|
|
132190
|
+
"required": [
|
|
132191
|
+
"kind",
|
|
132192
|
+
"sectionId"
|
|
132193
|
+
]
|
|
132194
|
+
},
|
|
132195
|
+
"headerFooterKind": {
|
|
132196
|
+
"oneOf": [
|
|
132197
|
+
{
|
|
132198
|
+
"const": "header"
|
|
132199
|
+
},
|
|
132200
|
+
{
|
|
132201
|
+
"const": "footer"
|
|
132202
|
+
}
|
|
132203
|
+
]
|
|
132204
|
+
},
|
|
132205
|
+
"variant": {
|
|
132206
|
+
"oneOf": [
|
|
132207
|
+
{
|
|
132208
|
+
"const": "default"
|
|
132209
|
+
},
|
|
132210
|
+
{
|
|
132211
|
+
"const": "first"
|
|
132212
|
+
},
|
|
132213
|
+
{
|
|
132214
|
+
"const": "even"
|
|
132215
|
+
}
|
|
132216
|
+
]
|
|
132217
|
+
},
|
|
132218
|
+
"resolution": {
|
|
132219
|
+
"oneOf": [
|
|
132220
|
+
{
|
|
132221
|
+
"const": "effective"
|
|
132222
|
+
},
|
|
132223
|
+
{
|
|
132224
|
+
"const": "explicit"
|
|
132225
|
+
}
|
|
132226
|
+
]
|
|
132227
|
+
},
|
|
132228
|
+
"onWrite": {
|
|
132229
|
+
"oneOf": [
|
|
132230
|
+
{
|
|
132231
|
+
"const": "materializeIfInherited"
|
|
132232
|
+
},
|
|
132233
|
+
{
|
|
132234
|
+
"const": "editResolvedPart"
|
|
132235
|
+
},
|
|
132236
|
+
{
|
|
132237
|
+
"const": "error"
|
|
132238
|
+
}
|
|
132239
|
+
]
|
|
132240
|
+
}
|
|
132241
|
+
},
|
|
132242
|
+
"required": [
|
|
132243
|
+
"kind",
|
|
132244
|
+
"storyType",
|
|
132245
|
+
"section",
|
|
132246
|
+
"headerFooterKind",
|
|
132247
|
+
"variant"
|
|
132248
|
+
]
|
|
132249
|
+
},
|
|
132250
|
+
{
|
|
132251
|
+
"type": "object",
|
|
132252
|
+
"properties": {
|
|
132253
|
+
"kind": {
|
|
132254
|
+
"const": "story"
|
|
132255
|
+
},
|
|
132256
|
+
"storyType": {
|
|
132257
|
+
"const": "headerFooterPart"
|
|
132258
|
+
},
|
|
132259
|
+
"refId": {
|
|
132260
|
+
"type": "string"
|
|
132261
|
+
}
|
|
132262
|
+
},
|
|
132263
|
+
"required": [
|
|
132264
|
+
"kind",
|
|
132265
|
+
"storyType",
|
|
132266
|
+
"refId"
|
|
132267
|
+
]
|
|
132268
|
+
},
|
|
132269
|
+
{
|
|
132270
|
+
"type": "object",
|
|
132271
|
+
"properties": {
|
|
132272
|
+
"kind": {
|
|
132273
|
+
"const": "story"
|
|
132274
|
+
},
|
|
132275
|
+
"storyType": {
|
|
132276
|
+
"const": "footnote"
|
|
132277
|
+
},
|
|
132278
|
+
"noteId": {
|
|
132279
|
+
"type": "string"
|
|
132280
|
+
}
|
|
132281
|
+
},
|
|
132282
|
+
"required": [
|
|
132283
|
+
"kind",
|
|
132284
|
+
"storyType",
|
|
132285
|
+
"noteId"
|
|
132286
|
+
]
|
|
132287
|
+
},
|
|
132288
|
+
{
|
|
132289
|
+
"type": "object",
|
|
132290
|
+
"properties": {
|
|
132291
|
+
"kind": {
|
|
132292
|
+
"const": "story"
|
|
132293
|
+
},
|
|
132294
|
+
"storyType": {
|
|
132295
|
+
"const": "endnote"
|
|
132296
|
+
},
|
|
132297
|
+
"noteId": {
|
|
132298
|
+
"type": "string"
|
|
132299
|
+
}
|
|
132300
|
+
},
|
|
132301
|
+
"required": [
|
|
132302
|
+
"kind",
|
|
132303
|
+
"storyType",
|
|
132304
|
+
"noteId"
|
|
132305
|
+
]
|
|
132306
|
+
}
|
|
132307
|
+
],
|
|
132308
|
+
"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."
|
|
131004
132309
|
}
|
|
131005
132310
|
},
|
|
131006
132311
|
"required": [
|
|
@@ -131087,6 +132392,9 @@ const CONTRACT = {
|
|
|
131087
132392
|
},
|
|
131088
132393
|
"name": {
|
|
131089
132394
|
"type": "string"
|
|
132395
|
+
},
|
|
132396
|
+
"story": {
|
|
132397
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131090
132398
|
}
|
|
131091
132399
|
},
|
|
131092
132400
|
"additionalProperties": false,
|
|
@@ -131152,6 +132460,9 @@ const CONTRACT = {
|
|
|
131152
132460
|
},
|
|
131153
132461
|
"name": {
|
|
131154
132462
|
"type": "string"
|
|
132463
|
+
},
|
|
132464
|
+
"story": {
|
|
132465
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131155
132466
|
}
|
|
131156
132467
|
},
|
|
131157
132468
|
"additionalProperties": false,
|
|
@@ -131282,6 +132593,162 @@ const CONTRACT = {
|
|
|
131282
132593
|
},
|
|
131283
132594
|
"name": {
|
|
131284
132595
|
"type": "string"
|
|
132596
|
+
},
|
|
132597
|
+
"story": {
|
|
132598
|
+
"oneOf": [
|
|
132599
|
+
{
|
|
132600
|
+
"type": "object",
|
|
132601
|
+
"properties": {
|
|
132602
|
+
"kind": {
|
|
132603
|
+
"const": "story"
|
|
132604
|
+
},
|
|
132605
|
+
"storyType": {
|
|
132606
|
+
"const": "body"
|
|
132607
|
+
}
|
|
132608
|
+
},
|
|
132609
|
+
"required": [
|
|
132610
|
+
"kind",
|
|
132611
|
+
"storyType"
|
|
132612
|
+
]
|
|
132613
|
+
},
|
|
132614
|
+
{
|
|
132615
|
+
"type": "object",
|
|
132616
|
+
"properties": {
|
|
132617
|
+
"kind": {
|
|
132618
|
+
"const": "story"
|
|
132619
|
+
},
|
|
132620
|
+
"storyType": {
|
|
132621
|
+
"const": "headerFooterSlot"
|
|
132622
|
+
},
|
|
132623
|
+
"section": {
|
|
132624
|
+
"type": "object",
|
|
132625
|
+
"properties": {
|
|
132626
|
+
"kind": {
|
|
132627
|
+
"const": "section"
|
|
132628
|
+
},
|
|
132629
|
+
"sectionId": {
|
|
132630
|
+
"type": "string"
|
|
132631
|
+
}
|
|
132632
|
+
},
|
|
132633
|
+
"required": [
|
|
132634
|
+
"kind",
|
|
132635
|
+
"sectionId"
|
|
132636
|
+
]
|
|
132637
|
+
},
|
|
132638
|
+
"headerFooterKind": {
|
|
132639
|
+
"oneOf": [
|
|
132640
|
+
{
|
|
132641
|
+
"const": "header"
|
|
132642
|
+
},
|
|
132643
|
+
{
|
|
132644
|
+
"const": "footer"
|
|
132645
|
+
}
|
|
132646
|
+
]
|
|
132647
|
+
},
|
|
132648
|
+
"variant": {
|
|
132649
|
+
"oneOf": [
|
|
132650
|
+
{
|
|
132651
|
+
"const": "default"
|
|
132652
|
+
},
|
|
132653
|
+
{
|
|
132654
|
+
"const": "first"
|
|
132655
|
+
},
|
|
132656
|
+
{
|
|
132657
|
+
"const": "even"
|
|
132658
|
+
}
|
|
132659
|
+
]
|
|
132660
|
+
},
|
|
132661
|
+
"resolution": {
|
|
132662
|
+
"oneOf": [
|
|
132663
|
+
{
|
|
132664
|
+
"const": "effective"
|
|
132665
|
+
},
|
|
132666
|
+
{
|
|
132667
|
+
"const": "explicit"
|
|
132668
|
+
}
|
|
132669
|
+
]
|
|
132670
|
+
},
|
|
132671
|
+
"onWrite": {
|
|
132672
|
+
"oneOf": [
|
|
132673
|
+
{
|
|
132674
|
+
"const": "materializeIfInherited"
|
|
132675
|
+
},
|
|
132676
|
+
{
|
|
132677
|
+
"const": "editResolvedPart"
|
|
132678
|
+
},
|
|
132679
|
+
{
|
|
132680
|
+
"const": "error"
|
|
132681
|
+
}
|
|
132682
|
+
]
|
|
132683
|
+
}
|
|
132684
|
+
},
|
|
132685
|
+
"required": [
|
|
132686
|
+
"kind",
|
|
132687
|
+
"storyType",
|
|
132688
|
+
"section",
|
|
132689
|
+
"headerFooterKind",
|
|
132690
|
+
"variant"
|
|
132691
|
+
]
|
|
132692
|
+
},
|
|
132693
|
+
{
|
|
132694
|
+
"type": "object",
|
|
132695
|
+
"properties": {
|
|
132696
|
+
"kind": {
|
|
132697
|
+
"const": "story"
|
|
132698
|
+
},
|
|
132699
|
+
"storyType": {
|
|
132700
|
+
"const": "headerFooterPart"
|
|
132701
|
+
},
|
|
132702
|
+
"refId": {
|
|
132703
|
+
"type": "string"
|
|
132704
|
+
}
|
|
132705
|
+
},
|
|
132706
|
+
"required": [
|
|
132707
|
+
"kind",
|
|
132708
|
+
"storyType",
|
|
132709
|
+
"refId"
|
|
132710
|
+
]
|
|
132711
|
+
},
|
|
132712
|
+
{
|
|
132713
|
+
"type": "object",
|
|
132714
|
+
"properties": {
|
|
132715
|
+
"kind": {
|
|
132716
|
+
"const": "story"
|
|
132717
|
+
},
|
|
132718
|
+
"storyType": {
|
|
132719
|
+
"const": "footnote"
|
|
132720
|
+
},
|
|
132721
|
+
"noteId": {
|
|
132722
|
+
"type": "string"
|
|
132723
|
+
}
|
|
132724
|
+
},
|
|
132725
|
+
"required": [
|
|
132726
|
+
"kind",
|
|
132727
|
+
"storyType",
|
|
132728
|
+
"noteId"
|
|
132729
|
+
]
|
|
132730
|
+
},
|
|
132731
|
+
{
|
|
132732
|
+
"type": "object",
|
|
132733
|
+
"properties": {
|
|
132734
|
+
"kind": {
|
|
132735
|
+
"const": "story"
|
|
132736
|
+
},
|
|
132737
|
+
"storyType": {
|
|
132738
|
+
"const": "endnote"
|
|
132739
|
+
},
|
|
132740
|
+
"noteId": {
|
|
132741
|
+
"type": "string"
|
|
132742
|
+
}
|
|
132743
|
+
},
|
|
132744
|
+
"required": [
|
|
132745
|
+
"kind",
|
|
132746
|
+
"storyType",
|
|
132747
|
+
"noteId"
|
|
132748
|
+
]
|
|
132749
|
+
}
|
|
132750
|
+
],
|
|
132751
|
+
"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."
|
|
131285
132752
|
}
|
|
131286
132753
|
},
|
|
131287
132754
|
"required": [
|
|
@@ -131318,6 +132785,9 @@ const CONTRACT = {
|
|
|
131318
132785
|
},
|
|
131319
132786
|
"name": {
|
|
131320
132787
|
"type": "string"
|
|
132788
|
+
},
|
|
132789
|
+
"story": {
|
|
132790
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131321
132791
|
}
|
|
131322
132792
|
},
|
|
131323
132793
|
"additionalProperties": false,
|
|
@@ -131356,6 +132826,9 @@ const CONTRACT = {
|
|
|
131356
132826
|
},
|
|
131357
132827
|
"name": {
|
|
131358
132828
|
"type": "string"
|
|
132829
|
+
},
|
|
132830
|
+
"story": {
|
|
132831
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131359
132832
|
}
|
|
131360
132833
|
},
|
|
131361
132834
|
"additionalProperties": false,
|
|
@@ -131421,6 +132894,9 @@ const CONTRACT = {
|
|
|
131421
132894
|
},
|
|
131422
132895
|
"name": {
|
|
131423
132896
|
"type": "string"
|
|
132897
|
+
},
|
|
132898
|
+
"story": {
|
|
132899
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131424
132900
|
}
|
|
131425
132901
|
},
|
|
131426
132902
|
"additionalProperties": false,
|
|
@@ -131551,6 +133027,162 @@ const CONTRACT = {
|
|
|
131551
133027
|
},
|
|
131552
133028
|
"name": {
|
|
131553
133029
|
"type": "string"
|
|
133030
|
+
},
|
|
133031
|
+
"story": {
|
|
133032
|
+
"oneOf": [
|
|
133033
|
+
{
|
|
133034
|
+
"type": "object",
|
|
133035
|
+
"properties": {
|
|
133036
|
+
"kind": {
|
|
133037
|
+
"const": "story"
|
|
133038
|
+
},
|
|
133039
|
+
"storyType": {
|
|
133040
|
+
"const": "body"
|
|
133041
|
+
}
|
|
133042
|
+
},
|
|
133043
|
+
"required": [
|
|
133044
|
+
"kind",
|
|
133045
|
+
"storyType"
|
|
133046
|
+
]
|
|
133047
|
+
},
|
|
133048
|
+
{
|
|
133049
|
+
"type": "object",
|
|
133050
|
+
"properties": {
|
|
133051
|
+
"kind": {
|
|
133052
|
+
"const": "story"
|
|
133053
|
+
},
|
|
133054
|
+
"storyType": {
|
|
133055
|
+
"const": "headerFooterSlot"
|
|
133056
|
+
},
|
|
133057
|
+
"section": {
|
|
133058
|
+
"type": "object",
|
|
133059
|
+
"properties": {
|
|
133060
|
+
"kind": {
|
|
133061
|
+
"const": "section"
|
|
133062
|
+
},
|
|
133063
|
+
"sectionId": {
|
|
133064
|
+
"type": "string"
|
|
133065
|
+
}
|
|
133066
|
+
},
|
|
133067
|
+
"required": [
|
|
133068
|
+
"kind",
|
|
133069
|
+
"sectionId"
|
|
133070
|
+
]
|
|
133071
|
+
},
|
|
133072
|
+
"headerFooterKind": {
|
|
133073
|
+
"oneOf": [
|
|
133074
|
+
{
|
|
133075
|
+
"const": "header"
|
|
133076
|
+
},
|
|
133077
|
+
{
|
|
133078
|
+
"const": "footer"
|
|
133079
|
+
}
|
|
133080
|
+
]
|
|
133081
|
+
},
|
|
133082
|
+
"variant": {
|
|
133083
|
+
"oneOf": [
|
|
133084
|
+
{
|
|
133085
|
+
"const": "default"
|
|
133086
|
+
},
|
|
133087
|
+
{
|
|
133088
|
+
"const": "first"
|
|
133089
|
+
},
|
|
133090
|
+
{
|
|
133091
|
+
"const": "even"
|
|
133092
|
+
}
|
|
133093
|
+
]
|
|
133094
|
+
},
|
|
133095
|
+
"resolution": {
|
|
133096
|
+
"oneOf": [
|
|
133097
|
+
{
|
|
133098
|
+
"const": "effective"
|
|
133099
|
+
},
|
|
133100
|
+
{
|
|
133101
|
+
"const": "explicit"
|
|
133102
|
+
}
|
|
133103
|
+
]
|
|
133104
|
+
},
|
|
133105
|
+
"onWrite": {
|
|
133106
|
+
"oneOf": [
|
|
133107
|
+
{
|
|
133108
|
+
"const": "materializeIfInherited"
|
|
133109
|
+
},
|
|
133110
|
+
{
|
|
133111
|
+
"const": "editResolvedPart"
|
|
133112
|
+
},
|
|
133113
|
+
{
|
|
133114
|
+
"const": "error"
|
|
133115
|
+
}
|
|
133116
|
+
]
|
|
133117
|
+
}
|
|
133118
|
+
},
|
|
133119
|
+
"required": [
|
|
133120
|
+
"kind",
|
|
133121
|
+
"storyType",
|
|
133122
|
+
"section",
|
|
133123
|
+
"headerFooterKind",
|
|
133124
|
+
"variant"
|
|
133125
|
+
]
|
|
133126
|
+
},
|
|
133127
|
+
{
|
|
133128
|
+
"type": "object",
|
|
133129
|
+
"properties": {
|
|
133130
|
+
"kind": {
|
|
133131
|
+
"const": "story"
|
|
133132
|
+
},
|
|
133133
|
+
"storyType": {
|
|
133134
|
+
"const": "headerFooterPart"
|
|
133135
|
+
},
|
|
133136
|
+
"refId": {
|
|
133137
|
+
"type": "string"
|
|
133138
|
+
}
|
|
133139
|
+
},
|
|
133140
|
+
"required": [
|
|
133141
|
+
"kind",
|
|
133142
|
+
"storyType",
|
|
133143
|
+
"refId"
|
|
133144
|
+
]
|
|
133145
|
+
},
|
|
133146
|
+
{
|
|
133147
|
+
"type": "object",
|
|
133148
|
+
"properties": {
|
|
133149
|
+
"kind": {
|
|
133150
|
+
"const": "story"
|
|
133151
|
+
},
|
|
133152
|
+
"storyType": {
|
|
133153
|
+
"const": "footnote"
|
|
133154
|
+
},
|
|
133155
|
+
"noteId": {
|
|
133156
|
+
"type": "string"
|
|
133157
|
+
}
|
|
133158
|
+
},
|
|
133159
|
+
"required": [
|
|
133160
|
+
"kind",
|
|
133161
|
+
"storyType",
|
|
133162
|
+
"noteId"
|
|
133163
|
+
]
|
|
133164
|
+
},
|
|
133165
|
+
{
|
|
133166
|
+
"type": "object",
|
|
133167
|
+
"properties": {
|
|
133168
|
+
"kind": {
|
|
133169
|
+
"const": "story"
|
|
133170
|
+
},
|
|
133171
|
+
"storyType": {
|
|
133172
|
+
"const": "endnote"
|
|
133173
|
+
},
|
|
133174
|
+
"noteId": {
|
|
133175
|
+
"type": "string"
|
|
133176
|
+
}
|
|
133177
|
+
},
|
|
133178
|
+
"required": [
|
|
133179
|
+
"kind",
|
|
133180
|
+
"storyType",
|
|
133181
|
+
"noteId"
|
|
133182
|
+
]
|
|
133183
|
+
}
|
|
133184
|
+
],
|
|
133185
|
+
"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."
|
|
131554
133186
|
}
|
|
131555
133187
|
},
|
|
131556
133188
|
"required": [
|
|
@@ -131580,6 +133212,9 @@ const CONTRACT = {
|
|
|
131580
133212
|
},
|
|
131581
133213
|
"name": {
|
|
131582
133214
|
"type": "string"
|
|
133215
|
+
},
|
|
133216
|
+
"story": {
|
|
133217
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131583
133218
|
}
|
|
131584
133219
|
},
|
|
131585
133220
|
"additionalProperties": false,
|
|
@@ -131614,6 +133249,9 @@ const CONTRACT = {
|
|
|
131614
133249
|
},
|
|
131615
133250
|
"name": {
|
|
131616
133251
|
"type": "string"
|
|
133252
|
+
},
|
|
133253
|
+
"story": {
|
|
133254
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131617
133255
|
}
|
|
131618
133256
|
},
|
|
131619
133257
|
"additionalProperties": false,
|
|
@@ -131679,6 +133317,9 @@ const CONTRACT = {
|
|
|
131679
133317
|
},
|
|
131680
133318
|
"name": {
|
|
131681
133319
|
"type": "string"
|
|
133320
|
+
},
|
|
133321
|
+
"story": {
|
|
133322
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131682
133323
|
}
|
|
131683
133324
|
},
|
|
131684
133325
|
"additionalProperties": false,
|
|
@@ -132005,6 +133646,162 @@ const CONTRACT = {
|
|
|
132005
133646
|
"range"
|
|
132006
133647
|
]
|
|
132007
133648
|
}
|
|
133649
|
+
},
|
|
133650
|
+
"story": {
|
|
133651
|
+
"oneOf": [
|
|
133652
|
+
{
|
|
133653
|
+
"type": "object",
|
|
133654
|
+
"properties": {
|
|
133655
|
+
"kind": {
|
|
133656
|
+
"const": "story"
|
|
133657
|
+
},
|
|
133658
|
+
"storyType": {
|
|
133659
|
+
"const": "body"
|
|
133660
|
+
}
|
|
133661
|
+
},
|
|
133662
|
+
"required": [
|
|
133663
|
+
"kind",
|
|
133664
|
+
"storyType"
|
|
133665
|
+
]
|
|
133666
|
+
},
|
|
133667
|
+
{
|
|
133668
|
+
"type": "object",
|
|
133669
|
+
"properties": {
|
|
133670
|
+
"kind": {
|
|
133671
|
+
"const": "story"
|
|
133672
|
+
},
|
|
133673
|
+
"storyType": {
|
|
133674
|
+
"const": "headerFooterSlot"
|
|
133675
|
+
},
|
|
133676
|
+
"section": {
|
|
133677
|
+
"type": "object",
|
|
133678
|
+
"properties": {
|
|
133679
|
+
"kind": {
|
|
133680
|
+
"const": "section"
|
|
133681
|
+
},
|
|
133682
|
+
"sectionId": {
|
|
133683
|
+
"type": "string"
|
|
133684
|
+
}
|
|
133685
|
+
},
|
|
133686
|
+
"required": [
|
|
133687
|
+
"kind",
|
|
133688
|
+
"sectionId"
|
|
133689
|
+
]
|
|
133690
|
+
},
|
|
133691
|
+
"headerFooterKind": {
|
|
133692
|
+
"oneOf": [
|
|
133693
|
+
{
|
|
133694
|
+
"const": "header"
|
|
133695
|
+
},
|
|
133696
|
+
{
|
|
133697
|
+
"const": "footer"
|
|
133698
|
+
}
|
|
133699
|
+
]
|
|
133700
|
+
},
|
|
133701
|
+
"variant": {
|
|
133702
|
+
"oneOf": [
|
|
133703
|
+
{
|
|
133704
|
+
"const": "default"
|
|
133705
|
+
},
|
|
133706
|
+
{
|
|
133707
|
+
"const": "first"
|
|
133708
|
+
},
|
|
133709
|
+
{
|
|
133710
|
+
"const": "even"
|
|
133711
|
+
}
|
|
133712
|
+
]
|
|
133713
|
+
},
|
|
133714
|
+
"resolution": {
|
|
133715
|
+
"oneOf": [
|
|
133716
|
+
{
|
|
133717
|
+
"const": "effective"
|
|
133718
|
+
},
|
|
133719
|
+
{
|
|
133720
|
+
"const": "explicit"
|
|
133721
|
+
}
|
|
133722
|
+
]
|
|
133723
|
+
},
|
|
133724
|
+
"onWrite": {
|
|
133725
|
+
"oneOf": [
|
|
133726
|
+
{
|
|
133727
|
+
"const": "materializeIfInherited"
|
|
133728
|
+
},
|
|
133729
|
+
{
|
|
133730
|
+
"const": "editResolvedPart"
|
|
133731
|
+
},
|
|
133732
|
+
{
|
|
133733
|
+
"const": "error"
|
|
133734
|
+
}
|
|
133735
|
+
]
|
|
133736
|
+
}
|
|
133737
|
+
},
|
|
133738
|
+
"required": [
|
|
133739
|
+
"kind",
|
|
133740
|
+
"storyType",
|
|
133741
|
+
"section",
|
|
133742
|
+
"headerFooterKind",
|
|
133743
|
+
"variant"
|
|
133744
|
+
]
|
|
133745
|
+
},
|
|
133746
|
+
{
|
|
133747
|
+
"type": "object",
|
|
133748
|
+
"properties": {
|
|
133749
|
+
"kind": {
|
|
133750
|
+
"const": "story"
|
|
133751
|
+
},
|
|
133752
|
+
"storyType": {
|
|
133753
|
+
"const": "headerFooterPart"
|
|
133754
|
+
},
|
|
133755
|
+
"refId": {
|
|
133756
|
+
"type": "string"
|
|
133757
|
+
}
|
|
133758
|
+
},
|
|
133759
|
+
"required": [
|
|
133760
|
+
"kind",
|
|
133761
|
+
"storyType",
|
|
133762
|
+
"refId"
|
|
133763
|
+
]
|
|
133764
|
+
},
|
|
133765
|
+
{
|
|
133766
|
+
"type": "object",
|
|
133767
|
+
"properties": {
|
|
133768
|
+
"kind": {
|
|
133769
|
+
"const": "story"
|
|
133770
|
+
},
|
|
133771
|
+
"storyType": {
|
|
133772
|
+
"const": "footnote"
|
|
133773
|
+
},
|
|
133774
|
+
"noteId": {
|
|
133775
|
+
"type": "string"
|
|
133776
|
+
}
|
|
133777
|
+
},
|
|
133778
|
+
"required": [
|
|
133779
|
+
"kind",
|
|
133780
|
+
"storyType",
|
|
133781
|
+
"noteId"
|
|
133782
|
+
]
|
|
133783
|
+
},
|
|
133784
|
+
{
|
|
133785
|
+
"type": "object",
|
|
133786
|
+
"properties": {
|
|
133787
|
+
"kind": {
|
|
133788
|
+
"const": "story"
|
|
133789
|
+
},
|
|
133790
|
+
"storyType": {
|
|
133791
|
+
"const": "endnote"
|
|
133792
|
+
},
|
|
133793
|
+
"noteId": {
|
|
133794
|
+
"type": "string"
|
|
133795
|
+
}
|
|
133796
|
+
},
|
|
133797
|
+
"required": [
|
|
133798
|
+
"kind",
|
|
133799
|
+
"storyType",
|
|
133800
|
+
"noteId"
|
|
133801
|
+
]
|
|
133802
|
+
}
|
|
133803
|
+
],
|
|
133804
|
+
"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."
|
|
132008
133805
|
}
|
|
132009
133806
|
},
|
|
132010
133807
|
"required": [
|
|
@@ -133393,6 +135190,162 @@ const CONTRACT = {
|
|
|
133393
135190
|
"range"
|
|
133394
135191
|
]
|
|
133395
135192
|
}
|
|
135193
|
+
},
|
|
135194
|
+
"story": {
|
|
135195
|
+
"oneOf": [
|
|
135196
|
+
{
|
|
135197
|
+
"type": "object",
|
|
135198
|
+
"properties": {
|
|
135199
|
+
"kind": {
|
|
135200
|
+
"const": "story"
|
|
135201
|
+
},
|
|
135202
|
+
"storyType": {
|
|
135203
|
+
"const": "body"
|
|
135204
|
+
}
|
|
135205
|
+
},
|
|
135206
|
+
"required": [
|
|
135207
|
+
"kind",
|
|
135208
|
+
"storyType"
|
|
135209
|
+
]
|
|
135210
|
+
},
|
|
135211
|
+
{
|
|
135212
|
+
"type": "object",
|
|
135213
|
+
"properties": {
|
|
135214
|
+
"kind": {
|
|
135215
|
+
"const": "story"
|
|
135216
|
+
},
|
|
135217
|
+
"storyType": {
|
|
135218
|
+
"const": "headerFooterSlot"
|
|
135219
|
+
},
|
|
135220
|
+
"section": {
|
|
135221
|
+
"type": "object",
|
|
135222
|
+
"properties": {
|
|
135223
|
+
"kind": {
|
|
135224
|
+
"const": "section"
|
|
135225
|
+
},
|
|
135226
|
+
"sectionId": {
|
|
135227
|
+
"type": "string"
|
|
135228
|
+
}
|
|
135229
|
+
},
|
|
135230
|
+
"required": [
|
|
135231
|
+
"kind",
|
|
135232
|
+
"sectionId"
|
|
135233
|
+
]
|
|
135234
|
+
},
|
|
135235
|
+
"headerFooterKind": {
|
|
135236
|
+
"oneOf": [
|
|
135237
|
+
{
|
|
135238
|
+
"const": "header"
|
|
135239
|
+
},
|
|
135240
|
+
{
|
|
135241
|
+
"const": "footer"
|
|
135242
|
+
}
|
|
135243
|
+
]
|
|
135244
|
+
},
|
|
135245
|
+
"variant": {
|
|
135246
|
+
"oneOf": [
|
|
135247
|
+
{
|
|
135248
|
+
"const": "default"
|
|
135249
|
+
},
|
|
135250
|
+
{
|
|
135251
|
+
"const": "first"
|
|
135252
|
+
},
|
|
135253
|
+
{
|
|
135254
|
+
"const": "even"
|
|
135255
|
+
}
|
|
135256
|
+
]
|
|
135257
|
+
},
|
|
135258
|
+
"resolution": {
|
|
135259
|
+
"oneOf": [
|
|
135260
|
+
{
|
|
135261
|
+
"const": "effective"
|
|
135262
|
+
},
|
|
135263
|
+
{
|
|
135264
|
+
"const": "explicit"
|
|
135265
|
+
}
|
|
135266
|
+
]
|
|
135267
|
+
},
|
|
135268
|
+
"onWrite": {
|
|
135269
|
+
"oneOf": [
|
|
135270
|
+
{
|
|
135271
|
+
"const": "materializeIfInherited"
|
|
135272
|
+
},
|
|
135273
|
+
{
|
|
135274
|
+
"const": "editResolvedPart"
|
|
135275
|
+
},
|
|
135276
|
+
{
|
|
135277
|
+
"const": "error"
|
|
135278
|
+
}
|
|
135279
|
+
]
|
|
135280
|
+
}
|
|
135281
|
+
},
|
|
135282
|
+
"required": [
|
|
135283
|
+
"kind",
|
|
135284
|
+
"storyType",
|
|
135285
|
+
"section",
|
|
135286
|
+
"headerFooterKind",
|
|
135287
|
+
"variant"
|
|
135288
|
+
]
|
|
135289
|
+
},
|
|
135290
|
+
{
|
|
135291
|
+
"type": "object",
|
|
135292
|
+
"properties": {
|
|
135293
|
+
"kind": {
|
|
135294
|
+
"const": "story"
|
|
135295
|
+
},
|
|
135296
|
+
"storyType": {
|
|
135297
|
+
"const": "headerFooterPart"
|
|
135298
|
+
},
|
|
135299
|
+
"refId": {
|
|
135300
|
+
"type": "string"
|
|
135301
|
+
}
|
|
135302
|
+
},
|
|
135303
|
+
"required": [
|
|
135304
|
+
"kind",
|
|
135305
|
+
"storyType",
|
|
135306
|
+
"refId"
|
|
135307
|
+
]
|
|
135308
|
+
},
|
|
135309
|
+
{
|
|
135310
|
+
"type": "object",
|
|
135311
|
+
"properties": {
|
|
135312
|
+
"kind": {
|
|
135313
|
+
"const": "story"
|
|
135314
|
+
},
|
|
135315
|
+
"storyType": {
|
|
135316
|
+
"const": "footnote"
|
|
135317
|
+
},
|
|
135318
|
+
"noteId": {
|
|
135319
|
+
"type": "string"
|
|
135320
|
+
}
|
|
135321
|
+
},
|
|
135322
|
+
"required": [
|
|
135323
|
+
"kind",
|
|
135324
|
+
"storyType",
|
|
135325
|
+
"noteId"
|
|
135326
|
+
]
|
|
135327
|
+
},
|
|
135328
|
+
{
|
|
135329
|
+
"type": "object",
|
|
135330
|
+
"properties": {
|
|
135331
|
+
"kind": {
|
|
135332
|
+
"const": "story"
|
|
135333
|
+
},
|
|
135334
|
+
"storyType": {
|
|
135335
|
+
"const": "endnote"
|
|
135336
|
+
},
|
|
135337
|
+
"noteId": {
|
|
135338
|
+
"type": "string"
|
|
135339
|
+
}
|
|
135340
|
+
},
|
|
135341
|
+
"required": [
|
|
135342
|
+
"kind",
|
|
135343
|
+
"storyType",
|
|
135344
|
+
"noteId"
|
|
135345
|
+
]
|
|
135346
|
+
}
|
|
135347
|
+
],
|
|
135348
|
+
"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."
|
|
133396
135349
|
}
|
|
133397
135350
|
},
|
|
133398
135351
|
"required": [
|
|
@@ -136269,6 +138222,162 @@ const CONTRACT = {
|
|
|
136269
138222
|
"range"
|
|
136270
138223
|
]
|
|
136271
138224
|
}
|
|
138225
|
+
},
|
|
138226
|
+
"story": {
|
|
138227
|
+
"oneOf": [
|
|
138228
|
+
{
|
|
138229
|
+
"type": "object",
|
|
138230
|
+
"properties": {
|
|
138231
|
+
"kind": {
|
|
138232
|
+
"const": "story"
|
|
138233
|
+
},
|
|
138234
|
+
"storyType": {
|
|
138235
|
+
"const": "body"
|
|
138236
|
+
}
|
|
138237
|
+
},
|
|
138238
|
+
"required": [
|
|
138239
|
+
"kind",
|
|
138240
|
+
"storyType"
|
|
138241
|
+
]
|
|
138242
|
+
},
|
|
138243
|
+
{
|
|
138244
|
+
"type": "object",
|
|
138245
|
+
"properties": {
|
|
138246
|
+
"kind": {
|
|
138247
|
+
"const": "story"
|
|
138248
|
+
},
|
|
138249
|
+
"storyType": {
|
|
138250
|
+
"const": "headerFooterSlot"
|
|
138251
|
+
},
|
|
138252
|
+
"section": {
|
|
138253
|
+
"type": "object",
|
|
138254
|
+
"properties": {
|
|
138255
|
+
"kind": {
|
|
138256
|
+
"const": "section"
|
|
138257
|
+
},
|
|
138258
|
+
"sectionId": {
|
|
138259
|
+
"type": "string"
|
|
138260
|
+
}
|
|
138261
|
+
},
|
|
138262
|
+
"required": [
|
|
138263
|
+
"kind",
|
|
138264
|
+
"sectionId"
|
|
138265
|
+
]
|
|
138266
|
+
},
|
|
138267
|
+
"headerFooterKind": {
|
|
138268
|
+
"oneOf": [
|
|
138269
|
+
{
|
|
138270
|
+
"const": "header"
|
|
138271
|
+
},
|
|
138272
|
+
{
|
|
138273
|
+
"const": "footer"
|
|
138274
|
+
}
|
|
138275
|
+
]
|
|
138276
|
+
},
|
|
138277
|
+
"variant": {
|
|
138278
|
+
"oneOf": [
|
|
138279
|
+
{
|
|
138280
|
+
"const": "default"
|
|
138281
|
+
},
|
|
138282
|
+
{
|
|
138283
|
+
"const": "first"
|
|
138284
|
+
},
|
|
138285
|
+
{
|
|
138286
|
+
"const": "even"
|
|
138287
|
+
}
|
|
138288
|
+
]
|
|
138289
|
+
},
|
|
138290
|
+
"resolution": {
|
|
138291
|
+
"oneOf": [
|
|
138292
|
+
{
|
|
138293
|
+
"const": "effective"
|
|
138294
|
+
},
|
|
138295
|
+
{
|
|
138296
|
+
"const": "explicit"
|
|
138297
|
+
}
|
|
138298
|
+
]
|
|
138299
|
+
},
|
|
138300
|
+
"onWrite": {
|
|
138301
|
+
"oneOf": [
|
|
138302
|
+
{
|
|
138303
|
+
"const": "materializeIfInherited"
|
|
138304
|
+
},
|
|
138305
|
+
{
|
|
138306
|
+
"const": "editResolvedPart"
|
|
138307
|
+
},
|
|
138308
|
+
{
|
|
138309
|
+
"const": "error"
|
|
138310
|
+
}
|
|
138311
|
+
]
|
|
138312
|
+
}
|
|
138313
|
+
},
|
|
138314
|
+
"required": [
|
|
138315
|
+
"kind",
|
|
138316
|
+
"storyType",
|
|
138317
|
+
"section",
|
|
138318
|
+
"headerFooterKind",
|
|
138319
|
+
"variant"
|
|
138320
|
+
]
|
|
138321
|
+
},
|
|
138322
|
+
{
|
|
138323
|
+
"type": "object",
|
|
138324
|
+
"properties": {
|
|
138325
|
+
"kind": {
|
|
138326
|
+
"const": "story"
|
|
138327
|
+
},
|
|
138328
|
+
"storyType": {
|
|
138329
|
+
"const": "headerFooterPart"
|
|
138330
|
+
},
|
|
138331
|
+
"refId": {
|
|
138332
|
+
"type": "string"
|
|
138333
|
+
}
|
|
138334
|
+
},
|
|
138335
|
+
"required": [
|
|
138336
|
+
"kind",
|
|
138337
|
+
"storyType",
|
|
138338
|
+
"refId"
|
|
138339
|
+
]
|
|
138340
|
+
},
|
|
138341
|
+
{
|
|
138342
|
+
"type": "object",
|
|
138343
|
+
"properties": {
|
|
138344
|
+
"kind": {
|
|
138345
|
+
"const": "story"
|
|
138346
|
+
},
|
|
138347
|
+
"storyType": {
|
|
138348
|
+
"const": "footnote"
|
|
138349
|
+
},
|
|
138350
|
+
"noteId": {
|
|
138351
|
+
"type": "string"
|
|
138352
|
+
}
|
|
138353
|
+
},
|
|
138354
|
+
"required": [
|
|
138355
|
+
"kind",
|
|
138356
|
+
"storyType",
|
|
138357
|
+
"noteId"
|
|
138358
|
+
]
|
|
138359
|
+
},
|
|
138360
|
+
{
|
|
138361
|
+
"type": "object",
|
|
138362
|
+
"properties": {
|
|
138363
|
+
"kind": {
|
|
138364
|
+
"const": "story"
|
|
138365
|
+
},
|
|
138366
|
+
"storyType": {
|
|
138367
|
+
"const": "endnote"
|
|
138368
|
+
},
|
|
138369
|
+
"noteId": {
|
|
138370
|
+
"type": "string"
|
|
138371
|
+
}
|
|
138372
|
+
},
|
|
138373
|
+
"required": [
|
|
138374
|
+
"kind",
|
|
138375
|
+
"storyType",
|
|
138376
|
+
"noteId"
|
|
138377
|
+
]
|
|
138378
|
+
}
|
|
138379
|
+
],
|
|
138380
|
+
"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."
|
|
136272
138381
|
}
|
|
136273
138382
|
},
|
|
136274
138383
|
"required": [
|
|
@@ -138672,6 +140781,162 @@ const CONTRACT = {
|
|
|
138672
140781
|
"range"
|
|
138673
140782
|
]
|
|
138674
140783
|
}
|
|
140784
|
+
},
|
|
140785
|
+
"story": {
|
|
140786
|
+
"oneOf": [
|
|
140787
|
+
{
|
|
140788
|
+
"type": "object",
|
|
140789
|
+
"properties": {
|
|
140790
|
+
"kind": {
|
|
140791
|
+
"const": "story"
|
|
140792
|
+
},
|
|
140793
|
+
"storyType": {
|
|
140794
|
+
"const": "body"
|
|
140795
|
+
}
|
|
140796
|
+
},
|
|
140797
|
+
"required": [
|
|
140798
|
+
"kind",
|
|
140799
|
+
"storyType"
|
|
140800
|
+
]
|
|
140801
|
+
},
|
|
140802
|
+
{
|
|
140803
|
+
"type": "object",
|
|
140804
|
+
"properties": {
|
|
140805
|
+
"kind": {
|
|
140806
|
+
"const": "story"
|
|
140807
|
+
},
|
|
140808
|
+
"storyType": {
|
|
140809
|
+
"const": "headerFooterSlot"
|
|
140810
|
+
},
|
|
140811
|
+
"section": {
|
|
140812
|
+
"type": "object",
|
|
140813
|
+
"properties": {
|
|
140814
|
+
"kind": {
|
|
140815
|
+
"const": "section"
|
|
140816
|
+
},
|
|
140817
|
+
"sectionId": {
|
|
140818
|
+
"type": "string"
|
|
140819
|
+
}
|
|
140820
|
+
},
|
|
140821
|
+
"required": [
|
|
140822
|
+
"kind",
|
|
140823
|
+
"sectionId"
|
|
140824
|
+
]
|
|
140825
|
+
},
|
|
140826
|
+
"headerFooterKind": {
|
|
140827
|
+
"oneOf": [
|
|
140828
|
+
{
|
|
140829
|
+
"const": "header"
|
|
140830
|
+
},
|
|
140831
|
+
{
|
|
140832
|
+
"const": "footer"
|
|
140833
|
+
}
|
|
140834
|
+
]
|
|
140835
|
+
},
|
|
140836
|
+
"variant": {
|
|
140837
|
+
"oneOf": [
|
|
140838
|
+
{
|
|
140839
|
+
"const": "default"
|
|
140840
|
+
},
|
|
140841
|
+
{
|
|
140842
|
+
"const": "first"
|
|
140843
|
+
},
|
|
140844
|
+
{
|
|
140845
|
+
"const": "even"
|
|
140846
|
+
}
|
|
140847
|
+
]
|
|
140848
|
+
},
|
|
140849
|
+
"resolution": {
|
|
140850
|
+
"oneOf": [
|
|
140851
|
+
{
|
|
140852
|
+
"const": "effective"
|
|
140853
|
+
},
|
|
140854
|
+
{
|
|
140855
|
+
"const": "explicit"
|
|
140856
|
+
}
|
|
140857
|
+
]
|
|
140858
|
+
},
|
|
140859
|
+
"onWrite": {
|
|
140860
|
+
"oneOf": [
|
|
140861
|
+
{
|
|
140862
|
+
"const": "materializeIfInherited"
|
|
140863
|
+
},
|
|
140864
|
+
{
|
|
140865
|
+
"const": "editResolvedPart"
|
|
140866
|
+
},
|
|
140867
|
+
{
|
|
140868
|
+
"const": "error"
|
|
140869
|
+
}
|
|
140870
|
+
]
|
|
140871
|
+
}
|
|
140872
|
+
},
|
|
140873
|
+
"required": [
|
|
140874
|
+
"kind",
|
|
140875
|
+
"storyType",
|
|
140876
|
+
"section",
|
|
140877
|
+
"headerFooterKind",
|
|
140878
|
+
"variant"
|
|
140879
|
+
]
|
|
140880
|
+
},
|
|
140881
|
+
{
|
|
140882
|
+
"type": "object",
|
|
140883
|
+
"properties": {
|
|
140884
|
+
"kind": {
|
|
140885
|
+
"const": "story"
|
|
140886
|
+
},
|
|
140887
|
+
"storyType": {
|
|
140888
|
+
"const": "headerFooterPart"
|
|
140889
|
+
},
|
|
140890
|
+
"refId": {
|
|
140891
|
+
"type": "string"
|
|
140892
|
+
}
|
|
140893
|
+
},
|
|
140894
|
+
"required": [
|
|
140895
|
+
"kind",
|
|
140896
|
+
"storyType",
|
|
140897
|
+
"refId"
|
|
140898
|
+
]
|
|
140899
|
+
},
|
|
140900
|
+
{
|
|
140901
|
+
"type": "object",
|
|
140902
|
+
"properties": {
|
|
140903
|
+
"kind": {
|
|
140904
|
+
"const": "story"
|
|
140905
|
+
},
|
|
140906
|
+
"storyType": {
|
|
140907
|
+
"const": "footnote"
|
|
140908
|
+
},
|
|
140909
|
+
"noteId": {
|
|
140910
|
+
"type": "string"
|
|
140911
|
+
}
|
|
140912
|
+
},
|
|
140913
|
+
"required": [
|
|
140914
|
+
"kind",
|
|
140915
|
+
"storyType",
|
|
140916
|
+
"noteId"
|
|
140917
|
+
]
|
|
140918
|
+
},
|
|
140919
|
+
{
|
|
140920
|
+
"type": "object",
|
|
140921
|
+
"properties": {
|
|
140922
|
+
"kind": {
|
|
140923
|
+
"const": "story"
|
|
140924
|
+
},
|
|
140925
|
+
"storyType": {
|
|
140926
|
+
"const": "endnote"
|
|
140927
|
+
},
|
|
140928
|
+
"noteId": {
|
|
140929
|
+
"type": "string"
|
|
140930
|
+
}
|
|
140931
|
+
},
|
|
140932
|
+
"required": [
|
|
140933
|
+
"kind",
|
|
140934
|
+
"storyType",
|
|
140935
|
+
"noteId"
|
|
140936
|
+
]
|
|
140937
|
+
}
|
|
140938
|
+
],
|
|
140939
|
+
"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."
|
|
138675
140940
|
}
|
|
138676
140941
|
},
|
|
138677
140942
|
"required": [
|
|
@@ -139699,6 +141964,162 @@ const CONTRACT = {
|
|
|
139699
141964
|
"range"
|
|
139700
141965
|
]
|
|
139701
141966
|
}
|
|
141967
|
+
},
|
|
141968
|
+
"story": {
|
|
141969
|
+
"oneOf": [
|
|
141970
|
+
{
|
|
141971
|
+
"type": "object",
|
|
141972
|
+
"properties": {
|
|
141973
|
+
"kind": {
|
|
141974
|
+
"const": "story"
|
|
141975
|
+
},
|
|
141976
|
+
"storyType": {
|
|
141977
|
+
"const": "body"
|
|
141978
|
+
}
|
|
141979
|
+
},
|
|
141980
|
+
"required": [
|
|
141981
|
+
"kind",
|
|
141982
|
+
"storyType"
|
|
141983
|
+
]
|
|
141984
|
+
},
|
|
141985
|
+
{
|
|
141986
|
+
"type": "object",
|
|
141987
|
+
"properties": {
|
|
141988
|
+
"kind": {
|
|
141989
|
+
"const": "story"
|
|
141990
|
+
},
|
|
141991
|
+
"storyType": {
|
|
141992
|
+
"const": "headerFooterSlot"
|
|
141993
|
+
},
|
|
141994
|
+
"section": {
|
|
141995
|
+
"type": "object",
|
|
141996
|
+
"properties": {
|
|
141997
|
+
"kind": {
|
|
141998
|
+
"const": "section"
|
|
141999
|
+
},
|
|
142000
|
+
"sectionId": {
|
|
142001
|
+
"type": "string"
|
|
142002
|
+
}
|
|
142003
|
+
},
|
|
142004
|
+
"required": [
|
|
142005
|
+
"kind",
|
|
142006
|
+
"sectionId"
|
|
142007
|
+
]
|
|
142008
|
+
},
|
|
142009
|
+
"headerFooterKind": {
|
|
142010
|
+
"oneOf": [
|
|
142011
|
+
{
|
|
142012
|
+
"const": "header"
|
|
142013
|
+
},
|
|
142014
|
+
{
|
|
142015
|
+
"const": "footer"
|
|
142016
|
+
}
|
|
142017
|
+
]
|
|
142018
|
+
},
|
|
142019
|
+
"variant": {
|
|
142020
|
+
"oneOf": [
|
|
142021
|
+
{
|
|
142022
|
+
"const": "default"
|
|
142023
|
+
},
|
|
142024
|
+
{
|
|
142025
|
+
"const": "first"
|
|
142026
|
+
},
|
|
142027
|
+
{
|
|
142028
|
+
"const": "even"
|
|
142029
|
+
}
|
|
142030
|
+
]
|
|
142031
|
+
},
|
|
142032
|
+
"resolution": {
|
|
142033
|
+
"oneOf": [
|
|
142034
|
+
{
|
|
142035
|
+
"const": "effective"
|
|
142036
|
+
},
|
|
142037
|
+
{
|
|
142038
|
+
"const": "explicit"
|
|
142039
|
+
}
|
|
142040
|
+
]
|
|
142041
|
+
},
|
|
142042
|
+
"onWrite": {
|
|
142043
|
+
"oneOf": [
|
|
142044
|
+
{
|
|
142045
|
+
"const": "materializeIfInherited"
|
|
142046
|
+
},
|
|
142047
|
+
{
|
|
142048
|
+
"const": "editResolvedPart"
|
|
142049
|
+
},
|
|
142050
|
+
{
|
|
142051
|
+
"const": "error"
|
|
142052
|
+
}
|
|
142053
|
+
]
|
|
142054
|
+
}
|
|
142055
|
+
},
|
|
142056
|
+
"required": [
|
|
142057
|
+
"kind",
|
|
142058
|
+
"storyType",
|
|
142059
|
+
"section",
|
|
142060
|
+
"headerFooterKind",
|
|
142061
|
+
"variant"
|
|
142062
|
+
]
|
|
142063
|
+
},
|
|
142064
|
+
{
|
|
142065
|
+
"type": "object",
|
|
142066
|
+
"properties": {
|
|
142067
|
+
"kind": {
|
|
142068
|
+
"const": "story"
|
|
142069
|
+
},
|
|
142070
|
+
"storyType": {
|
|
142071
|
+
"const": "headerFooterPart"
|
|
142072
|
+
},
|
|
142073
|
+
"refId": {
|
|
142074
|
+
"type": "string"
|
|
142075
|
+
}
|
|
142076
|
+
},
|
|
142077
|
+
"required": [
|
|
142078
|
+
"kind",
|
|
142079
|
+
"storyType",
|
|
142080
|
+
"refId"
|
|
142081
|
+
]
|
|
142082
|
+
},
|
|
142083
|
+
{
|
|
142084
|
+
"type": "object",
|
|
142085
|
+
"properties": {
|
|
142086
|
+
"kind": {
|
|
142087
|
+
"const": "story"
|
|
142088
|
+
},
|
|
142089
|
+
"storyType": {
|
|
142090
|
+
"const": "footnote"
|
|
142091
|
+
},
|
|
142092
|
+
"noteId": {
|
|
142093
|
+
"type": "string"
|
|
142094
|
+
}
|
|
142095
|
+
},
|
|
142096
|
+
"required": [
|
|
142097
|
+
"kind",
|
|
142098
|
+
"storyType",
|
|
142099
|
+
"noteId"
|
|
142100
|
+
]
|
|
142101
|
+
},
|
|
142102
|
+
{
|
|
142103
|
+
"type": "object",
|
|
142104
|
+
"properties": {
|
|
142105
|
+
"kind": {
|
|
142106
|
+
"const": "story"
|
|
142107
|
+
},
|
|
142108
|
+
"storyType": {
|
|
142109
|
+
"const": "endnote"
|
|
142110
|
+
},
|
|
142111
|
+
"noteId": {
|
|
142112
|
+
"type": "string"
|
|
142113
|
+
}
|
|
142114
|
+
},
|
|
142115
|
+
"required": [
|
|
142116
|
+
"kind",
|
|
142117
|
+
"storyType",
|
|
142118
|
+
"noteId"
|
|
142119
|
+
]
|
|
142120
|
+
}
|
|
142121
|
+
],
|
|
142122
|
+
"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."
|
|
139702
142123
|
}
|
|
139703
142124
|
},
|
|
139704
142125
|
"required": [
|
|
@@ -144994,6 +147415,162 @@ const CONTRACT = {
|
|
|
144994
147415
|
"range"
|
|
144995
147416
|
]
|
|
144996
147417
|
}
|
|
147418
|
+
},
|
|
147419
|
+
"story": {
|
|
147420
|
+
"oneOf": [
|
|
147421
|
+
{
|
|
147422
|
+
"type": "object",
|
|
147423
|
+
"properties": {
|
|
147424
|
+
"kind": {
|
|
147425
|
+
"const": "story"
|
|
147426
|
+
},
|
|
147427
|
+
"storyType": {
|
|
147428
|
+
"const": "body"
|
|
147429
|
+
}
|
|
147430
|
+
},
|
|
147431
|
+
"required": [
|
|
147432
|
+
"kind",
|
|
147433
|
+
"storyType"
|
|
147434
|
+
]
|
|
147435
|
+
},
|
|
147436
|
+
{
|
|
147437
|
+
"type": "object",
|
|
147438
|
+
"properties": {
|
|
147439
|
+
"kind": {
|
|
147440
|
+
"const": "story"
|
|
147441
|
+
},
|
|
147442
|
+
"storyType": {
|
|
147443
|
+
"const": "headerFooterSlot"
|
|
147444
|
+
},
|
|
147445
|
+
"section": {
|
|
147446
|
+
"type": "object",
|
|
147447
|
+
"properties": {
|
|
147448
|
+
"kind": {
|
|
147449
|
+
"const": "section"
|
|
147450
|
+
},
|
|
147451
|
+
"sectionId": {
|
|
147452
|
+
"type": "string"
|
|
147453
|
+
}
|
|
147454
|
+
},
|
|
147455
|
+
"required": [
|
|
147456
|
+
"kind",
|
|
147457
|
+
"sectionId"
|
|
147458
|
+
]
|
|
147459
|
+
},
|
|
147460
|
+
"headerFooterKind": {
|
|
147461
|
+
"oneOf": [
|
|
147462
|
+
{
|
|
147463
|
+
"const": "header"
|
|
147464
|
+
},
|
|
147465
|
+
{
|
|
147466
|
+
"const": "footer"
|
|
147467
|
+
}
|
|
147468
|
+
]
|
|
147469
|
+
},
|
|
147470
|
+
"variant": {
|
|
147471
|
+
"oneOf": [
|
|
147472
|
+
{
|
|
147473
|
+
"const": "default"
|
|
147474
|
+
},
|
|
147475
|
+
{
|
|
147476
|
+
"const": "first"
|
|
147477
|
+
},
|
|
147478
|
+
{
|
|
147479
|
+
"const": "even"
|
|
147480
|
+
}
|
|
147481
|
+
]
|
|
147482
|
+
},
|
|
147483
|
+
"resolution": {
|
|
147484
|
+
"oneOf": [
|
|
147485
|
+
{
|
|
147486
|
+
"const": "effective"
|
|
147487
|
+
},
|
|
147488
|
+
{
|
|
147489
|
+
"const": "explicit"
|
|
147490
|
+
}
|
|
147491
|
+
]
|
|
147492
|
+
},
|
|
147493
|
+
"onWrite": {
|
|
147494
|
+
"oneOf": [
|
|
147495
|
+
{
|
|
147496
|
+
"const": "materializeIfInherited"
|
|
147497
|
+
},
|
|
147498
|
+
{
|
|
147499
|
+
"const": "editResolvedPart"
|
|
147500
|
+
},
|
|
147501
|
+
{
|
|
147502
|
+
"const": "error"
|
|
147503
|
+
}
|
|
147504
|
+
]
|
|
147505
|
+
}
|
|
147506
|
+
},
|
|
147507
|
+
"required": [
|
|
147508
|
+
"kind",
|
|
147509
|
+
"storyType",
|
|
147510
|
+
"section",
|
|
147511
|
+
"headerFooterKind",
|
|
147512
|
+
"variant"
|
|
147513
|
+
]
|
|
147514
|
+
},
|
|
147515
|
+
{
|
|
147516
|
+
"type": "object",
|
|
147517
|
+
"properties": {
|
|
147518
|
+
"kind": {
|
|
147519
|
+
"const": "story"
|
|
147520
|
+
},
|
|
147521
|
+
"storyType": {
|
|
147522
|
+
"const": "headerFooterPart"
|
|
147523
|
+
},
|
|
147524
|
+
"refId": {
|
|
147525
|
+
"type": "string"
|
|
147526
|
+
}
|
|
147527
|
+
},
|
|
147528
|
+
"required": [
|
|
147529
|
+
"kind",
|
|
147530
|
+
"storyType",
|
|
147531
|
+
"refId"
|
|
147532
|
+
]
|
|
147533
|
+
},
|
|
147534
|
+
{
|
|
147535
|
+
"type": "object",
|
|
147536
|
+
"properties": {
|
|
147537
|
+
"kind": {
|
|
147538
|
+
"const": "story"
|
|
147539
|
+
},
|
|
147540
|
+
"storyType": {
|
|
147541
|
+
"const": "footnote"
|
|
147542
|
+
},
|
|
147543
|
+
"noteId": {
|
|
147544
|
+
"type": "string"
|
|
147545
|
+
}
|
|
147546
|
+
},
|
|
147547
|
+
"required": [
|
|
147548
|
+
"kind",
|
|
147549
|
+
"storyType",
|
|
147550
|
+
"noteId"
|
|
147551
|
+
]
|
|
147552
|
+
},
|
|
147553
|
+
{
|
|
147554
|
+
"type": "object",
|
|
147555
|
+
"properties": {
|
|
147556
|
+
"kind": {
|
|
147557
|
+
"const": "story"
|
|
147558
|
+
},
|
|
147559
|
+
"storyType": {
|
|
147560
|
+
"const": "endnote"
|
|
147561
|
+
},
|
|
147562
|
+
"noteId": {
|
|
147563
|
+
"type": "string"
|
|
147564
|
+
}
|
|
147565
|
+
},
|
|
147566
|
+
"required": [
|
|
147567
|
+
"kind",
|
|
147568
|
+
"storyType",
|
|
147569
|
+
"noteId"
|
|
147570
|
+
]
|
|
147571
|
+
}
|
|
147572
|
+
],
|
|
147573
|
+
"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."
|
|
144997
147574
|
}
|
|
144998
147575
|
},
|
|
144999
147576
|
"required": [
|