@superdoc-dev/sdk 1.8.0-next.5 → 1.8.0-next.50
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
|
@@ -122,6 +122,9 @@ export const CONTRACT = {
|
|
|
122
122
|
"$ref": "#/$defs/TextSegment"
|
|
123
123
|
},
|
|
124
124
|
"minItems": 1
|
|
125
|
+
},
|
|
126
|
+
"story": {
|
|
127
|
+
"$ref": "#/$defs/StoryLocator"
|
|
125
128
|
}
|
|
126
129
|
},
|
|
127
130
|
"additionalProperties": false,
|
|
@@ -1220,7 +1223,7 @@ export const CONTRACT = {
|
|
|
1220
1223
|
"find"
|
|
1221
1224
|
],
|
|
1222
1225
|
"category": "core",
|
|
1223
|
-
"description": "Search the document for text or node matches using SDM/1 selectors. Returns discovery-grade results
|
|
1226
|
+
"description": "Search the document for text or node matches using SDM/1 selectors. Returns discovery-grade results: for mutation targeting, use query.match instead.",
|
|
1224
1227
|
"requiresDocumentContext": true,
|
|
1225
1228
|
"docRequirement": "optional",
|
|
1226
1229
|
"responseEnvelopeKey": "result",
|
|
@@ -3131,7 +3134,7 @@ export const CONTRACT = {
|
|
|
3131
3134
|
"extract"
|
|
3132
3135
|
],
|
|
3133
3136
|
"category": "core",
|
|
3134
|
-
"description": "Extract all document content with stable IDs for RAG pipelines. Returns blocks with full text, comments, and tracked changes
|
|
3137
|
+
"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().",
|
|
3135
3138
|
"requiresDocumentContext": true,
|
|
3136
3139
|
"docRequirement": "optional",
|
|
3137
3140
|
"responseEnvelopeKey": null,
|
|
@@ -3170,7 +3173,7 @@ export const CONTRACT = {
|
|
|
3170
3173
|
"properties": {
|
|
3171
3174
|
"nodeId": {
|
|
3172
3175
|
"type": "string",
|
|
3173
|
-
"description": "Stable block ID
|
|
3176
|
+
"description": "Stable block ID: pass to scrollToElement() for navigation."
|
|
3174
3177
|
},
|
|
3175
3178
|
"type": {
|
|
3176
3179
|
"type": "string",
|
|
@@ -3180,9 +3183,52 @@ export const CONTRACT = {
|
|
|
3180
3183
|
"type": "string",
|
|
3181
3184
|
"description": "Full plain text content of the block."
|
|
3182
3185
|
},
|
|
3186
|
+
"textSpans": {
|
|
3187
|
+
"type": "array",
|
|
3188
|
+
"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`.",
|
|
3189
|
+
"items": {
|
|
3190
|
+
"type": "object",
|
|
3191
|
+
"properties": {
|
|
3192
|
+
"text": {
|
|
3193
|
+
"type": "string",
|
|
3194
|
+
"description": "Raw text of the run."
|
|
3195
|
+
},
|
|
3196
|
+
"trackedChanges": {
|
|
3197
|
+
"type": "array",
|
|
3198
|
+
"description": "Tracked-change marks applied to this run.",
|
|
3199
|
+
"items": {
|
|
3200
|
+
"type": "object",
|
|
3201
|
+
"properties": {
|
|
3202
|
+
"entityId": {
|
|
3203
|
+
"type": "string",
|
|
3204
|
+
"description": "Tracked change entity ID matching an entry in trackedChanges[]."
|
|
3205
|
+
},
|
|
3206
|
+
"type": {
|
|
3207
|
+
"type": "string",
|
|
3208
|
+
"enum": [
|
|
3209
|
+
"insert",
|
|
3210
|
+
"delete",
|
|
3211
|
+
"format"
|
|
3212
|
+
]
|
|
3213
|
+
}
|
|
3214
|
+
},
|
|
3215
|
+
"additionalProperties": false,
|
|
3216
|
+
"required": [
|
|
3217
|
+
"entityId",
|
|
3218
|
+
"type"
|
|
3219
|
+
]
|
|
3220
|
+
}
|
|
3221
|
+
}
|
|
3222
|
+
},
|
|
3223
|
+
"additionalProperties": false,
|
|
3224
|
+
"required": [
|
|
3225
|
+
"text"
|
|
3226
|
+
]
|
|
3227
|
+
}
|
|
3228
|
+
},
|
|
3183
3229
|
"headingLevel": {
|
|
3184
3230
|
"type": "integer",
|
|
3185
|
-
"description": "Heading level (1
|
|
3231
|
+
"description": "Heading level (1-6). Only present for headings."
|
|
3186
3232
|
},
|
|
3187
3233
|
"tableContext": {
|
|
3188
3234
|
"type": "object",
|
|
@@ -3245,7 +3291,7 @@ export const CONTRACT = {
|
|
|
3245
3291
|
"properties": {
|
|
3246
3292
|
"entityId": {
|
|
3247
3293
|
"type": "string",
|
|
3248
|
-
"description": "Comment entity ID
|
|
3294
|
+
"description": "Comment entity ID: pass to scrollToElement() for navigation."
|
|
3249
3295
|
},
|
|
3250
3296
|
"text": {
|
|
3251
3297
|
"type": "string",
|
|
@@ -3285,7 +3331,7 @@ export const CONTRACT = {
|
|
|
3285
3331
|
"properties": {
|
|
3286
3332
|
"entityId": {
|
|
3287
3333
|
"type": "string",
|
|
3288
|
-
"description": "Tracked change entity ID
|
|
3334
|
+
"description": "Tracked change entity ID. Pass to scrollToElement() for navigation."
|
|
3289
3335
|
},
|
|
3290
3336
|
"type": {
|
|
3291
3337
|
"type": "string",
|
|
@@ -3293,11 +3339,37 @@ export const CONTRACT = {
|
|
|
3293
3339
|
"insert",
|
|
3294
3340
|
"delete",
|
|
3295
3341
|
"format"
|
|
3296
|
-
]
|
|
3342
|
+
],
|
|
3343
|
+
"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[]."
|
|
3344
|
+
},
|
|
3345
|
+
"blockIds": {
|
|
3346
|
+
"type": "array",
|
|
3347
|
+
"description": "Block IDs whose textSpans carry this change.",
|
|
3348
|
+
"items": {
|
|
3349
|
+
"type": "string"
|
|
3350
|
+
}
|
|
3351
|
+
},
|
|
3352
|
+
"wordRevisionIds": {
|
|
3353
|
+
"type": "object",
|
|
3354
|
+
"properties": {
|
|
3355
|
+
"insert": {
|
|
3356
|
+
"type": "string",
|
|
3357
|
+
"description": "Original OOXML w:id from a w:ins mark."
|
|
3358
|
+
},
|
|
3359
|
+
"delete": {
|
|
3360
|
+
"type": "string",
|
|
3361
|
+
"description": "Original OOXML w:id from a w:del mark."
|
|
3362
|
+
},
|
|
3363
|
+
"format": {
|
|
3364
|
+
"type": "string",
|
|
3365
|
+
"description": "Original OOXML w:id from a w:rPrChange mark."
|
|
3366
|
+
}
|
|
3367
|
+
},
|
|
3368
|
+
"additionalProperties": false
|
|
3297
3369
|
},
|
|
3298
3370
|
"excerpt": {
|
|
3299
3371
|
"type": "string",
|
|
3300
|
-
"description": "Short text excerpt of the changed content."
|
|
3372
|
+
"description": "Short text excerpt of the changed content. Omitted for paired replacements; read block.textSpans for the per-half text."
|
|
3301
3373
|
},
|
|
3302
3374
|
"author": {
|
|
3303
3375
|
"type": "string",
|
|
@@ -34826,7 +34898,7 @@ export const CONTRACT = {
|
|
|
34826
34898
|
"name": "text",
|
|
34827
34899
|
"kind": "flag",
|
|
34828
34900
|
"type": "string",
|
|
34829
|
-
"description": "Paragraph text content. Each call creates ONE paragraph. For multiple items (e.g. list items), call superdoc_create separately for each item
|
|
34901
|
+
"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."
|
|
34830
34902
|
},
|
|
34831
34903
|
{
|
|
34832
34904
|
"name": "input",
|
|
@@ -34910,7 +34982,7 @@ export const CONTRACT = {
|
|
|
34910
34982
|
},
|
|
34911
34983
|
"text": {
|
|
34912
34984
|
"type": "string",
|
|
34913
|
-
"description": "Paragraph text content. Each call creates ONE paragraph. For multiple items (e.g. list items), call superdoc_create separately for each item
|
|
34985
|
+
"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."
|
|
34914
34986
|
}
|
|
34915
34987
|
},
|
|
34916
34988
|
"additionalProperties": false
|
|
@@ -51249,7 +51321,7 @@ export const CONTRACT = {
|
|
|
51249
51321
|
"create"
|
|
51250
51322
|
],
|
|
51251
51323
|
"category": "lists",
|
|
51252
|
-
"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
|
|
51324
|
+
"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.",
|
|
51253
51325
|
"requiresDocumentContext": true,
|
|
51254
51326
|
"docRequirement": "optional",
|
|
51255
51327
|
"responseEnvelopeKey": "result",
|
|
@@ -51319,9 +51391,9 @@ export const CONTRACT = {
|
|
|
51319
51391
|
"const": "fromParagraphs"
|
|
51320
51392
|
}
|
|
51321
51393
|
],
|
|
51322
|
-
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items
|
|
51394
|
+
"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'."
|
|
51323
51395
|
},
|
|
51324
|
-
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items
|
|
51396
|
+
"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'."
|
|
51325
51397
|
},
|
|
51326
51398
|
{
|
|
51327
51399
|
"name": "at",
|
|
@@ -51636,7 +51708,7 @@ export const CONTRACT = {
|
|
|
51636
51708
|
"empty",
|
|
51637
51709
|
"fromParagraphs"
|
|
51638
51710
|
],
|
|
51639
|
-
"description": "Required. 'fromParagraphs' converts existing paragraphs into list items
|
|
51711
|
+
"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'."
|
|
51640
51712
|
},
|
|
51641
51713
|
"at": {
|
|
51642
51714
|
"$ref": "#/$defs/BlockAddress",
|
|
@@ -52274,7 +52346,9 @@ export const CONTRACT = {
|
|
|
52274
52346
|
"success",
|
|
52275
52347
|
"failure"
|
|
52276
52348
|
]
|
|
52277
|
-
}
|
|
52349
|
+
},
|
|
52350
|
+
"intentGroup": "list",
|
|
52351
|
+
"intentAction": "attach"
|
|
52278
52352
|
},
|
|
52279
52353
|
"doc.lists.detach": {
|
|
52280
52354
|
"operationId": "doc.lists.detach",
|
|
@@ -53572,19 +53646,19 @@ export const CONTRACT = {
|
|
|
53572
53646
|
]
|
|
53573
53647
|
}
|
|
53574
53648
|
},
|
|
53575
|
-
"doc.lists.
|
|
53576
|
-
"operationId": "doc.lists.
|
|
53649
|
+
"doc.lists.merge": {
|
|
53650
|
+
"operationId": "doc.lists.merge",
|
|
53577
53651
|
"sdkSurface": "document",
|
|
53578
|
-
"command": "lists
|
|
53652
|
+
"command": "lists merge",
|
|
53579
53653
|
"commandTokens": [
|
|
53580
53654
|
"lists",
|
|
53581
|
-
"
|
|
53655
|
+
"merge"
|
|
53582
53656
|
],
|
|
53583
53657
|
"category": "lists",
|
|
53584
|
-
"description": "
|
|
53658
|
+
"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.",
|
|
53585
53659
|
"requiresDocumentContext": true,
|
|
53586
53660
|
"docRequirement": "optional",
|
|
53587
|
-
"responseEnvelopeKey":
|
|
53661
|
+
"responseEnvelopeKey": null,
|
|
53588
53662
|
"params": [
|
|
53589
53663
|
{
|
|
53590
53664
|
"name": "doc",
|
|
@@ -53643,6 +53717,7 @@ export const CONTRACT = {
|
|
|
53643
53717
|
"kind": "jsonFlag",
|
|
53644
53718
|
"type": "json",
|
|
53645
53719
|
"flag": "target-json",
|
|
53720
|
+
"required": true,
|
|
53646
53721
|
"schema": {
|
|
53647
53722
|
"type": "object",
|
|
53648
53723
|
"properties": {
|
|
@@ -53664,23 +53739,20 @@ export const CONTRACT = {
|
|
|
53664
53739
|
}
|
|
53665
53740
|
},
|
|
53666
53741
|
{
|
|
53667
|
-
"name": "
|
|
53668
|
-
"kind": "flag",
|
|
53669
|
-
"type": "number"
|
|
53670
|
-
},
|
|
53671
|
-
{
|
|
53672
|
-
"name": "input",
|
|
53673
|
-
"kind": "jsonFlag",
|
|
53674
|
-
"type": "json",
|
|
53675
|
-
"flag": "input-json",
|
|
53676
|
-
"description": "Operation input as JSON object."
|
|
53677
|
-
},
|
|
53678
|
-
{
|
|
53679
|
-
"name": "nodeId",
|
|
53742
|
+
"name": "direction",
|
|
53680
53743
|
"kind": "flag",
|
|
53681
53744
|
"type": "string",
|
|
53682
|
-
"
|
|
53683
|
-
"
|
|
53745
|
+
"required": true,
|
|
53746
|
+
"schema": {
|
|
53747
|
+
"oneOf": [
|
|
53748
|
+
{
|
|
53749
|
+
"const": "withPrevious"
|
|
53750
|
+
},
|
|
53751
|
+
{
|
|
53752
|
+
"const": "withNext"
|
|
53753
|
+
}
|
|
53754
|
+
]
|
|
53755
|
+
}
|
|
53684
53756
|
}
|
|
53685
53757
|
],
|
|
53686
53758
|
"constraints": null,
|
|
@@ -53694,16 +53766,17 @@ export const CONTRACT = {
|
|
|
53694
53766
|
"target": {
|
|
53695
53767
|
"$ref": "#/$defs/ListItemAddress"
|
|
53696
53768
|
},
|
|
53697
|
-
"
|
|
53698
|
-
"
|
|
53699
|
-
|
|
53700
|
-
|
|
53769
|
+
"direction": {
|
|
53770
|
+
"enum": [
|
|
53771
|
+
"withPrevious",
|
|
53772
|
+
"withNext"
|
|
53773
|
+
]
|
|
53701
53774
|
}
|
|
53702
53775
|
},
|
|
53703
53776
|
"additionalProperties": false,
|
|
53704
53777
|
"required": [
|
|
53705
53778
|
"target",
|
|
53706
|
-
"
|
|
53779
|
+
"direction"
|
|
53707
53780
|
]
|
|
53708
53781
|
},
|
|
53709
53782
|
"outputSchema": {
|
|
@@ -53714,14 +53787,22 @@ export const CONTRACT = {
|
|
|
53714
53787
|
"success": {
|
|
53715
53788
|
"const": true
|
|
53716
53789
|
},
|
|
53717
|
-
"
|
|
53718
|
-
"
|
|
53790
|
+
"listId": {
|
|
53791
|
+
"type": "string"
|
|
53792
|
+
},
|
|
53793
|
+
"absorbedCount": {
|
|
53794
|
+
"type": "integer"
|
|
53795
|
+
},
|
|
53796
|
+
"removedEmptyBlocks": {
|
|
53797
|
+
"type": "integer"
|
|
53719
53798
|
}
|
|
53720
53799
|
},
|
|
53721
53800
|
"additionalProperties": false,
|
|
53722
53801
|
"required": [
|
|
53723
53802
|
"success",
|
|
53724
|
-
"
|
|
53803
|
+
"listId",
|
|
53804
|
+
"absorbedCount",
|
|
53805
|
+
"removedEmptyBlocks"
|
|
53725
53806
|
]
|
|
53726
53807
|
},
|
|
53727
53808
|
{
|
|
@@ -53736,7 +53817,7 @@ export const CONTRACT = {
|
|
|
53736
53817
|
"code": {
|
|
53737
53818
|
"enum": [
|
|
53738
53819
|
"INVALID_TARGET",
|
|
53739
|
-
"
|
|
53820
|
+
"NO_ADJACENT_SEQUENCE",
|
|
53740
53821
|
"NO_OP"
|
|
53741
53822
|
]
|
|
53742
53823
|
},
|
|
@@ -53766,14 +53847,22 @@ export const CONTRACT = {
|
|
|
53766
53847
|
"success": {
|
|
53767
53848
|
"const": true
|
|
53768
53849
|
},
|
|
53769
|
-
"
|
|
53770
|
-
"
|
|
53850
|
+
"listId": {
|
|
53851
|
+
"type": "string"
|
|
53852
|
+
},
|
|
53853
|
+
"absorbedCount": {
|
|
53854
|
+
"type": "integer"
|
|
53855
|
+
},
|
|
53856
|
+
"removedEmptyBlocks": {
|
|
53857
|
+
"type": "integer"
|
|
53771
53858
|
}
|
|
53772
53859
|
},
|
|
53773
53860
|
"additionalProperties": false,
|
|
53774
53861
|
"required": [
|
|
53775
53862
|
"success",
|
|
53776
|
-
"
|
|
53863
|
+
"listId",
|
|
53864
|
+
"absorbedCount",
|
|
53865
|
+
"removedEmptyBlocks"
|
|
53777
53866
|
]
|
|
53778
53867
|
},
|
|
53779
53868
|
"failureSchema": {
|
|
@@ -53788,7 +53877,7 @@ export const CONTRACT = {
|
|
|
53788
53877
|
"code": {
|
|
53789
53878
|
"enum": [
|
|
53790
53879
|
"INVALID_TARGET",
|
|
53791
|
-
"
|
|
53880
|
+
"NO_ADJACENT_SEQUENCE",
|
|
53792
53881
|
"NO_OP"
|
|
53793
53882
|
]
|
|
53794
53883
|
},
|
|
@@ -53811,21 +53900,21 @@ export const CONTRACT = {
|
|
|
53811
53900
|
]
|
|
53812
53901
|
},
|
|
53813
53902
|
"intentGroup": "list",
|
|
53814
|
-
"intentAction": "
|
|
53903
|
+
"intentAction": "merge"
|
|
53815
53904
|
},
|
|
53816
|
-
"doc.lists.
|
|
53817
|
-
"operationId": "doc.lists.
|
|
53905
|
+
"doc.lists.split": {
|
|
53906
|
+
"operationId": "doc.lists.split",
|
|
53818
53907
|
"sdkSurface": "document",
|
|
53819
|
-
"command": "lists
|
|
53908
|
+
"command": "lists split",
|
|
53820
53909
|
"commandTokens": [
|
|
53821
53910
|
"lists",
|
|
53822
|
-
"
|
|
53911
|
+
"split"
|
|
53823
53912
|
],
|
|
53824
53913
|
"category": "lists",
|
|
53825
|
-
"description": "
|
|
53914
|
+
"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).",
|
|
53826
53915
|
"requiresDocumentContext": true,
|
|
53827
53916
|
"docRequirement": "optional",
|
|
53828
|
-
"responseEnvelopeKey":
|
|
53917
|
+
"responseEnvelopeKey": null,
|
|
53829
53918
|
"params": [
|
|
53830
53919
|
{
|
|
53831
53920
|
"name": "doc",
|
|
@@ -53884,6 +53973,7 @@ export const CONTRACT = {
|
|
|
53884
53973
|
"kind": "jsonFlag",
|
|
53885
53974
|
"type": "json",
|
|
53886
53975
|
"flag": "target-json",
|
|
53976
|
+
"required": true,
|
|
53887
53977
|
"schema": {
|
|
53888
53978
|
"type": "object",
|
|
53889
53979
|
"properties": {
|
|
@@ -53905,27 +53995,10 @@ export const CONTRACT = {
|
|
|
53905
53995
|
}
|
|
53906
53996
|
},
|
|
53907
53997
|
{
|
|
53908
|
-
"name": "
|
|
53909
|
-
"kind": "jsonFlag",
|
|
53910
|
-
"type": "json",
|
|
53911
|
-
"flag": "value-json",
|
|
53912
|
-
"schema": {
|
|
53913
|
-
"type": "json"
|
|
53914
|
-
}
|
|
53915
|
-
},
|
|
53916
|
-
{
|
|
53917
|
-
"name": "input",
|
|
53918
|
-
"kind": "jsonFlag",
|
|
53919
|
-
"type": "json",
|
|
53920
|
-
"flag": "input-json",
|
|
53921
|
-
"description": "Operation input as JSON object."
|
|
53922
|
-
},
|
|
53923
|
-
{
|
|
53924
|
-
"name": "nodeId",
|
|
53998
|
+
"name": "restartNumbering",
|
|
53925
53999
|
"kind": "flag",
|
|
53926
|
-
"type": "
|
|
53927
|
-
"flag": "
|
|
53928
|
-
"description": "Node ID of the target list item."
|
|
54000
|
+
"type": "boolean",
|
|
54001
|
+
"flag": "restart-numbering"
|
|
53929
54002
|
}
|
|
53930
54003
|
],
|
|
53931
54004
|
"constraints": null,
|
|
@@ -53939,17 +54012,13 @@ export const CONTRACT = {
|
|
|
53939
54012
|
"target": {
|
|
53940
54013
|
"$ref": "#/$defs/ListItemAddress"
|
|
53941
54014
|
},
|
|
53942
|
-
"
|
|
53943
|
-
"type":
|
|
53944
|
-
"integer",
|
|
53945
|
-
"null"
|
|
53946
|
-
]
|
|
54015
|
+
"restartNumbering": {
|
|
54016
|
+
"type": "boolean"
|
|
53947
54017
|
}
|
|
53948
54018
|
},
|
|
53949
54019
|
"additionalProperties": false,
|
|
53950
54020
|
"required": [
|
|
53951
|
-
"target"
|
|
53952
|
-
"value"
|
|
54021
|
+
"target"
|
|
53953
54022
|
]
|
|
53954
54023
|
},
|
|
53955
54024
|
"outputSchema": {
|
|
@@ -53960,14 +54029,25 @@ export const CONTRACT = {
|
|
|
53960
54029
|
"success": {
|
|
53961
54030
|
"const": true
|
|
53962
54031
|
},
|
|
53963
|
-
"
|
|
53964
|
-
"
|
|
54032
|
+
"listId": {
|
|
54033
|
+
"type": "string"
|
|
54034
|
+
},
|
|
54035
|
+
"numId": {
|
|
54036
|
+
"type": "integer"
|
|
54037
|
+
},
|
|
54038
|
+
"restartedAt": {
|
|
54039
|
+
"type": [
|
|
54040
|
+
"integer",
|
|
54041
|
+
"null"
|
|
54042
|
+
]
|
|
53965
54043
|
}
|
|
53966
54044
|
},
|
|
53967
54045
|
"additionalProperties": false,
|
|
53968
54046
|
"required": [
|
|
53969
54047
|
"success",
|
|
53970
|
-
"
|
|
54048
|
+
"listId",
|
|
54049
|
+
"numId",
|
|
54050
|
+
"restartedAt"
|
|
53971
54051
|
]
|
|
53972
54052
|
},
|
|
53973
54053
|
{
|
|
@@ -54011,14 +54091,25 @@ export const CONTRACT = {
|
|
|
54011
54091
|
"success": {
|
|
54012
54092
|
"const": true
|
|
54013
54093
|
},
|
|
54014
|
-
"
|
|
54015
|
-
"
|
|
54094
|
+
"listId": {
|
|
54095
|
+
"type": "string"
|
|
54096
|
+
},
|
|
54097
|
+
"numId": {
|
|
54098
|
+
"type": "integer"
|
|
54099
|
+
},
|
|
54100
|
+
"restartedAt": {
|
|
54101
|
+
"type": [
|
|
54102
|
+
"integer",
|
|
54103
|
+
"null"
|
|
54104
|
+
]
|
|
54016
54105
|
}
|
|
54017
54106
|
},
|
|
54018
54107
|
"additionalProperties": false,
|
|
54019
54108
|
"required": [
|
|
54020
54109
|
"success",
|
|
54021
|
-
"
|
|
54110
|
+
"listId",
|
|
54111
|
+
"numId",
|
|
54112
|
+
"restartedAt"
|
|
54022
54113
|
]
|
|
54023
54114
|
},
|
|
54024
54115
|
"failureSchema": {
|
|
@@ -54053,18 +54144,20 @@ export const CONTRACT = {
|
|
|
54053
54144
|
"success",
|
|
54054
54145
|
"failure"
|
|
54055
54146
|
]
|
|
54056
|
-
}
|
|
54147
|
+
},
|
|
54148
|
+
"intentGroup": "list",
|
|
54149
|
+
"intentAction": "split"
|
|
54057
54150
|
},
|
|
54058
|
-
"doc.lists.
|
|
54059
|
-
"operationId": "doc.lists.
|
|
54151
|
+
"doc.lists.setLevel": {
|
|
54152
|
+
"operationId": "doc.lists.setLevel",
|
|
54060
54153
|
"sdkSurface": "document",
|
|
54061
|
-
"command": "lists
|
|
54154
|
+
"command": "lists set-level",
|
|
54062
54155
|
"commandTokens": [
|
|
54063
54156
|
"lists",
|
|
54064
|
-
"
|
|
54157
|
+
"set-level"
|
|
54065
54158
|
],
|
|
54066
54159
|
"category": "lists",
|
|
54067
|
-
"description": "
|
|
54160
|
+
"description": "Set the absolute nesting level (0..8) of a list item.",
|
|
54068
54161
|
"requiresDocumentContext": true,
|
|
54069
54162
|
"docRequirement": "optional",
|
|
54070
54163
|
"responseEnvelopeKey": "result",
|
|
@@ -54146,6 +54239,11 @@ export const CONTRACT = {
|
|
|
54146
54239
|
]
|
|
54147
54240
|
}
|
|
54148
54241
|
},
|
|
54242
|
+
{
|
|
54243
|
+
"name": "level",
|
|
54244
|
+
"kind": "flag",
|
|
54245
|
+
"type": "number"
|
|
54246
|
+
},
|
|
54149
54247
|
{
|
|
54150
54248
|
"name": "input",
|
|
54151
54249
|
"kind": "jsonFlag",
|
|
@@ -54171,11 +54269,17 @@ export const CONTRACT = {
|
|
|
54171
54269
|
"properties": {
|
|
54172
54270
|
"target": {
|
|
54173
54271
|
"$ref": "#/$defs/ListItemAddress"
|
|
54272
|
+
},
|
|
54273
|
+
"level": {
|
|
54274
|
+
"type": "integer",
|
|
54275
|
+
"minimum": 0,
|
|
54276
|
+
"maximum": 8
|
|
54174
54277
|
}
|
|
54175
54278
|
},
|
|
54176
54279
|
"additionalProperties": false,
|
|
54177
54280
|
"required": [
|
|
54178
|
-
"target"
|
|
54281
|
+
"target",
|
|
54282
|
+
"level"
|
|
54179
54283
|
]
|
|
54180
54284
|
},
|
|
54181
54285
|
"outputSchema": {
|
|
@@ -54208,8 +54312,8 @@ export const CONTRACT = {
|
|
|
54208
54312
|
"code": {
|
|
54209
54313
|
"enum": [
|
|
54210
54314
|
"INVALID_TARGET",
|
|
54211
|
-
"
|
|
54212
|
-
"
|
|
54315
|
+
"LEVEL_OUT_OF_RANGE",
|
|
54316
|
+
"NO_OP"
|
|
54213
54317
|
]
|
|
54214
54318
|
},
|
|
54215
54319
|
"message": {
|
|
@@ -54260,8 +54364,8 @@ export const CONTRACT = {
|
|
|
54260
54364
|
"code": {
|
|
54261
54365
|
"enum": [
|
|
54262
54366
|
"INVALID_TARGET",
|
|
54263
|
-
"
|
|
54264
|
-
"
|
|
54367
|
+
"LEVEL_OUT_OF_RANGE",
|
|
54368
|
+
"NO_OP"
|
|
54265
54369
|
]
|
|
54266
54370
|
},
|
|
54267
54371
|
"message": {
|
|
@@ -54281,18 +54385,494 @@ export const CONTRACT = {
|
|
|
54281
54385
|
"success",
|
|
54282
54386
|
"failure"
|
|
54283
54387
|
]
|
|
54284
|
-
}
|
|
54388
|
+
},
|
|
54389
|
+
"intentGroup": "list",
|
|
54390
|
+
"intentAction": "set_level"
|
|
54285
54391
|
},
|
|
54286
|
-
"doc.lists.
|
|
54287
|
-
"operationId": "doc.lists.
|
|
54392
|
+
"doc.lists.setValue": {
|
|
54393
|
+
"operationId": "doc.lists.setValue",
|
|
54288
54394
|
"sdkSurface": "document",
|
|
54289
|
-
"command": "lists
|
|
54395
|
+
"command": "lists set-value",
|
|
54290
54396
|
"commandTokens": [
|
|
54291
54397
|
"lists",
|
|
54292
|
-
"
|
|
54398
|
+
"set-value"
|
|
54293
54399
|
],
|
|
54294
54400
|
"category": "lists",
|
|
54295
|
-
"description": "
|
|
54401
|
+
"description": "Set an explicit numbering value at the target item. Mid-sequence targets are atomically separated first.",
|
|
54402
|
+
"requiresDocumentContext": true,
|
|
54403
|
+
"docRequirement": "optional",
|
|
54404
|
+
"responseEnvelopeKey": "result",
|
|
54405
|
+
"params": [
|
|
54406
|
+
{
|
|
54407
|
+
"name": "doc",
|
|
54408
|
+
"kind": "doc",
|
|
54409
|
+
"type": "string",
|
|
54410
|
+
"description": "Document path. Optional when a session is already open."
|
|
54411
|
+
},
|
|
54412
|
+
{
|
|
54413
|
+
"name": "sessionId",
|
|
54414
|
+
"kind": "flag",
|
|
54415
|
+
"type": "string",
|
|
54416
|
+
"flag": "session",
|
|
54417
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
54418
|
+
},
|
|
54419
|
+
{
|
|
54420
|
+
"name": "out",
|
|
54421
|
+
"kind": "flag",
|
|
54422
|
+
"type": "string",
|
|
54423
|
+
"agentVisible": false
|
|
54424
|
+
},
|
|
54425
|
+
{
|
|
54426
|
+
"name": "force",
|
|
54427
|
+
"kind": "flag",
|
|
54428
|
+
"type": "boolean",
|
|
54429
|
+
"description": "Bypass confirmation checks."
|
|
54430
|
+
},
|
|
54431
|
+
{
|
|
54432
|
+
"name": "expectedRevision",
|
|
54433
|
+
"kind": "flag",
|
|
54434
|
+
"type": "number",
|
|
54435
|
+
"flag": "expected-revision",
|
|
54436
|
+
"agentVisible": false
|
|
54437
|
+
},
|
|
54438
|
+
{
|
|
54439
|
+
"name": "changeMode",
|
|
54440
|
+
"kind": "flag",
|
|
54441
|
+
"type": "string",
|
|
54442
|
+
"flag": "change-mode",
|
|
54443
|
+
"schema": {
|
|
54444
|
+
"enum": [
|
|
54445
|
+
"direct",
|
|
54446
|
+
"tracked"
|
|
54447
|
+
]
|
|
54448
|
+
},
|
|
54449
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
54450
|
+
},
|
|
54451
|
+
{
|
|
54452
|
+
"name": "dryRun",
|
|
54453
|
+
"kind": "flag",
|
|
54454
|
+
"type": "boolean",
|
|
54455
|
+
"flag": "dry-run",
|
|
54456
|
+
"description": "Preview the result without applying changes."
|
|
54457
|
+
},
|
|
54458
|
+
{
|
|
54459
|
+
"name": "target",
|
|
54460
|
+
"kind": "jsonFlag",
|
|
54461
|
+
"type": "json",
|
|
54462
|
+
"flag": "target-json",
|
|
54463
|
+
"schema": {
|
|
54464
|
+
"type": "object",
|
|
54465
|
+
"properties": {
|
|
54466
|
+
"kind": {
|
|
54467
|
+
"const": "block"
|
|
54468
|
+
},
|
|
54469
|
+
"nodeType": {
|
|
54470
|
+
"const": "listItem"
|
|
54471
|
+
},
|
|
54472
|
+
"nodeId": {
|
|
54473
|
+
"type": "string"
|
|
54474
|
+
}
|
|
54475
|
+
},
|
|
54476
|
+
"required": [
|
|
54477
|
+
"kind",
|
|
54478
|
+
"nodeType",
|
|
54479
|
+
"nodeId"
|
|
54480
|
+
]
|
|
54481
|
+
}
|
|
54482
|
+
},
|
|
54483
|
+
{
|
|
54484
|
+
"name": "value",
|
|
54485
|
+
"kind": "jsonFlag",
|
|
54486
|
+
"type": "json",
|
|
54487
|
+
"flag": "value-json",
|
|
54488
|
+
"schema": {
|
|
54489
|
+
"type": "json"
|
|
54490
|
+
}
|
|
54491
|
+
},
|
|
54492
|
+
{
|
|
54493
|
+
"name": "input",
|
|
54494
|
+
"kind": "jsonFlag",
|
|
54495
|
+
"type": "json",
|
|
54496
|
+
"flag": "input-json",
|
|
54497
|
+
"description": "Operation input as JSON object."
|
|
54498
|
+
},
|
|
54499
|
+
{
|
|
54500
|
+
"name": "nodeId",
|
|
54501
|
+
"kind": "flag",
|
|
54502
|
+
"type": "string",
|
|
54503
|
+
"flag": "node-id",
|
|
54504
|
+
"description": "Node ID of the target list item."
|
|
54505
|
+
}
|
|
54506
|
+
],
|
|
54507
|
+
"constraints": null,
|
|
54508
|
+
"mutates": true,
|
|
54509
|
+
"idempotency": "conditional",
|
|
54510
|
+
"supportsTrackedMode": false,
|
|
54511
|
+
"supportsDryRun": true,
|
|
54512
|
+
"inputSchema": {
|
|
54513
|
+
"type": "object",
|
|
54514
|
+
"properties": {
|
|
54515
|
+
"target": {
|
|
54516
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
54517
|
+
},
|
|
54518
|
+
"value": {
|
|
54519
|
+
"type": [
|
|
54520
|
+
"integer",
|
|
54521
|
+
"null"
|
|
54522
|
+
]
|
|
54523
|
+
}
|
|
54524
|
+
},
|
|
54525
|
+
"additionalProperties": false,
|
|
54526
|
+
"required": [
|
|
54527
|
+
"target",
|
|
54528
|
+
"value"
|
|
54529
|
+
]
|
|
54530
|
+
},
|
|
54531
|
+
"outputSchema": {
|
|
54532
|
+
"oneOf": [
|
|
54533
|
+
{
|
|
54534
|
+
"type": "object",
|
|
54535
|
+
"properties": {
|
|
54536
|
+
"success": {
|
|
54537
|
+
"const": true
|
|
54538
|
+
},
|
|
54539
|
+
"item": {
|
|
54540
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
54541
|
+
}
|
|
54542
|
+
},
|
|
54543
|
+
"additionalProperties": false,
|
|
54544
|
+
"required": [
|
|
54545
|
+
"success",
|
|
54546
|
+
"item"
|
|
54547
|
+
]
|
|
54548
|
+
},
|
|
54549
|
+
{
|
|
54550
|
+
"type": "object",
|
|
54551
|
+
"properties": {
|
|
54552
|
+
"success": {
|
|
54553
|
+
"const": false
|
|
54554
|
+
},
|
|
54555
|
+
"failure": {
|
|
54556
|
+
"type": "object",
|
|
54557
|
+
"properties": {
|
|
54558
|
+
"code": {
|
|
54559
|
+
"enum": [
|
|
54560
|
+
"INVALID_TARGET",
|
|
54561
|
+
"NO_OP"
|
|
54562
|
+
]
|
|
54563
|
+
},
|
|
54564
|
+
"message": {
|
|
54565
|
+
"type": "string"
|
|
54566
|
+
},
|
|
54567
|
+
"details": {}
|
|
54568
|
+
},
|
|
54569
|
+
"additionalProperties": false,
|
|
54570
|
+
"required": [
|
|
54571
|
+
"code",
|
|
54572
|
+
"message"
|
|
54573
|
+
]
|
|
54574
|
+
}
|
|
54575
|
+
},
|
|
54576
|
+
"additionalProperties": false,
|
|
54577
|
+
"required": [
|
|
54578
|
+
"success",
|
|
54579
|
+
"failure"
|
|
54580
|
+
]
|
|
54581
|
+
}
|
|
54582
|
+
]
|
|
54583
|
+
},
|
|
54584
|
+
"successSchema": {
|
|
54585
|
+
"type": "object",
|
|
54586
|
+
"properties": {
|
|
54587
|
+
"success": {
|
|
54588
|
+
"const": true
|
|
54589
|
+
},
|
|
54590
|
+
"item": {
|
|
54591
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
54592
|
+
}
|
|
54593
|
+
},
|
|
54594
|
+
"additionalProperties": false,
|
|
54595
|
+
"required": [
|
|
54596
|
+
"success",
|
|
54597
|
+
"item"
|
|
54598
|
+
]
|
|
54599
|
+
},
|
|
54600
|
+
"failureSchema": {
|
|
54601
|
+
"type": "object",
|
|
54602
|
+
"properties": {
|
|
54603
|
+
"success": {
|
|
54604
|
+
"const": false
|
|
54605
|
+
},
|
|
54606
|
+
"failure": {
|
|
54607
|
+
"type": "object",
|
|
54608
|
+
"properties": {
|
|
54609
|
+
"code": {
|
|
54610
|
+
"enum": [
|
|
54611
|
+
"INVALID_TARGET",
|
|
54612
|
+
"NO_OP"
|
|
54613
|
+
]
|
|
54614
|
+
},
|
|
54615
|
+
"message": {
|
|
54616
|
+
"type": "string"
|
|
54617
|
+
},
|
|
54618
|
+
"details": {}
|
|
54619
|
+
},
|
|
54620
|
+
"additionalProperties": false,
|
|
54621
|
+
"required": [
|
|
54622
|
+
"code",
|
|
54623
|
+
"message"
|
|
54624
|
+
]
|
|
54625
|
+
}
|
|
54626
|
+
},
|
|
54627
|
+
"additionalProperties": false,
|
|
54628
|
+
"required": [
|
|
54629
|
+
"success",
|
|
54630
|
+
"failure"
|
|
54631
|
+
]
|
|
54632
|
+
},
|
|
54633
|
+
"intentGroup": "list",
|
|
54634
|
+
"intentAction": "set_value"
|
|
54635
|
+
},
|
|
54636
|
+
"doc.lists.continuePrevious": {
|
|
54637
|
+
"operationId": "doc.lists.continuePrevious",
|
|
54638
|
+
"sdkSurface": "document",
|
|
54639
|
+
"command": "lists continue-previous",
|
|
54640
|
+
"commandTokens": [
|
|
54641
|
+
"lists",
|
|
54642
|
+
"continue-previous"
|
|
54643
|
+
],
|
|
54644
|
+
"category": "lists",
|
|
54645
|
+
"description": "Continue numbering from the nearest compatible previous list sequence.",
|
|
54646
|
+
"requiresDocumentContext": true,
|
|
54647
|
+
"docRequirement": "optional",
|
|
54648
|
+
"responseEnvelopeKey": "result",
|
|
54649
|
+
"params": [
|
|
54650
|
+
{
|
|
54651
|
+
"name": "doc",
|
|
54652
|
+
"kind": "doc",
|
|
54653
|
+
"type": "string",
|
|
54654
|
+
"description": "Document path. Optional when a session is already open."
|
|
54655
|
+
},
|
|
54656
|
+
{
|
|
54657
|
+
"name": "sessionId",
|
|
54658
|
+
"kind": "flag",
|
|
54659
|
+
"type": "string",
|
|
54660
|
+
"flag": "session",
|
|
54661
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
54662
|
+
},
|
|
54663
|
+
{
|
|
54664
|
+
"name": "out",
|
|
54665
|
+
"kind": "flag",
|
|
54666
|
+
"type": "string",
|
|
54667
|
+
"agentVisible": false
|
|
54668
|
+
},
|
|
54669
|
+
{
|
|
54670
|
+
"name": "force",
|
|
54671
|
+
"kind": "flag",
|
|
54672
|
+
"type": "boolean",
|
|
54673
|
+
"description": "Bypass confirmation checks."
|
|
54674
|
+
},
|
|
54675
|
+
{
|
|
54676
|
+
"name": "expectedRevision",
|
|
54677
|
+
"kind": "flag",
|
|
54678
|
+
"type": "number",
|
|
54679
|
+
"flag": "expected-revision",
|
|
54680
|
+
"agentVisible": false
|
|
54681
|
+
},
|
|
54682
|
+
{
|
|
54683
|
+
"name": "changeMode",
|
|
54684
|
+
"kind": "flag",
|
|
54685
|
+
"type": "string",
|
|
54686
|
+
"flag": "change-mode",
|
|
54687
|
+
"schema": {
|
|
54688
|
+
"enum": [
|
|
54689
|
+
"direct",
|
|
54690
|
+
"tracked"
|
|
54691
|
+
]
|
|
54692
|
+
},
|
|
54693
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
54694
|
+
},
|
|
54695
|
+
{
|
|
54696
|
+
"name": "dryRun",
|
|
54697
|
+
"kind": "flag",
|
|
54698
|
+
"type": "boolean",
|
|
54699
|
+
"flag": "dry-run",
|
|
54700
|
+
"description": "Preview the result without applying changes."
|
|
54701
|
+
},
|
|
54702
|
+
{
|
|
54703
|
+
"name": "target",
|
|
54704
|
+
"kind": "jsonFlag",
|
|
54705
|
+
"type": "json",
|
|
54706
|
+
"flag": "target-json",
|
|
54707
|
+
"schema": {
|
|
54708
|
+
"type": "object",
|
|
54709
|
+
"properties": {
|
|
54710
|
+
"kind": {
|
|
54711
|
+
"const": "block"
|
|
54712
|
+
},
|
|
54713
|
+
"nodeType": {
|
|
54714
|
+
"const": "listItem"
|
|
54715
|
+
},
|
|
54716
|
+
"nodeId": {
|
|
54717
|
+
"type": "string"
|
|
54718
|
+
}
|
|
54719
|
+
},
|
|
54720
|
+
"required": [
|
|
54721
|
+
"kind",
|
|
54722
|
+
"nodeType",
|
|
54723
|
+
"nodeId"
|
|
54724
|
+
]
|
|
54725
|
+
}
|
|
54726
|
+
},
|
|
54727
|
+
{
|
|
54728
|
+
"name": "input",
|
|
54729
|
+
"kind": "jsonFlag",
|
|
54730
|
+
"type": "json",
|
|
54731
|
+
"flag": "input-json",
|
|
54732
|
+
"description": "Operation input as JSON object."
|
|
54733
|
+
},
|
|
54734
|
+
{
|
|
54735
|
+
"name": "nodeId",
|
|
54736
|
+
"kind": "flag",
|
|
54737
|
+
"type": "string",
|
|
54738
|
+
"flag": "node-id",
|
|
54739
|
+
"description": "Node ID of the target list item."
|
|
54740
|
+
}
|
|
54741
|
+
],
|
|
54742
|
+
"constraints": null,
|
|
54743
|
+
"mutates": true,
|
|
54744
|
+
"idempotency": "conditional",
|
|
54745
|
+
"supportsTrackedMode": false,
|
|
54746
|
+
"supportsDryRun": true,
|
|
54747
|
+
"inputSchema": {
|
|
54748
|
+
"type": "object",
|
|
54749
|
+
"properties": {
|
|
54750
|
+
"target": {
|
|
54751
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
54752
|
+
}
|
|
54753
|
+
},
|
|
54754
|
+
"additionalProperties": false,
|
|
54755
|
+
"required": [
|
|
54756
|
+
"target"
|
|
54757
|
+
]
|
|
54758
|
+
},
|
|
54759
|
+
"outputSchema": {
|
|
54760
|
+
"oneOf": [
|
|
54761
|
+
{
|
|
54762
|
+
"type": "object",
|
|
54763
|
+
"properties": {
|
|
54764
|
+
"success": {
|
|
54765
|
+
"const": true
|
|
54766
|
+
},
|
|
54767
|
+
"item": {
|
|
54768
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
54769
|
+
}
|
|
54770
|
+
},
|
|
54771
|
+
"additionalProperties": false,
|
|
54772
|
+
"required": [
|
|
54773
|
+
"success",
|
|
54774
|
+
"item"
|
|
54775
|
+
]
|
|
54776
|
+
},
|
|
54777
|
+
{
|
|
54778
|
+
"type": "object",
|
|
54779
|
+
"properties": {
|
|
54780
|
+
"success": {
|
|
54781
|
+
"const": false
|
|
54782
|
+
},
|
|
54783
|
+
"failure": {
|
|
54784
|
+
"type": "object",
|
|
54785
|
+
"properties": {
|
|
54786
|
+
"code": {
|
|
54787
|
+
"enum": [
|
|
54788
|
+
"INVALID_TARGET",
|
|
54789
|
+
"NO_COMPATIBLE_PREVIOUS",
|
|
54790
|
+
"ALREADY_CONTINUOUS"
|
|
54791
|
+
]
|
|
54792
|
+
},
|
|
54793
|
+
"message": {
|
|
54794
|
+
"type": "string"
|
|
54795
|
+
},
|
|
54796
|
+
"details": {}
|
|
54797
|
+
},
|
|
54798
|
+
"additionalProperties": false,
|
|
54799
|
+
"required": [
|
|
54800
|
+
"code",
|
|
54801
|
+
"message"
|
|
54802
|
+
]
|
|
54803
|
+
}
|
|
54804
|
+
},
|
|
54805
|
+
"additionalProperties": false,
|
|
54806
|
+
"required": [
|
|
54807
|
+
"success",
|
|
54808
|
+
"failure"
|
|
54809
|
+
]
|
|
54810
|
+
}
|
|
54811
|
+
]
|
|
54812
|
+
},
|
|
54813
|
+
"successSchema": {
|
|
54814
|
+
"type": "object",
|
|
54815
|
+
"properties": {
|
|
54816
|
+
"success": {
|
|
54817
|
+
"const": true
|
|
54818
|
+
},
|
|
54819
|
+
"item": {
|
|
54820
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
54821
|
+
}
|
|
54822
|
+
},
|
|
54823
|
+
"additionalProperties": false,
|
|
54824
|
+
"required": [
|
|
54825
|
+
"success",
|
|
54826
|
+
"item"
|
|
54827
|
+
]
|
|
54828
|
+
},
|
|
54829
|
+
"failureSchema": {
|
|
54830
|
+
"type": "object",
|
|
54831
|
+
"properties": {
|
|
54832
|
+
"success": {
|
|
54833
|
+
"const": false
|
|
54834
|
+
},
|
|
54835
|
+
"failure": {
|
|
54836
|
+
"type": "object",
|
|
54837
|
+
"properties": {
|
|
54838
|
+
"code": {
|
|
54839
|
+
"enum": [
|
|
54840
|
+
"INVALID_TARGET",
|
|
54841
|
+
"NO_COMPATIBLE_PREVIOUS",
|
|
54842
|
+
"ALREADY_CONTINUOUS"
|
|
54843
|
+
]
|
|
54844
|
+
},
|
|
54845
|
+
"message": {
|
|
54846
|
+
"type": "string"
|
|
54847
|
+
},
|
|
54848
|
+
"details": {}
|
|
54849
|
+
},
|
|
54850
|
+
"additionalProperties": false,
|
|
54851
|
+
"required": [
|
|
54852
|
+
"code",
|
|
54853
|
+
"message"
|
|
54854
|
+
]
|
|
54855
|
+
}
|
|
54856
|
+
},
|
|
54857
|
+
"additionalProperties": false,
|
|
54858
|
+
"required": [
|
|
54859
|
+
"success",
|
|
54860
|
+
"failure"
|
|
54861
|
+
]
|
|
54862
|
+
},
|
|
54863
|
+
"intentGroup": "list",
|
|
54864
|
+
"intentAction": "continue_previous"
|
|
54865
|
+
},
|
|
54866
|
+
"doc.lists.canContinuePrevious": {
|
|
54867
|
+
"operationId": "doc.lists.canContinuePrevious",
|
|
54868
|
+
"sdkSurface": "document",
|
|
54869
|
+
"command": "lists can-continue-previous",
|
|
54870
|
+
"commandTokens": [
|
|
54871
|
+
"lists",
|
|
54872
|
+
"can-continue-previous"
|
|
54873
|
+
],
|
|
54874
|
+
"category": "lists",
|
|
54875
|
+
"description": "Check whether the target sequence can continue numbering from a previous compatible sequence.",
|
|
54296
54876
|
"requiresDocumentContext": true,
|
|
54297
54877
|
"docRequirement": "optional",
|
|
54298
54878
|
"responseEnvelopeKey": "result",
|
|
@@ -59230,7 +59810,7 @@ export const CONTRACT = {
|
|
|
59230
59810
|
"set-level-number-style"
|
|
59231
59811
|
],
|
|
59232
59812
|
"category": "lists",
|
|
59233
|
-
"description": "Set the numbering style (e.g. decimal, lowerLetter, upperRoman) for a specific list level. Rejects \"bullet\"
|
|
59813
|
+
"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.",
|
|
59234
59814
|
"requiresDocumentContext": true,
|
|
59235
59815
|
"docRequirement": "optional",
|
|
59236
59816
|
"responseEnvelopeKey": null,
|
|
@@ -59956,7 +60536,7 @@ export const CONTRACT = {
|
|
|
59956
60536
|
"set-level-layout"
|
|
59957
60537
|
],
|
|
59958
60538
|
"category": "lists",
|
|
59959
|
-
"description": "Set the layout properties (alignment, indentation, trailing character, tab stop) for a specific list level. Accepts partial updates
|
|
60539
|
+
"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.",
|
|
59960
60540
|
"requiresDocumentContext": true,
|
|
59961
60541
|
"docRequirement": "optional",
|
|
59962
60542
|
"responseEnvelopeKey": null,
|
|
@@ -60396,6 +60976,162 @@ export const CONTRACT = {
|
|
|
60396
60976
|
"range"
|
|
60397
60977
|
]
|
|
60398
60978
|
}
|
|
60979
|
+
},
|
|
60980
|
+
"story": {
|
|
60981
|
+
"oneOf": [
|
|
60982
|
+
{
|
|
60983
|
+
"type": "object",
|
|
60984
|
+
"properties": {
|
|
60985
|
+
"kind": {
|
|
60986
|
+
"const": "story"
|
|
60987
|
+
},
|
|
60988
|
+
"storyType": {
|
|
60989
|
+
"const": "body"
|
|
60990
|
+
}
|
|
60991
|
+
},
|
|
60992
|
+
"required": [
|
|
60993
|
+
"kind",
|
|
60994
|
+
"storyType"
|
|
60995
|
+
]
|
|
60996
|
+
},
|
|
60997
|
+
{
|
|
60998
|
+
"type": "object",
|
|
60999
|
+
"properties": {
|
|
61000
|
+
"kind": {
|
|
61001
|
+
"const": "story"
|
|
61002
|
+
},
|
|
61003
|
+
"storyType": {
|
|
61004
|
+
"const": "headerFooterSlot"
|
|
61005
|
+
},
|
|
61006
|
+
"section": {
|
|
61007
|
+
"type": "object",
|
|
61008
|
+
"properties": {
|
|
61009
|
+
"kind": {
|
|
61010
|
+
"const": "section"
|
|
61011
|
+
},
|
|
61012
|
+
"sectionId": {
|
|
61013
|
+
"type": "string"
|
|
61014
|
+
}
|
|
61015
|
+
},
|
|
61016
|
+
"required": [
|
|
61017
|
+
"kind",
|
|
61018
|
+
"sectionId"
|
|
61019
|
+
]
|
|
61020
|
+
},
|
|
61021
|
+
"headerFooterKind": {
|
|
61022
|
+
"oneOf": [
|
|
61023
|
+
{
|
|
61024
|
+
"const": "header"
|
|
61025
|
+
},
|
|
61026
|
+
{
|
|
61027
|
+
"const": "footer"
|
|
61028
|
+
}
|
|
61029
|
+
]
|
|
61030
|
+
},
|
|
61031
|
+
"variant": {
|
|
61032
|
+
"oneOf": [
|
|
61033
|
+
{
|
|
61034
|
+
"const": "default"
|
|
61035
|
+
},
|
|
61036
|
+
{
|
|
61037
|
+
"const": "first"
|
|
61038
|
+
},
|
|
61039
|
+
{
|
|
61040
|
+
"const": "even"
|
|
61041
|
+
}
|
|
61042
|
+
]
|
|
61043
|
+
},
|
|
61044
|
+
"resolution": {
|
|
61045
|
+
"oneOf": [
|
|
61046
|
+
{
|
|
61047
|
+
"const": "effective"
|
|
61048
|
+
},
|
|
61049
|
+
{
|
|
61050
|
+
"const": "explicit"
|
|
61051
|
+
}
|
|
61052
|
+
]
|
|
61053
|
+
},
|
|
61054
|
+
"onWrite": {
|
|
61055
|
+
"oneOf": [
|
|
61056
|
+
{
|
|
61057
|
+
"const": "materializeIfInherited"
|
|
61058
|
+
},
|
|
61059
|
+
{
|
|
61060
|
+
"const": "editResolvedPart"
|
|
61061
|
+
},
|
|
61062
|
+
{
|
|
61063
|
+
"const": "error"
|
|
61064
|
+
}
|
|
61065
|
+
]
|
|
61066
|
+
}
|
|
61067
|
+
},
|
|
61068
|
+
"required": [
|
|
61069
|
+
"kind",
|
|
61070
|
+
"storyType",
|
|
61071
|
+
"section",
|
|
61072
|
+
"headerFooterKind",
|
|
61073
|
+
"variant"
|
|
61074
|
+
]
|
|
61075
|
+
},
|
|
61076
|
+
{
|
|
61077
|
+
"type": "object",
|
|
61078
|
+
"properties": {
|
|
61079
|
+
"kind": {
|
|
61080
|
+
"const": "story"
|
|
61081
|
+
},
|
|
61082
|
+
"storyType": {
|
|
61083
|
+
"const": "headerFooterPart"
|
|
61084
|
+
},
|
|
61085
|
+
"refId": {
|
|
61086
|
+
"type": "string"
|
|
61087
|
+
}
|
|
61088
|
+
},
|
|
61089
|
+
"required": [
|
|
61090
|
+
"kind",
|
|
61091
|
+
"storyType",
|
|
61092
|
+
"refId"
|
|
61093
|
+
]
|
|
61094
|
+
},
|
|
61095
|
+
{
|
|
61096
|
+
"type": "object",
|
|
61097
|
+
"properties": {
|
|
61098
|
+
"kind": {
|
|
61099
|
+
"const": "story"
|
|
61100
|
+
},
|
|
61101
|
+
"storyType": {
|
|
61102
|
+
"const": "footnote"
|
|
61103
|
+
},
|
|
61104
|
+
"noteId": {
|
|
61105
|
+
"type": "string"
|
|
61106
|
+
}
|
|
61107
|
+
},
|
|
61108
|
+
"required": [
|
|
61109
|
+
"kind",
|
|
61110
|
+
"storyType",
|
|
61111
|
+
"noteId"
|
|
61112
|
+
]
|
|
61113
|
+
},
|
|
61114
|
+
{
|
|
61115
|
+
"type": "object",
|
|
61116
|
+
"properties": {
|
|
61117
|
+
"kind": {
|
|
61118
|
+
"const": "story"
|
|
61119
|
+
},
|
|
61120
|
+
"storyType": {
|
|
61121
|
+
"const": "endnote"
|
|
61122
|
+
},
|
|
61123
|
+
"noteId": {
|
|
61124
|
+
"type": "string"
|
|
61125
|
+
}
|
|
61126
|
+
},
|
|
61127
|
+
"required": [
|
|
61128
|
+
"kind",
|
|
61129
|
+
"storyType",
|
|
61130
|
+
"noteId"
|
|
61131
|
+
]
|
|
61132
|
+
}
|
|
61133
|
+
],
|
|
61134
|
+
"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."
|
|
60399
61135
|
}
|
|
60400
61136
|
},
|
|
60401
61137
|
"required": [
|
|
@@ -60665,11 +61401,14 @@ export const CONTRACT = {
|
|
|
60665
61401
|
"oneOf": [
|
|
60666
61402
|
{
|
|
60667
61403
|
"const": "resolved"
|
|
61404
|
+
},
|
|
61405
|
+
{
|
|
61406
|
+
"const": "active"
|
|
60668
61407
|
}
|
|
60669
61408
|
],
|
|
60670
|
-
"description": "Set comment status. Use 'resolved' to
|
|
61409
|
+
"description": "Set comment status. Use 'resolved' to resolve a comment, or 'active' to reopen a previously resolved comment (lifecycle inverse)."
|
|
60671
61410
|
},
|
|
60672
|
-
"description": "Set comment status. Use 'resolved' to
|
|
61411
|
+
"description": "Set comment status. Use 'resolved' to resolve a comment, or 'active' to reopen a previously resolved comment (lifecycle inverse)."
|
|
60673
61412
|
},
|
|
60674
61413
|
{
|
|
60675
61414
|
"name": "isInternal",
|
|
@@ -60721,9 +61460,10 @@ export const CONTRACT = {
|
|
|
60721
61460
|
},
|
|
60722
61461
|
"status": {
|
|
60723
61462
|
"enum": [
|
|
60724
|
-
"resolved"
|
|
61463
|
+
"resolved",
|
|
61464
|
+
"active"
|
|
60725
61465
|
],
|
|
60726
|
-
"description": "Set comment status. Use 'resolved' to
|
|
61466
|
+
"description": "Set comment status. Use 'resolved' to resolve a comment, or 'active' to reopen a previously resolved comment (lifecycle inverse)."
|
|
60727
61467
|
},
|
|
60728
61468
|
"isInternal": {
|
|
60729
61469
|
"type": "boolean",
|
|
@@ -63619,6 +64359,18 @@ export const CONTRACT = {
|
|
|
63619
64359
|
"type": "string"
|
|
63620
64360
|
}
|
|
63621
64361
|
},
|
|
64362
|
+
"activeCommentIds": {
|
|
64363
|
+
"type": "array",
|
|
64364
|
+
"items": {
|
|
64365
|
+
"type": "string"
|
|
64366
|
+
}
|
|
64367
|
+
},
|
|
64368
|
+
"activeChangeIds": {
|
|
64369
|
+
"type": "array",
|
|
64370
|
+
"items": {
|
|
64371
|
+
"type": "string"
|
|
64372
|
+
}
|
|
64373
|
+
},
|
|
63622
64374
|
"text": {
|
|
63623
64375
|
"type": "string"
|
|
63624
64376
|
}
|
|
@@ -63627,7 +64379,9 @@ export const CONTRACT = {
|
|
|
63627
64379
|
"required": [
|
|
63628
64380
|
"empty",
|
|
63629
64381
|
"target",
|
|
63630
|
-
"activeMarks"
|
|
64382
|
+
"activeMarks",
|
|
64383
|
+
"activeCommentIds",
|
|
64384
|
+
"activeChangeIds"
|
|
63631
64385
|
]
|
|
63632
64386
|
}
|
|
63633
64387
|
},
|
|
@@ -80908,7 +81662,7 @@ export const CONTRACT = {
|
|
|
80908
81662
|
"dryRun"
|
|
80909
81663
|
]
|
|
80910
81664
|
},
|
|
80911
|
-
"lists.
|
|
81665
|
+
"lists.merge": {
|
|
80912
81666
|
"type": "object",
|
|
80913
81667
|
"properties": {
|
|
80914
81668
|
"available": {
|
|
@@ -80943,7 +81697,7 @@ export const CONTRACT = {
|
|
|
80943
81697
|
"dryRun"
|
|
80944
81698
|
]
|
|
80945
81699
|
},
|
|
80946
|
-
"lists.
|
|
81700
|
+
"lists.split": {
|
|
80947
81701
|
"type": "object",
|
|
80948
81702
|
"properties": {
|
|
80949
81703
|
"available": {
|
|
@@ -80978,7 +81732,7 @@ export const CONTRACT = {
|
|
|
80978
81732
|
"dryRun"
|
|
80979
81733
|
]
|
|
80980
81734
|
},
|
|
80981
|
-
"lists.
|
|
81735
|
+
"lists.setLevel": {
|
|
80982
81736
|
"type": "object",
|
|
80983
81737
|
"properties": {
|
|
80984
81738
|
"available": {
|
|
@@ -81013,7 +81767,7 @@ export const CONTRACT = {
|
|
|
81013
81767
|
"dryRun"
|
|
81014
81768
|
]
|
|
81015
81769
|
},
|
|
81016
|
-
"lists.
|
|
81770
|
+
"lists.setValue": {
|
|
81017
81771
|
"type": "object",
|
|
81018
81772
|
"properties": {
|
|
81019
81773
|
"available": {
|
|
@@ -81048,7 +81802,7 @@ export const CONTRACT = {
|
|
|
81048
81802
|
"dryRun"
|
|
81049
81803
|
]
|
|
81050
81804
|
},
|
|
81051
|
-
"lists.
|
|
81805
|
+
"lists.continuePrevious": {
|
|
81052
81806
|
"type": "object",
|
|
81053
81807
|
"properties": {
|
|
81054
81808
|
"available": {
|
|
@@ -81083,7 +81837,7 @@ export const CONTRACT = {
|
|
|
81083
81837
|
"dryRun"
|
|
81084
81838
|
]
|
|
81085
81839
|
},
|
|
81086
|
-
"lists.
|
|
81840
|
+
"lists.canContinuePrevious": {
|
|
81087
81841
|
"type": "object",
|
|
81088
81842
|
"properties": {
|
|
81089
81843
|
"available": {
|
|
@@ -81118,7 +81872,7 @@ export const CONTRACT = {
|
|
|
81118
81872
|
"dryRun"
|
|
81119
81873
|
]
|
|
81120
81874
|
},
|
|
81121
|
-
"lists.
|
|
81875
|
+
"lists.setLevelRestart": {
|
|
81122
81876
|
"type": "object",
|
|
81123
81877
|
"properties": {
|
|
81124
81878
|
"available": {
|
|
@@ -81153,7 +81907,7 @@ export const CONTRACT = {
|
|
|
81153
81907
|
"dryRun"
|
|
81154
81908
|
]
|
|
81155
81909
|
},
|
|
81156
|
-
"lists.
|
|
81910
|
+
"lists.convertToText": {
|
|
81157
81911
|
"type": "object",
|
|
81158
81912
|
"properties": {
|
|
81159
81913
|
"available": {
|
|
@@ -81188,7 +81942,7 @@ export const CONTRACT = {
|
|
|
81188
81942
|
"dryRun"
|
|
81189
81943
|
]
|
|
81190
81944
|
},
|
|
81191
|
-
"lists.
|
|
81945
|
+
"lists.applyTemplate": {
|
|
81192
81946
|
"type": "object",
|
|
81193
81947
|
"properties": {
|
|
81194
81948
|
"available": {
|
|
@@ -81223,7 +81977,7 @@ export const CONTRACT = {
|
|
|
81223
81977
|
"dryRun"
|
|
81224
81978
|
]
|
|
81225
81979
|
},
|
|
81226
|
-
"lists.
|
|
81980
|
+
"lists.applyPreset": {
|
|
81227
81981
|
"type": "object",
|
|
81228
81982
|
"properties": {
|
|
81229
81983
|
"available": {
|
|
@@ -81258,7 +82012,7 @@ export const CONTRACT = {
|
|
|
81258
82012
|
"dryRun"
|
|
81259
82013
|
]
|
|
81260
82014
|
},
|
|
81261
|
-
"lists.
|
|
82015
|
+
"lists.setType": {
|
|
81262
82016
|
"type": "object",
|
|
81263
82017
|
"properties": {
|
|
81264
82018
|
"available": {
|
|
@@ -81293,7 +82047,7 @@ export const CONTRACT = {
|
|
|
81293
82047
|
"dryRun"
|
|
81294
82048
|
]
|
|
81295
82049
|
},
|
|
81296
|
-
"lists.
|
|
82050
|
+
"lists.captureTemplate": {
|
|
81297
82051
|
"type": "object",
|
|
81298
82052
|
"properties": {
|
|
81299
82053
|
"available": {
|
|
@@ -81328,7 +82082,7 @@ export const CONTRACT = {
|
|
|
81328
82082
|
"dryRun"
|
|
81329
82083
|
]
|
|
81330
82084
|
},
|
|
81331
|
-
"lists.
|
|
82085
|
+
"lists.setLevelNumbering": {
|
|
81332
82086
|
"type": "object",
|
|
81333
82087
|
"properties": {
|
|
81334
82088
|
"available": {
|
|
@@ -81363,7 +82117,7 @@ export const CONTRACT = {
|
|
|
81363
82117
|
"dryRun"
|
|
81364
82118
|
]
|
|
81365
82119
|
},
|
|
81366
|
-
"lists.
|
|
82120
|
+
"lists.setLevelBullet": {
|
|
81367
82121
|
"type": "object",
|
|
81368
82122
|
"properties": {
|
|
81369
82123
|
"available": {
|
|
@@ -81398,7 +82152,7 @@ export const CONTRACT = {
|
|
|
81398
82152
|
"dryRun"
|
|
81399
82153
|
]
|
|
81400
82154
|
},
|
|
81401
|
-
"lists.
|
|
82155
|
+
"lists.setLevelPictureBullet": {
|
|
81402
82156
|
"type": "object",
|
|
81403
82157
|
"properties": {
|
|
81404
82158
|
"available": {
|
|
@@ -81433,7 +82187,7 @@ export const CONTRACT = {
|
|
|
81433
82187
|
"dryRun"
|
|
81434
82188
|
]
|
|
81435
82189
|
},
|
|
81436
|
-
"lists.
|
|
82190
|
+
"lists.setLevelAlignment": {
|
|
81437
82191
|
"type": "object",
|
|
81438
82192
|
"properties": {
|
|
81439
82193
|
"available": {
|
|
@@ -81468,7 +82222,7 @@ export const CONTRACT = {
|
|
|
81468
82222
|
"dryRun"
|
|
81469
82223
|
]
|
|
81470
82224
|
},
|
|
81471
|
-
"lists.
|
|
82225
|
+
"lists.setLevelIndents": {
|
|
81472
82226
|
"type": "object",
|
|
81473
82227
|
"properties": {
|
|
81474
82228
|
"available": {
|
|
@@ -81503,7 +82257,7 @@ export const CONTRACT = {
|
|
|
81503
82257
|
"dryRun"
|
|
81504
82258
|
]
|
|
81505
82259
|
},
|
|
81506
|
-
"lists.
|
|
82260
|
+
"lists.setLevelTrailingCharacter": {
|
|
81507
82261
|
"type": "object",
|
|
81508
82262
|
"properties": {
|
|
81509
82263
|
"available": {
|
|
@@ -81538,7 +82292,7 @@ export const CONTRACT = {
|
|
|
81538
82292
|
"dryRun"
|
|
81539
82293
|
]
|
|
81540
82294
|
},
|
|
81541
|
-
"lists.
|
|
82295
|
+
"lists.setLevelMarkerFont": {
|
|
81542
82296
|
"type": "object",
|
|
81543
82297
|
"properties": {
|
|
81544
82298
|
"available": {
|
|
@@ -81573,7 +82327,7 @@ export const CONTRACT = {
|
|
|
81573
82327
|
"dryRun"
|
|
81574
82328
|
]
|
|
81575
82329
|
},
|
|
81576
|
-
"lists.
|
|
82330
|
+
"lists.clearLevelOverrides": {
|
|
81577
82331
|
"type": "object",
|
|
81578
82332
|
"properties": {
|
|
81579
82333
|
"available": {
|
|
@@ -81608,7 +82362,7 @@ export const CONTRACT = {
|
|
|
81608
82362
|
"dryRun"
|
|
81609
82363
|
]
|
|
81610
82364
|
},
|
|
81611
|
-
"lists.
|
|
82365
|
+
"lists.getStyle": {
|
|
81612
82366
|
"type": "object",
|
|
81613
82367
|
"properties": {
|
|
81614
82368
|
"available": {
|
|
@@ -81643,7 +82397,7 @@ export const CONTRACT = {
|
|
|
81643
82397
|
"dryRun"
|
|
81644
82398
|
]
|
|
81645
82399
|
},
|
|
81646
|
-
"lists.
|
|
82400
|
+
"lists.applyStyle": {
|
|
81647
82401
|
"type": "object",
|
|
81648
82402
|
"properties": {
|
|
81649
82403
|
"available": {
|
|
@@ -81678,7 +82432,7 @@ export const CONTRACT = {
|
|
|
81678
82432
|
"dryRun"
|
|
81679
82433
|
]
|
|
81680
82434
|
},
|
|
81681
|
-
"lists.
|
|
82435
|
+
"lists.restartAt": {
|
|
81682
82436
|
"type": "object",
|
|
81683
82437
|
"properties": {
|
|
81684
82438
|
"available": {
|
|
@@ -81713,7 +82467,7 @@ export const CONTRACT = {
|
|
|
81713
82467
|
"dryRun"
|
|
81714
82468
|
]
|
|
81715
82469
|
},
|
|
81716
|
-
"lists.
|
|
82470
|
+
"lists.setLevelNumberStyle": {
|
|
81717
82471
|
"type": "object",
|
|
81718
82472
|
"properties": {
|
|
81719
82473
|
"available": {
|
|
@@ -81748,7 +82502,7 @@ export const CONTRACT = {
|
|
|
81748
82502
|
"dryRun"
|
|
81749
82503
|
]
|
|
81750
82504
|
},
|
|
81751
|
-
"lists.
|
|
82505
|
+
"lists.setLevelText": {
|
|
81752
82506
|
"type": "object",
|
|
81753
82507
|
"properties": {
|
|
81754
82508
|
"available": {
|
|
@@ -81783,7 +82537,7 @@ export const CONTRACT = {
|
|
|
81783
82537
|
"dryRun"
|
|
81784
82538
|
]
|
|
81785
82539
|
},
|
|
81786
|
-
"
|
|
82540
|
+
"lists.setLevelStart": {
|
|
81787
82541
|
"type": "object",
|
|
81788
82542
|
"properties": {
|
|
81789
82543
|
"available": {
|
|
@@ -81818,7 +82572,7 @@ export const CONTRACT = {
|
|
|
81818
82572
|
"dryRun"
|
|
81819
82573
|
]
|
|
81820
82574
|
},
|
|
81821
|
-
"
|
|
82575
|
+
"lists.setLevelLayout": {
|
|
81822
82576
|
"type": "object",
|
|
81823
82577
|
"properties": {
|
|
81824
82578
|
"available": {
|
|
@@ -81853,7 +82607,7 @@ export const CONTRACT = {
|
|
|
81853
82607
|
"dryRun"
|
|
81854
82608
|
]
|
|
81855
82609
|
},
|
|
81856
|
-
"comments.
|
|
82610
|
+
"comments.create": {
|
|
81857
82611
|
"type": "object",
|
|
81858
82612
|
"properties": {
|
|
81859
82613
|
"available": {
|
|
@@ -81888,7 +82642,7 @@ export const CONTRACT = {
|
|
|
81888
82642
|
"dryRun"
|
|
81889
82643
|
]
|
|
81890
82644
|
},
|
|
81891
|
-
"comments.
|
|
82645
|
+
"comments.patch": {
|
|
81892
82646
|
"type": "object",
|
|
81893
82647
|
"properties": {
|
|
81894
82648
|
"available": {
|
|
@@ -81923,7 +82677,7 @@ export const CONTRACT = {
|
|
|
81923
82677
|
"dryRun"
|
|
81924
82678
|
]
|
|
81925
82679
|
},
|
|
81926
|
-
"comments.
|
|
82680
|
+
"comments.delete": {
|
|
81927
82681
|
"type": "object",
|
|
81928
82682
|
"properties": {
|
|
81929
82683
|
"available": {
|
|
@@ -81958,7 +82712,7 @@ export const CONTRACT = {
|
|
|
81958
82712
|
"dryRun"
|
|
81959
82713
|
]
|
|
81960
82714
|
},
|
|
81961
|
-
"
|
|
82715
|
+
"comments.get": {
|
|
81962
82716
|
"type": "object",
|
|
81963
82717
|
"properties": {
|
|
81964
82718
|
"available": {
|
|
@@ -81993,7 +82747,7 @@ export const CONTRACT = {
|
|
|
81993
82747
|
"dryRun"
|
|
81994
82748
|
]
|
|
81995
82749
|
},
|
|
81996
|
-
"
|
|
82750
|
+
"comments.list": {
|
|
81997
82751
|
"type": "object",
|
|
81998
82752
|
"properties": {
|
|
81999
82753
|
"available": {
|
|
@@ -82028,7 +82782,7 @@ export const CONTRACT = {
|
|
|
82028
82782
|
"dryRun"
|
|
82029
82783
|
]
|
|
82030
82784
|
},
|
|
82031
|
-
"trackChanges.
|
|
82785
|
+
"trackChanges.list": {
|
|
82032
82786
|
"type": "object",
|
|
82033
82787
|
"properties": {
|
|
82034
82788
|
"available": {
|
|
@@ -82063,7 +82817,7 @@ export const CONTRACT = {
|
|
|
82063
82817
|
"dryRun"
|
|
82064
82818
|
]
|
|
82065
82819
|
},
|
|
82066
|
-
"
|
|
82820
|
+
"trackChanges.get": {
|
|
82067
82821
|
"type": "object",
|
|
82068
82822
|
"properties": {
|
|
82069
82823
|
"available": {
|
|
@@ -82098,7 +82852,7 @@ export const CONTRACT = {
|
|
|
82098
82852
|
"dryRun"
|
|
82099
82853
|
]
|
|
82100
82854
|
},
|
|
82101
|
-
"
|
|
82855
|
+
"trackChanges.decide": {
|
|
82102
82856
|
"type": "object",
|
|
82103
82857
|
"properties": {
|
|
82104
82858
|
"available": {
|
|
@@ -82133,7 +82887,7 @@ export const CONTRACT = {
|
|
|
82133
82887
|
"dryRun"
|
|
82134
82888
|
]
|
|
82135
82889
|
},
|
|
82136
|
-
"
|
|
82890
|
+
"query.match": {
|
|
82137
82891
|
"type": "object",
|
|
82138
82892
|
"properties": {
|
|
82139
82893
|
"available": {
|
|
@@ -82168,7 +82922,7 @@ export const CONTRACT = {
|
|
|
82168
82922
|
"dryRun"
|
|
82169
82923
|
]
|
|
82170
82924
|
},
|
|
82171
|
-
"
|
|
82925
|
+
"ranges.resolve": {
|
|
82172
82926
|
"type": "object",
|
|
82173
82927
|
"properties": {
|
|
82174
82928
|
"available": {
|
|
@@ -82203,7 +82957,7 @@ export const CONTRACT = {
|
|
|
82203
82957
|
"dryRun"
|
|
82204
82958
|
]
|
|
82205
82959
|
},
|
|
82206
|
-
"
|
|
82960
|
+
"selection.current": {
|
|
82207
82961
|
"type": "object",
|
|
82208
82962
|
"properties": {
|
|
82209
82963
|
"available": {
|
|
@@ -82238,7 +82992,7 @@ export const CONTRACT = {
|
|
|
82238
82992
|
"dryRun"
|
|
82239
82993
|
]
|
|
82240
82994
|
},
|
|
82241
|
-
"
|
|
82995
|
+
"mutations.preview": {
|
|
82242
82996
|
"type": "object",
|
|
82243
82997
|
"properties": {
|
|
82244
82998
|
"available": {
|
|
@@ -82273,7 +83027,7 @@ export const CONTRACT = {
|
|
|
82273
83027
|
"dryRun"
|
|
82274
83028
|
]
|
|
82275
83029
|
},
|
|
82276
|
-
"
|
|
83030
|
+
"mutations.apply": {
|
|
82277
83031
|
"type": "object",
|
|
82278
83032
|
"properties": {
|
|
82279
83033
|
"available": {
|
|
@@ -82308,7 +83062,7 @@ export const CONTRACT = {
|
|
|
82308
83062
|
"dryRun"
|
|
82309
83063
|
]
|
|
82310
83064
|
},
|
|
82311
|
-
"
|
|
83065
|
+
"capabilities.get": {
|
|
82312
83066
|
"type": "object",
|
|
82313
83067
|
"properties": {
|
|
82314
83068
|
"available": {
|
|
@@ -82343,7 +83097,7 @@ export const CONTRACT = {
|
|
|
82343
83097
|
"dryRun"
|
|
82344
83098
|
]
|
|
82345
83099
|
},
|
|
82346
|
-
"
|
|
83100
|
+
"create.table": {
|
|
82347
83101
|
"type": "object",
|
|
82348
83102
|
"properties": {
|
|
82349
83103
|
"available": {
|
|
@@ -82378,7 +83132,7 @@ export const CONTRACT = {
|
|
|
82378
83132
|
"dryRun"
|
|
82379
83133
|
]
|
|
82380
83134
|
},
|
|
82381
|
-
"tables.
|
|
83135
|
+
"tables.convertFromText": {
|
|
82382
83136
|
"type": "object",
|
|
82383
83137
|
"properties": {
|
|
82384
83138
|
"available": {
|
|
@@ -82413,7 +83167,7 @@ export const CONTRACT = {
|
|
|
82413
83167
|
"dryRun"
|
|
82414
83168
|
]
|
|
82415
83169
|
},
|
|
82416
|
-
"tables.
|
|
83170
|
+
"tables.delete": {
|
|
82417
83171
|
"type": "object",
|
|
82418
83172
|
"properties": {
|
|
82419
83173
|
"available": {
|
|
@@ -82448,7 +83202,77 @@ export const CONTRACT = {
|
|
|
82448
83202
|
"dryRun"
|
|
82449
83203
|
]
|
|
82450
83204
|
},
|
|
82451
|
-
"tables.
|
|
83205
|
+
"tables.clearContents": {
|
|
83206
|
+
"type": "object",
|
|
83207
|
+
"properties": {
|
|
83208
|
+
"available": {
|
|
83209
|
+
"type": "boolean"
|
|
83210
|
+
},
|
|
83211
|
+
"tracked": {
|
|
83212
|
+
"type": "boolean"
|
|
83213
|
+
},
|
|
83214
|
+
"dryRun": {
|
|
83215
|
+
"type": "boolean"
|
|
83216
|
+
},
|
|
83217
|
+
"reasons": {
|
|
83218
|
+
"type": "array",
|
|
83219
|
+
"items": {
|
|
83220
|
+
"enum": [
|
|
83221
|
+
"COMMAND_UNAVAILABLE",
|
|
83222
|
+
"HELPER_UNAVAILABLE",
|
|
83223
|
+
"OPERATION_UNAVAILABLE",
|
|
83224
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
83225
|
+
"DRY_RUN_UNAVAILABLE",
|
|
83226
|
+
"NAMESPACE_UNAVAILABLE",
|
|
83227
|
+
"STYLES_PART_MISSING",
|
|
83228
|
+
"COLLABORATION_ACTIVE"
|
|
83229
|
+
]
|
|
83230
|
+
}
|
|
83231
|
+
}
|
|
83232
|
+
},
|
|
83233
|
+
"additionalProperties": false,
|
|
83234
|
+
"required": [
|
|
83235
|
+
"available",
|
|
83236
|
+
"tracked",
|
|
83237
|
+
"dryRun"
|
|
83238
|
+
]
|
|
83239
|
+
},
|
|
83240
|
+
"tables.move": {
|
|
83241
|
+
"type": "object",
|
|
83242
|
+
"properties": {
|
|
83243
|
+
"available": {
|
|
83244
|
+
"type": "boolean"
|
|
83245
|
+
},
|
|
83246
|
+
"tracked": {
|
|
83247
|
+
"type": "boolean"
|
|
83248
|
+
},
|
|
83249
|
+
"dryRun": {
|
|
83250
|
+
"type": "boolean"
|
|
83251
|
+
},
|
|
83252
|
+
"reasons": {
|
|
83253
|
+
"type": "array",
|
|
83254
|
+
"items": {
|
|
83255
|
+
"enum": [
|
|
83256
|
+
"COMMAND_UNAVAILABLE",
|
|
83257
|
+
"HELPER_UNAVAILABLE",
|
|
83258
|
+
"OPERATION_UNAVAILABLE",
|
|
83259
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
83260
|
+
"DRY_RUN_UNAVAILABLE",
|
|
83261
|
+
"NAMESPACE_UNAVAILABLE",
|
|
83262
|
+
"STYLES_PART_MISSING",
|
|
83263
|
+
"COLLABORATION_ACTIVE"
|
|
83264
|
+
]
|
|
83265
|
+
}
|
|
83266
|
+
}
|
|
83267
|
+
},
|
|
83268
|
+
"additionalProperties": false,
|
|
83269
|
+
"required": [
|
|
83270
|
+
"available",
|
|
83271
|
+
"tracked",
|
|
83272
|
+
"dryRun"
|
|
83273
|
+
]
|
|
83274
|
+
},
|
|
83275
|
+
"tables.split": {
|
|
82452
83276
|
"type": "object",
|
|
82453
83277
|
"properties": {
|
|
82454
83278
|
"available": {
|
|
@@ -90546,6 +91370,8 @@ export const CONTRACT = {
|
|
|
90546
91370
|
"lists.join",
|
|
90547
91371
|
"lists.canJoin",
|
|
90548
91372
|
"lists.separate",
|
|
91373
|
+
"lists.merge",
|
|
91374
|
+
"lists.split",
|
|
90549
91375
|
"lists.setLevel",
|
|
90550
91376
|
"lists.setValue",
|
|
90551
91377
|
"lists.continuePrevious",
|
|
@@ -131889,6 +132715,170 @@ export const CONTRACT = {
|
|
|
131889
132715
|
"name": "offset",
|
|
131890
132716
|
"kind": "flag",
|
|
131891
132717
|
"type": "number"
|
|
132718
|
+
},
|
|
132719
|
+
{
|
|
132720
|
+
"name": "in",
|
|
132721
|
+
"kind": "jsonFlag",
|
|
132722
|
+
"type": "json",
|
|
132723
|
+
"flag": "in-json",
|
|
132724
|
+
"schema": {
|
|
132725
|
+
"oneOf": [
|
|
132726
|
+
{
|
|
132727
|
+
"type": "object",
|
|
132728
|
+
"properties": {
|
|
132729
|
+
"kind": {
|
|
132730
|
+
"const": "story"
|
|
132731
|
+
},
|
|
132732
|
+
"storyType": {
|
|
132733
|
+
"const": "body"
|
|
132734
|
+
}
|
|
132735
|
+
},
|
|
132736
|
+
"required": [
|
|
132737
|
+
"kind",
|
|
132738
|
+
"storyType"
|
|
132739
|
+
]
|
|
132740
|
+
},
|
|
132741
|
+
{
|
|
132742
|
+
"type": "object",
|
|
132743
|
+
"properties": {
|
|
132744
|
+
"kind": {
|
|
132745
|
+
"const": "story"
|
|
132746
|
+
},
|
|
132747
|
+
"storyType": {
|
|
132748
|
+
"const": "headerFooterSlot"
|
|
132749
|
+
},
|
|
132750
|
+
"section": {
|
|
132751
|
+
"type": "object",
|
|
132752
|
+
"properties": {
|
|
132753
|
+
"kind": {
|
|
132754
|
+
"const": "section"
|
|
132755
|
+
},
|
|
132756
|
+
"sectionId": {
|
|
132757
|
+
"type": "string"
|
|
132758
|
+
}
|
|
132759
|
+
},
|
|
132760
|
+
"required": [
|
|
132761
|
+
"kind",
|
|
132762
|
+
"sectionId"
|
|
132763
|
+
]
|
|
132764
|
+
},
|
|
132765
|
+
"headerFooterKind": {
|
|
132766
|
+
"oneOf": [
|
|
132767
|
+
{
|
|
132768
|
+
"const": "header"
|
|
132769
|
+
},
|
|
132770
|
+
{
|
|
132771
|
+
"const": "footer"
|
|
132772
|
+
}
|
|
132773
|
+
]
|
|
132774
|
+
},
|
|
132775
|
+
"variant": {
|
|
132776
|
+
"oneOf": [
|
|
132777
|
+
{
|
|
132778
|
+
"const": "default"
|
|
132779
|
+
},
|
|
132780
|
+
{
|
|
132781
|
+
"const": "first"
|
|
132782
|
+
},
|
|
132783
|
+
{
|
|
132784
|
+
"const": "even"
|
|
132785
|
+
}
|
|
132786
|
+
]
|
|
132787
|
+
},
|
|
132788
|
+
"resolution": {
|
|
132789
|
+
"oneOf": [
|
|
132790
|
+
{
|
|
132791
|
+
"const": "effective"
|
|
132792
|
+
},
|
|
132793
|
+
{
|
|
132794
|
+
"const": "explicit"
|
|
132795
|
+
}
|
|
132796
|
+
]
|
|
132797
|
+
},
|
|
132798
|
+
"onWrite": {
|
|
132799
|
+
"oneOf": [
|
|
132800
|
+
{
|
|
132801
|
+
"const": "materializeIfInherited"
|
|
132802
|
+
},
|
|
132803
|
+
{
|
|
132804
|
+
"const": "editResolvedPart"
|
|
132805
|
+
},
|
|
132806
|
+
{
|
|
132807
|
+
"const": "error"
|
|
132808
|
+
}
|
|
132809
|
+
]
|
|
132810
|
+
}
|
|
132811
|
+
},
|
|
132812
|
+
"required": [
|
|
132813
|
+
"kind",
|
|
132814
|
+
"storyType",
|
|
132815
|
+
"section",
|
|
132816
|
+
"headerFooterKind",
|
|
132817
|
+
"variant"
|
|
132818
|
+
]
|
|
132819
|
+
},
|
|
132820
|
+
{
|
|
132821
|
+
"type": "object",
|
|
132822
|
+
"properties": {
|
|
132823
|
+
"kind": {
|
|
132824
|
+
"const": "story"
|
|
132825
|
+
},
|
|
132826
|
+
"storyType": {
|
|
132827
|
+
"const": "headerFooterPart"
|
|
132828
|
+
},
|
|
132829
|
+
"refId": {
|
|
132830
|
+
"type": "string"
|
|
132831
|
+
}
|
|
132832
|
+
},
|
|
132833
|
+
"required": [
|
|
132834
|
+
"kind",
|
|
132835
|
+
"storyType",
|
|
132836
|
+
"refId"
|
|
132837
|
+
]
|
|
132838
|
+
},
|
|
132839
|
+
{
|
|
132840
|
+
"type": "object",
|
|
132841
|
+
"properties": {
|
|
132842
|
+
"kind": {
|
|
132843
|
+
"const": "story"
|
|
132844
|
+
},
|
|
132845
|
+
"storyType": {
|
|
132846
|
+
"const": "footnote"
|
|
132847
|
+
},
|
|
132848
|
+
"noteId": {
|
|
132849
|
+
"type": "string"
|
|
132850
|
+
}
|
|
132851
|
+
},
|
|
132852
|
+
"required": [
|
|
132853
|
+
"kind",
|
|
132854
|
+
"storyType",
|
|
132855
|
+
"noteId"
|
|
132856
|
+
]
|
|
132857
|
+
},
|
|
132858
|
+
{
|
|
132859
|
+
"type": "object",
|
|
132860
|
+
"properties": {
|
|
132861
|
+
"kind": {
|
|
132862
|
+
"const": "story"
|
|
132863
|
+
},
|
|
132864
|
+
"storyType": {
|
|
132865
|
+
"const": "endnote"
|
|
132866
|
+
},
|
|
132867
|
+
"noteId": {
|
|
132868
|
+
"type": "string"
|
|
132869
|
+
}
|
|
132870
|
+
},
|
|
132871
|
+
"required": [
|
|
132872
|
+
"kind",
|
|
132873
|
+
"storyType",
|
|
132874
|
+
"noteId"
|
|
132875
|
+
]
|
|
132876
|
+
}
|
|
132877
|
+
],
|
|
132878
|
+
"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."
|
|
132879
|
+
},
|
|
132880
|
+
"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.",
|
|
132881
|
+
"agentVisible": false
|
|
131892
132882
|
}
|
|
131893
132883
|
],
|
|
131894
132884
|
"constraints": null,
|
|
@@ -131906,6 +132896,9 @@ export const CONTRACT = {
|
|
|
131906
132896
|
"offset": {
|
|
131907
132897
|
"type": "integer",
|
|
131908
132898
|
"minimum": 0
|
|
132899
|
+
},
|
|
132900
|
+
"in": {
|
|
132901
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131909
132902
|
}
|
|
131910
132903
|
},
|
|
131911
132904
|
"additionalProperties": false
|
|
@@ -131958,6 +132951,162 @@ export const CONTRACT = {
|
|
|
131958
132951
|
},
|
|
131959
132952
|
"name": {
|
|
131960
132953
|
"type": "string"
|
|
132954
|
+
},
|
|
132955
|
+
"story": {
|
|
132956
|
+
"oneOf": [
|
|
132957
|
+
{
|
|
132958
|
+
"type": "object",
|
|
132959
|
+
"properties": {
|
|
132960
|
+
"kind": {
|
|
132961
|
+
"const": "story"
|
|
132962
|
+
},
|
|
132963
|
+
"storyType": {
|
|
132964
|
+
"const": "body"
|
|
132965
|
+
}
|
|
132966
|
+
},
|
|
132967
|
+
"required": [
|
|
132968
|
+
"kind",
|
|
132969
|
+
"storyType"
|
|
132970
|
+
]
|
|
132971
|
+
},
|
|
132972
|
+
{
|
|
132973
|
+
"type": "object",
|
|
132974
|
+
"properties": {
|
|
132975
|
+
"kind": {
|
|
132976
|
+
"const": "story"
|
|
132977
|
+
},
|
|
132978
|
+
"storyType": {
|
|
132979
|
+
"const": "headerFooterSlot"
|
|
132980
|
+
},
|
|
132981
|
+
"section": {
|
|
132982
|
+
"type": "object",
|
|
132983
|
+
"properties": {
|
|
132984
|
+
"kind": {
|
|
132985
|
+
"const": "section"
|
|
132986
|
+
},
|
|
132987
|
+
"sectionId": {
|
|
132988
|
+
"type": "string"
|
|
132989
|
+
}
|
|
132990
|
+
},
|
|
132991
|
+
"required": [
|
|
132992
|
+
"kind",
|
|
132993
|
+
"sectionId"
|
|
132994
|
+
]
|
|
132995
|
+
},
|
|
132996
|
+
"headerFooterKind": {
|
|
132997
|
+
"oneOf": [
|
|
132998
|
+
{
|
|
132999
|
+
"const": "header"
|
|
133000
|
+
},
|
|
133001
|
+
{
|
|
133002
|
+
"const": "footer"
|
|
133003
|
+
}
|
|
133004
|
+
]
|
|
133005
|
+
},
|
|
133006
|
+
"variant": {
|
|
133007
|
+
"oneOf": [
|
|
133008
|
+
{
|
|
133009
|
+
"const": "default"
|
|
133010
|
+
},
|
|
133011
|
+
{
|
|
133012
|
+
"const": "first"
|
|
133013
|
+
},
|
|
133014
|
+
{
|
|
133015
|
+
"const": "even"
|
|
133016
|
+
}
|
|
133017
|
+
]
|
|
133018
|
+
},
|
|
133019
|
+
"resolution": {
|
|
133020
|
+
"oneOf": [
|
|
133021
|
+
{
|
|
133022
|
+
"const": "effective"
|
|
133023
|
+
},
|
|
133024
|
+
{
|
|
133025
|
+
"const": "explicit"
|
|
133026
|
+
}
|
|
133027
|
+
]
|
|
133028
|
+
},
|
|
133029
|
+
"onWrite": {
|
|
133030
|
+
"oneOf": [
|
|
133031
|
+
{
|
|
133032
|
+
"const": "materializeIfInherited"
|
|
133033
|
+
},
|
|
133034
|
+
{
|
|
133035
|
+
"const": "editResolvedPart"
|
|
133036
|
+
},
|
|
133037
|
+
{
|
|
133038
|
+
"const": "error"
|
|
133039
|
+
}
|
|
133040
|
+
]
|
|
133041
|
+
}
|
|
133042
|
+
},
|
|
133043
|
+
"required": [
|
|
133044
|
+
"kind",
|
|
133045
|
+
"storyType",
|
|
133046
|
+
"section",
|
|
133047
|
+
"headerFooterKind",
|
|
133048
|
+
"variant"
|
|
133049
|
+
]
|
|
133050
|
+
},
|
|
133051
|
+
{
|
|
133052
|
+
"type": "object",
|
|
133053
|
+
"properties": {
|
|
133054
|
+
"kind": {
|
|
133055
|
+
"const": "story"
|
|
133056
|
+
},
|
|
133057
|
+
"storyType": {
|
|
133058
|
+
"const": "headerFooterPart"
|
|
133059
|
+
},
|
|
133060
|
+
"refId": {
|
|
133061
|
+
"type": "string"
|
|
133062
|
+
}
|
|
133063
|
+
},
|
|
133064
|
+
"required": [
|
|
133065
|
+
"kind",
|
|
133066
|
+
"storyType",
|
|
133067
|
+
"refId"
|
|
133068
|
+
]
|
|
133069
|
+
},
|
|
133070
|
+
{
|
|
133071
|
+
"type": "object",
|
|
133072
|
+
"properties": {
|
|
133073
|
+
"kind": {
|
|
133074
|
+
"const": "story"
|
|
133075
|
+
},
|
|
133076
|
+
"storyType": {
|
|
133077
|
+
"const": "footnote"
|
|
133078
|
+
},
|
|
133079
|
+
"noteId": {
|
|
133080
|
+
"type": "string"
|
|
133081
|
+
}
|
|
133082
|
+
},
|
|
133083
|
+
"required": [
|
|
133084
|
+
"kind",
|
|
133085
|
+
"storyType",
|
|
133086
|
+
"noteId"
|
|
133087
|
+
]
|
|
133088
|
+
},
|
|
133089
|
+
{
|
|
133090
|
+
"type": "object",
|
|
133091
|
+
"properties": {
|
|
133092
|
+
"kind": {
|
|
133093
|
+
"const": "story"
|
|
133094
|
+
},
|
|
133095
|
+
"storyType": {
|
|
133096
|
+
"const": "endnote"
|
|
133097
|
+
},
|
|
133098
|
+
"noteId": {
|
|
133099
|
+
"type": "string"
|
|
133100
|
+
}
|
|
133101
|
+
},
|
|
133102
|
+
"required": [
|
|
133103
|
+
"kind",
|
|
133104
|
+
"storyType",
|
|
133105
|
+
"noteId"
|
|
133106
|
+
]
|
|
133107
|
+
}
|
|
133108
|
+
],
|
|
133109
|
+
"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."
|
|
131961
133110
|
}
|
|
131962
133111
|
},
|
|
131963
133112
|
"required": [
|
|
@@ -131987,6 +133136,9 @@ export const CONTRACT = {
|
|
|
131987
133136
|
},
|
|
131988
133137
|
"name": {
|
|
131989
133138
|
"type": "string"
|
|
133139
|
+
},
|
|
133140
|
+
"story": {
|
|
133141
|
+
"$ref": "#/$defs/StoryLocator"
|
|
131990
133142
|
}
|
|
131991
133143
|
},
|
|
131992
133144
|
"additionalProperties": false,
|
|
@@ -132119,6 +133271,162 @@ export const CONTRACT = {
|
|
|
132119
133271
|
"range"
|
|
132120
133272
|
]
|
|
132121
133273
|
}
|
|
133274
|
+
},
|
|
133275
|
+
"story": {
|
|
133276
|
+
"oneOf": [
|
|
133277
|
+
{
|
|
133278
|
+
"type": "object",
|
|
133279
|
+
"properties": {
|
|
133280
|
+
"kind": {
|
|
133281
|
+
"const": "story"
|
|
133282
|
+
},
|
|
133283
|
+
"storyType": {
|
|
133284
|
+
"const": "body"
|
|
133285
|
+
}
|
|
133286
|
+
},
|
|
133287
|
+
"required": [
|
|
133288
|
+
"kind",
|
|
133289
|
+
"storyType"
|
|
133290
|
+
]
|
|
133291
|
+
},
|
|
133292
|
+
{
|
|
133293
|
+
"type": "object",
|
|
133294
|
+
"properties": {
|
|
133295
|
+
"kind": {
|
|
133296
|
+
"const": "story"
|
|
133297
|
+
},
|
|
133298
|
+
"storyType": {
|
|
133299
|
+
"const": "headerFooterSlot"
|
|
133300
|
+
},
|
|
133301
|
+
"section": {
|
|
133302
|
+
"type": "object",
|
|
133303
|
+
"properties": {
|
|
133304
|
+
"kind": {
|
|
133305
|
+
"const": "section"
|
|
133306
|
+
},
|
|
133307
|
+
"sectionId": {
|
|
133308
|
+
"type": "string"
|
|
133309
|
+
}
|
|
133310
|
+
},
|
|
133311
|
+
"required": [
|
|
133312
|
+
"kind",
|
|
133313
|
+
"sectionId"
|
|
133314
|
+
]
|
|
133315
|
+
},
|
|
133316
|
+
"headerFooterKind": {
|
|
133317
|
+
"oneOf": [
|
|
133318
|
+
{
|
|
133319
|
+
"const": "header"
|
|
133320
|
+
},
|
|
133321
|
+
{
|
|
133322
|
+
"const": "footer"
|
|
133323
|
+
}
|
|
133324
|
+
]
|
|
133325
|
+
},
|
|
133326
|
+
"variant": {
|
|
133327
|
+
"oneOf": [
|
|
133328
|
+
{
|
|
133329
|
+
"const": "default"
|
|
133330
|
+
},
|
|
133331
|
+
{
|
|
133332
|
+
"const": "first"
|
|
133333
|
+
},
|
|
133334
|
+
{
|
|
133335
|
+
"const": "even"
|
|
133336
|
+
}
|
|
133337
|
+
]
|
|
133338
|
+
},
|
|
133339
|
+
"resolution": {
|
|
133340
|
+
"oneOf": [
|
|
133341
|
+
{
|
|
133342
|
+
"const": "effective"
|
|
133343
|
+
},
|
|
133344
|
+
{
|
|
133345
|
+
"const": "explicit"
|
|
133346
|
+
}
|
|
133347
|
+
]
|
|
133348
|
+
},
|
|
133349
|
+
"onWrite": {
|
|
133350
|
+
"oneOf": [
|
|
133351
|
+
{
|
|
133352
|
+
"const": "materializeIfInherited"
|
|
133353
|
+
},
|
|
133354
|
+
{
|
|
133355
|
+
"const": "editResolvedPart"
|
|
133356
|
+
},
|
|
133357
|
+
{
|
|
133358
|
+
"const": "error"
|
|
133359
|
+
}
|
|
133360
|
+
]
|
|
133361
|
+
}
|
|
133362
|
+
},
|
|
133363
|
+
"required": [
|
|
133364
|
+
"kind",
|
|
133365
|
+
"storyType",
|
|
133366
|
+
"section",
|
|
133367
|
+
"headerFooterKind",
|
|
133368
|
+
"variant"
|
|
133369
|
+
]
|
|
133370
|
+
},
|
|
133371
|
+
{
|
|
133372
|
+
"type": "object",
|
|
133373
|
+
"properties": {
|
|
133374
|
+
"kind": {
|
|
133375
|
+
"const": "story"
|
|
133376
|
+
},
|
|
133377
|
+
"storyType": {
|
|
133378
|
+
"const": "headerFooterPart"
|
|
133379
|
+
},
|
|
133380
|
+
"refId": {
|
|
133381
|
+
"type": "string"
|
|
133382
|
+
}
|
|
133383
|
+
},
|
|
133384
|
+
"required": [
|
|
133385
|
+
"kind",
|
|
133386
|
+
"storyType",
|
|
133387
|
+
"refId"
|
|
133388
|
+
]
|
|
133389
|
+
},
|
|
133390
|
+
{
|
|
133391
|
+
"type": "object",
|
|
133392
|
+
"properties": {
|
|
133393
|
+
"kind": {
|
|
133394
|
+
"const": "story"
|
|
133395
|
+
},
|
|
133396
|
+
"storyType": {
|
|
133397
|
+
"const": "footnote"
|
|
133398
|
+
},
|
|
133399
|
+
"noteId": {
|
|
133400
|
+
"type": "string"
|
|
133401
|
+
}
|
|
133402
|
+
},
|
|
133403
|
+
"required": [
|
|
133404
|
+
"kind",
|
|
133405
|
+
"storyType",
|
|
133406
|
+
"noteId"
|
|
133407
|
+
]
|
|
133408
|
+
},
|
|
133409
|
+
{
|
|
133410
|
+
"type": "object",
|
|
133411
|
+
"properties": {
|
|
133412
|
+
"kind": {
|
|
133413
|
+
"const": "story"
|
|
133414
|
+
},
|
|
133415
|
+
"storyType": {
|
|
133416
|
+
"const": "endnote"
|
|
133417
|
+
},
|
|
133418
|
+
"noteId": {
|
|
133419
|
+
"type": "string"
|
|
133420
|
+
}
|
|
133421
|
+
},
|
|
133422
|
+
"required": [
|
|
133423
|
+
"kind",
|
|
133424
|
+
"storyType",
|
|
133425
|
+
"noteId"
|
|
133426
|
+
]
|
|
133427
|
+
}
|
|
133428
|
+
],
|
|
133429
|
+
"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."
|
|
132122
133430
|
}
|
|
132123
133431
|
},
|
|
132124
133432
|
"required": [
|
|
@@ -132205,6 +133513,9 @@ export const CONTRACT = {
|
|
|
132205
133513
|
},
|
|
132206
133514
|
"name": {
|
|
132207
133515
|
"type": "string"
|
|
133516
|
+
},
|
|
133517
|
+
"story": {
|
|
133518
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132208
133519
|
}
|
|
132209
133520
|
},
|
|
132210
133521
|
"additionalProperties": false,
|
|
@@ -132270,6 +133581,9 @@ export const CONTRACT = {
|
|
|
132270
133581
|
},
|
|
132271
133582
|
"name": {
|
|
132272
133583
|
"type": "string"
|
|
133584
|
+
},
|
|
133585
|
+
"story": {
|
|
133586
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132273
133587
|
}
|
|
132274
133588
|
},
|
|
132275
133589
|
"additionalProperties": false,
|
|
@@ -132400,6 +133714,162 @@ export const CONTRACT = {
|
|
|
132400
133714
|
},
|
|
132401
133715
|
"name": {
|
|
132402
133716
|
"type": "string"
|
|
133717
|
+
},
|
|
133718
|
+
"story": {
|
|
133719
|
+
"oneOf": [
|
|
133720
|
+
{
|
|
133721
|
+
"type": "object",
|
|
133722
|
+
"properties": {
|
|
133723
|
+
"kind": {
|
|
133724
|
+
"const": "story"
|
|
133725
|
+
},
|
|
133726
|
+
"storyType": {
|
|
133727
|
+
"const": "body"
|
|
133728
|
+
}
|
|
133729
|
+
},
|
|
133730
|
+
"required": [
|
|
133731
|
+
"kind",
|
|
133732
|
+
"storyType"
|
|
133733
|
+
]
|
|
133734
|
+
},
|
|
133735
|
+
{
|
|
133736
|
+
"type": "object",
|
|
133737
|
+
"properties": {
|
|
133738
|
+
"kind": {
|
|
133739
|
+
"const": "story"
|
|
133740
|
+
},
|
|
133741
|
+
"storyType": {
|
|
133742
|
+
"const": "headerFooterSlot"
|
|
133743
|
+
},
|
|
133744
|
+
"section": {
|
|
133745
|
+
"type": "object",
|
|
133746
|
+
"properties": {
|
|
133747
|
+
"kind": {
|
|
133748
|
+
"const": "section"
|
|
133749
|
+
},
|
|
133750
|
+
"sectionId": {
|
|
133751
|
+
"type": "string"
|
|
133752
|
+
}
|
|
133753
|
+
},
|
|
133754
|
+
"required": [
|
|
133755
|
+
"kind",
|
|
133756
|
+
"sectionId"
|
|
133757
|
+
]
|
|
133758
|
+
},
|
|
133759
|
+
"headerFooterKind": {
|
|
133760
|
+
"oneOf": [
|
|
133761
|
+
{
|
|
133762
|
+
"const": "header"
|
|
133763
|
+
},
|
|
133764
|
+
{
|
|
133765
|
+
"const": "footer"
|
|
133766
|
+
}
|
|
133767
|
+
]
|
|
133768
|
+
},
|
|
133769
|
+
"variant": {
|
|
133770
|
+
"oneOf": [
|
|
133771
|
+
{
|
|
133772
|
+
"const": "default"
|
|
133773
|
+
},
|
|
133774
|
+
{
|
|
133775
|
+
"const": "first"
|
|
133776
|
+
},
|
|
133777
|
+
{
|
|
133778
|
+
"const": "even"
|
|
133779
|
+
}
|
|
133780
|
+
]
|
|
133781
|
+
},
|
|
133782
|
+
"resolution": {
|
|
133783
|
+
"oneOf": [
|
|
133784
|
+
{
|
|
133785
|
+
"const": "effective"
|
|
133786
|
+
},
|
|
133787
|
+
{
|
|
133788
|
+
"const": "explicit"
|
|
133789
|
+
}
|
|
133790
|
+
]
|
|
133791
|
+
},
|
|
133792
|
+
"onWrite": {
|
|
133793
|
+
"oneOf": [
|
|
133794
|
+
{
|
|
133795
|
+
"const": "materializeIfInherited"
|
|
133796
|
+
},
|
|
133797
|
+
{
|
|
133798
|
+
"const": "editResolvedPart"
|
|
133799
|
+
},
|
|
133800
|
+
{
|
|
133801
|
+
"const": "error"
|
|
133802
|
+
}
|
|
133803
|
+
]
|
|
133804
|
+
}
|
|
133805
|
+
},
|
|
133806
|
+
"required": [
|
|
133807
|
+
"kind",
|
|
133808
|
+
"storyType",
|
|
133809
|
+
"section",
|
|
133810
|
+
"headerFooterKind",
|
|
133811
|
+
"variant"
|
|
133812
|
+
]
|
|
133813
|
+
},
|
|
133814
|
+
{
|
|
133815
|
+
"type": "object",
|
|
133816
|
+
"properties": {
|
|
133817
|
+
"kind": {
|
|
133818
|
+
"const": "story"
|
|
133819
|
+
},
|
|
133820
|
+
"storyType": {
|
|
133821
|
+
"const": "headerFooterPart"
|
|
133822
|
+
},
|
|
133823
|
+
"refId": {
|
|
133824
|
+
"type": "string"
|
|
133825
|
+
}
|
|
133826
|
+
},
|
|
133827
|
+
"required": [
|
|
133828
|
+
"kind",
|
|
133829
|
+
"storyType",
|
|
133830
|
+
"refId"
|
|
133831
|
+
]
|
|
133832
|
+
},
|
|
133833
|
+
{
|
|
133834
|
+
"type": "object",
|
|
133835
|
+
"properties": {
|
|
133836
|
+
"kind": {
|
|
133837
|
+
"const": "story"
|
|
133838
|
+
},
|
|
133839
|
+
"storyType": {
|
|
133840
|
+
"const": "footnote"
|
|
133841
|
+
},
|
|
133842
|
+
"noteId": {
|
|
133843
|
+
"type": "string"
|
|
133844
|
+
}
|
|
133845
|
+
},
|
|
133846
|
+
"required": [
|
|
133847
|
+
"kind",
|
|
133848
|
+
"storyType",
|
|
133849
|
+
"noteId"
|
|
133850
|
+
]
|
|
133851
|
+
},
|
|
133852
|
+
{
|
|
133853
|
+
"type": "object",
|
|
133854
|
+
"properties": {
|
|
133855
|
+
"kind": {
|
|
133856
|
+
"const": "story"
|
|
133857
|
+
},
|
|
133858
|
+
"storyType": {
|
|
133859
|
+
"const": "endnote"
|
|
133860
|
+
},
|
|
133861
|
+
"noteId": {
|
|
133862
|
+
"type": "string"
|
|
133863
|
+
}
|
|
133864
|
+
},
|
|
133865
|
+
"required": [
|
|
133866
|
+
"kind",
|
|
133867
|
+
"storyType",
|
|
133868
|
+
"noteId"
|
|
133869
|
+
]
|
|
133870
|
+
}
|
|
133871
|
+
],
|
|
133872
|
+
"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."
|
|
132403
133873
|
}
|
|
132404
133874
|
},
|
|
132405
133875
|
"required": [
|
|
@@ -132436,6 +133906,9 @@ export const CONTRACT = {
|
|
|
132436
133906
|
},
|
|
132437
133907
|
"name": {
|
|
132438
133908
|
"type": "string"
|
|
133909
|
+
},
|
|
133910
|
+
"story": {
|
|
133911
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132439
133912
|
}
|
|
132440
133913
|
},
|
|
132441
133914
|
"additionalProperties": false,
|
|
@@ -132474,6 +133947,9 @@ export const CONTRACT = {
|
|
|
132474
133947
|
},
|
|
132475
133948
|
"name": {
|
|
132476
133949
|
"type": "string"
|
|
133950
|
+
},
|
|
133951
|
+
"story": {
|
|
133952
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132477
133953
|
}
|
|
132478
133954
|
},
|
|
132479
133955
|
"additionalProperties": false,
|
|
@@ -132539,6 +134015,9 @@ export const CONTRACT = {
|
|
|
132539
134015
|
},
|
|
132540
134016
|
"name": {
|
|
132541
134017
|
"type": "string"
|
|
134018
|
+
},
|
|
134019
|
+
"story": {
|
|
134020
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132542
134021
|
}
|
|
132543
134022
|
},
|
|
132544
134023
|
"additionalProperties": false,
|
|
@@ -132669,6 +134148,162 @@ export const CONTRACT = {
|
|
|
132669
134148
|
},
|
|
132670
134149
|
"name": {
|
|
132671
134150
|
"type": "string"
|
|
134151
|
+
},
|
|
134152
|
+
"story": {
|
|
134153
|
+
"oneOf": [
|
|
134154
|
+
{
|
|
134155
|
+
"type": "object",
|
|
134156
|
+
"properties": {
|
|
134157
|
+
"kind": {
|
|
134158
|
+
"const": "story"
|
|
134159
|
+
},
|
|
134160
|
+
"storyType": {
|
|
134161
|
+
"const": "body"
|
|
134162
|
+
}
|
|
134163
|
+
},
|
|
134164
|
+
"required": [
|
|
134165
|
+
"kind",
|
|
134166
|
+
"storyType"
|
|
134167
|
+
]
|
|
134168
|
+
},
|
|
134169
|
+
{
|
|
134170
|
+
"type": "object",
|
|
134171
|
+
"properties": {
|
|
134172
|
+
"kind": {
|
|
134173
|
+
"const": "story"
|
|
134174
|
+
},
|
|
134175
|
+
"storyType": {
|
|
134176
|
+
"const": "headerFooterSlot"
|
|
134177
|
+
},
|
|
134178
|
+
"section": {
|
|
134179
|
+
"type": "object",
|
|
134180
|
+
"properties": {
|
|
134181
|
+
"kind": {
|
|
134182
|
+
"const": "section"
|
|
134183
|
+
},
|
|
134184
|
+
"sectionId": {
|
|
134185
|
+
"type": "string"
|
|
134186
|
+
}
|
|
134187
|
+
},
|
|
134188
|
+
"required": [
|
|
134189
|
+
"kind",
|
|
134190
|
+
"sectionId"
|
|
134191
|
+
]
|
|
134192
|
+
},
|
|
134193
|
+
"headerFooterKind": {
|
|
134194
|
+
"oneOf": [
|
|
134195
|
+
{
|
|
134196
|
+
"const": "header"
|
|
134197
|
+
},
|
|
134198
|
+
{
|
|
134199
|
+
"const": "footer"
|
|
134200
|
+
}
|
|
134201
|
+
]
|
|
134202
|
+
},
|
|
134203
|
+
"variant": {
|
|
134204
|
+
"oneOf": [
|
|
134205
|
+
{
|
|
134206
|
+
"const": "default"
|
|
134207
|
+
},
|
|
134208
|
+
{
|
|
134209
|
+
"const": "first"
|
|
134210
|
+
},
|
|
134211
|
+
{
|
|
134212
|
+
"const": "even"
|
|
134213
|
+
}
|
|
134214
|
+
]
|
|
134215
|
+
},
|
|
134216
|
+
"resolution": {
|
|
134217
|
+
"oneOf": [
|
|
134218
|
+
{
|
|
134219
|
+
"const": "effective"
|
|
134220
|
+
},
|
|
134221
|
+
{
|
|
134222
|
+
"const": "explicit"
|
|
134223
|
+
}
|
|
134224
|
+
]
|
|
134225
|
+
},
|
|
134226
|
+
"onWrite": {
|
|
134227
|
+
"oneOf": [
|
|
134228
|
+
{
|
|
134229
|
+
"const": "materializeIfInherited"
|
|
134230
|
+
},
|
|
134231
|
+
{
|
|
134232
|
+
"const": "editResolvedPart"
|
|
134233
|
+
},
|
|
134234
|
+
{
|
|
134235
|
+
"const": "error"
|
|
134236
|
+
}
|
|
134237
|
+
]
|
|
134238
|
+
}
|
|
134239
|
+
},
|
|
134240
|
+
"required": [
|
|
134241
|
+
"kind",
|
|
134242
|
+
"storyType",
|
|
134243
|
+
"section",
|
|
134244
|
+
"headerFooterKind",
|
|
134245
|
+
"variant"
|
|
134246
|
+
]
|
|
134247
|
+
},
|
|
134248
|
+
{
|
|
134249
|
+
"type": "object",
|
|
134250
|
+
"properties": {
|
|
134251
|
+
"kind": {
|
|
134252
|
+
"const": "story"
|
|
134253
|
+
},
|
|
134254
|
+
"storyType": {
|
|
134255
|
+
"const": "headerFooterPart"
|
|
134256
|
+
},
|
|
134257
|
+
"refId": {
|
|
134258
|
+
"type": "string"
|
|
134259
|
+
}
|
|
134260
|
+
},
|
|
134261
|
+
"required": [
|
|
134262
|
+
"kind",
|
|
134263
|
+
"storyType",
|
|
134264
|
+
"refId"
|
|
134265
|
+
]
|
|
134266
|
+
},
|
|
134267
|
+
{
|
|
134268
|
+
"type": "object",
|
|
134269
|
+
"properties": {
|
|
134270
|
+
"kind": {
|
|
134271
|
+
"const": "story"
|
|
134272
|
+
},
|
|
134273
|
+
"storyType": {
|
|
134274
|
+
"const": "footnote"
|
|
134275
|
+
},
|
|
134276
|
+
"noteId": {
|
|
134277
|
+
"type": "string"
|
|
134278
|
+
}
|
|
134279
|
+
},
|
|
134280
|
+
"required": [
|
|
134281
|
+
"kind",
|
|
134282
|
+
"storyType",
|
|
134283
|
+
"noteId"
|
|
134284
|
+
]
|
|
134285
|
+
},
|
|
134286
|
+
{
|
|
134287
|
+
"type": "object",
|
|
134288
|
+
"properties": {
|
|
134289
|
+
"kind": {
|
|
134290
|
+
"const": "story"
|
|
134291
|
+
},
|
|
134292
|
+
"storyType": {
|
|
134293
|
+
"const": "endnote"
|
|
134294
|
+
},
|
|
134295
|
+
"noteId": {
|
|
134296
|
+
"type": "string"
|
|
134297
|
+
}
|
|
134298
|
+
},
|
|
134299
|
+
"required": [
|
|
134300
|
+
"kind",
|
|
134301
|
+
"storyType",
|
|
134302
|
+
"noteId"
|
|
134303
|
+
]
|
|
134304
|
+
}
|
|
134305
|
+
],
|
|
134306
|
+
"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."
|
|
132672
134307
|
}
|
|
132673
134308
|
},
|
|
132674
134309
|
"required": [
|
|
@@ -132698,6 +134333,9 @@ export const CONTRACT = {
|
|
|
132698
134333
|
},
|
|
132699
134334
|
"name": {
|
|
132700
134335
|
"type": "string"
|
|
134336
|
+
},
|
|
134337
|
+
"story": {
|
|
134338
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132701
134339
|
}
|
|
132702
134340
|
},
|
|
132703
134341
|
"additionalProperties": false,
|
|
@@ -132732,6 +134370,9 @@ export const CONTRACT = {
|
|
|
132732
134370
|
},
|
|
132733
134371
|
"name": {
|
|
132734
134372
|
"type": "string"
|
|
134373
|
+
},
|
|
134374
|
+
"story": {
|
|
134375
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132735
134376
|
}
|
|
132736
134377
|
},
|
|
132737
134378
|
"additionalProperties": false,
|
|
@@ -132797,6 +134438,9 @@ export const CONTRACT = {
|
|
|
132797
134438
|
},
|
|
132798
134439
|
"name": {
|
|
132799
134440
|
"type": "string"
|
|
134441
|
+
},
|
|
134442
|
+
"story": {
|
|
134443
|
+
"$ref": "#/$defs/StoryLocator"
|
|
132800
134444
|
}
|
|
132801
134445
|
},
|
|
132802
134446
|
"additionalProperties": false,
|
|
@@ -133123,6 +134767,162 @@ export const CONTRACT = {
|
|
|
133123
134767
|
"range"
|
|
133124
134768
|
]
|
|
133125
134769
|
}
|
|
134770
|
+
},
|
|
134771
|
+
"story": {
|
|
134772
|
+
"oneOf": [
|
|
134773
|
+
{
|
|
134774
|
+
"type": "object",
|
|
134775
|
+
"properties": {
|
|
134776
|
+
"kind": {
|
|
134777
|
+
"const": "story"
|
|
134778
|
+
},
|
|
134779
|
+
"storyType": {
|
|
134780
|
+
"const": "body"
|
|
134781
|
+
}
|
|
134782
|
+
},
|
|
134783
|
+
"required": [
|
|
134784
|
+
"kind",
|
|
134785
|
+
"storyType"
|
|
134786
|
+
]
|
|
134787
|
+
},
|
|
134788
|
+
{
|
|
134789
|
+
"type": "object",
|
|
134790
|
+
"properties": {
|
|
134791
|
+
"kind": {
|
|
134792
|
+
"const": "story"
|
|
134793
|
+
},
|
|
134794
|
+
"storyType": {
|
|
134795
|
+
"const": "headerFooterSlot"
|
|
134796
|
+
},
|
|
134797
|
+
"section": {
|
|
134798
|
+
"type": "object",
|
|
134799
|
+
"properties": {
|
|
134800
|
+
"kind": {
|
|
134801
|
+
"const": "section"
|
|
134802
|
+
},
|
|
134803
|
+
"sectionId": {
|
|
134804
|
+
"type": "string"
|
|
134805
|
+
}
|
|
134806
|
+
},
|
|
134807
|
+
"required": [
|
|
134808
|
+
"kind",
|
|
134809
|
+
"sectionId"
|
|
134810
|
+
]
|
|
134811
|
+
},
|
|
134812
|
+
"headerFooterKind": {
|
|
134813
|
+
"oneOf": [
|
|
134814
|
+
{
|
|
134815
|
+
"const": "header"
|
|
134816
|
+
},
|
|
134817
|
+
{
|
|
134818
|
+
"const": "footer"
|
|
134819
|
+
}
|
|
134820
|
+
]
|
|
134821
|
+
},
|
|
134822
|
+
"variant": {
|
|
134823
|
+
"oneOf": [
|
|
134824
|
+
{
|
|
134825
|
+
"const": "default"
|
|
134826
|
+
},
|
|
134827
|
+
{
|
|
134828
|
+
"const": "first"
|
|
134829
|
+
},
|
|
134830
|
+
{
|
|
134831
|
+
"const": "even"
|
|
134832
|
+
}
|
|
134833
|
+
]
|
|
134834
|
+
},
|
|
134835
|
+
"resolution": {
|
|
134836
|
+
"oneOf": [
|
|
134837
|
+
{
|
|
134838
|
+
"const": "effective"
|
|
134839
|
+
},
|
|
134840
|
+
{
|
|
134841
|
+
"const": "explicit"
|
|
134842
|
+
}
|
|
134843
|
+
]
|
|
134844
|
+
},
|
|
134845
|
+
"onWrite": {
|
|
134846
|
+
"oneOf": [
|
|
134847
|
+
{
|
|
134848
|
+
"const": "materializeIfInherited"
|
|
134849
|
+
},
|
|
134850
|
+
{
|
|
134851
|
+
"const": "editResolvedPart"
|
|
134852
|
+
},
|
|
134853
|
+
{
|
|
134854
|
+
"const": "error"
|
|
134855
|
+
}
|
|
134856
|
+
]
|
|
134857
|
+
}
|
|
134858
|
+
},
|
|
134859
|
+
"required": [
|
|
134860
|
+
"kind",
|
|
134861
|
+
"storyType",
|
|
134862
|
+
"section",
|
|
134863
|
+
"headerFooterKind",
|
|
134864
|
+
"variant"
|
|
134865
|
+
]
|
|
134866
|
+
},
|
|
134867
|
+
{
|
|
134868
|
+
"type": "object",
|
|
134869
|
+
"properties": {
|
|
134870
|
+
"kind": {
|
|
134871
|
+
"const": "story"
|
|
134872
|
+
},
|
|
134873
|
+
"storyType": {
|
|
134874
|
+
"const": "headerFooterPart"
|
|
134875
|
+
},
|
|
134876
|
+
"refId": {
|
|
134877
|
+
"type": "string"
|
|
134878
|
+
}
|
|
134879
|
+
},
|
|
134880
|
+
"required": [
|
|
134881
|
+
"kind",
|
|
134882
|
+
"storyType",
|
|
134883
|
+
"refId"
|
|
134884
|
+
]
|
|
134885
|
+
},
|
|
134886
|
+
{
|
|
134887
|
+
"type": "object",
|
|
134888
|
+
"properties": {
|
|
134889
|
+
"kind": {
|
|
134890
|
+
"const": "story"
|
|
134891
|
+
},
|
|
134892
|
+
"storyType": {
|
|
134893
|
+
"const": "footnote"
|
|
134894
|
+
},
|
|
134895
|
+
"noteId": {
|
|
134896
|
+
"type": "string"
|
|
134897
|
+
}
|
|
134898
|
+
},
|
|
134899
|
+
"required": [
|
|
134900
|
+
"kind",
|
|
134901
|
+
"storyType",
|
|
134902
|
+
"noteId"
|
|
134903
|
+
]
|
|
134904
|
+
},
|
|
134905
|
+
{
|
|
134906
|
+
"type": "object",
|
|
134907
|
+
"properties": {
|
|
134908
|
+
"kind": {
|
|
134909
|
+
"const": "story"
|
|
134910
|
+
},
|
|
134911
|
+
"storyType": {
|
|
134912
|
+
"const": "endnote"
|
|
134913
|
+
},
|
|
134914
|
+
"noteId": {
|
|
134915
|
+
"type": "string"
|
|
134916
|
+
}
|
|
134917
|
+
},
|
|
134918
|
+
"required": [
|
|
134919
|
+
"kind",
|
|
134920
|
+
"storyType",
|
|
134921
|
+
"noteId"
|
|
134922
|
+
]
|
|
134923
|
+
}
|
|
134924
|
+
],
|
|
134925
|
+
"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."
|
|
133126
134926
|
}
|
|
133127
134927
|
},
|
|
133128
134928
|
"required": [
|
|
@@ -134511,6 +136311,162 @@ export const CONTRACT = {
|
|
|
134511
136311
|
"range"
|
|
134512
136312
|
]
|
|
134513
136313
|
}
|
|
136314
|
+
},
|
|
136315
|
+
"story": {
|
|
136316
|
+
"oneOf": [
|
|
136317
|
+
{
|
|
136318
|
+
"type": "object",
|
|
136319
|
+
"properties": {
|
|
136320
|
+
"kind": {
|
|
136321
|
+
"const": "story"
|
|
136322
|
+
},
|
|
136323
|
+
"storyType": {
|
|
136324
|
+
"const": "body"
|
|
136325
|
+
}
|
|
136326
|
+
},
|
|
136327
|
+
"required": [
|
|
136328
|
+
"kind",
|
|
136329
|
+
"storyType"
|
|
136330
|
+
]
|
|
136331
|
+
},
|
|
136332
|
+
{
|
|
136333
|
+
"type": "object",
|
|
136334
|
+
"properties": {
|
|
136335
|
+
"kind": {
|
|
136336
|
+
"const": "story"
|
|
136337
|
+
},
|
|
136338
|
+
"storyType": {
|
|
136339
|
+
"const": "headerFooterSlot"
|
|
136340
|
+
},
|
|
136341
|
+
"section": {
|
|
136342
|
+
"type": "object",
|
|
136343
|
+
"properties": {
|
|
136344
|
+
"kind": {
|
|
136345
|
+
"const": "section"
|
|
136346
|
+
},
|
|
136347
|
+
"sectionId": {
|
|
136348
|
+
"type": "string"
|
|
136349
|
+
}
|
|
136350
|
+
},
|
|
136351
|
+
"required": [
|
|
136352
|
+
"kind",
|
|
136353
|
+
"sectionId"
|
|
136354
|
+
]
|
|
136355
|
+
},
|
|
136356
|
+
"headerFooterKind": {
|
|
136357
|
+
"oneOf": [
|
|
136358
|
+
{
|
|
136359
|
+
"const": "header"
|
|
136360
|
+
},
|
|
136361
|
+
{
|
|
136362
|
+
"const": "footer"
|
|
136363
|
+
}
|
|
136364
|
+
]
|
|
136365
|
+
},
|
|
136366
|
+
"variant": {
|
|
136367
|
+
"oneOf": [
|
|
136368
|
+
{
|
|
136369
|
+
"const": "default"
|
|
136370
|
+
},
|
|
136371
|
+
{
|
|
136372
|
+
"const": "first"
|
|
136373
|
+
},
|
|
136374
|
+
{
|
|
136375
|
+
"const": "even"
|
|
136376
|
+
}
|
|
136377
|
+
]
|
|
136378
|
+
},
|
|
136379
|
+
"resolution": {
|
|
136380
|
+
"oneOf": [
|
|
136381
|
+
{
|
|
136382
|
+
"const": "effective"
|
|
136383
|
+
},
|
|
136384
|
+
{
|
|
136385
|
+
"const": "explicit"
|
|
136386
|
+
}
|
|
136387
|
+
]
|
|
136388
|
+
},
|
|
136389
|
+
"onWrite": {
|
|
136390
|
+
"oneOf": [
|
|
136391
|
+
{
|
|
136392
|
+
"const": "materializeIfInherited"
|
|
136393
|
+
},
|
|
136394
|
+
{
|
|
136395
|
+
"const": "editResolvedPart"
|
|
136396
|
+
},
|
|
136397
|
+
{
|
|
136398
|
+
"const": "error"
|
|
136399
|
+
}
|
|
136400
|
+
]
|
|
136401
|
+
}
|
|
136402
|
+
},
|
|
136403
|
+
"required": [
|
|
136404
|
+
"kind",
|
|
136405
|
+
"storyType",
|
|
136406
|
+
"section",
|
|
136407
|
+
"headerFooterKind",
|
|
136408
|
+
"variant"
|
|
136409
|
+
]
|
|
136410
|
+
},
|
|
136411
|
+
{
|
|
136412
|
+
"type": "object",
|
|
136413
|
+
"properties": {
|
|
136414
|
+
"kind": {
|
|
136415
|
+
"const": "story"
|
|
136416
|
+
},
|
|
136417
|
+
"storyType": {
|
|
136418
|
+
"const": "headerFooterPart"
|
|
136419
|
+
},
|
|
136420
|
+
"refId": {
|
|
136421
|
+
"type": "string"
|
|
136422
|
+
}
|
|
136423
|
+
},
|
|
136424
|
+
"required": [
|
|
136425
|
+
"kind",
|
|
136426
|
+
"storyType",
|
|
136427
|
+
"refId"
|
|
136428
|
+
]
|
|
136429
|
+
},
|
|
136430
|
+
{
|
|
136431
|
+
"type": "object",
|
|
136432
|
+
"properties": {
|
|
136433
|
+
"kind": {
|
|
136434
|
+
"const": "story"
|
|
136435
|
+
},
|
|
136436
|
+
"storyType": {
|
|
136437
|
+
"const": "footnote"
|
|
136438
|
+
},
|
|
136439
|
+
"noteId": {
|
|
136440
|
+
"type": "string"
|
|
136441
|
+
}
|
|
136442
|
+
},
|
|
136443
|
+
"required": [
|
|
136444
|
+
"kind",
|
|
136445
|
+
"storyType",
|
|
136446
|
+
"noteId"
|
|
136447
|
+
]
|
|
136448
|
+
},
|
|
136449
|
+
{
|
|
136450
|
+
"type": "object",
|
|
136451
|
+
"properties": {
|
|
136452
|
+
"kind": {
|
|
136453
|
+
"const": "story"
|
|
136454
|
+
},
|
|
136455
|
+
"storyType": {
|
|
136456
|
+
"const": "endnote"
|
|
136457
|
+
},
|
|
136458
|
+
"noteId": {
|
|
136459
|
+
"type": "string"
|
|
136460
|
+
}
|
|
136461
|
+
},
|
|
136462
|
+
"required": [
|
|
136463
|
+
"kind",
|
|
136464
|
+
"storyType",
|
|
136465
|
+
"noteId"
|
|
136466
|
+
]
|
|
136467
|
+
}
|
|
136468
|
+
],
|
|
136469
|
+
"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."
|
|
134514
136470
|
}
|
|
134515
136471
|
},
|
|
134516
136472
|
"required": [
|
|
@@ -137387,6 +139343,162 @@ export const CONTRACT = {
|
|
|
137387
139343
|
"range"
|
|
137388
139344
|
]
|
|
137389
139345
|
}
|
|
139346
|
+
},
|
|
139347
|
+
"story": {
|
|
139348
|
+
"oneOf": [
|
|
139349
|
+
{
|
|
139350
|
+
"type": "object",
|
|
139351
|
+
"properties": {
|
|
139352
|
+
"kind": {
|
|
139353
|
+
"const": "story"
|
|
139354
|
+
},
|
|
139355
|
+
"storyType": {
|
|
139356
|
+
"const": "body"
|
|
139357
|
+
}
|
|
139358
|
+
},
|
|
139359
|
+
"required": [
|
|
139360
|
+
"kind",
|
|
139361
|
+
"storyType"
|
|
139362
|
+
]
|
|
139363
|
+
},
|
|
139364
|
+
{
|
|
139365
|
+
"type": "object",
|
|
139366
|
+
"properties": {
|
|
139367
|
+
"kind": {
|
|
139368
|
+
"const": "story"
|
|
139369
|
+
},
|
|
139370
|
+
"storyType": {
|
|
139371
|
+
"const": "headerFooterSlot"
|
|
139372
|
+
},
|
|
139373
|
+
"section": {
|
|
139374
|
+
"type": "object",
|
|
139375
|
+
"properties": {
|
|
139376
|
+
"kind": {
|
|
139377
|
+
"const": "section"
|
|
139378
|
+
},
|
|
139379
|
+
"sectionId": {
|
|
139380
|
+
"type": "string"
|
|
139381
|
+
}
|
|
139382
|
+
},
|
|
139383
|
+
"required": [
|
|
139384
|
+
"kind",
|
|
139385
|
+
"sectionId"
|
|
139386
|
+
]
|
|
139387
|
+
},
|
|
139388
|
+
"headerFooterKind": {
|
|
139389
|
+
"oneOf": [
|
|
139390
|
+
{
|
|
139391
|
+
"const": "header"
|
|
139392
|
+
},
|
|
139393
|
+
{
|
|
139394
|
+
"const": "footer"
|
|
139395
|
+
}
|
|
139396
|
+
]
|
|
139397
|
+
},
|
|
139398
|
+
"variant": {
|
|
139399
|
+
"oneOf": [
|
|
139400
|
+
{
|
|
139401
|
+
"const": "default"
|
|
139402
|
+
},
|
|
139403
|
+
{
|
|
139404
|
+
"const": "first"
|
|
139405
|
+
},
|
|
139406
|
+
{
|
|
139407
|
+
"const": "even"
|
|
139408
|
+
}
|
|
139409
|
+
]
|
|
139410
|
+
},
|
|
139411
|
+
"resolution": {
|
|
139412
|
+
"oneOf": [
|
|
139413
|
+
{
|
|
139414
|
+
"const": "effective"
|
|
139415
|
+
},
|
|
139416
|
+
{
|
|
139417
|
+
"const": "explicit"
|
|
139418
|
+
}
|
|
139419
|
+
]
|
|
139420
|
+
},
|
|
139421
|
+
"onWrite": {
|
|
139422
|
+
"oneOf": [
|
|
139423
|
+
{
|
|
139424
|
+
"const": "materializeIfInherited"
|
|
139425
|
+
},
|
|
139426
|
+
{
|
|
139427
|
+
"const": "editResolvedPart"
|
|
139428
|
+
},
|
|
139429
|
+
{
|
|
139430
|
+
"const": "error"
|
|
139431
|
+
}
|
|
139432
|
+
]
|
|
139433
|
+
}
|
|
139434
|
+
},
|
|
139435
|
+
"required": [
|
|
139436
|
+
"kind",
|
|
139437
|
+
"storyType",
|
|
139438
|
+
"section",
|
|
139439
|
+
"headerFooterKind",
|
|
139440
|
+
"variant"
|
|
139441
|
+
]
|
|
139442
|
+
},
|
|
139443
|
+
{
|
|
139444
|
+
"type": "object",
|
|
139445
|
+
"properties": {
|
|
139446
|
+
"kind": {
|
|
139447
|
+
"const": "story"
|
|
139448
|
+
},
|
|
139449
|
+
"storyType": {
|
|
139450
|
+
"const": "headerFooterPart"
|
|
139451
|
+
},
|
|
139452
|
+
"refId": {
|
|
139453
|
+
"type": "string"
|
|
139454
|
+
}
|
|
139455
|
+
},
|
|
139456
|
+
"required": [
|
|
139457
|
+
"kind",
|
|
139458
|
+
"storyType",
|
|
139459
|
+
"refId"
|
|
139460
|
+
]
|
|
139461
|
+
},
|
|
139462
|
+
{
|
|
139463
|
+
"type": "object",
|
|
139464
|
+
"properties": {
|
|
139465
|
+
"kind": {
|
|
139466
|
+
"const": "story"
|
|
139467
|
+
},
|
|
139468
|
+
"storyType": {
|
|
139469
|
+
"const": "footnote"
|
|
139470
|
+
},
|
|
139471
|
+
"noteId": {
|
|
139472
|
+
"type": "string"
|
|
139473
|
+
}
|
|
139474
|
+
},
|
|
139475
|
+
"required": [
|
|
139476
|
+
"kind",
|
|
139477
|
+
"storyType",
|
|
139478
|
+
"noteId"
|
|
139479
|
+
]
|
|
139480
|
+
},
|
|
139481
|
+
{
|
|
139482
|
+
"type": "object",
|
|
139483
|
+
"properties": {
|
|
139484
|
+
"kind": {
|
|
139485
|
+
"const": "story"
|
|
139486
|
+
},
|
|
139487
|
+
"storyType": {
|
|
139488
|
+
"const": "endnote"
|
|
139489
|
+
},
|
|
139490
|
+
"noteId": {
|
|
139491
|
+
"type": "string"
|
|
139492
|
+
}
|
|
139493
|
+
},
|
|
139494
|
+
"required": [
|
|
139495
|
+
"kind",
|
|
139496
|
+
"storyType",
|
|
139497
|
+
"noteId"
|
|
139498
|
+
]
|
|
139499
|
+
}
|
|
139500
|
+
],
|
|
139501
|
+
"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."
|
|
137390
139502
|
}
|
|
137391
139503
|
},
|
|
137392
139504
|
"required": [
|
|
@@ -139790,6 +141902,162 @@ export const CONTRACT = {
|
|
|
139790
141902
|
"range"
|
|
139791
141903
|
]
|
|
139792
141904
|
}
|
|
141905
|
+
},
|
|
141906
|
+
"story": {
|
|
141907
|
+
"oneOf": [
|
|
141908
|
+
{
|
|
141909
|
+
"type": "object",
|
|
141910
|
+
"properties": {
|
|
141911
|
+
"kind": {
|
|
141912
|
+
"const": "story"
|
|
141913
|
+
},
|
|
141914
|
+
"storyType": {
|
|
141915
|
+
"const": "body"
|
|
141916
|
+
}
|
|
141917
|
+
},
|
|
141918
|
+
"required": [
|
|
141919
|
+
"kind",
|
|
141920
|
+
"storyType"
|
|
141921
|
+
]
|
|
141922
|
+
},
|
|
141923
|
+
{
|
|
141924
|
+
"type": "object",
|
|
141925
|
+
"properties": {
|
|
141926
|
+
"kind": {
|
|
141927
|
+
"const": "story"
|
|
141928
|
+
},
|
|
141929
|
+
"storyType": {
|
|
141930
|
+
"const": "headerFooterSlot"
|
|
141931
|
+
},
|
|
141932
|
+
"section": {
|
|
141933
|
+
"type": "object",
|
|
141934
|
+
"properties": {
|
|
141935
|
+
"kind": {
|
|
141936
|
+
"const": "section"
|
|
141937
|
+
},
|
|
141938
|
+
"sectionId": {
|
|
141939
|
+
"type": "string"
|
|
141940
|
+
}
|
|
141941
|
+
},
|
|
141942
|
+
"required": [
|
|
141943
|
+
"kind",
|
|
141944
|
+
"sectionId"
|
|
141945
|
+
]
|
|
141946
|
+
},
|
|
141947
|
+
"headerFooterKind": {
|
|
141948
|
+
"oneOf": [
|
|
141949
|
+
{
|
|
141950
|
+
"const": "header"
|
|
141951
|
+
},
|
|
141952
|
+
{
|
|
141953
|
+
"const": "footer"
|
|
141954
|
+
}
|
|
141955
|
+
]
|
|
141956
|
+
},
|
|
141957
|
+
"variant": {
|
|
141958
|
+
"oneOf": [
|
|
141959
|
+
{
|
|
141960
|
+
"const": "default"
|
|
141961
|
+
},
|
|
141962
|
+
{
|
|
141963
|
+
"const": "first"
|
|
141964
|
+
},
|
|
141965
|
+
{
|
|
141966
|
+
"const": "even"
|
|
141967
|
+
}
|
|
141968
|
+
]
|
|
141969
|
+
},
|
|
141970
|
+
"resolution": {
|
|
141971
|
+
"oneOf": [
|
|
141972
|
+
{
|
|
141973
|
+
"const": "effective"
|
|
141974
|
+
},
|
|
141975
|
+
{
|
|
141976
|
+
"const": "explicit"
|
|
141977
|
+
}
|
|
141978
|
+
]
|
|
141979
|
+
},
|
|
141980
|
+
"onWrite": {
|
|
141981
|
+
"oneOf": [
|
|
141982
|
+
{
|
|
141983
|
+
"const": "materializeIfInherited"
|
|
141984
|
+
},
|
|
141985
|
+
{
|
|
141986
|
+
"const": "editResolvedPart"
|
|
141987
|
+
},
|
|
141988
|
+
{
|
|
141989
|
+
"const": "error"
|
|
141990
|
+
}
|
|
141991
|
+
]
|
|
141992
|
+
}
|
|
141993
|
+
},
|
|
141994
|
+
"required": [
|
|
141995
|
+
"kind",
|
|
141996
|
+
"storyType",
|
|
141997
|
+
"section",
|
|
141998
|
+
"headerFooterKind",
|
|
141999
|
+
"variant"
|
|
142000
|
+
]
|
|
142001
|
+
},
|
|
142002
|
+
{
|
|
142003
|
+
"type": "object",
|
|
142004
|
+
"properties": {
|
|
142005
|
+
"kind": {
|
|
142006
|
+
"const": "story"
|
|
142007
|
+
},
|
|
142008
|
+
"storyType": {
|
|
142009
|
+
"const": "headerFooterPart"
|
|
142010
|
+
},
|
|
142011
|
+
"refId": {
|
|
142012
|
+
"type": "string"
|
|
142013
|
+
}
|
|
142014
|
+
},
|
|
142015
|
+
"required": [
|
|
142016
|
+
"kind",
|
|
142017
|
+
"storyType",
|
|
142018
|
+
"refId"
|
|
142019
|
+
]
|
|
142020
|
+
},
|
|
142021
|
+
{
|
|
142022
|
+
"type": "object",
|
|
142023
|
+
"properties": {
|
|
142024
|
+
"kind": {
|
|
142025
|
+
"const": "story"
|
|
142026
|
+
},
|
|
142027
|
+
"storyType": {
|
|
142028
|
+
"const": "footnote"
|
|
142029
|
+
},
|
|
142030
|
+
"noteId": {
|
|
142031
|
+
"type": "string"
|
|
142032
|
+
}
|
|
142033
|
+
},
|
|
142034
|
+
"required": [
|
|
142035
|
+
"kind",
|
|
142036
|
+
"storyType",
|
|
142037
|
+
"noteId"
|
|
142038
|
+
]
|
|
142039
|
+
},
|
|
142040
|
+
{
|
|
142041
|
+
"type": "object",
|
|
142042
|
+
"properties": {
|
|
142043
|
+
"kind": {
|
|
142044
|
+
"const": "story"
|
|
142045
|
+
},
|
|
142046
|
+
"storyType": {
|
|
142047
|
+
"const": "endnote"
|
|
142048
|
+
},
|
|
142049
|
+
"noteId": {
|
|
142050
|
+
"type": "string"
|
|
142051
|
+
}
|
|
142052
|
+
},
|
|
142053
|
+
"required": [
|
|
142054
|
+
"kind",
|
|
142055
|
+
"storyType",
|
|
142056
|
+
"noteId"
|
|
142057
|
+
]
|
|
142058
|
+
}
|
|
142059
|
+
],
|
|
142060
|
+
"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."
|
|
139793
142061
|
}
|
|
139794
142062
|
},
|
|
139795
142063
|
"required": [
|
|
@@ -140817,6 +143085,162 @@ export const CONTRACT = {
|
|
|
140817
143085
|
"range"
|
|
140818
143086
|
]
|
|
140819
143087
|
}
|
|
143088
|
+
},
|
|
143089
|
+
"story": {
|
|
143090
|
+
"oneOf": [
|
|
143091
|
+
{
|
|
143092
|
+
"type": "object",
|
|
143093
|
+
"properties": {
|
|
143094
|
+
"kind": {
|
|
143095
|
+
"const": "story"
|
|
143096
|
+
},
|
|
143097
|
+
"storyType": {
|
|
143098
|
+
"const": "body"
|
|
143099
|
+
}
|
|
143100
|
+
},
|
|
143101
|
+
"required": [
|
|
143102
|
+
"kind",
|
|
143103
|
+
"storyType"
|
|
143104
|
+
]
|
|
143105
|
+
},
|
|
143106
|
+
{
|
|
143107
|
+
"type": "object",
|
|
143108
|
+
"properties": {
|
|
143109
|
+
"kind": {
|
|
143110
|
+
"const": "story"
|
|
143111
|
+
},
|
|
143112
|
+
"storyType": {
|
|
143113
|
+
"const": "headerFooterSlot"
|
|
143114
|
+
},
|
|
143115
|
+
"section": {
|
|
143116
|
+
"type": "object",
|
|
143117
|
+
"properties": {
|
|
143118
|
+
"kind": {
|
|
143119
|
+
"const": "section"
|
|
143120
|
+
},
|
|
143121
|
+
"sectionId": {
|
|
143122
|
+
"type": "string"
|
|
143123
|
+
}
|
|
143124
|
+
},
|
|
143125
|
+
"required": [
|
|
143126
|
+
"kind",
|
|
143127
|
+
"sectionId"
|
|
143128
|
+
]
|
|
143129
|
+
},
|
|
143130
|
+
"headerFooterKind": {
|
|
143131
|
+
"oneOf": [
|
|
143132
|
+
{
|
|
143133
|
+
"const": "header"
|
|
143134
|
+
},
|
|
143135
|
+
{
|
|
143136
|
+
"const": "footer"
|
|
143137
|
+
}
|
|
143138
|
+
]
|
|
143139
|
+
},
|
|
143140
|
+
"variant": {
|
|
143141
|
+
"oneOf": [
|
|
143142
|
+
{
|
|
143143
|
+
"const": "default"
|
|
143144
|
+
},
|
|
143145
|
+
{
|
|
143146
|
+
"const": "first"
|
|
143147
|
+
},
|
|
143148
|
+
{
|
|
143149
|
+
"const": "even"
|
|
143150
|
+
}
|
|
143151
|
+
]
|
|
143152
|
+
},
|
|
143153
|
+
"resolution": {
|
|
143154
|
+
"oneOf": [
|
|
143155
|
+
{
|
|
143156
|
+
"const": "effective"
|
|
143157
|
+
},
|
|
143158
|
+
{
|
|
143159
|
+
"const": "explicit"
|
|
143160
|
+
}
|
|
143161
|
+
]
|
|
143162
|
+
},
|
|
143163
|
+
"onWrite": {
|
|
143164
|
+
"oneOf": [
|
|
143165
|
+
{
|
|
143166
|
+
"const": "materializeIfInherited"
|
|
143167
|
+
},
|
|
143168
|
+
{
|
|
143169
|
+
"const": "editResolvedPart"
|
|
143170
|
+
},
|
|
143171
|
+
{
|
|
143172
|
+
"const": "error"
|
|
143173
|
+
}
|
|
143174
|
+
]
|
|
143175
|
+
}
|
|
143176
|
+
},
|
|
143177
|
+
"required": [
|
|
143178
|
+
"kind",
|
|
143179
|
+
"storyType",
|
|
143180
|
+
"section",
|
|
143181
|
+
"headerFooterKind",
|
|
143182
|
+
"variant"
|
|
143183
|
+
]
|
|
143184
|
+
},
|
|
143185
|
+
{
|
|
143186
|
+
"type": "object",
|
|
143187
|
+
"properties": {
|
|
143188
|
+
"kind": {
|
|
143189
|
+
"const": "story"
|
|
143190
|
+
},
|
|
143191
|
+
"storyType": {
|
|
143192
|
+
"const": "headerFooterPart"
|
|
143193
|
+
},
|
|
143194
|
+
"refId": {
|
|
143195
|
+
"type": "string"
|
|
143196
|
+
}
|
|
143197
|
+
},
|
|
143198
|
+
"required": [
|
|
143199
|
+
"kind",
|
|
143200
|
+
"storyType",
|
|
143201
|
+
"refId"
|
|
143202
|
+
]
|
|
143203
|
+
},
|
|
143204
|
+
{
|
|
143205
|
+
"type": "object",
|
|
143206
|
+
"properties": {
|
|
143207
|
+
"kind": {
|
|
143208
|
+
"const": "story"
|
|
143209
|
+
},
|
|
143210
|
+
"storyType": {
|
|
143211
|
+
"const": "footnote"
|
|
143212
|
+
},
|
|
143213
|
+
"noteId": {
|
|
143214
|
+
"type": "string"
|
|
143215
|
+
}
|
|
143216
|
+
},
|
|
143217
|
+
"required": [
|
|
143218
|
+
"kind",
|
|
143219
|
+
"storyType",
|
|
143220
|
+
"noteId"
|
|
143221
|
+
]
|
|
143222
|
+
},
|
|
143223
|
+
{
|
|
143224
|
+
"type": "object",
|
|
143225
|
+
"properties": {
|
|
143226
|
+
"kind": {
|
|
143227
|
+
"const": "story"
|
|
143228
|
+
},
|
|
143229
|
+
"storyType": {
|
|
143230
|
+
"const": "endnote"
|
|
143231
|
+
},
|
|
143232
|
+
"noteId": {
|
|
143233
|
+
"type": "string"
|
|
143234
|
+
}
|
|
143235
|
+
},
|
|
143236
|
+
"required": [
|
|
143237
|
+
"kind",
|
|
143238
|
+
"storyType",
|
|
143239
|
+
"noteId"
|
|
143240
|
+
]
|
|
143241
|
+
}
|
|
143242
|
+
],
|
|
143243
|
+
"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."
|
|
140820
143244
|
}
|
|
140821
143245
|
},
|
|
140822
143246
|
"required": [
|
|
@@ -146112,6 +148536,162 @@ export const CONTRACT = {
|
|
|
146112
148536
|
"range"
|
|
146113
148537
|
]
|
|
146114
148538
|
}
|
|
148539
|
+
},
|
|
148540
|
+
"story": {
|
|
148541
|
+
"oneOf": [
|
|
148542
|
+
{
|
|
148543
|
+
"type": "object",
|
|
148544
|
+
"properties": {
|
|
148545
|
+
"kind": {
|
|
148546
|
+
"const": "story"
|
|
148547
|
+
},
|
|
148548
|
+
"storyType": {
|
|
148549
|
+
"const": "body"
|
|
148550
|
+
}
|
|
148551
|
+
},
|
|
148552
|
+
"required": [
|
|
148553
|
+
"kind",
|
|
148554
|
+
"storyType"
|
|
148555
|
+
]
|
|
148556
|
+
},
|
|
148557
|
+
{
|
|
148558
|
+
"type": "object",
|
|
148559
|
+
"properties": {
|
|
148560
|
+
"kind": {
|
|
148561
|
+
"const": "story"
|
|
148562
|
+
},
|
|
148563
|
+
"storyType": {
|
|
148564
|
+
"const": "headerFooterSlot"
|
|
148565
|
+
},
|
|
148566
|
+
"section": {
|
|
148567
|
+
"type": "object",
|
|
148568
|
+
"properties": {
|
|
148569
|
+
"kind": {
|
|
148570
|
+
"const": "section"
|
|
148571
|
+
},
|
|
148572
|
+
"sectionId": {
|
|
148573
|
+
"type": "string"
|
|
148574
|
+
}
|
|
148575
|
+
},
|
|
148576
|
+
"required": [
|
|
148577
|
+
"kind",
|
|
148578
|
+
"sectionId"
|
|
148579
|
+
]
|
|
148580
|
+
},
|
|
148581
|
+
"headerFooterKind": {
|
|
148582
|
+
"oneOf": [
|
|
148583
|
+
{
|
|
148584
|
+
"const": "header"
|
|
148585
|
+
},
|
|
148586
|
+
{
|
|
148587
|
+
"const": "footer"
|
|
148588
|
+
}
|
|
148589
|
+
]
|
|
148590
|
+
},
|
|
148591
|
+
"variant": {
|
|
148592
|
+
"oneOf": [
|
|
148593
|
+
{
|
|
148594
|
+
"const": "default"
|
|
148595
|
+
},
|
|
148596
|
+
{
|
|
148597
|
+
"const": "first"
|
|
148598
|
+
},
|
|
148599
|
+
{
|
|
148600
|
+
"const": "even"
|
|
148601
|
+
}
|
|
148602
|
+
]
|
|
148603
|
+
},
|
|
148604
|
+
"resolution": {
|
|
148605
|
+
"oneOf": [
|
|
148606
|
+
{
|
|
148607
|
+
"const": "effective"
|
|
148608
|
+
},
|
|
148609
|
+
{
|
|
148610
|
+
"const": "explicit"
|
|
148611
|
+
}
|
|
148612
|
+
]
|
|
148613
|
+
},
|
|
148614
|
+
"onWrite": {
|
|
148615
|
+
"oneOf": [
|
|
148616
|
+
{
|
|
148617
|
+
"const": "materializeIfInherited"
|
|
148618
|
+
},
|
|
148619
|
+
{
|
|
148620
|
+
"const": "editResolvedPart"
|
|
148621
|
+
},
|
|
148622
|
+
{
|
|
148623
|
+
"const": "error"
|
|
148624
|
+
}
|
|
148625
|
+
]
|
|
148626
|
+
}
|
|
148627
|
+
},
|
|
148628
|
+
"required": [
|
|
148629
|
+
"kind",
|
|
148630
|
+
"storyType",
|
|
148631
|
+
"section",
|
|
148632
|
+
"headerFooterKind",
|
|
148633
|
+
"variant"
|
|
148634
|
+
]
|
|
148635
|
+
},
|
|
148636
|
+
{
|
|
148637
|
+
"type": "object",
|
|
148638
|
+
"properties": {
|
|
148639
|
+
"kind": {
|
|
148640
|
+
"const": "story"
|
|
148641
|
+
},
|
|
148642
|
+
"storyType": {
|
|
148643
|
+
"const": "headerFooterPart"
|
|
148644
|
+
},
|
|
148645
|
+
"refId": {
|
|
148646
|
+
"type": "string"
|
|
148647
|
+
}
|
|
148648
|
+
},
|
|
148649
|
+
"required": [
|
|
148650
|
+
"kind",
|
|
148651
|
+
"storyType",
|
|
148652
|
+
"refId"
|
|
148653
|
+
]
|
|
148654
|
+
},
|
|
148655
|
+
{
|
|
148656
|
+
"type": "object",
|
|
148657
|
+
"properties": {
|
|
148658
|
+
"kind": {
|
|
148659
|
+
"const": "story"
|
|
148660
|
+
},
|
|
148661
|
+
"storyType": {
|
|
148662
|
+
"const": "footnote"
|
|
148663
|
+
},
|
|
148664
|
+
"noteId": {
|
|
148665
|
+
"type": "string"
|
|
148666
|
+
}
|
|
148667
|
+
},
|
|
148668
|
+
"required": [
|
|
148669
|
+
"kind",
|
|
148670
|
+
"storyType",
|
|
148671
|
+
"noteId"
|
|
148672
|
+
]
|
|
148673
|
+
},
|
|
148674
|
+
{
|
|
148675
|
+
"type": "object",
|
|
148676
|
+
"properties": {
|
|
148677
|
+
"kind": {
|
|
148678
|
+
"const": "story"
|
|
148679
|
+
},
|
|
148680
|
+
"storyType": {
|
|
148681
|
+
"const": "endnote"
|
|
148682
|
+
},
|
|
148683
|
+
"noteId": {
|
|
148684
|
+
"type": "string"
|
|
148685
|
+
}
|
|
148686
|
+
},
|
|
148687
|
+
"required": [
|
|
148688
|
+
"kind",
|
|
148689
|
+
"storyType",
|
|
148690
|
+
"noteId"
|
|
148691
|
+
]
|
|
148692
|
+
}
|
|
148693
|
+
],
|
|
148694
|
+
"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."
|
|
146115
148695
|
}
|
|
146116
148696
|
},
|
|
146117
148697
|
"required": [
|