@superdoc/sdk 2.9.1-next.2 → 2.10.0-next.10
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/README.md +45 -0
- package/dist/action-primitives/doc-index.cjs +6 -4
- package/dist/action-primitives/doc-index.js +6 -4
- package/dist/action-primitives/engine.cjs +6 -2
- package/dist/action-primitives/engine.js +6 -2
- package/dist/action-primitives/receipt.d.ts +4 -0
- package/dist/action-primitives/tools/structure-insert.d.ts +1 -1
- package/dist/agent/actions.cjs +384 -373
- package/dist/agent/actions.d.ts +5 -0
- package/dist/agent/actions.js +385 -374
- package/dist/agent/catalog.cjs +15 -0
- package/dist/agent/catalog.js +15 -0
- package/dist/agent/doc-snapshot.cjs +205 -86
- package/dist/agent/doc-snapshot.d.ts +11 -0
- package/dist/agent/doc-snapshot.js +203 -86
- package/dist/agent/execution-context.cjs +385 -0
- package/dist/agent/execution-context.d.ts +97 -0
- package/dist/agent/execution-context.js +376 -0
- package/dist/agent/runtime.cjs +123 -117
- package/dist/agent/runtime.d.ts +3 -0
- package/dist/agent/runtime.js +124 -118
- package/dist/agent/v2-preset-compat.cjs +5 -1
- package/dist/agent/v2-preset-compat.js +4 -1
- package/dist/embedded-tools.generated.cjs +5 -5
- package/dist/embedded-tools.generated.js +5 -5
- package/dist/generated/client.cjs +2 -0
- package/dist/generated/client.d.ts +85 -0
- package/dist/generated/client.js +2 -0
- package/dist/generated/contract.cjs +1796 -1297
- package/dist/generated/contract.js +1797 -1297
- package/dist/index.cjs +23 -0
- package/dist/index.d.ts +7 -2
- package/dist/index.js +23 -0
- package/dist/presets/core.cjs +1 -1
- package/dist/presets/core.js +1 -1
- package/dist/runtime/document-evidence.cjs +40 -0
- package/dist/runtime/document-evidence.d.ts +13 -0
- package/dist/runtime/document-evidence.js +30 -0
- package/dist/runtime/document-rpc.cjs +27 -0
- package/dist/runtime/document-rpc.d.ts +2 -0
- package/dist/runtime/document-rpc.js +25 -0
- package/dist/runtime/host.cjs +65 -4
- package/dist/runtime/host.d.ts +3 -0
- package/dist/runtime/host.js +66 -5
- package/dist/runtime/process.cjs +38 -0
- package/dist/runtime/process.d.ts +16 -0
- package/dist/runtime/process.js +38 -0
- package/dist/runtime/sdk-version.generated.cjs +1 -1
- package/dist/runtime/sdk-version.generated.d.ts +1 -1
- package/dist/runtime/sdk-version.generated.js +1 -1
- package/package.json +10 -8
- package/tools/catalog.json +89 -0
- package/tools/tools-policy.json +1 -1
- package/tools/tools.anthropic.json +89 -0
- package/tools/tools.generic.json +89 -0
- package/tools/tools.openai.json +89 -0
- package/tools/tools.vercel.json +89 -0
|
@@ -21,6 +21,7 @@ const CONTRACT = {
|
|
|
21
21
|
"document.open",
|
|
22
22
|
"document.open.defaultChangeMode",
|
|
23
23
|
"document.currentRevision",
|
|
24
|
+
"document.replaceFile",
|
|
24
25
|
"document.invoke",
|
|
25
26
|
"document.save",
|
|
26
27
|
"document.save.source",
|
|
@@ -41,7 +42,7 @@ const CONTRACT = {
|
|
|
41
42
|
"Response envelopes include elapsed_ms for all operations.",
|
|
42
43
|
"JSON output mode is the default and must always be supported."
|
|
43
44
|
],
|
|
44
|
-
"operationCount":
|
|
45
|
+
"operationCount": 460,
|
|
45
46
|
"operations": [
|
|
46
47
|
{
|
|
47
48
|
"id": "doc.get",
|
|
@@ -507,13 +508,31 @@ const CONTRACT = {
|
|
|
507
508
|
"NO_OP"
|
|
508
509
|
]
|
|
509
510
|
},
|
|
511
|
+
{
|
|
512
|
+
"id": "doc.blocks.findText",
|
|
513
|
+
"command": [
|
|
514
|
+
"blocks",
|
|
515
|
+
"find-text"
|
|
516
|
+
],
|
|
517
|
+
"description": "Find top-level body blocks containing a literal case-insensitive substring. Matches flattened block text, coalescing repeated hits and nested table paragraphs into one block. Scans at most 20,000 blocks inside the document host and returns compact previews without transferring full-text pages.",
|
|
518
|
+
"category": "core",
|
|
519
|
+
"stability": "stable",
|
|
520
|
+
"mutates": false,
|
|
521
|
+
"requiresDocumentContext": true,
|
|
522
|
+
"capabilities": [],
|
|
523
|
+
"aliases": [],
|
|
524
|
+
"examples": [],
|
|
525
|
+
"errors": [
|
|
526
|
+
"INVALID_INPUT"
|
|
527
|
+
]
|
|
528
|
+
},
|
|
510
529
|
{
|
|
511
530
|
"id": "doc.blocks.list",
|
|
512
531
|
"command": [
|
|
513
532
|
"blocks",
|
|
514
533
|
"list"
|
|
515
534
|
],
|
|
516
|
-
"description": "List top-level blocks in document order with IDs, types, text previews, and optional full text when includeText:true. Supports pagination via offset/limit
|
|
535
|
+
"description": "List top-level blocks in document order with IDs, types, text previews, and optional full text when includeText:true. Supports pagination via offset/limit after optional nodeTypes, nodeIds, and literal textSearch filtering, single-story scoping via `in: <StoryLocator>`, and final/original/redline projection of numbering metadata without changing block membership.",
|
|
517
536
|
"category": "core",
|
|
518
537
|
"stability": "stable",
|
|
519
538
|
"mutates": false,
|
|
@@ -11439,434 +11458,435 @@ const CONTRACT = {
|
|
|
11439
11458
|
"doc.replace": 15,
|
|
11440
11459
|
"doc.delete": 16,
|
|
11441
11460
|
"doc.formatrange": 17,
|
|
11442
|
-
"doc.blocks.
|
|
11443
|
-
"doc.blocks.
|
|
11444
|
-
"doc.blocks.
|
|
11445
|
-
"doc.blocks.
|
|
11446
|
-
"doc.blocks.
|
|
11447
|
-
"doc.blocks.
|
|
11448
|
-
"doc.
|
|
11449
|
-
"doc.format.
|
|
11450
|
-
"doc.format.
|
|
11451
|
-
"doc.format.
|
|
11452
|
-
"doc.format.
|
|
11453
|
-
"doc.format.
|
|
11454
|
-
"doc.format.
|
|
11455
|
-
"doc.format.
|
|
11456
|
-
"doc.format.
|
|
11457
|
-
"doc.format.
|
|
11458
|
-
"doc.format.
|
|
11459
|
-
"doc.format.
|
|
11460
|
-
"doc.format.
|
|
11461
|
-
"doc.format.
|
|
11462
|
-
"doc.format.
|
|
11463
|
-
"doc.format.
|
|
11464
|
-
"doc.format.
|
|
11465
|
-
"doc.format.
|
|
11466
|
-
"doc.format.
|
|
11467
|
-
"doc.format.
|
|
11468
|
-
"doc.format.
|
|
11469
|
-
"doc.format.
|
|
11470
|
-
"doc.format.
|
|
11471
|
-
"doc.format.
|
|
11472
|
-
"doc.format.
|
|
11473
|
-
"doc.format.
|
|
11474
|
-
"doc.format.
|
|
11475
|
-
"doc.format.
|
|
11476
|
-
"doc.format.
|
|
11477
|
-
"doc.format.
|
|
11478
|
-
"doc.format.
|
|
11479
|
-
"doc.format.
|
|
11480
|
-
"doc.format.
|
|
11481
|
-
"doc.format.
|
|
11482
|
-
"doc.format.
|
|
11483
|
-
"doc.format.
|
|
11484
|
-
"doc.format.
|
|
11485
|
-
"doc.format.
|
|
11486
|
-
"doc.format.
|
|
11487
|
-
"doc.format.
|
|
11488
|
-
"doc.format.
|
|
11489
|
-
"doc.format.
|
|
11490
|
-
"doc.format.
|
|
11491
|
-
"doc.format.
|
|
11492
|
-
"doc.
|
|
11493
|
-
"doc.styles.
|
|
11494
|
-
"doc.
|
|
11495
|
-
"doc.
|
|
11496
|
-
"doc.create.
|
|
11497
|
-
"doc.create.
|
|
11498
|
-
"doc.
|
|
11499
|
-
"doc.sections.
|
|
11500
|
-
"doc.sections.
|
|
11501
|
-
"doc.sections.
|
|
11502
|
-
"doc.sections.
|
|
11503
|
-
"doc.sections.
|
|
11504
|
-
"doc.sections.
|
|
11505
|
-
"doc.sections.
|
|
11506
|
-
"doc.sections.
|
|
11507
|
-
"doc.sections.
|
|
11508
|
-
"doc.sections.
|
|
11509
|
-
"doc.sections.
|
|
11510
|
-
"doc.sections.
|
|
11511
|
-
"doc.sections.
|
|
11512
|
-
"doc.sections.
|
|
11513
|
-
"doc.sections.
|
|
11514
|
-
"doc.sections.
|
|
11515
|
-
"doc.sections.
|
|
11516
|
-
"doc.
|
|
11517
|
-
"doc.styles.paragraph.
|
|
11518
|
-
"doc.styles.paragraph.
|
|
11519
|
-
"doc.
|
|
11520
|
-
"doc.format.paragraph.
|
|
11521
|
-
"doc.format.paragraph.
|
|
11522
|
-
"doc.format.paragraph.
|
|
11523
|
-
"doc.format.paragraph.
|
|
11524
|
-
"doc.format.paragraph.
|
|
11525
|
-
"doc.format.paragraph.
|
|
11526
|
-
"doc.format.paragraph.
|
|
11527
|
-
"doc.format.paragraph.
|
|
11528
|
-
"doc.format.paragraph.
|
|
11529
|
-
"doc.format.paragraph.
|
|
11530
|
-
"doc.format.paragraph.
|
|
11531
|
-
"doc.format.paragraph.
|
|
11532
|
-
"doc.format.paragraph.
|
|
11533
|
-
"doc.format.paragraph.
|
|
11534
|
-
"doc.format.paragraph.
|
|
11535
|
-
"doc.format.paragraph.
|
|
11536
|
-
"doc.format.paragraph.
|
|
11537
|
-
"doc.format.paragraph.
|
|
11538
|
-
"doc.format.paragraph.
|
|
11539
|
-
"doc.format.paragraph.
|
|
11540
|
-
"doc.
|
|
11541
|
-
"doc.lists.
|
|
11542
|
-
"doc.lists.
|
|
11543
|
-
"doc.lists.
|
|
11544
|
-
"doc.lists.
|
|
11545
|
-
"doc.lists.
|
|
11546
|
-
"doc.lists.
|
|
11547
|
-
"doc.lists.
|
|
11548
|
-
"doc.lists.
|
|
11549
|
-
"doc.lists.
|
|
11550
|
-
"doc.lists.
|
|
11551
|
-
"doc.lists.
|
|
11552
|
-
"doc.lists.
|
|
11553
|
-
"doc.lists.
|
|
11554
|
-
"doc.lists.
|
|
11555
|
-
"doc.lists.
|
|
11556
|
-
"doc.lists.
|
|
11557
|
-
"doc.lists.
|
|
11558
|
-
"doc.lists.
|
|
11559
|
-
"doc.lists.
|
|
11560
|
-
"doc.lists.
|
|
11561
|
-
"doc.lists.
|
|
11562
|
-
"doc.lists.
|
|
11563
|
-
"doc.lists.
|
|
11564
|
-
"doc.lists.
|
|
11565
|
-
"doc.lists.
|
|
11566
|
-
"doc.lists.
|
|
11567
|
-
"doc.lists.
|
|
11568
|
-
"doc.lists.
|
|
11569
|
-
"doc.lists.
|
|
11570
|
-
"doc.lists.
|
|
11571
|
-
"doc.lists.
|
|
11572
|
-
"doc.lists.
|
|
11573
|
-
"doc.lists.
|
|
11574
|
-
"doc.lists.
|
|
11575
|
-
"doc.lists.
|
|
11576
|
-
"doc.lists.
|
|
11577
|
-
"doc.lists.
|
|
11578
|
-
"doc.lists.
|
|
11579
|
-
"doc.lists.
|
|
11580
|
-
"doc.lists.
|
|
11581
|
-
"doc.lists.
|
|
11582
|
-
"doc.lists.
|
|
11583
|
-
"doc.lists.
|
|
11584
|
-
"doc.
|
|
11585
|
-
"doc.comments.
|
|
11586
|
-
"doc.comments.
|
|
11587
|
-
"doc.comments.
|
|
11588
|
-
"doc.comments.
|
|
11589
|
-
"doc.
|
|
11590
|
-
"doc.trackchanges.
|
|
11591
|
-
"doc.trackchanges.
|
|
11592
|
-
"doc.
|
|
11593
|
-
"doc.
|
|
11594
|
-
"doc.
|
|
11595
|
-
"doc.
|
|
11596
|
-
"doc.mutations.
|
|
11597
|
-
"doc.
|
|
11598
|
-
"doc.
|
|
11599
|
-
"doc.capabilities.
|
|
11600
|
-
"doc.
|
|
11601
|
-
"doc.
|
|
11602
|
-
"doc.tables.
|
|
11603
|
-
"doc.tables.
|
|
11604
|
-
"doc.tables.
|
|
11605
|
-
"doc.tables.
|
|
11606
|
-
"doc.tables.
|
|
11607
|
-
"doc.tables.
|
|
11608
|
-
"doc.tables.
|
|
11609
|
-
"doc.tables.
|
|
11610
|
-
"doc.tables.
|
|
11611
|
-
"doc.tables.
|
|
11612
|
-
"doc.tables.
|
|
11613
|
-
"doc.tables.
|
|
11614
|
-
"doc.tables.
|
|
11615
|
-
"doc.tables.
|
|
11616
|
-
"doc.tables.
|
|
11617
|
-
"doc.tables.
|
|
11618
|
-
"doc.tables.
|
|
11619
|
-
"doc.tables.
|
|
11620
|
-
"doc.tables.
|
|
11621
|
-
"doc.tables.
|
|
11622
|
-
"doc.tables.
|
|
11623
|
-
"doc.tables.
|
|
11624
|
-
"doc.tables.
|
|
11625
|
-
"doc.tables.
|
|
11626
|
-
"doc.tables.
|
|
11627
|
-
"doc.tables.
|
|
11628
|
-
"doc.tables.
|
|
11629
|
-
"doc.tables.
|
|
11630
|
-
"doc.tables.
|
|
11631
|
-
"doc.tables.
|
|
11632
|
-
"doc.tables.
|
|
11633
|
-
"doc.tables.
|
|
11634
|
-
"doc.tables.
|
|
11635
|
-
"doc.tables.
|
|
11636
|
-
"doc.tables.
|
|
11637
|
-
"doc.tables.
|
|
11638
|
-
"doc.tables.
|
|
11639
|
-
"doc.tables.
|
|
11640
|
-
"doc.tables.
|
|
11641
|
-
"doc.tables.
|
|
11642
|
-
"doc.tables.
|
|
11643
|
-
"doc.tables.
|
|
11644
|
-
"doc.tables.
|
|
11645
|
-
"doc.tables.
|
|
11646
|
-
"doc.tables.
|
|
11647
|
-
"doc.tables.
|
|
11648
|
-
"doc.tables.
|
|
11649
|
-
"doc.
|
|
11650
|
-
"doc.
|
|
11651
|
-
"doc.toc.
|
|
11652
|
-
"doc.toc.
|
|
11653
|
-
"doc.toc.
|
|
11654
|
-
"doc.toc.
|
|
11655
|
-
"doc.toc.
|
|
11656
|
-
"doc.toc.
|
|
11657
|
-
"doc.toc.
|
|
11658
|
-
"doc.toc.
|
|
11659
|
-
"doc.toc.
|
|
11660
|
-
"doc.
|
|
11661
|
-
"doc.history.
|
|
11662
|
-
"doc.history.
|
|
11663
|
-
"doc.
|
|
11664
|
-
"doc.
|
|
11665
|
-
"doc.images.
|
|
11666
|
-
"doc.images.
|
|
11667
|
-
"doc.images.
|
|
11668
|
-
"doc.images.
|
|
11669
|
-
"doc.images.
|
|
11670
|
-
"doc.images.
|
|
11671
|
-
"doc.images.
|
|
11672
|
-
"doc.images.
|
|
11673
|
-
"doc.images.
|
|
11674
|
-
"doc.images.
|
|
11675
|
-
"doc.images.
|
|
11676
|
-
"doc.images.
|
|
11677
|
-
"doc.images.
|
|
11678
|
-
"doc.images.
|
|
11679
|
-
"doc.images.
|
|
11680
|
-
"doc.images.
|
|
11681
|
-
"doc.images.
|
|
11682
|
-
"doc.images.
|
|
11683
|
-
"doc.images.
|
|
11684
|
-
"doc.images.
|
|
11685
|
-
"doc.images.
|
|
11686
|
-
"doc.images.
|
|
11687
|
-
"doc.images.
|
|
11688
|
-
"doc.images.
|
|
11689
|
-
"doc.images.
|
|
11690
|
-
"doc.images.
|
|
11691
|
-
"doc.
|
|
11692
|
-
"doc.hyperlinks.
|
|
11693
|
-
"doc.hyperlinks.
|
|
11694
|
-
"doc.hyperlinks.
|
|
11695
|
-
"doc.hyperlinks.
|
|
11696
|
-
"doc.hyperlinks.
|
|
11697
|
-
"doc.
|
|
11698
|
-
"doc.headerfooters.
|
|
11699
|
-
"doc.headerfooters.
|
|
11700
|
-
"doc.headerfooters.
|
|
11701
|
-
"doc.headerfooters.refs.
|
|
11702
|
-
"doc.headerfooters.refs.
|
|
11703
|
-
"doc.headerfooters.
|
|
11704
|
-
"doc.headerfooters.parts.
|
|
11705
|
-
"doc.headerfooters.parts.
|
|
11706
|
-
"doc.
|
|
11707
|
-
"doc.
|
|
11708
|
-
"doc.contentcontrols.
|
|
11709
|
-
"doc.contentcontrols.
|
|
11710
|
-
"doc.contentcontrols.
|
|
11711
|
-
"doc.contentcontrols.
|
|
11712
|
-
"doc.contentcontrols.
|
|
11713
|
-
"doc.contentcontrols.
|
|
11714
|
-
"doc.contentcontrols.
|
|
11715
|
-
"doc.contentcontrols.
|
|
11716
|
-
"doc.contentcontrols.
|
|
11717
|
-
"doc.contentcontrols.
|
|
11718
|
-
"doc.contentcontrols.
|
|
11719
|
-
"doc.contentcontrols.
|
|
11720
|
-
"doc.contentcontrols.
|
|
11721
|
-
"doc.contentcontrols.
|
|
11722
|
-
"doc.contentcontrols.
|
|
11723
|
-
"doc.contentcontrols.
|
|
11724
|
-
"doc.contentcontrols.
|
|
11725
|
-
"doc.contentcontrols.
|
|
11726
|
-
"doc.contentcontrols.
|
|
11727
|
-
"doc.contentcontrols.
|
|
11728
|
-
"doc.contentcontrols.
|
|
11729
|
-
"doc.contentcontrols.
|
|
11730
|
-
"doc.contentcontrols.
|
|
11731
|
-
"doc.contentcontrols.
|
|
11732
|
-
"doc.contentcontrols.
|
|
11733
|
-
"doc.contentcontrols.
|
|
11734
|
-
"doc.contentcontrols.
|
|
11735
|
-
"doc.contentcontrols.
|
|
11736
|
-
"doc.contentcontrols.
|
|
11737
|
-
"doc.contentcontrols.
|
|
11738
|
-
"doc.contentcontrols.text.
|
|
11739
|
-
"doc.contentcontrols.text.
|
|
11740
|
-
"doc.contentcontrols.
|
|
11741
|
-
"doc.contentcontrols.date.
|
|
11742
|
-
"doc.contentcontrols.date.
|
|
11743
|
-
"doc.contentcontrols.date.
|
|
11744
|
-
"doc.contentcontrols.date.
|
|
11745
|
-
"doc.contentcontrols.date.
|
|
11746
|
-
"doc.contentcontrols.
|
|
11747
|
-
"doc.contentcontrols.checkbox.
|
|
11748
|
-
"doc.contentcontrols.checkbox.
|
|
11749
|
-
"doc.contentcontrols.checkbox.
|
|
11750
|
-
"doc.contentcontrols.
|
|
11751
|
-
"doc.contentcontrols.choicelist.
|
|
11752
|
-
"doc.contentcontrols.choicelist.
|
|
11753
|
-
"doc.contentcontrols.
|
|
11754
|
-
"doc.contentcontrols.repeatingsection.
|
|
11755
|
-
"doc.contentcontrols.repeatingsection.
|
|
11756
|
-
"doc.contentcontrols.repeatingsection.
|
|
11757
|
-
"doc.contentcontrols.repeatingsection.
|
|
11758
|
-
"doc.contentcontrols.repeatingsection.
|
|
11759
|
-
"doc.contentcontrols.
|
|
11760
|
-
"doc.contentcontrols.group.
|
|
11761
|
-
"doc.
|
|
11762
|
-
"doc.bookmarks.
|
|
11763
|
-
"doc.bookmarks.
|
|
11764
|
-
"doc.bookmarks.
|
|
11765
|
-
"doc.bookmarks.
|
|
11766
|
-
"doc.
|
|
11767
|
-
"doc.footnotes.
|
|
11768
|
-
"doc.footnotes.
|
|
11769
|
-
"doc.footnotes.
|
|
11770
|
-
"doc.footnotes.
|
|
11771
|
-
"doc.footnotes.
|
|
11772
|
-
"doc.
|
|
11773
|
-
"doc.clipboard.
|
|
11774
|
-
"doc.clipboard.
|
|
11775
|
-
"doc.
|
|
11776
|
-
"doc.crossrefs.
|
|
11777
|
-
"doc.crossrefs.
|
|
11778
|
-
"doc.crossrefs.
|
|
11779
|
-
"doc.crossrefs.
|
|
11780
|
-
"doc.
|
|
11781
|
-
"doc.index.
|
|
11782
|
-
"doc.index.
|
|
11783
|
-
"doc.index.
|
|
11784
|
-
"doc.index.
|
|
11785
|
-
"doc.index.
|
|
11786
|
-
"doc.index.
|
|
11787
|
-
"doc.index.entries.
|
|
11788
|
-
"doc.index.entries.
|
|
11789
|
-
"doc.index.entries.
|
|
11790
|
-
"doc.index.entries.
|
|
11791
|
-
"doc.
|
|
11792
|
-
"doc.captions.
|
|
11793
|
-
"doc.captions.
|
|
11794
|
-
"doc.captions.
|
|
11795
|
-
"doc.captions.
|
|
11796
|
-
"doc.captions.
|
|
11797
|
-
"doc.
|
|
11798
|
-
"doc.fields.
|
|
11799
|
-
"doc.fields.
|
|
11800
|
-
"doc.fields.
|
|
11801
|
-
"doc.fields.
|
|
11802
|
-
"doc.
|
|
11803
|
-
"doc.citations.
|
|
11804
|
-
"doc.citations.
|
|
11805
|
-
"doc.citations.
|
|
11806
|
-
"doc.citations.
|
|
11807
|
-
"doc.citations.
|
|
11808
|
-
"doc.citations.sources.
|
|
11809
|
-
"doc.citations.sources.
|
|
11810
|
-
"doc.citations.sources.
|
|
11811
|
-
"doc.citations.sources.
|
|
11812
|
-
"doc.citations.
|
|
11813
|
-
"doc.citations.bibliography.
|
|
11814
|
-
"doc.citations.bibliography.
|
|
11815
|
-
"doc.citations.bibliography.
|
|
11816
|
-
"doc.citations.bibliography.
|
|
11817
|
-
"doc.
|
|
11818
|
-
"doc.authorities.
|
|
11819
|
-
"doc.authorities.
|
|
11820
|
-
"doc.authorities.
|
|
11821
|
-
"doc.authorities.
|
|
11822
|
-
"doc.authorities.
|
|
11823
|
-
"doc.authorities.
|
|
11824
|
-
"doc.authorities.entries.
|
|
11825
|
-
"doc.authorities.entries.
|
|
11826
|
-
"doc.authorities.entries.
|
|
11827
|
-
"doc.authorities.entries.
|
|
11828
|
-
"doc.
|
|
11829
|
-
"doc.diff.
|
|
11830
|
-
"doc.diff.
|
|
11831
|
-
"doc.
|
|
11832
|
-
"doc.
|
|
11833
|
-
"doc.protection.
|
|
11834
|
-
"doc.protection.
|
|
11835
|
-
"doc.
|
|
11836
|
-
"doc.permissionranges.
|
|
11837
|
-
"doc.permissionranges.
|
|
11838
|
-
"doc.permissionranges.
|
|
11839
|
-
"doc.permissionranges.
|
|
11840
|
-
"doc.
|
|
11841
|
-
"doc.customxml.parts.
|
|
11842
|
-
"doc.customxml.parts.
|
|
11843
|
-
"doc.customxml.parts.
|
|
11844
|
-
"doc.customxml.parts.
|
|
11845
|
-
"doc.
|
|
11846
|
-
"doc.metadata.
|
|
11847
|
-
"doc.metadata.
|
|
11848
|
-
"doc.metadata.
|
|
11849
|
-
"doc.metadata.
|
|
11850
|
-
"doc.metadata.
|
|
11851
|
-
"doc.
|
|
11852
|
-
"doc.
|
|
11853
|
-
"doc.
|
|
11854
|
-
"doc.
|
|
11855
|
-
"doc.
|
|
11856
|
-
"doc.
|
|
11857
|
-
"doc.
|
|
11858
|
-
"doc.
|
|
11859
|
-
"doc.
|
|
11860
|
-
"doc.
|
|
11861
|
-
"doc.session.
|
|
11862
|
-
"doc.session.
|
|
11863
|
-
"doc.session.
|
|
11864
|
-
"doc.
|
|
11865
|
-
"doc.preset.
|
|
11866
|
-
"doc.preset.
|
|
11867
|
-
"doc.preset.
|
|
11868
|
-
"doc.preset.
|
|
11869
|
-
"doc.preset.
|
|
11461
|
+
"doc.blocks.findtext": 18,
|
|
11462
|
+
"doc.blocks.list": 19,
|
|
11463
|
+
"doc.blocks.delete": 20,
|
|
11464
|
+
"doc.blocks.deleterange": 21,
|
|
11465
|
+
"doc.blocks.split": 22,
|
|
11466
|
+
"doc.blocks.merge": 23,
|
|
11467
|
+
"doc.blocks.move": 24,
|
|
11468
|
+
"doc.format.apply": 25,
|
|
11469
|
+
"doc.format.bold": 26,
|
|
11470
|
+
"doc.format.italic": 27,
|
|
11471
|
+
"doc.format.strike": 28,
|
|
11472
|
+
"doc.format.underline": 29,
|
|
11473
|
+
"doc.format.highlight": 30,
|
|
11474
|
+
"doc.format.color": 31,
|
|
11475
|
+
"doc.format.fontsize": 32,
|
|
11476
|
+
"doc.format.fontfamily": 33,
|
|
11477
|
+
"doc.format.letterspacing": 34,
|
|
11478
|
+
"doc.format.vertalign": 35,
|
|
11479
|
+
"doc.format.position": 36,
|
|
11480
|
+
"doc.format.dstrike": 37,
|
|
11481
|
+
"doc.format.smallcaps": 38,
|
|
11482
|
+
"doc.format.caps": 39,
|
|
11483
|
+
"doc.format.shading": 40,
|
|
11484
|
+
"doc.format.border": 41,
|
|
11485
|
+
"doc.format.outline": 42,
|
|
11486
|
+
"doc.format.shadow": 43,
|
|
11487
|
+
"doc.format.emboss": 44,
|
|
11488
|
+
"doc.format.imprint": 45,
|
|
11489
|
+
"doc.format.charscale": 46,
|
|
11490
|
+
"doc.format.kerning": 47,
|
|
11491
|
+
"doc.format.vanish": 48,
|
|
11492
|
+
"doc.format.webhidden": 49,
|
|
11493
|
+
"doc.format.specvanish": 50,
|
|
11494
|
+
"doc.format.rtl": 51,
|
|
11495
|
+
"doc.format.cs": 52,
|
|
11496
|
+
"doc.format.bcs": 53,
|
|
11497
|
+
"doc.format.ics": 54,
|
|
11498
|
+
"doc.format.eastasianlayout": 55,
|
|
11499
|
+
"doc.format.em": 56,
|
|
11500
|
+
"doc.format.fittext": 57,
|
|
11501
|
+
"doc.format.snaptogrid": 58,
|
|
11502
|
+
"doc.format.lang": 59,
|
|
11503
|
+
"doc.format.omath": 60,
|
|
11504
|
+
"doc.format.rstyle": 61,
|
|
11505
|
+
"doc.format.rfonts": 62,
|
|
11506
|
+
"doc.format.fontsizecs": 63,
|
|
11507
|
+
"doc.format.ligatures": 64,
|
|
11508
|
+
"doc.format.numform": 65,
|
|
11509
|
+
"doc.format.numspacing": 66,
|
|
11510
|
+
"doc.format.stylisticsets": 67,
|
|
11511
|
+
"doc.format.contextualalternates": 68,
|
|
11512
|
+
"doc.styles.apply": 69,
|
|
11513
|
+
"doc.styles.getcatalog": 70,
|
|
11514
|
+
"doc.templates.apply": 71,
|
|
11515
|
+
"doc.create.paragraph": 72,
|
|
11516
|
+
"doc.create.heading": 73,
|
|
11517
|
+
"doc.create.sectionbreak": 74,
|
|
11518
|
+
"doc.sections.list": 75,
|
|
11519
|
+
"doc.sections.get": 76,
|
|
11520
|
+
"doc.sections.setbreaktype": 77,
|
|
11521
|
+
"doc.sections.setpagemargins": 78,
|
|
11522
|
+
"doc.sections.setheaderfootermargins": 79,
|
|
11523
|
+
"doc.sections.setpagesetup": 80,
|
|
11524
|
+
"doc.sections.setcolumns": 81,
|
|
11525
|
+
"doc.sections.setlinenumbering": 82,
|
|
11526
|
+
"doc.sections.setpagenumbering": 83,
|
|
11527
|
+
"doc.sections.settitlepage": 84,
|
|
11528
|
+
"doc.sections.setoddevenheadersfooters": 85,
|
|
11529
|
+
"doc.sections.setverticalalign": 86,
|
|
11530
|
+
"doc.sections.setsectiondirection": 87,
|
|
11531
|
+
"doc.sections.setheaderfooterref": 88,
|
|
11532
|
+
"doc.sections.clearheaderfooterref": 89,
|
|
11533
|
+
"doc.sections.setlinktoprevious": 90,
|
|
11534
|
+
"doc.sections.setpageborders": 91,
|
|
11535
|
+
"doc.sections.clearpageborders": 92,
|
|
11536
|
+
"doc.styles.paragraph.setstyle": 93,
|
|
11537
|
+
"doc.styles.paragraph.setstyleref": 94,
|
|
11538
|
+
"doc.styles.paragraph.clearstyle": 95,
|
|
11539
|
+
"doc.format.paragraph.resetdirectformatting": 96,
|
|
11540
|
+
"doc.format.paragraph.setalignment": 97,
|
|
11541
|
+
"doc.format.paragraph.clearalignment": 98,
|
|
11542
|
+
"doc.format.paragraph.setindentation": 99,
|
|
11543
|
+
"doc.format.paragraph.clearindentation": 100,
|
|
11544
|
+
"doc.format.paragraph.setspacing": 101,
|
|
11545
|
+
"doc.format.paragraph.clearspacing": 102,
|
|
11546
|
+
"doc.format.paragraph.setkeepoptions": 103,
|
|
11547
|
+
"doc.format.paragraph.setoutlinelevel": 104,
|
|
11548
|
+
"doc.format.paragraph.setflowoptions": 105,
|
|
11549
|
+
"doc.format.paragraph.settabstop": 106,
|
|
11550
|
+
"doc.format.paragraph.cleartabstop": 107,
|
|
11551
|
+
"doc.format.paragraph.clearalltabstops": 108,
|
|
11552
|
+
"doc.format.paragraph.setborder": 109,
|
|
11553
|
+
"doc.format.paragraph.clearborder": 110,
|
|
11554
|
+
"doc.format.paragraph.setshading": 111,
|
|
11555
|
+
"doc.format.paragraph.clearshading": 112,
|
|
11556
|
+
"doc.format.paragraph.setmarkrunprops": 113,
|
|
11557
|
+
"doc.format.paragraph.setdirection": 114,
|
|
11558
|
+
"doc.format.paragraph.cleardirection": 115,
|
|
11559
|
+
"doc.format.paragraph.setnumbering": 116,
|
|
11560
|
+
"doc.lists.list": 117,
|
|
11561
|
+
"doc.lists.get": 118,
|
|
11562
|
+
"doc.lists.insert": 119,
|
|
11563
|
+
"doc.lists.create": 120,
|
|
11564
|
+
"doc.lists.attach": 121,
|
|
11565
|
+
"doc.lists.detach": 122,
|
|
11566
|
+
"doc.lists.delete": 123,
|
|
11567
|
+
"doc.lists.indent": 124,
|
|
11568
|
+
"doc.lists.outdent": 125,
|
|
11569
|
+
"doc.lists.join": 126,
|
|
11570
|
+
"doc.lists.canjoin": 127,
|
|
11571
|
+
"doc.lists.separate": 128,
|
|
11572
|
+
"doc.lists.merge": 129,
|
|
11573
|
+
"doc.lists.split": 130,
|
|
11574
|
+
"doc.lists.setlevel": 131,
|
|
11575
|
+
"doc.lists.setvalue": 132,
|
|
11576
|
+
"doc.lists.continueprevious": 133,
|
|
11577
|
+
"doc.lists.cancontinueprevious": 134,
|
|
11578
|
+
"doc.lists.setlevelrestart": 135,
|
|
11579
|
+
"doc.lists.converttotext": 136,
|
|
11580
|
+
"doc.lists.applytemplate": 137,
|
|
11581
|
+
"doc.lists.applypreset": 138,
|
|
11582
|
+
"doc.lists.settype": 139,
|
|
11583
|
+
"doc.lists.capturetemplate": 140,
|
|
11584
|
+
"doc.lists.setlevelnumbering": 141,
|
|
11585
|
+
"doc.lists.setlevelbullet": 142,
|
|
11586
|
+
"doc.lists.setlevelpicturebullet": 143,
|
|
11587
|
+
"doc.lists.setlevelalignment": 144,
|
|
11588
|
+
"doc.lists.setlevelindents": 145,
|
|
11589
|
+
"doc.lists.setleveltrailingcharacter": 146,
|
|
11590
|
+
"doc.lists.setlevelmarkerfont": 147,
|
|
11591
|
+
"doc.lists.clearleveloverrides": 148,
|
|
11592
|
+
"doc.lists.getstyle": 149,
|
|
11593
|
+
"doc.lists.applystyle": 150,
|
|
11594
|
+
"doc.lists.restartat": 151,
|
|
11595
|
+
"doc.lists.setlevelnumberstyle": 152,
|
|
11596
|
+
"doc.lists.setleveltext": 153,
|
|
11597
|
+
"doc.lists.setlevelstart": 154,
|
|
11598
|
+
"doc.lists.setlevellayout": 155,
|
|
11599
|
+
"doc.lists.getstate": 156,
|
|
11600
|
+
"doc.lists.apply": 157,
|
|
11601
|
+
"doc.lists.continue": 158,
|
|
11602
|
+
"doc.lists.restart": 159,
|
|
11603
|
+
"doc.lists.remove": 160,
|
|
11604
|
+
"doc.comments.create": 161,
|
|
11605
|
+
"doc.comments.patch": 162,
|
|
11606
|
+
"doc.comments.delete": 163,
|
|
11607
|
+
"doc.comments.get": 164,
|
|
11608
|
+
"doc.comments.list": 165,
|
|
11609
|
+
"doc.trackchanges.list": 166,
|
|
11610
|
+
"doc.trackchanges.get": 167,
|
|
11611
|
+
"doc.trackchanges.decide": 168,
|
|
11612
|
+
"doc.query.match": 169,
|
|
11613
|
+
"doc.ranges.resolve": 170,
|
|
11614
|
+
"doc.selection.current": 171,
|
|
11615
|
+
"doc.mutations.preview": 172,
|
|
11616
|
+
"doc.mutations.apply": 173,
|
|
11617
|
+
"doc.plan.execute": 174,
|
|
11618
|
+
"doc.capabilities.get": 175,
|
|
11619
|
+
"doc.capabilities.check": 176,
|
|
11620
|
+
"doc.create.table": 177,
|
|
11621
|
+
"doc.tables.convertfromtext": 178,
|
|
11622
|
+
"doc.tables.delete": 179,
|
|
11623
|
+
"doc.tables.clearcontents": 180,
|
|
11624
|
+
"doc.tables.move": 181,
|
|
11625
|
+
"doc.tables.split": 182,
|
|
11626
|
+
"doc.tables.converttotext": 183,
|
|
11627
|
+
"doc.tables.setlayout": 184,
|
|
11628
|
+
"doc.tables.insertrow": 185,
|
|
11629
|
+
"doc.tables.deleterow": 186,
|
|
11630
|
+
"doc.tables.moverow": 187,
|
|
11631
|
+
"doc.tables.setrowheight": 188,
|
|
11632
|
+
"doc.tables.distributerows": 189,
|
|
11633
|
+
"doc.tables.setrowoptions": 190,
|
|
11634
|
+
"doc.tables.insertcolumn": 191,
|
|
11635
|
+
"doc.tables.deletecolumn": 192,
|
|
11636
|
+
"doc.tables.setcolumnwidth": 193,
|
|
11637
|
+
"doc.tables.distributecolumns": 194,
|
|
11638
|
+
"doc.tables.insertcell": 195,
|
|
11639
|
+
"doc.tables.deletecell": 196,
|
|
11640
|
+
"doc.tables.mergecells": 197,
|
|
11641
|
+
"doc.tables.unmergecells": 198,
|
|
11642
|
+
"doc.tables.splitcell": 199,
|
|
11643
|
+
"doc.tables.setcellproperties": 200,
|
|
11644
|
+
"doc.tables.setcelltext": 201,
|
|
11645
|
+
"doc.tables.sort": 202,
|
|
11646
|
+
"doc.tables.setalttext": 203,
|
|
11647
|
+
"doc.tables.setstyle": 204,
|
|
11648
|
+
"doc.tables.clearstyle": 205,
|
|
11649
|
+
"doc.tables.setstyleoption": 206,
|
|
11650
|
+
"doc.tables.setborder": 207,
|
|
11651
|
+
"doc.tables.clearborder": 208,
|
|
11652
|
+
"doc.tables.applyborderpreset": 209,
|
|
11653
|
+
"doc.tables.setshading": 210,
|
|
11654
|
+
"doc.tables.clearshading": 211,
|
|
11655
|
+
"doc.tables.settablepadding": 212,
|
|
11656
|
+
"doc.tables.setcellpadding": 213,
|
|
11657
|
+
"doc.tables.setcellspacing": 214,
|
|
11658
|
+
"doc.tables.clearcellspacing": 215,
|
|
11659
|
+
"doc.tables.applystyle": 216,
|
|
11660
|
+
"doc.tables.setborders": 217,
|
|
11661
|
+
"doc.tables.settableoptions": 218,
|
|
11662
|
+
"doc.tables.applypreset": 219,
|
|
11663
|
+
"doc.tables.get": 220,
|
|
11664
|
+
"doc.tables.getcells": 221,
|
|
11665
|
+
"doc.tables.getproperties": 222,
|
|
11666
|
+
"doc.tables.getstyles": 223,
|
|
11667
|
+
"doc.tables.setdefaultstyle": 224,
|
|
11668
|
+
"doc.tables.cleardefaultstyle": 225,
|
|
11669
|
+
"doc.create.tableofcontents": 226,
|
|
11670
|
+
"doc.toc.list": 227,
|
|
11671
|
+
"doc.toc.get": 228,
|
|
11672
|
+
"doc.toc.configure": 229,
|
|
11673
|
+
"doc.toc.update": 230,
|
|
11674
|
+
"doc.toc.remove": 231,
|
|
11675
|
+
"doc.toc.markentry": 232,
|
|
11676
|
+
"doc.toc.unmarkentry": 233,
|
|
11677
|
+
"doc.toc.listentries": 234,
|
|
11678
|
+
"doc.toc.getentry": 235,
|
|
11679
|
+
"doc.toc.editentry": 236,
|
|
11680
|
+
"doc.history.get": 237,
|
|
11681
|
+
"doc.history.undo": 238,
|
|
11682
|
+
"doc.history.redo": 239,
|
|
11683
|
+
"doc.create.image": 240,
|
|
11684
|
+
"doc.images.list": 241,
|
|
11685
|
+
"doc.images.get": 242,
|
|
11686
|
+
"doc.images.delete": 243,
|
|
11687
|
+
"doc.images.move": 244,
|
|
11688
|
+
"doc.images.converttoinline": 245,
|
|
11689
|
+
"doc.images.converttofloating": 246,
|
|
11690
|
+
"doc.images.setsize": 247,
|
|
11691
|
+
"doc.images.setwraptype": 248,
|
|
11692
|
+
"doc.images.setwrapside": 249,
|
|
11693
|
+
"doc.images.setwrapdistances": 250,
|
|
11694
|
+
"doc.images.setposition": 251,
|
|
11695
|
+
"doc.images.setanchoroptions": 252,
|
|
11696
|
+
"doc.images.setzorder": 253,
|
|
11697
|
+
"doc.images.scale": 254,
|
|
11698
|
+
"doc.images.setlockaspectratio": 255,
|
|
11699
|
+
"doc.images.rotate": 256,
|
|
11700
|
+
"doc.images.flip": 257,
|
|
11701
|
+
"doc.images.crop": 258,
|
|
11702
|
+
"doc.images.resetcrop": 259,
|
|
11703
|
+
"doc.images.replacesource": 260,
|
|
11704
|
+
"doc.images.setalttext": 261,
|
|
11705
|
+
"doc.images.setdecorative": 262,
|
|
11706
|
+
"doc.images.setname": 263,
|
|
11707
|
+
"doc.images.sethyperlink": 264,
|
|
11708
|
+
"doc.images.insertcaption": 265,
|
|
11709
|
+
"doc.images.updatecaption": 266,
|
|
11710
|
+
"doc.images.removecaption": 267,
|
|
11711
|
+
"doc.hyperlinks.list": 268,
|
|
11712
|
+
"doc.hyperlinks.get": 269,
|
|
11713
|
+
"doc.hyperlinks.wrap": 270,
|
|
11714
|
+
"doc.hyperlinks.insert": 271,
|
|
11715
|
+
"doc.hyperlinks.patch": 272,
|
|
11716
|
+
"doc.hyperlinks.remove": 273,
|
|
11717
|
+
"doc.headerfooters.list": 274,
|
|
11718
|
+
"doc.headerfooters.get": 275,
|
|
11719
|
+
"doc.headerfooters.resolve": 276,
|
|
11720
|
+
"doc.headerfooters.refs.set": 277,
|
|
11721
|
+
"doc.headerfooters.refs.clear": 278,
|
|
11722
|
+
"doc.headerfooters.refs.setlinkedtoprevious": 279,
|
|
11723
|
+
"doc.headerfooters.parts.list": 280,
|
|
11724
|
+
"doc.headerfooters.parts.create": 281,
|
|
11725
|
+
"doc.headerfooters.parts.delete": 282,
|
|
11726
|
+
"doc.create.contentcontrol": 283,
|
|
11727
|
+
"doc.contentcontrols.list": 284,
|
|
11728
|
+
"doc.contentcontrols.get": 285,
|
|
11729
|
+
"doc.contentcontrols.listinrange": 286,
|
|
11730
|
+
"doc.contentcontrols.selectbytag": 287,
|
|
11731
|
+
"doc.contentcontrols.selectbytitle": 288,
|
|
11732
|
+
"doc.contentcontrols.listchildren": 289,
|
|
11733
|
+
"doc.contentcontrols.getparent": 290,
|
|
11734
|
+
"doc.contentcontrols.wrap": 291,
|
|
11735
|
+
"doc.contentcontrols.unwrap": 292,
|
|
11736
|
+
"doc.contentcontrols.delete": 293,
|
|
11737
|
+
"doc.contentcontrols.copy": 294,
|
|
11738
|
+
"doc.contentcontrols.move": 295,
|
|
11739
|
+
"doc.contentcontrols.patch": 296,
|
|
11740
|
+
"doc.contentcontrols.setlockmode": 297,
|
|
11741
|
+
"doc.contentcontrols.settype": 298,
|
|
11742
|
+
"doc.contentcontrols.getcontent": 299,
|
|
11743
|
+
"doc.contentcontrols.replacecontent": 300,
|
|
11744
|
+
"doc.contentcontrols.clearcontent": 301,
|
|
11745
|
+
"doc.contentcontrols.appendcontent": 302,
|
|
11746
|
+
"doc.contentcontrols.prependcontent": 303,
|
|
11747
|
+
"doc.contentcontrols.insertbefore": 304,
|
|
11748
|
+
"doc.contentcontrols.insertafter": 305,
|
|
11749
|
+
"doc.contentcontrols.getbinding": 306,
|
|
11750
|
+
"doc.contentcontrols.setbinding": 307,
|
|
11751
|
+
"doc.contentcontrols.clearbinding": 308,
|
|
11752
|
+
"doc.contentcontrols.getrawproperties": 309,
|
|
11753
|
+
"doc.contentcontrols.patchrawproperties": 310,
|
|
11754
|
+
"doc.contentcontrols.validatewordcompatibility": 311,
|
|
11755
|
+
"doc.contentcontrols.normalizewordcompatibility": 312,
|
|
11756
|
+
"doc.contentcontrols.normalizetagpayload": 313,
|
|
11757
|
+
"doc.contentcontrols.text.setmultiline": 314,
|
|
11758
|
+
"doc.contentcontrols.text.setvalue": 315,
|
|
11759
|
+
"doc.contentcontrols.text.clearvalue": 316,
|
|
11760
|
+
"doc.contentcontrols.date.setvalue": 317,
|
|
11761
|
+
"doc.contentcontrols.date.clearvalue": 318,
|
|
11762
|
+
"doc.contentcontrols.date.setdisplayformat": 319,
|
|
11763
|
+
"doc.contentcontrols.date.setdisplaylocale": 320,
|
|
11764
|
+
"doc.contentcontrols.date.setstorageformat": 321,
|
|
11765
|
+
"doc.contentcontrols.date.setcalendar": 322,
|
|
11766
|
+
"doc.contentcontrols.checkbox.getstate": 323,
|
|
11767
|
+
"doc.contentcontrols.checkbox.setstate": 324,
|
|
11768
|
+
"doc.contentcontrols.checkbox.toggle": 325,
|
|
11769
|
+
"doc.contentcontrols.checkbox.setsymbolpair": 326,
|
|
11770
|
+
"doc.contentcontrols.choicelist.getitems": 327,
|
|
11771
|
+
"doc.contentcontrols.choicelist.setitems": 328,
|
|
11772
|
+
"doc.contentcontrols.choicelist.setselected": 329,
|
|
11773
|
+
"doc.contentcontrols.repeatingsection.listitems": 330,
|
|
11774
|
+
"doc.contentcontrols.repeatingsection.insertitembefore": 331,
|
|
11775
|
+
"doc.contentcontrols.repeatingsection.insertitemafter": 332,
|
|
11776
|
+
"doc.contentcontrols.repeatingsection.cloneitem": 333,
|
|
11777
|
+
"doc.contentcontrols.repeatingsection.deleteitem": 334,
|
|
11778
|
+
"doc.contentcontrols.repeatingsection.setallowinsertdelete": 335,
|
|
11779
|
+
"doc.contentcontrols.group.wrap": 336,
|
|
11780
|
+
"doc.contentcontrols.group.ungroup": 337,
|
|
11781
|
+
"doc.bookmarks.list": 338,
|
|
11782
|
+
"doc.bookmarks.get": 339,
|
|
11783
|
+
"doc.bookmarks.insert": 340,
|
|
11784
|
+
"doc.bookmarks.rename": 341,
|
|
11785
|
+
"doc.bookmarks.remove": 342,
|
|
11786
|
+
"doc.footnotes.list": 343,
|
|
11787
|
+
"doc.footnotes.get": 344,
|
|
11788
|
+
"doc.footnotes.insert": 345,
|
|
11789
|
+
"doc.footnotes.update": 346,
|
|
11790
|
+
"doc.footnotes.remove": 347,
|
|
11791
|
+
"doc.footnotes.configure": 348,
|
|
11792
|
+
"doc.clipboard.parse": 349,
|
|
11793
|
+
"doc.clipboard.insert": 350,
|
|
11794
|
+
"doc.clipboard.serializeselection": 351,
|
|
11795
|
+
"doc.crossrefs.list": 352,
|
|
11796
|
+
"doc.crossrefs.get": 353,
|
|
11797
|
+
"doc.crossrefs.insert": 354,
|
|
11798
|
+
"doc.crossrefs.rebuild": 355,
|
|
11799
|
+
"doc.crossrefs.remove": 356,
|
|
11800
|
+
"doc.index.list": 357,
|
|
11801
|
+
"doc.index.get": 358,
|
|
11802
|
+
"doc.index.insert": 359,
|
|
11803
|
+
"doc.index.configure": 360,
|
|
11804
|
+
"doc.index.rebuild": 361,
|
|
11805
|
+
"doc.index.remove": 362,
|
|
11806
|
+
"doc.index.entries.list": 363,
|
|
11807
|
+
"doc.index.entries.get": 364,
|
|
11808
|
+
"doc.index.entries.insert": 365,
|
|
11809
|
+
"doc.index.entries.update": 366,
|
|
11810
|
+
"doc.index.entries.remove": 367,
|
|
11811
|
+
"doc.captions.list": 368,
|
|
11812
|
+
"doc.captions.get": 369,
|
|
11813
|
+
"doc.captions.insert": 370,
|
|
11814
|
+
"doc.captions.update": 371,
|
|
11815
|
+
"doc.captions.remove": 372,
|
|
11816
|
+
"doc.captions.configure": 373,
|
|
11817
|
+
"doc.fields.list": 374,
|
|
11818
|
+
"doc.fields.get": 375,
|
|
11819
|
+
"doc.fields.insert": 376,
|
|
11820
|
+
"doc.fields.rebuild": 377,
|
|
11821
|
+
"doc.fields.remove": 378,
|
|
11822
|
+
"doc.citations.list": 379,
|
|
11823
|
+
"doc.citations.get": 380,
|
|
11824
|
+
"doc.citations.insert": 381,
|
|
11825
|
+
"doc.citations.update": 382,
|
|
11826
|
+
"doc.citations.remove": 383,
|
|
11827
|
+
"doc.citations.sources.list": 384,
|
|
11828
|
+
"doc.citations.sources.get": 385,
|
|
11829
|
+
"doc.citations.sources.insert": 386,
|
|
11830
|
+
"doc.citations.sources.update": 387,
|
|
11831
|
+
"doc.citations.sources.remove": 388,
|
|
11832
|
+
"doc.citations.bibliography.get": 389,
|
|
11833
|
+
"doc.citations.bibliography.insert": 390,
|
|
11834
|
+
"doc.citations.bibliography.rebuild": 391,
|
|
11835
|
+
"doc.citations.bibliography.configure": 392,
|
|
11836
|
+
"doc.citations.bibliography.remove": 393,
|
|
11837
|
+
"doc.authorities.list": 394,
|
|
11838
|
+
"doc.authorities.get": 395,
|
|
11839
|
+
"doc.authorities.insert": 396,
|
|
11840
|
+
"doc.authorities.configure": 397,
|
|
11841
|
+
"doc.authorities.rebuild": 398,
|
|
11842
|
+
"doc.authorities.remove": 399,
|
|
11843
|
+
"doc.authorities.entries.list": 400,
|
|
11844
|
+
"doc.authorities.entries.get": 401,
|
|
11845
|
+
"doc.authorities.entries.insert": 402,
|
|
11846
|
+
"doc.authorities.entries.update": 403,
|
|
11847
|
+
"doc.authorities.entries.remove": 404,
|
|
11848
|
+
"doc.diff.capture": 405,
|
|
11849
|
+
"doc.diff.compare": 406,
|
|
11850
|
+
"doc.diff.apply": 407,
|
|
11851
|
+
"doc.export.todocx": 408,
|
|
11852
|
+
"doc.protection.get": 409,
|
|
11853
|
+
"doc.protection.seteditingrestriction": 410,
|
|
11854
|
+
"doc.protection.cleareditingrestriction": 411,
|
|
11855
|
+
"doc.permissionranges.list": 412,
|
|
11856
|
+
"doc.permissionranges.get": 413,
|
|
11857
|
+
"doc.permissionranges.create": 414,
|
|
11858
|
+
"doc.permissionranges.remove": 415,
|
|
11859
|
+
"doc.permissionranges.updateprincipal": 416,
|
|
11860
|
+
"doc.customxml.parts.list": 417,
|
|
11861
|
+
"doc.customxml.parts.get": 418,
|
|
11862
|
+
"doc.customxml.parts.create": 419,
|
|
11863
|
+
"doc.customxml.parts.patch": 420,
|
|
11864
|
+
"doc.customxml.parts.remove": 421,
|
|
11865
|
+
"doc.metadata.attach": 422,
|
|
11866
|
+
"doc.metadata.list": 423,
|
|
11867
|
+
"doc.metadata.get": 424,
|
|
11868
|
+
"doc.metadata.update": 425,
|
|
11869
|
+
"doc.metadata.remove": 426,
|
|
11870
|
+
"doc.metadata.resolve": 427,
|
|
11871
|
+
"doc.open": 428,
|
|
11872
|
+
"doc.save": 429,
|
|
11873
|
+
"doc.close": 430,
|
|
11874
|
+
"doc.inserttab": 431,
|
|
11875
|
+
"doc.insertlinebreak": 432,
|
|
11876
|
+
"doc.executecode": 433,
|
|
11877
|
+
"doc.status": 434,
|
|
11878
|
+
"doc.describe": 435,
|
|
11879
|
+
"doc.describecommand": 436,
|
|
11880
|
+
"doc.session.list": 437,
|
|
11881
|
+
"doc.session.save": 438,
|
|
11882
|
+
"doc.session.close": 439,
|
|
11883
|
+
"doc.session.setdefault": 440,
|
|
11884
|
+
"doc.preset.list": 441,
|
|
11885
|
+
"doc.preset.getcatalog": 442,
|
|
11886
|
+
"doc.preset.gettools": 443,
|
|
11887
|
+
"doc.preset.getsystemprompt": 444,
|
|
11888
|
+
"doc.preset.getmcpprompt": 445,
|
|
11889
|
+
"doc.preset.dispatch": 446,
|
|
11870
11890
|
"get": 0,
|
|
11871
11891
|
"find": 1,
|
|
11872
11892
|
"get-node": 2,
|
|
@@ -11885,448 +11905,449 @@ const CONTRACT = {
|
|
|
11885
11905
|
"replace": 15,
|
|
11886
11906
|
"delete": 16,
|
|
11887
11907
|
"format-range": 17,
|
|
11888
|
-
"blocks
|
|
11889
|
-
"blocks
|
|
11890
|
-
"blocks delete
|
|
11891
|
-
"blocks
|
|
11892
|
-
"blocks
|
|
11893
|
-
"blocks
|
|
11894
|
-
"
|
|
11895
|
-
"format
|
|
11896
|
-
"format
|
|
11897
|
-
"format
|
|
11898
|
-
"format
|
|
11899
|
-
"format
|
|
11900
|
-
"format
|
|
11901
|
-
"format
|
|
11902
|
-
"format font-
|
|
11903
|
-
"format
|
|
11904
|
-
"format
|
|
11905
|
-
"format
|
|
11906
|
-
"format
|
|
11907
|
-
"format
|
|
11908
|
-
"format caps": 38,
|
|
11909
|
-
"format
|
|
11910
|
-
"format
|
|
11911
|
-
"format
|
|
11912
|
-
"format
|
|
11913
|
-
"format
|
|
11914
|
-
"format
|
|
11915
|
-
"format
|
|
11916
|
-
"format
|
|
11917
|
-
"format
|
|
11918
|
-
"format
|
|
11919
|
-
"format
|
|
11920
|
-
"format
|
|
11921
|
-
"format
|
|
11922
|
-
"format
|
|
11923
|
-
"format
|
|
11924
|
-
"format
|
|
11925
|
-
"format
|
|
11926
|
-
"format
|
|
11927
|
-
"format
|
|
11928
|
-
"format
|
|
11929
|
-
"format
|
|
11930
|
-
"format
|
|
11931
|
-
"format r-
|
|
11932
|
-
"format
|
|
11933
|
-
"format
|
|
11934
|
-
"format
|
|
11935
|
-
"format num-
|
|
11936
|
-
"format
|
|
11937
|
-
"format
|
|
11938
|
-
"
|
|
11939
|
-
"styles
|
|
11940
|
-
"
|
|
11941
|
-
"
|
|
11942
|
-
"create
|
|
11943
|
-
"create
|
|
11944
|
-
"
|
|
11945
|
-
"sections
|
|
11946
|
-
"sections
|
|
11947
|
-
"sections set-
|
|
11948
|
-
"sections set-
|
|
11949
|
-
"sections set-
|
|
11950
|
-
"sections set-
|
|
11951
|
-
"sections set-
|
|
11952
|
-
"sections set-
|
|
11953
|
-
"sections set-
|
|
11954
|
-
"sections set-
|
|
11955
|
-
"sections set-
|
|
11956
|
-
"sections set-
|
|
11957
|
-
"sections set-
|
|
11958
|
-
"sections
|
|
11959
|
-
"sections
|
|
11960
|
-
"sections set-
|
|
11961
|
-
"sections
|
|
11962
|
-
"
|
|
11963
|
-
"styles paragraph set-style
|
|
11964
|
-
"styles paragraph
|
|
11965
|
-
"
|
|
11966
|
-
"format paragraph
|
|
11967
|
-
"format paragraph
|
|
11968
|
-
"format paragraph
|
|
11969
|
-
"format paragraph
|
|
11970
|
-
"format paragraph
|
|
11971
|
-
"format paragraph
|
|
11972
|
-
"format paragraph
|
|
11973
|
-
"format paragraph set-
|
|
11974
|
-
"format paragraph set-
|
|
11975
|
-
"format paragraph set-
|
|
11976
|
-
"format paragraph
|
|
11977
|
-
"format paragraph clear-
|
|
11978
|
-
"format paragraph
|
|
11979
|
-
"format paragraph
|
|
11980
|
-
"format paragraph
|
|
11981
|
-
"format paragraph
|
|
11982
|
-
"format paragraph
|
|
11983
|
-
"format paragraph set-
|
|
11984
|
-
"format paragraph
|
|
11985
|
-
"format paragraph
|
|
11986
|
-
"
|
|
11987
|
-
"lists
|
|
11988
|
-
"lists
|
|
11989
|
-
"lists
|
|
11990
|
-
"lists
|
|
11991
|
-
"lists
|
|
11992
|
-
"lists
|
|
11993
|
-
"lists
|
|
11994
|
-
"lists
|
|
11995
|
-
"lists
|
|
11996
|
-
"lists
|
|
11997
|
-
"lists
|
|
11998
|
-
"lists
|
|
11999
|
-
"lists
|
|
12000
|
-
"lists
|
|
12001
|
-
"lists set-
|
|
12002
|
-
"lists
|
|
12003
|
-
"lists
|
|
12004
|
-
"lists
|
|
12005
|
-
"lists
|
|
12006
|
-
"lists
|
|
12007
|
-
"lists apply-
|
|
12008
|
-
"lists
|
|
12009
|
-
"lists
|
|
12010
|
-
"lists
|
|
12011
|
-
"lists set-level-
|
|
12012
|
-
"lists set-level-
|
|
12013
|
-
"lists set-level-
|
|
12014
|
-
"lists set-level-
|
|
12015
|
-
"lists set-level-
|
|
12016
|
-
"lists set-level-
|
|
12017
|
-
"lists
|
|
12018
|
-
"lists
|
|
12019
|
-
"lists
|
|
12020
|
-
"lists
|
|
12021
|
-
"lists
|
|
12022
|
-
"lists set-level-
|
|
12023
|
-
"lists set-level-
|
|
12024
|
-
"lists set-level-
|
|
12025
|
-
"lists
|
|
12026
|
-
"lists
|
|
12027
|
-
"lists
|
|
12028
|
-
"lists
|
|
12029
|
-
"lists
|
|
12030
|
-
"
|
|
12031
|
-
"comments
|
|
12032
|
-
"comments
|
|
12033
|
-
"comments
|
|
12034
|
-
"comments
|
|
12035
|
-
"
|
|
12036
|
-
"track-changes
|
|
12037
|
-
"track-changes
|
|
12038
|
-
"
|
|
12039
|
-
"
|
|
12040
|
-
"
|
|
12041
|
-
"
|
|
12042
|
-
"mutations
|
|
12043
|
-
"
|
|
12044
|
-
"
|
|
12045
|
-
"capabilities
|
|
12046
|
-
"
|
|
12047
|
-
"
|
|
12048
|
-
"tables
|
|
12049
|
-
"tables
|
|
12050
|
-
"tables
|
|
12051
|
-
"tables
|
|
12052
|
-
"tables
|
|
12053
|
-
"tables
|
|
12054
|
-
"tables
|
|
12055
|
-
"tables
|
|
12056
|
-
"tables
|
|
12057
|
-
"tables
|
|
12058
|
-
"tables
|
|
12059
|
-
"tables
|
|
12060
|
-
"tables
|
|
12061
|
-
"tables
|
|
12062
|
-
"tables
|
|
12063
|
-
"tables
|
|
12064
|
-
"tables
|
|
12065
|
-
"tables
|
|
12066
|
-
"tables
|
|
12067
|
-
"tables
|
|
12068
|
-
"tables
|
|
12069
|
-
"tables
|
|
12070
|
-
"tables set-cell-
|
|
12071
|
-
"tables
|
|
12072
|
-
"tables
|
|
12073
|
-
"tables set-
|
|
12074
|
-
"tables
|
|
12075
|
-
"tables
|
|
12076
|
-
"tables set-
|
|
12077
|
-
"tables
|
|
12078
|
-
"tables
|
|
12079
|
-
"tables
|
|
12080
|
-
"tables
|
|
12081
|
-
"tables
|
|
12082
|
-
"tables set-
|
|
12083
|
-
"tables set-cell-
|
|
12084
|
-
"tables
|
|
12085
|
-
"tables
|
|
12086
|
-
"tables
|
|
12087
|
-
"tables set-
|
|
12088
|
-
"tables
|
|
12089
|
-
"tables
|
|
12090
|
-
"tables get
|
|
12091
|
-
"tables get-
|
|
12092
|
-
"tables get-
|
|
12093
|
-
"tables
|
|
12094
|
-
"tables
|
|
12095
|
-
"
|
|
12096
|
-
"
|
|
12097
|
-
"toc
|
|
12098
|
-
"toc
|
|
12099
|
-
"toc
|
|
12100
|
-
"toc
|
|
12101
|
-
"toc
|
|
12102
|
-
"toc
|
|
12103
|
-
"toc
|
|
12104
|
-
"toc
|
|
12105
|
-
"toc
|
|
12106
|
-
"
|
|
12107
|
-
"history
|
|
12108
|
-
"history
|
|
12109
|
-
"
|
|
12110
|
-
"
|
|
12111
|
-
"images
|
|
12112
|
-
"images
|
|
12113
|
-
"images
|
|
12114
|
-
"images
|
|
12115
|
-
"images convert-to-
|
|
12116
|
-
"images
|
|
12117
|
-
"images set-
|
|
12118
|
-
"images set-wrap-
|
|
12119
|
-
"images set-wrap-
|
|
12120
|
-
"images set-
|
|
12121
|
-
"images set-
|
|
12122
|
-
"images set-
|
|
12123
|
-
"images
|
|
12124
|
-
"images
|
|
12125
|
-
"images
|
|
12126
|
-
"images
|
|
12127
|
-
"images
|
|
12128
|
-
"images
|
|
12129
|
-
"images
|
|
12130
|
-
"images
|
|
12131
|
-
"images set-
|
|
12132
|
-
"images set-
|
|
12133
|
-
"images set-
|
|
12134
|
-
"images
|
|
12135
|
-
"images
|
|
12136
|
-
"images
|
|
12137
|
-
"
|
|
12138
|
-
"hyperlinks
|
|
12139
|
-
"hyperlinks
|
|
12140
|
-
"hyperlinks
|
|
12141
|
-
"hyperlinks
|
|
12142
|
-
"hyperlinks
|
|
12143
|
-
"
|
|
12144
|
-
"header-footers
|
|
12145
|
-
"header-footers
|
|
12146
|
-
"header-footers
|
|
12147
|
-
"header-footers refs
|
|
12148
|
-
"header-footers refs
|
|
12149
|
-
"header-footers
|
|
12150
|
-
"header-footers parts
|
|
12151
|
-
"header-footers parts
|
|
12152
|
-
"
|
|
12153
|
-
"content-
|
|
12154
|
-
"content-controls
|
|
12155
|
-
"content-controls
|
|
12156
|
-
"content-controls
|
|
12157
|
-
"content-controls select-by-
|
|
12158
|
-
"content-controls
|
|
12159
|
-
"content-controls
|
|
12160
|
-
"content-controls
|
|
12161
|
-
"content-controls
|
|
12162
|
-
"content-controls
|
|
12163
|
-
"content-controls
|
|
12164
|
-
"content-controls
|
|
12165
|
-
"content-controls
|
|
12166
|
-
"content-controls
|
|
12167
|
-
"content-controls set-
|
|
12168
|
-
"content-controls
|
|
12169
|
-
"content-controls
|
|
12170
|
-
"content-controls
|
|
12171
|
-
"content-controls
|
|
12172
|
-
"content-controls
|
|
12173
|
-
"content-controls
|
|
12174
|
-
"content-controls insert-
|
|
12175
|
-
"content-controls
|
|
12176
|
-
"content-controls
|
|
12177
|
-
"content-controls
|
|
12178
|
-
"content-controls
|
|
12179
|
-
"content-controls
|
|
12180
|
-
"content-controls
|
|
12181
|
-
"content-controls
|
|
12182
|
-
"content-controls normalize-
|
|
12183
|
-
"content-controls
|
|
12184
|
-
"content-controls text set-
|
|
12185
|
-
"content-controls text
|
|
12186
|
-
"content-controls
|
|
12187
|
-
"content-controls date
|
|
12188
|
-
"content-controls date
|
|
12189
|
-
"content-controls date set-display-
|
|
12190
|
-
"content-controls date set-
|
|
12191
|
-
"content-controls date set-
|
|
12192
|
-
"content-controls
|
|
12193
|
-
"content-controls checkbox
|
|
12194
|
-
"content-controls checkbox
|
|
12195
|
-
"content-controls checkbox
|
|
12196
|
-
"content-controls
|
|
12197
|
-
"content-controls choice-list
|
|
12198
|
-
"content-controls choice-list set-
|
|
12199
|
-
"content-controls
|
|
12200
|
-
"content-controls repeating-section
|
|
12201
|
-
"content-controls repeating-section insert-item-
|
|
12202
|
-
"content-controls repeating-section
|
|
12203
|
-
"content-controls repeating-section
|
|
12204
|
-
"content-controls repeating-section
|
|
12205
|
-
"content-controls
|
|
12206
|
-
"content-controls group
|
|
12207
|
-
"
|
|
12208
|
-
"bookmarks
|
|
12209
|
-
"bookmarks
|
|
12210
|
-
"bookmarks
|
|
12211
|
-
"bookmarks
|
|
12212
|
-
"
|
|
12213
|
-
"footnotes
|
|
12214
|
-
"footnotes
|
|
12215
|
-
"footnotes
|
|
12216
|
-
"footnotes
|
|
12217
|
-
"footnotes
|
|
12218
|
-
"
|
|
12219
|
-
"clipboard
|
|
12220
|
-
"clipboard
|
|
12221
|
-
"
|
|
12222
|
-
"cross-refs
|
|
12223
|
-
"cross-refs
|
|
12224
|
-
"cross-refs
|
|
12225
|
-
"cross-refs
|
|
12226
|
-
"
|
|
12227
|
-
"index
|
|
12228
|
-
"index
|
|
12229
|
-
"index
|
|
12230
|
-
"index
|
|
12231
|
-
"index
|
|
12232
|
-
"index
|
|
12233
|
-
"index entries
|
|
12234
|
-
"index entries
|
|
12235
|
-
"index entries
|
|
12236
|
-
"index entries
|
|
12237
|
-
"
|
|
12238
|
-
"captions
|
|
12239
|
-
"captions
|
|
12240
|
-
"captions
|
|
12241
|
-
"captions
|
|
12242
|
-
"captions
|
|
12243
|
-
"
|
|
12244
|
-
"fields
|
|
12245
|
-
"fields
|
|
12246
|
-
"fields
|
|
12247
|
-
"fields
|
|
12248
|
-
"
|
|
12249
|
-
"citations
|
|
12250
|
-
"citations
|
|
12251
|
-
"citations
|
|
12252
|
-
"citations
|
|
12253
|
-
"citations
|
|
12254
|
-
"citations sources
|
|
12255
|
-
"citations sources
|
|
12256
|
-
"citations sources
|
|
12257
|
-
"citations sources
|
|
12258
|
-
"citations
|
|
12259
|
-
"citations bibliography
|
|
12260
|
-
"citations bibliography
|
|
12261
|
-
"citations bibliography
|
|
12262
|
-
"citations bibliography
|
|
12263
|
-
"
|
|
12264
|
-
"authorities
|
|
12265
|
-
"authorities
|
|
12266
|
-
"authorities
|
|
12267
|
-
"authorities
|
|
12268
|
-
"authorities
|
|
12269
|
-
"authorities
|
|
12270
|
-
"authorities entries
|
|
12271
|
-
"authorities entries
|
|
12272
|
-
"authorities entries
|
|
12273
|
-
"authorities entries
|
|
12274
|
-
"
|
|
12275
|
-
"diff
|
|
12276
|
-
"diff
|
|
12277
|
-
"
|
|
12278
|
-
"
|
|
12279
|
-
"protection
|
|
12280
|
-
"protection
|
|
12281
|
-
"
|
|
12282
|
-
"permission-ranges
|
|
12283
|
-
"permission-ranges
|
|
12284
|
-
"permission-ranges
|
|
12285
|
-
"permission-ranges
|
|
12286
|
-
"
|
|
12287
|
-
"custom-xml parts
|
|
12288
|
-
"custom-xml parts
|
|
12289
|
-
"custom-xml parts
|
|
12290
|
-
"custom-xml parts
|
|
12291
|
-
"
|
|
12292
|
-
"metadata
|
|
12293
|
-
"metadata
|
|
12294
|
-
"metadata
|
|
12295
|
-
"metadata
|
|
12296
|
-
"metadata
|
|
12297
|
-
"
|
|
12298
|
-
"
|
|
12299
|
-
"
|
|
12300
|
-
"
|
|
12301
|
-
"insert
|
|
12302
|
-
"
|
|
12303
|
-
"
|
|
12304
|
-
"
|
|
12305
|
-
"describe
|
|
12306
|
-
"
|
|
12307
|
-
"session
|
|
12308
|
-
"session
|
|
12309
|
-
"session
|
|
12310
|
-
"
|
|
12311
|
-
"preset
|
|
12312
|
-
"preset get-
|
|
12313
|
-
"preset get-
|
|
12314
|
-
"preset get-
|
|
12315
|
-
"preset
|
|
12316
|
-
"
|
|
12317
|
-
"
|
|
12318
|
-
"
|
|
12319
|
-
"track-changes
|
|
12320
|
-
"track-changes
|
|
12321
|
-
"track-changes
|
|
12322
|
-
"
|
|
12323
|
-
"comments
|
|
12324
|
-
"comments
|
|
12325
|
-
"comments
|
|
12326
|
-
"comments
|
|
12327
|
-
"comments
|
|
12328
|
-
"comments
|
|
12329
|
-
"
|
|
11908
|
+
"blocks find-text": 18,
|
|
11909
|
+
"blocks list": 19,
|
|
11910
|
+
"blocks delete": 20,
|
|
11911
|
+
"blocks delete-range": 21,
|
|
11912
|
+
"blocks split": 22,
|
|
11913
|
+
"blocks merge": 23,
|
|
11914
|
+
"blocks move": 24,
|
|
11915
|
+
"format apply": 25,
|
|
11916
|
+
"format bold": 26,
|
|
11917
|
+
"format italic": 27,
|
|
11918
|
+
"format strike": 28,
|
|
11919
|
+
"format underline": 29,
|
|
11920
|
+
"format highlight": 30,
|
|
11921
|
+
"format color": 31,
|
|
11922
|
+
"format font-size": 32,
|
|
11923
|
+
"format font-family": 33,
|
|
11924
|
+
"format letter-spacing": 34,
|
|
11925
|
+
"format vert-align": 35,
|
|
11926
|
+
"format position": 36,
|
|
11927
|
+
"format dstrike": 37,
|
|
11928
|
+
"format small-caps": 38,
|
|
11929
|
+
"format caps": 39,
|
|
11930
|
+
"format shading": 40,
|
|
11931
|
+
"format border": 41,
|
|
11932
|
+
"format outline": 42,
|
|
11933
|
+
"format shadow": 43,
|
|
11934
|
+
"format emboss": 44,
|
|
11935
|
+
"format imprint": 45,
|
|
11936
|
+
"format char-scale": 46,
|
|
11937
|
+
"format kerning": 47,
|
|
11938
|
+
"format vanish": 48,
|
|
11939
|
+
"format web-hidden": 49,
|
|
11940
|
+
"format spec-vanish": 50,
|
|
11941
|
+
"format rtl": 51,
|
|
11942
|
+
"format cs": 52,
|
|
11943
|
+
"format b-cs": 53,
|
|
11944
|
+
"format i-cs": 54,
|
|
11945
|
+
"format east-asian-layout": 55,
|
|
11946
|
+
"format em": 56,
|
|
11947
|
+
"format fit-text": 57,
|
|
11948
|
+
"format snap-to-grid": 58,
|
|
11949
|
+
"format lang": 59,
|
|
11950
|
+
"format o-math": 60,
|
|
11951
|
+
"format r-style": 61,
|
|
11952
|
+
"format r-fonts": 62,
|
|
11953
|
+
"format font-size-cs": 63,
|
|
11954
|
+
"format ligatures": 64,
|
|
11955
|
+
"format num-form": 65,
|
|
11956
|
+
"format num-spacing": 66,
|
|
11957
|
+
"format stylistic-sets": 67,
|
|
11958
|
+
"format contextual-alternates": 68,
|
|
11959
|
+
"styles apply": 69,
|
|
11960
|
+
"styles get-catalog": 70,
|
|
11961
|
+
"templates apply": 71,
|
|
11962
|
+
"create paragraph": 72,
|
|
11963
|
+
"create heading": 73,
|
|
11964
|
+
"create section-break": 74,
|
|
11965
|
+
"sections list": 75,
|
|
11966
|
+
"sections get": 76,
|
|
11967
|
+
"sections set-break-type": 77,
|
|
11968
|
+
"sections set-page-margins": 78,
|
|
11969
|
+
"sections set-header-footer-margins": 79,
|
|
11970
|
+
"sections set-page-setup": 80,
|
|
11971
|
+
"sections set-columns": 81,
|
|
11972
|
+
"sections set-line-numbering": 82,
|
|
11973
|
+
"sections set-page-numbering": 83,
|
|
11974
|
+
"sections set-title-page": 84,
|
|
11975
|
+
"sections set-odd-even-headers-footers": 85,
|
|
11976
|
+
"sections set-vertical-align": 86,
|
|
11977
|
+
"sections set-section-direction": 87,
|
|
11978
|
+
"sections set-header-footer-ref": 88,
|
|
11979
|
+
"sections clear-header-footer-ref": 89,
|
|
11980
|
+
"sections set-link-to-previous": 90,
|
|
11981
|
+
"sections set-page-borders": 91,
|
|
11982
|
+
"sections clear-page-borders": 92,
|
|
11983
|
+
"styles paragraph set-style": 93,
|
|
11984
|
+
"styles paragraph set-style-ref": 94,
|
|
11985
|
+
"styles paragraph clear-style": 95,
|
|
11986
|
+
"format paragraph reset-direct-formatting": 96,
|
|
11987
|
+
"format paragraph set-alignment": 97,
|
|
11988
|
+
"format paragraph clear-alignment": 98,
|
|
11989
|
+
"format paragraph set-indentation": 99,
|
|
11990
|
+
"format paragraph clear-indentation": 100,
|
|
11991
|
+
"format paragraph set-spacing": 101,
|
|
11992
|
+
"format paragraph clear-spacing": 102,
|
|
11993
|
+
"format paragraph set-keep-options": 103,
|
|
11994
|
+
"format paragraph set-outline-level": 104,
|
|
11995
|
+
"format paragraph set-flow-options": 105,
|
|
11996
|
+
"format paragraph set-tab-stop": 106,
|
|
11997
|
+
"format paragraph clear-tab-stop": 107,
|
|
11998
|
+
"format paragraph clear-all-tab-stops": 108,
|
|
11999
|
+
"format paragraph set-border": 109,
|
|
12000
|
+
"format paragraph clear-border": 110,
|
|
12001
|
+
"format paragraph set-shading": 111,
|
|
12002
|
+
"format paragraph clear-shading": 112,
|
|
12003
|
+
"format paragraph set-mark-run-props": 113,
|
|
12004
|
+
"format paragraph set-direction": 114,
|
|
12005
|
+
"format paragraph clear-direction": 115,
|
|
12006
|
+
"format paragraph set-numbering": 116,
|
|
12007
|
+
"lists list": 117,
|
|
12008
|
+
"lists get": 118,
|
|
12009
|
+
"lists insert": 119,
|
|
12010
|
+
"lists create": 120,
|
|
12011
|
+
"lists attach": 121,
|
|
12012
|
+
"lists detach": 122,
|
|
12013
|
+
"lists delete": 123,
|
|
12014
|
+
"lists indent": 124,
|
|
12015
|
+
"lists outdent": 125,
|
|
12016
|
+
"lists join": 126,
|
|
12017
|
+
"lists can-join": 127,
|
|
12018
|
+
"lists separate": 128,
|
|
12019
|
+
"lists merge": 129,
|
|
12020
|
+
"lists split": 130,
|
|
12021
|
+
"lists set-level": 131,
|
|
12022
|
+
"lists set-value": 132,
|
|
12023
|
+
"lists continue-previous": 133,
|
|
12024
|
+
"lists can-continue-previous": 134,
|
|
12025
|
+
"lists set-level-restart": 135,
|
|
12026
|
+
"lists convert-to-text": 136,
|
|
12027
|
+
"lists apply-template": 137,
|
|
12028
|
+
"lists apply-preset": 138,
|
|
12029
|
+
"lists set-type": 139,
|
|
12030
|
+
"lists capture-template": 140,
|
|
12031
|
+
"lists set-level-numbering": 141,
|
|
12032
|
+
"lists set-level-bullet": 142,
|
|
12033
|
+
"lists set-level-picture-bullet": 143,
|
|
12034
|
+
"lists set-level-alignment": 144,
|
|
12035
|
+
"lists set-level-indents": 145,
|
|
12036
|
+
"lists set-level-trailing-character": 146,
|
|
12037
|
+
"lists set-level-marker-font": 147,
|
|
12038
|
+
"lists clear-level-overrides": 148,
|
|
12039
|
+
"lists get-style": 149,
|
|
12040
|
+
"lists apply-style": 150,
|
|
12041
|
+
"lists restart-at": 151,
|
|
12042
|
+
"lists set-level-number-style": 152,
|
|
12043
|
+
"lists set-level-text": 153,
|
|
12044
|
+
"lists set-level-start": 154,
|
|
12045
|
+
"lists set-level-layout": 155,
|
|
12046
|
+
"lists get-state": 156,
|
|
12047
|
+
"lists apply": 157,
|
|
12048
|
+
"lists continue": 158,
|
|
12049
|
+
"lists restart": 159,
|
|
12050
|
+
"lists remove": 160,
|
|
12051
|
+
"comments create": 161,
|
|
12052
|
+
"comments patch": 162,
|
|
12053
|
+
"comments delete": 163,
|
|
12054
|
+
"comments get": 164,
|
|
12055
|
+
"comments list": 165,
|
|
12056
|
+
"track-changes list": 166,
|
|
12057
|
+
"track-changes get": 167,
|
|
12058
|
+
"track-changes decide": 168,
|
|
12059
|
+
"query match": 169,
|
|
12060
|
+
"ranges resolve": 170,
|
|
12061
|
+
"selection current": 171,
|
|
12062
|
+
"mutations preview": 172,
|
|
12063
|
+
"mutations apply": 173,
|
|
12064
|
+
"plan execute": 174,
|
|
12065
|
+
"capabilities": 175,
|
|
12066
|
+
"capabilities check": 176,
|
|
12067
|
+
"create table": 177,
|
|
12068
|
+
"tables convert-from-text": 178,
|
|
12069
|
+
"tables delete": 179,
|
|
12070
|
+
"tables clear-contents": 180,
|
|
12071
|
+
"tables move": 181,
|
|
12072
|
+
"tables split": 182,
|
|
12073
|
+
"tables convert-to-text": 183,
|
|
12074
|
+
"tables set-layout": 184,
|
|
12075
|
+
"tables insert-row": 185,
|
|
12076
|
+
"tables delete-row": 186,
|
|
12077
|
+
"tables move-row": 187,
|
|
12078
|
+
"tables set-row-height": 188,
|
|
12079
|
+
"tables distribute-rows": 189,
|
|
12080
|
+
"tables set-row-options": 190,
|
|
12081
|
+
"tables insert-column": 191,
|
|
12082
|
+
"tables delete-column": 192,
|
|
12083
|
+
"tables set-column-width": 193,
|
|
12084
|
+
"tables distribute-columns": 194,
|
|
12085
|
+
"tables insert-cell": 195,
|
|
12086
|
+
"tables delete-cell": 196,
|
|
12087
|
+
"tables merge-cells": 197,
|
|
12088
|
+
"tables unmerge-cells": 198,
|
|
12089
|
+
"tables split-cell": 199,
|
|
12090
|
+
"tables set-cell-properties": 200,
|
|
12091
|
+
"tables set-cell-text": 201,
|
|
12092
|
+
"tables sort": 202,
|
|
12093
|
+
"tables set-alt-text": 203,
|
|
12094
|
+
"tables set-style": 204,
|
|
12095
|
+
"tables clear-style": 205,
|
|
12096
|
+
"tables set-style-option": 206,
|
|
12097
|
+
"tables set-border": 207,
|
|
12098
|
+
"tables clear-border": 208,
|
|
12099
|
+
"tables apply-border-preset": 209,
|
|
12100
|
+
"tables set-shading": 210,
|
|
12101
|
+
"tables clear-shading": 211,
|
|
12102
|
+
"tables set-table-padding": 212,
|
|
12103
|
+
"tables set-cell-padding": 213,
|
|
12104
|
+
"tables set-cell-spacing": 214,
|
|
12105
|
+
"tables clear-cell-spacing": 215,
|
|
12106
|
+
"tables apply-style": 216,
|
|
12107
|
+
"tables set-borders": 217,
|
|
12108
|
+
"tables set-table-options": 218,
|
|
12109
|
+
"tables apply-preset": 219,
|
|
12110
|
+
"tables get": 220,
|
|
12111
|
+
"tables get-cells": 221,
|
|
12112
|
+
"tables get-properties": 222,
|
|
12113
|
+
"tables get-styles": 223,
|
|
12114
|
+
"tables set-default-style": 224,
|
|
12115
|
+
"tables clear-default-style": 225,
|
|
12116
|
+
"create table-of-contents": 226,
|
|
12117
|
+
"toc list": 227,
|
|
12118
|
+
"toc get": 228,
|
|
12119
|
+
"toc configure": 229,
|
|
12120
|
+
"toc update": 230,
|
|
12121
|
+
"toc remove": 231,
|
|
12122
|
+
"toc mark-entry": 232,
|
|
12123
|
+
"toc unmark-entry": 233,
|
|
12124
|
+
"toc list-entries": 234,
|
|
12125
|
+
"toc get-entry": 235,
|
|
12126
|
+
"toc edit-entry": 236,
|
|
12127
|
+
"history get": 237,
|
|
12128
|
+
"history undo": 238,
|
|
12129
|
+
"history redo": 239,
|
|
12130
|
+
"create image": 240,
|
|
12131
|
+
"images list": 241,
|
|
12132
|
+
"images get": 242,
|
|
12133
|
+
"images delete": 243,
|
|
12134
|
+
"images move": 244,
|
|
12135
|
+
"images convert-to-inline": 245,
|
|
12136
|
+
"images convert-to-floating": 246,
|
|
12137
|
+
"images set-size": 247,
|
|
12138
|
+
"images set-wrap-type": 248,
|
|
12139
|
+
"images set-wrap-side": 249,
|
|
12140
|
+
"images set-wrap-distances": 250,
|
|
12141
|
+
"images set-position": 251,
|
|
12142
|
+
"images set-anchor-options": 252,
|
|
12143
|
+
"images set-z-order": 253,
|
|
12144
|
+
"images scale": 254,
|
|
12145
|
+
"images set-lock-aspect-ratio": 255,
|
|
12146
|
+
"images rotate": 256,
|
|
12147
|
+
"images flip": 257,
|
|
12148
|
+
"images crop": 258,
|
|
12149
|
+
"images reset-crop": 259,
|
|
12150
|
+
"images replace-source": 260,
|
|
12151
|
+
"images set-alt-text": 261,
|
|
12152
|
+
"images set-decorative": 262,
|
|
12153
|
+
"images set-name": 263,
|
|
12154
|
+
"images set-hyperlink": 264,
|
|
12155
|
+
"images insert-caption": 265,
|
|
12156
|
+
"images update-caption": 266,
|
|
12157
|
+
"images remove-caption": 267,
|
|
12158
|
+
"hyperlinks list": 268,
|
|
12159
|
+
"hyperlinks get": 269,
|
|
12160
|
+
"hyperlinks wrap": 270,
|
|
12161
|
+
"hyperlinks insert": 271,
|
|
12162
|
+
"hyperlinks patch": 272,
|
|
12163
|
+
"hyperlinks remove": 273,
|
|
12164
|
+
"header-footers list": 274,
|
|
12165
|
+
"header-footers get": 275,
|
|
12166
|
+
"header-footers resolve": 276,
|
|
12167
|
+
"header-footers refs set": 277,
|
|
12168
|
+
"header-footers refs clear": 278,
|
|
12169
|
+
"header-footers refs set-linked-to-previous": 279,
|
|
12170
|
+
"header-footers parts list": 280,
|
|
12171
|
+
"header-footers parts create": 281,
|
|
12172
|
+
"header-footers parts delete": 282,
|
|
12173
|
+
"create content-control": 283,
|
|
12174
|
+
"content-controls list": 284,
|
|
12175
|
+
"content-controls get": 285,
|
|
12176
|
+
"content-controls list-in-range": 286,
|
|
12177
|
+
"content-controls select-by-tag": 287,
|
|
12178
|
+
"content-controls select-by-title": 288,
|
|
12179
|
+
"content-controls list-children": 289,
|
|
12180
|
+
"content-controls get-parent": 290,
|
|
12181
|
+
"content-controls wrap": 291,
|
|
12182
|
+
"content-controls unwrap": 292,
|
|
12183
|
+
"content-controls delete": 293,
|
|
12184
|
+
"content-controls copy": 294,
|
|
12185
|
+
"content-controls move": 295,
|
|
12186
|
+
"content-controls patch": 296,
|
|
12187
|
+
"content-controls set-lock-mode": 297,
|
|
12188
|
+
"content-controls set-type": 298,
|
|
12189
|
+
"content-controls get-content": 299,
|
|
12190
|
+
"content-controls replace-content": 300,
|
|
12191
|
+
"content-controls clear-content": 301,
|
|
12192
|
+
"content-controls append-content": 302,
|
|
12193
|
+
"content-controls prepend-content": 303,
|
|
12194
|
+
"content-controls insert-before": 304,
|
|
12195
|
+
"content-controls insert-after": 305,
|
|
12196
|
+
"content-controls get-binding": 306,
|
|
12197
|
+
"content-controls set-binding": 307,
|
|
12198
|
+
"content-controls clear-binding": 308,
|
|
12199
|
+
"content-controls get-raw-properties": 309,
|
|
12200
|
+
"content-controls patch-raw-properties": 310,
|
|
12201
|
+
"content-controls validate-word-compatibility": 311,
|
|
12202
|
+
"content-controls normalize-word-compatibility": 312,
|
|
12203
|
+
"content-controls normalize-tag-payload": 313,
|
|
12204
|
+
"content-controls text set-multiline": 314,
|
|
12205
|
+
"content-controls text set-value": 315,
|
|
12206
|
+
"content-controls text clear-value": 316,
|
|
12207
|
+
"content-controls date set-value": 317,
|
|
12208
|
+
"content-controls date clear-value": 318,
|
|
12209
|
+
"content-controls date set-display-format": 319,
|
|
12210
|
+
"content-controls date set-display-locale": 320,
|
|
12211
|
+
"content-controls date set-storage-format": 321,
|
|
12212
|
+
"content-controls date set-calendar": 322,
|
|
12213
|
+
"content-controls checkbox get-state": 323,
|
|
12214
|
+
"content-controls checkbox set-state": 324,
|
|
12215
|
+
"content-controls checkbox toggle": 325,
|
|
12216
|
+
"content-controls checkbox set-symbol-pair": 326,
|
|
12217
|
+
"content-controls choice-list get-items": 327,
|
|
12218
|
+
"content-controls choice-list set-items": 328,
|
|
12219
|
+
"content-controls choice-list set-selected": 329,
|
|
12220
|
+
"content-controls repeating-section list-items": 330,
|
|
12221
|
+
"content-controls repeating-section insert-item-before": 331,
|
|
12222
|
+
"content-controls repeating-section insert-item-after": 332,
|
|
12223
|
+
"content-controls repeating-section clone-item": 333,
|
|
12224
|
+
"content-controls repeating-section delete-item": 334,
|
|
12225
|
+
"content-controls repeating-section set-allow-insert-delete": 335,
|
|
12226
|
+
"content-controls group wrap": 336,
|
|
12227
|
+
"content-controls group ungroup": 337,
|
|
12228
|
+
"bookmarks list": 338,
|
|
12229
|
+
"bookmarks get": 339,
|
|
12230
|
+
"bookmarks insert": 340,
|
|
12231
|
+
"bookmarks rename": 341,
|
|
12232
|
+
"bookmarks remove": 342,
|
|
12233
|
+
"footnotes list": 343,
|
|
12234
|
+
"footnotes get": 344,
|
|
12235
|
+
"footnotes insert": 345,
|
|
12236
|
+
"footnotes update": 346,
|
|
12237
|
+
"footnotes remove": 347,
|
|
12238
|
+
"footnotes configure": 348,
|
|
12239
|
+
"clipboard parse": 349,
|
|
12240
|
+
"clipboard insert": 350,
|
|
12241
|
+
"clipboard serialize-selection": 351,
|
|
12242
|
+
"cross-refs list": 352,
|
|
12243
|
+
"cross-refs get": 353,
|
|
12244
|
+
"cross-refs insert": 354,
|
|
12245
|
+
"cross-refs rebuild": 355,
|
|
12246
|
+
"cross-refs remove": 356,
|
|
12247
|
+
"index list": 357,
|
|
12248
|
+
"index get": 358,
|
|
12249
|
+
"index insert": 359,
|
|
12250
|
+
"index configure": 360,
|
|
12251
|
+
"index rebuild": 361,
|
|
12252
|
+
"index remove": 362,
|
|
12253
|
+
"index entries list": 363,
|
|
12254
|
+
"index entries get": 364,
|
|
12255
|
+
"index entries insert": 365,
|
|
12256
|
+
"index entries update": 366,
|
|
12257
|
+
"index entries remove": 367,
|
|
12258
|
+
"captions list": 368,
|
|
12259
|
+
"captions get": 369,
|
|
12260
|
+
"captions insert": 370,
|
|
12261
|
+
"captions update": 371,
|
|
12262
|
+
"captions remove": 372,
|
|
12263
|
+
"captions configure": 373,
|
|
12264
|
+
"fields list": 374,
|
|
12265
|
+
"fields get": 375,
|
|
12266
|
+
"fields insert": 376,
|
|
12267
|
+
"fields rebuild": 377,
|
|
12268
|
+
"fields remove": 378,
|
|
12269
|
+
"citations list": 379,
|
|
12270
|
+
"citations get": 380,
|
|
12271
|
+
"citations insert": 381,
|
|
12272
|
+
"citations update": 382,
|
|
12273
|
+
"citations remove": 383,
|
|
12274
|
+
"citations sources list": 384,
|
|
12275
|
+
"citations sources get": 385,
|
|
12276
|
+
"citations sources insert": 386,
|
|
12277
|
+
"citations sources update": 387,
|
|
12278
|
+
"citations sources remove": 388,
|
|
12279
|
+
"citations bibliography get": 389,
|
|
12280
|
+
"citations bibliography insert": 390,
|
|
12281
|
+
"citations bibliography rebuild": 391,
|
|
12282
|
+
"citations bibliography configure": 392,
|
|
12283
|
+
"citations bibliography remove": 393,
|
|
12284
|
+
"authorities list": 394,
|
|
12285
|
+
"authorities get": 395,
|
|
12286
|
+
"authorities insert": 396,
|
|
12287
|
+
"authorities configure": 397,
|
|
12288
|
+
"authorities rebuild": 398,
|
|
12289
|
+
"authorities remove": 399,
|
|
12290
|
+
"authorities entries list": 400,
|
|
12291
|
+
"authorities entries get": 401,
|
|
12292
|
+
"authorities entries insert": 402,
|
|
12293
|
+
"authorities entries update": 403,
|
|
12294
|
+
"authorities entries remove": 404,
|
|
12295
|
+
"diff capture": 405,
|
|
12296
|
+
"diff compare": 406,
|
|
12297
|
+
"diff apply": 407,
|
|
12298
|
+
"export to-docx": 408,
|
|
12299
|
+
"protection get": 409,
|
|
12300
|
+
"protection set-editing-restriction": 410,
|
|
12301
|
+
"protection clear-editing-restriction": 411,
|
|
12302
|
+
"permission-ranges list": 412,
|
|
12303
|
+
"permission-ranges get": 413,
|
|
12304
|
+
"permission-ranges create": 414,
|
|
12305
|
+
"permission-ranges remove": 415,
|
|
12306
|
+
"permission-ranges update-principal": 416,
|
|
12307
|
+
"custom-xml parts list": 417,
|
|
12308
|
+
"custom-xml parts get": 418,
|
|
12309
|
+
"custom-xml parts create": 419,
|
|
12310
|
+
"custom-xml parts patch": 420,
|
|
12311
|
+
"custom-xml parts remove": 421,
|
|
12312
|
+
"metadata attach": 422,
|
|
12313
|
+
"metadata list": 423,
|
|
12314
|
+
"metadata get": 424,
|
|
12315
|
+
"metadata update": 425,
|
|
12316
|
+
"metadata remove": 426,
|
|
12317
|
+
"metadata resolve": 427,
|
|
12318
|
+
"open": 428,
|
|
12319
|
+
"save": 429,
|
|
12320
|
+
"close": 430,
|
|
12321
|
+
"insert tab": 431,
|
|
12322
|
+
"insert line-break": 432,
|
|
12323
|
+
"execute code": 433,
|
|
12324
|
+
"status": 434,
|
|
12325
|
+
"describe": 435,
|
|
12326
|
+
"describe command": 436,
|
|
12327
|
+
"session list": 437,
|
|
12328
|
+
"session save": 438,
|
|
12329
|
+
"session close": 439,
|
|
12330
|
+
"session set-default": 440,
|
|
12331
|
+
"preset list": 441,
|
|
12332
|
+
"preset get-catalog": 442,
|
|
12333
|
+
"preset get-tools": 443,
|
|
12334
|
+
"preset get-system-prompt": 444,
|
|
12335
|
+
"preset get-mcp-prompt": 445,
|
|
12336
|
+
"preset dispatch": 446,
|
|
12337
|
+
"lists exit": 447,
|
|
12338
|
+
"format strikethrough": 448,
|
|
12339
|
+
"track-changes accept": 449,
|
|
12340
|
+
"track-changes reject": 450,
|
|
12341
|
+
"track-changes accept-all": 451,
|
|
12342
|
+
"track-changes reject-all": 452,
|
|
12343
|
+
"comments add": 453,
|
|
12344
|
+
"comments reply": 454,
|
|
12345
|
+
"comments edit": 455,
|
|
12346
|
+
"comments move": 456,
|
|
12347
|
+
"comments resolve": 457,
|
|
12348
|
+
"comments remove": 458,
|
|
12349
|
+
"comments set-internal": 459,
|
|
12350
|
+
"session use": 440,
|
|
12330
12351
|
"getnode": 2,
|
|
12331
12352
|
"getnodebyid": 3,
|
|
12332
12353
|
"gettext": 4,
|
|
@@ -12338,429 +12359,430 @@ const CONTRACT = {
|
|
|
12338
12359
|
"htmltofragment": 10,
|
|
12339
12360
|
"clearcontent": 13,
|
|
12340
12361
|
"formatrange": 17,
|
|
12341
|
-
"blocks.
|
|
12342
|
-
"blocks.
|
|
12343
|
-
"blocks.
|
|
12344
|
-
"blocks.
|
|
12345
|
-
"blocks.
|
|
12346
|
-
"blocks.
|
|
12347
|
-
"
|
|
12348
|
-
"format.
|
|
12349
|
-
"format.
|
|
12350
|
-
"format.
|
|
12351
|
-
"format.
|
|
12352
|
-
"format.
|
|
12353
|
-
"format.
|
|
12354
|
-
"format.
|
|
12355
|
-
"format.
|
|
12356
|
-
"format.
|
|
12357
|
-
"format.
|
|
12358
|
-
"format.
|
|
12359
|
-
"format.
|
|
12360
|
-
"format.
|
|
12361
|
-
"format.
|
|
12362
|
-
"format.
|
|
12363
|
-
"format.
|
|
12364
|
-
"format.
|
|
12365
|
-
"format.
|
|
12366
|
-
"format.
|
|
12367
|
-
"format.
|
|
12368
|
-
"format.
|
|
12369
|
-
"format.
|
|
12370
|
-
"format.
|
|
12371
|
-
"format.
|
|
12372
|
-
"format.
|
|
12373
|
-
"format.
|
|
12374
|
-
"format.
|
|
12375
|
-
"format.
|
|
12376
|
-
"format.
|
|
12377
|
-
"format.
|
|
12378
|
-
"format.
|
|
12379
|
-
"format.
|
|
12380
|
-
"format.
|
|
12381
|
-
"format.
|
|
12382
|
-
"format.
|
|
12383
|
-
"format.
|
|
12384
|
-
"format.
|
|
12385
|
-
"format.
|
|
12386
|
-
"format.
|
|
12387
|
-
"format.
|
|
12388
|
-
"format.
|
|
12389
|
-
"format.
|
|
12390
|
-
"format.
|
|
12391
|
-
"
|
|
12392
|
-
"styles.
|
|
12393
|
-
"
|
|
12394
|
-
"
|
|
12395
|
-
"create.
|
|
12396
|
-
"create.
|
|
12397
|
-
"
|
|
12398
|
-
"sections.
|
|
12399
|
-
"sections.
|
|
12400
|
-
"sections.
|
|
12401
|
-
"sections.
|
|
12402
|
-
"sections.
|
|
12403
|
-
"sections.
|
|
12404
|
-
"sections.
|
|
12405
|
-
"sections.
|
|
12406
|
-
"sections.
|
|
12407
|
-
"sections.
|
|
12408
|
-
"sections.
|
|
12409
|
-
"sections.
|
|
12410
|
-
"sections.
|
|
12411
|
-
"sections.
|
|
12412
|
-
"sections.
|
|
12413
|
-
"sections.
|
|
12414
|
-
"sections.
|
|
12415
|
-
"
|
|
12416
|
-
"styles.paragraph.
|
|
12417
|
-
"styles.paragraph.
|
|
12418
|
-
"
|
|
12419
|
-
"format.paragraph.
|
|
12420
|
-
"format.paragraph.
|
|
12421
|
-
"format.paragraph.
|
|
12422
|
-
"format.paragraph.
|
|
12423
|
-
"format.paragraph.
|
|
12424
|
-
"format.paragraph.
|
|
12425
|
-
"format.paragraph.
|
|
12426
|
-
"format.paragraph.
|
|
12427
|
-
"format.paragraph.
|
|
12428
|
-
"format.paragraph.
|
|
12429
|
-
"format.paragraph.
|
|
12430
|
-
"format.paragraph.
|
|
12431
|
-
"format.paragraph.
|
|
12432
|
-
"format.paragraph.
|
|
12433
|
-
"format.paragraph.
|
|
12434
|
-
"format.paragraph.
|
|
12435
|
-
"format.paragraph.
|
|
12436
|
-
"format.paragraph.
|
|
12437
|
-
"format.paragraph.
|
|
12438
|
-
"format.paragraph.
|
|
12439
|
-
"
|
|
12440
|
-
"lists.
|
|
12441
|
-
"lists.
|
|
12442
|
-
"lists.
|
|
12443
|
-
"lists.
|
|
12444
|
-
"lists.
|
|
12445
|
-
"lists.
|
|
12446
|
-
"lists.
|
|
12447
|
-
"lists.
|
|
12448
|
-
"lists.
|
|
12449
|
-
"lists.
|
|
12450
|
-
"lists.
|
|
12451
|
-
"lists.
|
|
12452
|
-
"lists.
|
|
12453
|
-
"lists.
|
|
12454
|
-
"lists.
|
|
12455
|
-
"lists.
|
|
12456
|
-
"lists.
|
|
12457
|
-
"lists.
|
|
12458
|
-
"lists.
|
|
12459
|
-
"lists.
|
|
12460
|
-
"lists.
|
|
12461
|
-
"lists.
|
|
12462
|
-
"lists.
|
|
12463
|
-
"lists.
|
|
12464
|
-
"lists.
|
|
12465
|
-
"lists.
|
|
12466
|
-
"lists.
|
|
12467
|
-
"lists.
|
|
12468
|
-
"lists.
|
|
12469
|
-
"lists.
|
|
12470
|
-
"lists.
|
|
12471
|
-
"lists.
|
|
12472
|
-
"lists.
|
|
12473
|
-
"lists.
|
|
12474
|
-
"lists.
|
|
12475
|
-
"lists.
|
|
12476
|
-
"lists.
|
|
12477
|
-
"lists.
|
|
12478
|
-
"lists.
|
|
12479
|
-
"lists.
|
|
12480
|
-
"lists.
|
|
12481
|
-
"lists.
|
|
12482
|
-
"lists.
|
|
12483
|
-
"
|
|
12484
|
-
"comments.
|
|
12485
|
-
"comments.
|
|
12486
|
-
"comments.
|
|
12487
|
-
"comments.
|
|
12488
|
-
"
|
|
12489
|
-
"trackchanges.
|
|
12490
|
-
"trackchanges.
|
|
12491
|
-
"
|
|
12492
|
-
"
|
|
12493
|
-
"
|
|
12494
|
-
"
|
|
12495
|
-
"mutations.
|
|
12496
|
-
"
|
|
12497
|
-
"
|
|
12498
|
-
"capabilities.
|
|
12499
|
-
"
|
|
12500
|
-
"
|
|
12501
|
-
"tables.
|
|
12502
|
-
"tables.
|
|
12503
|
-
"tables.
|
|
12504
|
-
"tables.
|
|
12505
|
-
"tables.
|
|
12506
|
-
"tables.
|
|
12507
|
-
"tables.
|
|
12508
|
-
"tables.
|
|
12509
|
-
"tables.
|
|
12510
|
-
"tables.
|
|
12511
|
-
"tables.
|
|
12512
|
-
"tables.
|
|
12513
|
-
"tables.
|
|
12514
|
-
"tables.
|
|
12515
|
-
"tables.
|
|
12516
|
-
"tables.
|
|
12517
|
-
"tables.
|
|
12518
|
-
"tables.
|
|
12519
|
-
"tables.
|
|
12520
|
-
"tables.
|
|
12521
|
-
"tables.
|
|
12522
|
-
"tables.
|
|
12523
|
-
"tables.
|
|
12524
|
-
"tables.
|
|
12525
|
-
"tables.
|
|
12526
|
-
"tables.
|
|
12527
|
-
"tables.
|
|
12528
|
-
"tables.
|
|
12529
|
-
"tables.
|
|
12530
|
-
"tables.
|
|
12531
|
-
"tables.
|
|
12532
|
-
"tables.
|
|
12533
|
-
"tables.
|
|
12534
|
-
"tables.
|
|
12535
|
-
"tables.
|
|
12536
|
-
"tables.
|
|
12537
|
-
"tables.
|
|
12538
|
-
"tables.
|
|
12539
|
-
"tables.
|
|
12540
|
-
"tables.
|
|
12541
|
-
"tables.
|
|
12542
|
-
"tables.
|
|
12543
|
-
"tables.
|
|
12544
|
-
"tables.
|
|
12545
|
-
"tables.
|
|
12546
|
-
"tables.
|
|
12547
|
-
"tables.
|
|
12548
|
-
"
|
|
12549
|
-
"
|
|
12550
|
-
"toc.
|
|
12551
|
-
"toc.
|
|
12552
|
-
"toc.
|
|
12553
|
-
"toc.
|
|
12554
|
-
"toc.
|
|
12555
|
-
"toc.
|
|
12556
|
-
"toc.
|
|
12557
|
-
"toc.
|
|
12558
|
-
"toc.
|
|
12559
|
-
"
|
|
12560
|
-
"history.
|
|
12561
|
-
"history.
|
|
12562
|
-
"
|
|
12563
|
-
"
|
|
12564
|
-
"images.
|
|
12565
|
-
"images.
|
|
12566
|
-
"images.
|
|
12567
|
-
"images.
|
|
12568
|
-
"images.
|
|
12569
|
-
"images.
|
|
12570
|
-
"images.
|
|
12571
|
-
"images.
|
|
12572
|
-
"images.
|
|
12573
|
-
"images.
|
|
12574
|
-
"images.
|
|
12575
|
-
"images.
|
|
12576
|
-
"images.
|
|
12577
|
-
"images.
|
|
12578
|
-
"images.
|
|
12579
|
-
"images.
|
|
12580
|
-
"images.
|
|
12581
|
-
"images.
|
|
12582
|
-
"images.
|
|
12583
|
-
"images.
|
|
12584
|
-
"images.
|
|
12585
|
-
"images.
|
|
12586
|
-
"images.
|
|
12587
|
-
"images.
|
|
12588
|
-
"images.
|
|
12589
|
-
"images.
|
|
12590
|
-
"
|
|
12591
|
-
"hyperlinks.
|
|
12592
|
-
"hyperlinks.
|
|
12593
|
-
"hyperlinks.
|
|
12594
|
-
"hyperlinks.
|
|
12595
|
-
"hyperlinks.
|
|
12596
|
-
"
|
|
12597
|
-
"headerfooters.
|
|
12598
|
-
"headerfooters.
|
|
12599
|
-
"headerfooters.
|
|
12600
|
-
"headerfooters.refs.
|
|
12601
|
-
"headerfooters.refs.
|
|
12602
|
-
"headerfooters.
|
|
12603
|
-
"headerfooters.parts.
|
|
12604
|
-
"headerfooters.parts.
|
|
12605
|
-
"
|
|
12606
|
-
"
|
|
12607
|
-
"contentcontrols.
|
|
12608
|
-
"contentcontrols.
|
|
12609
|
-
"contentcontrols.
|
|
12610
|
-
"contentcontrols.
|
|
12611
|
-
"contentcontrols.
|
|
12612
|
-
"contentcontrols.
|
|
12613
|
-
"contentcontrols.
|
|
12614
|
-
"contentcontrols.
|
|
12615
|
-
"contentcontrols.
|
|
12616
|
-
"contentcontrols.
|
|
12617
|
-
"contentcontrols.
|
|
12618
|
-
"contentcontrols.
|
|
12619
|
-
"contentcontrols.
|
|
12620
|
-
"contentcontrols.
|
|
12621
|
-
"contentcontrols.
|
|
12622
|
-
"contentcontrols.
|
|
12623
|
-
"contentcontrols.
|
|
12624
|
-
"contentcontrols.
|
|
12625
|
-
"contentcontrols.
|
|
12626
|
-
"contentcontrols.
|
|
12627
|
-
"contentcontrols.
|
|
12628
|
-
"contentcontrols.
|
|
12629
|
-
"contentcontrols.
|
|
12630
|
-
"contentcontrols.
|
|
12631
|
-
"contentcontrols.
|
|
12632
|
-
"contentcontrols.
|
|
12633
|
-
"contentcontrols.
|
|
12634
|
-
"contentcontrols.
|
|
12635
|
-
"contentcontrols.
|
|
12636
|
-
"contentcontrols.
|
|
12637
|
-
"contentcontrols.text.
|
|
12638
|
-
"contentcontrols.text.
|
|
12639
|
-
"contentcontrols.
|
|
12640
|
-
"contentcontrols.date.
|
|
12641
|
-
"contentcontrols.date.
|
|
12642
|
-
"contentcontrols.date.
|
|
12643
|
-
"contentcontrols.date.
|
|
12644
|
-
"contentcontrols.date.
|
|
12645
|
-
"contentcontrols.
|
|
12646
|
-
"contentcontrols.checkbox.
|
|
12647
|
-
"contentcontrols.checkbox.
|
|
12648
|
-
"contentcontrols.checkbox.
|
|
12649
|
-
"contentcontrols.
|
|
12650
|
-
"contentcontrols.choicelist.
|
|
12651
|
-
"contentcontrols.choicelist.
|
|
12652
|
-
"contentcontrols.
|
|
12653
|
-
"contentcontrols.repeatingsection.
|
|
12654
|
-
"contentcontrols.repeatingsection.
|
|
12655
|
-
"contentcontrols.repeatingsection.
|
|
12656
|
-
"contentcontrols.repeatingsection.
|
|
12657
|
-
"contentcontrols.repeatingsection.
|
|
12658
|
-
"contentcontrols.
|
|
12659
|
-
"contentcontrols.group.
|
|
12660
|
-
"
|
|
12661
|
-
"bookmarks.
|
|
12662
|
-
"bookmarks.
|
|
12663
|
-
"bookmarks.
|
|
12664
|
-
"bookmarks.
|
|
12665
|
-
"
|
|
12666
|
-
"footnotes.
|
|
12667
|
-
"footnotes.
|
|
12668
|
-
"footnotes.
|
|
12669
|
-
"footnotes.
|
|
12670
|
-
"footnotes.
|
|
12671
|
-
"
|
|
12672
|
-
"clipboard.
|
|
12673
|
-
"clipboard.
|
|
12674
|
-
"
|
|
12675
|
-
"crossrefs.
|
|
12676
|
-
"crossrefs.
|
|
12677
|
-
"crossrefs.
|
|
12678
|
-
"crossrefs.
|
|
12679
|
-
"
|
|
12680
|
-
"index.
|
|
12681
|
-
"index.
|
|
12682
|
-
"index.
|
|
12683
|
-
"index.
|
|
12684
|
-
"index.
|
|
12685
|
-
"index.
|
|
12686
|
-
"index.entries.
|
|
12687
|
-
"index.entries.
|
|
12688
|
-
"index.entries.
|
|
12689
|
-
"index.entries.
|
|
12690
|
-
"
|
|
12691
|
-
"captions.
|
|
12692
|
-
"captions.
|
|
12693
|
-
"captions.
|
|
12694
|
-
"captions.
|
|
12695
|
-
"captions.
|
|
12696
|
-
"
|
|
12697
|
-
"fields.
|
|
12698
|
-
"fields.
|
|
12699
|
-
"fields.
|
|
12700
|
-
"fields.
|
|
12701
|
-
"
|
|
12702
|
-
"citations.
|
|
12703
|
-
"citations.
|
|
12704
|
-
"citations.
|
|
12705
|
-
"citations.
|
|
12706
|
-
"citations.
|
|
12707
|
-
"citations.sources.
|
|
12708
|
-
"citations.sources.
|
|
12709
|
-
"citations.sources.
|
|
12710
|
-
"citations.sources.
|
|
12711
|
-
"citations.
|
|
12712
|
-
"citations.bibliography.
|
|
12713
|
-
"citations.bibliography.
|
|
12714
|
-
"citations.bibliography.
|
|
12715
|
-
"citations.bibliography.
|
|
12716
|
-
"
|
|
12717
|
-
"authorities.
|
|
12718
|
-
"authorities.
|
|
12719
|
-
"authorities.
|
|
12720
|
-
"authorities.
|
|
12721
|
-
"authorities.
|
|
12722
|
-
"authorities.
|
|
12723
|
-
"authorities.entries.
|
|
12724
|
-
"authorities.entries.
|
|
12725
|
-
"authorities.entries.
|
|
12726
|
-
"authorities.entries.
|
|
12727
|
-
"
|
|
12728
|
-
"diff.
|
|
12729
|
-
"diff.
|
|
12730
|
-
"
|
|
12731
|
-
"
|
|
12732
|
-
"protection.
|
|
12733
|
-
"protection.
|
|
12734
|
-
"
|
|
12735
|
-
"permissionranges.
|
|
12736
|
-
"permissionranges.
|
|
12737
|
-
"permissionranges.
|
|
12738
|
-
"permissionranges.
|
|
12739
|
-
"
|
|
12740
|
-
"customxml.parts.
|
|
12741
|
-
"customxml.parts.
|
|
12742
|
-
"customxml.parts.
|
|
12743
|
-
"customxml.parts.
|
|
12744
|
-
"
|
|
12745
|
-
"metadata.
|
|
12746
|
-
"metadata.
|
|
12747
|
-
"metadata.
|
|
12748
|
-
"metadata.
|
|
12749
|
-
"metadata.
|
|
12750
|
-
"
|
|
12751
|
-
"
|
|
12752
|
-
"
|
|
12753
|
-
"
|
|
12754
|
-
"
|
|
12755
|
-
"session.
|
|
12756
|
-
"session.
|
|
12757
|
-
"session.
|
|
12758
|
-
"
|
|
12759
|
-
"preset.
|
|
12760
|
-
"preset.
|
|
12761
|
-
"preset.
|
|
12762
|
-
"preset.
|
|
12763
|
-
"preset.
|
|
12362
|
+
"blocks.findtext": 18,
|
|
12363
|
+
"blocks.list": 19,
|
|
12364
|
+
"blocks.delete": 20,
|
|
12365
|
+
"blocks.deleterange": 21,
|
|
12366
|
+
"blocks.split": 22,
|
|
12367
|
+
"blocks.merge": 23,
|
|
12368
|
+
"blocks.move": 24,
|
|
12369
|
+
"format.apply": 25,
|
|
12370
|
+
"format.bold": 26,
|
|
12371
|
+
"format.italic": 27,
|
|
12372
|
+
"format.strike": 28,
|
|
12373
|
+
"format.underline": 29,
|
|
12374
|
+
"format.highlight": 30,
|
|
12375
|
+
"format.color": 31,
|
|
12376
|
+
"format.fontsize": 32,
|
|
12377
|
+
"format.fontfamily": 33,
|
|
12378
|
+
"format.letterspacing": 34,
|
|
12379
|
+
"format.vertalign": 35,
|
|
12380
|
+
"format.position": 36,
|
|
12381
|
+
"format.dstrike": 37,
|
|
12382
|
+
"format.smallcaps": 38,
|
|
12383
|
+
"format.caps": 39,
|
|
12384
|
+
"format.shading": 40,
|
|
12385
|
+
"format.border": 41,
|
|
12386
|
+
"format.outline": 42,
|
|
12387
|
+
"format.shadow": 43,
|
|
12388
|
+
"format.emboss": 44,
|
|
12389
|
+
"format.imprint": 45,
|
|
12390
|
+
"format.charscale": 46,
|
|
12391
|
+
"format.kerning": 47,
|
|
12392
|
+
"format.vanish": 48,
|
|
12393
|
+
"format.webhidden": 49,
|
|
12394
|
+
"format.specvanish": 50,
|
|
12395
|
+
"format.rtl": 51,
|
|
12396
|
+
"format.cs": 52,
|
|
12397
|
+
"format.bcs": 53,
|
|
12398
|
+
"format.ics": 54,
|
|
12399
|
+
"format.eastasianlayout": 55,
|
|
12400
|
+
"format.em": 56,
|
|
12401
|
+
"format.fittext": 57,
|
|
12402
|
+
"format.snaptogrid": 58,
|
|
12403
|
+
"format.lang": 59,
|
|
12404
|
+
"format.omath": 60,
|
|
12405
|
+
"format.rstyle": 61,
|
|
12406
|
+
"format.rfonts": 62,
|
|
12407
|
+
"format.fontsizecs": 63,
|
|
12408
|
+
"format.ligatures": 64,
|
|
12409
|
+
"format.numform": 65,
|
|
12410
|
+
"format.numspacing": 66,
|
|
12411
|
+
"format.stylisticsets": 67,
|
|
12412
|
+
"format.contextualalternates": 68,
|
|
12413
|
+
"styles.apply": 69,
|
|
12414
|
+
"styles.getcatalog": 70,
|
|
12415
|
+
"templates.apply": 71,
|
|
12416
|
+
"create.paragraph": 72,
|
|
12417
|
+
"create.heading": 73,
|
|
12418
|
+
"create.sectionbreak": 74,
|
|
12419
|
+
"sections.list": 75,
|
|
12420
|
+
"sections.get": 76,
|
|
12421
|
+
"sections.setbreaktype": 77,
|
|
12422
|
+
"sections.setpagemargins": 78,
|
|
12423
|
+
"sections.setheaderfootermargins": 79,
|
|
12424
|
+
"sections.setpagesetup": 80,
|
|
12425
|
+
"sections.setcolumns": 81,
|
|
12426
|
+
"sections.setlinenumbering": 82,
|
|
12427
|
+
"sections.setpagenumbering": 83,
|
|
12428
|
+
"sections.settitlepage": 84,
|
|
12429
|
+
"sections.setoddevenheadersfooters": 85,
|
|
12430
|
+
"sections.setverticalalign": 86,
|
|
12431
|
+
"sections.setsectiondirection": 87,
|
|
12432
|
+
"sections.setheaderfooterref": 88,
|
|
12433
|
+
"sections.clearheaderfooterref": 89,
|
|
12434
|
+
"sections.setlinktoprevious": 90,
|
|
12435
|
+
"sections.setpageborders": 91,
|
|
12436
|
+
"sections.clearpageborders": 92,
|
|
12437
|
+
"styles.paragraph.setstyle": 93,
|
|
12438
|
+
"styles.paragraph.setstyleref": 94,
|
|
12439
|
+
"styles.paragraph.clearstyle": 95,
|
|
12440
|
+
"format.paragraph.resetdirectformatting": 96,
|
|
12441
|
+
"format.paragraph.setalignment": 97,
|
|
12442
|
+
"format.paragraph.clearalignment": 98,
|
|
12443
|
+
"format.paragraph.setindentation": 99,
|
|
12444
|
+
"format.paragraph.clearindentation": 100,
|
|
12445
|
+
"format.paragraph.setspacing": 101,
|
|
12446
|
+
"format.paragraph.clearspacing": 102,
|
|
12447
|
+
"format.paragraph.setkeepoptions": 103,
|
|
12448
|
+
"format.paragraph.setoutlinelevel": 104,
|
|
12449
|
+
"format.paragraph.setflowoptions": 105,
|
|
12450
|
+
"format.paragraph.settabstop": 106,
|
|
12451
|
+
"format.paragraph.cleartabstop": 107,
|
|
12452
|
+
"format.paragraph.clearalltabstops": 108,
|
|
12453
|
+
"format.paragraph.setborder": 109,
|
|
12454
|
+
"format.paragraph.clearborder": 110,
|
|
12455
|
+
"format.paragraph.setshading": 111,
|
|
12456
|
+
"format.paragraph.clearshading": 112,
|
|
12457
|
+
"format.paragraph.setmarkrunprops": 113,
|
|
12458
|
+
"format.paragraph.setdirection": 114,
|
|
12459
|
+
"format.paragraph.cleardirection": 115,
|
|
12460
|
+
"format.paragraph.setnumbering": 116,
|
|
12461
|
+
"lists.list": 117,
|
|
12462
|
+
"lists.get": 118,
|
|
12463
|
+
"lists.insert": 119,
|
|
12464
|
+
"lists.create": 120,
|
|
12465
|
+
"lists.attach": 121,
|
|
12466
|
+
"lists.detach": 122,
|
|
12467
|
+
"lists.delete": 123,
|
|
12468
|
+
"lists.indent": 124,
|
|
12469
|
+
"lists.outdent": 125,
|
|
12470
|
+
"lists.join": 126,
|
|
12471
|
+
"lists.canjoin": 127,
|
|
12472
|
+
"lists.separate": 128,
|
|
12473
|
+
"lists.merge": 129,
|
|
12474
|
+
"lists.split": 130,
|
|
12475
|
+
"lists.setlevel": 131,
|
|
12476
|
+
"lists.setvalue": 132,
|
|
12477
|
+
"lists.continueprevious": 133,
|
|
12478
|
+
"lists.cancontinueprevious": 134,
|
|
12479
|
+
"lists.setlevelrestart": 135,
|
|
12480
|
+
"lists.converttotext": 136,
|
|
12481
|
+
"lists.applytemplate": 137,
|
|
12482
|
+
"lists.applypreset": 138,
|
|
12483
|
+
"lists.settype": 139,
|
|
12484
|
+
"lists.capturetemplate": 140,
|
|
12485
|
+
"lists.setlevelnumbering": 141,
|
|
12486
|
+
"lists.setlevelbullet": 142,
|
|
12487
|
+
"lists.setlevelpicturebullet": 143,
|
|
12488
|
+
"lists.setlevelalignment": 144,
|
|
12489
|
+
"lists.setlevelindents": 145,
|
|
12490
|
+
"lists.setleveltrailingcharacter": 146,
|
|
12491
|
+
"lists.setlevelmarkerfont": 147,
|
|
12492
|
+
"lists.clearleveloverrides": 148,
|
|
12493
|
+
"lists.getstyle": 149,
|
|
12494
|
+
"lists.applystyle": 150,
|
|
12495
|
+
"lists.restartat": 151,
|
|
12496
|
+
"lists.setlevelnumberstyle": 152,
|
|
12497
|
+
"lists.setleveltext": 153,
|
|
12498
|
+
"lists.setlevelstart": 154,
|
|
12499
|
+
"lists.setlevellayout": 155,
|
|
12500
|
+
"lists.getstate": 156,
|
|
12501
|
+
"lists.apply": 157,
|
|
12502
|
+
"lists.continue": 158,
|
|
12503
|
+
"lists.restart": 159,
|
|
12504
|
+
"lists.remove": 160,
|
|
12505
|
+
"comments.create": 161,
|
|
12506
|
+
"comments.patch": 162,
|
|
12507
|
+
"comments.delete": 163,
|
|
12508
|
+
"comments.get": 164,
|
|
12509
|
+
"comments.list": 165,
|
|
12510
|
+
"trackchanges.list": 166,
|
|
12511
|
+
"trackchanges.get": 167,
|
|
12512
|
+
"trackchanges.decide": 168,
|
|
12513
|
+
"query.match": 169,
|
|
12514
|
+
"ranges.resolve": 170,
|
|
12515
|
+
"selection.current": 171,
|
|
12516
|
+
"mutations.preview": 172,
|
|
12517
|
+
"mutations.apply": 173,
|
|
12518
|
+
"plan.execute": 174,
|
|
12519
|
+
"capabilities.get": 175,
|
|
12520
|
+
"capabilities.check": 176,
|
|
12521
|
+
"create.table": 177,
|
|
12522
|
+
"tables.convertfromtext": 178,
|
|
12523
|
+
"tables.delete": 179,
|
|
12524
|
+
"tables.clearcontents": 180,
|
|
12525
|
+
"tables.move": 181,
|
|
12526
|
+
"tables.split": 182,
|
|
12527
|
+
"tables.converttotext": 183,
|
|
12528
|
+
"tables.setlayout": 184,
|
|
12529
|
+
"tables.insertrow": 185,
|
|
12530
|
+
"tables.deleterow": 186,
|
|
12531
|
+
"tables.moverow": 187,
|
|
12532
|
+
"tables.setrowheight": 188,
|
|
12533
|
+
"tables.distributerows": 189,
|
|
12534
|
+
"tables.setrowoptions": 190,
|
|
12535
|
+
"tables.insertcolumn": 191,
|
|
12536
|
+
"tables.deletecolumn": 192,
|
|
12537
|
+
"tables.setcolumnwidth": 193,
|
|
12538
|
+
"tables.distributecolumns": 194,
|
|
12539
|
+
"tables.insertcell": 195,
|
|
12540
|
+
"tables.deletecell": 196,
|
|
12541
|
+
"tables.mergecells": 197,
|
|
12542
|
+
"tables.unmergecells": 198,
|
|
12543
|
+
"tables.splitcell": 199,
|
|
12544
|
+
"tables.setcellproperties": 200,
|
|
12545
|
+
"tables.setcelltext": 201,
|
|
12546
|
+
"tables.sort": 202,
|
|
12547
|
+
"tables.setalttext": 203,
|
|
12548
|
+
"tables.setstyle": 204,
|
|
12549
|
+
"tables.clearstyle": 205,
|
|
12550
|
+
"tables.setstyleoption": 206,
|
|
12551
|
+
"tables.setborder": 207,
|
|
12552
|
+
"tables.clearborder": 208,
|
|
12553
|
+
"tables.applyborderpreset": 209,
|
|
12554
|
+
"tables.setshading": 210,
|
|
12555
|
+
"tables.clearshading": 211,
|
|
12556
|
+
"tables.settablepadding": 212,
|
|
12557
|
+
"tables.setcellpadding": 213,
|
|
12558
|
+
"tables.setcellspacing": 214,
|
|
12559
|
+
"tables.clearcellspacing": 215,
|
|
12560
|
+
"tables.applystyle": 216,
|
|
12561
|
+
"tables.setborders": 217,
|
|
12562
|
+
"tables.settableoptions": 218,
|
|
12563
|
+
"tables.applypreset": 219,
|
|
12564
|
+
"tables.get": 220,
|
|
12565
|
+
"tables.getcells": 221,
|
|
12566
|
+
"tables.getproperties": 222,
|
|
12567
|
+
"tables.getstyles": 223,
|
|
12568
|
+
"tables.setdefaultstyle": 224,
|
|
12569
|
+
"tables.cleardefaultstyle": 225,
|
|
12570
|
+
"create.tableofcontents": 226,
|
|
12571
|
+
"toc.list": 227,
|
|
12572
|
+
"toc.get": 228,
|
|
12573
|
+
"toc.configure": 229,
|
|
12574
|
+
"toc.update": 230,
|
|
12575
|
+
"toc.remove": 231,
|
|
12576
|
+
"toc.markentry": 232,
|
|
12577
|
+
"toc.unmarkentry": 233,
|
|
12578
|
+
"toc.listentries": 234,
|
|
12579
|
+
"toc.getentry": 235,
|
|
12580
|
+
"toc.editentry": 236,
|
|
12581
|
+
"history.get": 237,
|
|
12582
|
+
"history.undo": 238,
|
|
12583
|
+
"history.redo": 239,
|
|
12584
|
+
"create.image": 240,
|
|
12585
|
+
"images.list": 241,
|
|
12586
|
+
"images.get": 242,
|
|
12587
|
+
"images.delete": 243,
|
|
12588
|
+
"images.move": 244,
|
|
12589
|
+
"images.converttoinline": 245,
|
|
12590
|
+
"images.converttofloating": 246,
|
|
12591
|
+
"images.setsize": 247,
|
|
12592
|
+
"images.setwraptype": 248,
|
|
12593
|
+
"images.setwrapside": 249,
|
|
12594
|
+
"images.setwrapdistances": 250,
|
|
12595
|
+
"images.setposition": 251,
|
|
12596
|
+
"images.setanchoroptions": 252,
|
|
12597
|
+
"images.setzorder": 253,
|
|
12598
|
+
"images.scale": 254,
|
|
12599
|
+
"images.setlockaspectratio": 255,
|
|
12600
|
+
"images.rotate": 256,
|
|
12601
|
+
"images.flip": 257,
|
|
12602
|
+
"images.crop": 258,
|
|
12603
|
+
"images.resetcrop": 259,
|
|
12604
|
+
"images.replacesource": 260,
|
|
12605
|
+
"images.setalttext": 261,
|
|
12606
|
+
"images.setdecorative": 262,
|
|
12607
|
+
"images.setname": 263,
|
|
12608
|
+
"images.sethyperlink": 264,
|
|
12609
|
+
"images.insertcaption": 265,
|
|
12610
|
+
"images.updatecaption": 266,
|
|
12611
|
+
"images.removecaption": 267,
|
|
12612
|
+
"hyperlinks.list": 268,
|
|
12613
|
+
"hyperlinks.get": 269,
|
|
12614
|
+
"hyperlinks.wrap": 270,
|
|
12615
|
+
"hyperlinks.insert": 271,
|
|
12616
|
+
"hyperlinks.patch": 272,
|
|
12617
|
+
"hyperlinks.remove": 273,
|
|
12618
|
+
"headerfooters.list": 274,
|
|
12619
|
+
"headerfooters.get": 275,
|
|
12620
|
+
"headerfooters.resolve": 276,
|
|
12621
|
+
"headerfooters.refs.set": 277,
|
|
12622
|
+
"headerfooters.refs.clear": 278,
|
|
12623
|
+
"headerfooters.refs.setlinkedtoprevious": 279,
|
|
12624
|
+
"headerfooters.parts.list": 280,
|
|
12625
|
+
"headerfooters.parts.create": 281,
|
|
12626
|
+
"headerfooters.parts.delete": 282,
|
|
12627
|
+
"create.contentcontrol": 283,
|
|
12628
|
+
"contentcontrols.list": 284,
|
|
12629
|
+
"contentcontrols.get": 285,
|
|
12630
|
+
"contentcontrols.listinrange": 286,
|
|
12631
|
+
"contentcontrols.selectbytag": 287,
|
|
12632
|
+
"contentcontrols.selectbytitle": 288,
|
|
12633
|
+
"contentcontrols.listchildren": 289,
|
|
12634
|
+
"contentcontrols.getparent": 290,
|
|
12635
|
+
"contentcontrols.wrap": 291,
|
|
12636
|
+
"contentcontrols.unwrap": 292,
|
|
12637
|
+
"contentcontrols.delete": 293,
|
|
12638
|
+
"contentcontrols.copy": 294,
|
|
12639
|
+
"contentcontrols.move": 295,
|
|
12640
|
+
"contentcontrols.patch": 296,
|
|
12641
|
+
"contentcontrols.setlockmode": 297,
|
|
12642
|
+
"contentcontrols.settype": 298,
|
|
12643
|
+
"contentcontrols.getcontent": 299,
|
|
12644
|
+
"contentcontrols.replacecontent": 300,
|
|
12645
|
+
"contentcontrols.clearcontent": 301,
|
|
12646
|
+
"contentcontrols.appendcontent": 302,
|
|
12647
|
+
"contentcontrols.prependcontent": 303,
|
|
12648
|
+
"contentcontrols.insertbefore": 304,
|
|
12649
|
+
"contentcontrols.insertafter": 305,
|
|
12650
|
+
"contentcontrols.getbinding": 306,
|
|
12651
|
+
"contentcontrols.setbinding": 307,
|
|
12652
|
+
"contentcontrols.clearbinding": 308,
|
|
12653
|
+
"contentcontrols.getrawproperties": 309,
|
|
12654
|
+
"contentcontrols.patchrawproperties": 310,
|
|
12655
|
+
"contentcontrols.validatewordcompatibility": 311,
|
|
12656
|
+
"contentcontrols.normalizewordcompatibility": 312,
|
|
12657
|
+
"contentcontrols.normalizetagpayload": 313,
|
|
12658
|
+
"contentcontrols.text.setmultiline": 314,
|
|
12659
|
+
"contentcontrols.text.setvalue": 315,
|
|
12660
|
+
"contentcontrols.text.clearvalue": 316,
|
|
12661
|
+
"contentcontrols.date.setvalue": 317,
|
|
12662
|
+
"contentcontrols.date.clearvalue": 318,
|
|
12663
|
+
"contentcontrols.date.setdisplayformat": 319,
|
|
12664
|
+
"contentcontrols.date.setdisplaylocale": 320,
|
|
12665
|
+
"contentcontrols.date.setstorageformat": 321,
|
|
12666
|
+
"contentcontrols.date.setcalendar": 322,
|
|
12667
|
+
"contentcontrols.checkbox.getstate": 323,
|
|
12668
|
+
"contentcontrols.checkbox.setstate": 324,
|
|
12669
|
+
"contentcontrols.checkbox.toggle": 325,
|
|
12670
|
+
"contentcontrols.checkbox.setsymbolpair": 326,
|
|
12671
|
+
"contentcontrols.choicelist.getitems": 327,
|
|
12672
|
+
"contentcontrols.choicelist.setitems": 328,
|
|
12673
|
+
"contentcontrols.choicelist.setselected": 329,
|
|
12674
|
+
"contentcontrols.repeatingsection.listitems": 330,
|
|
12675
|
+
"contentcontrols.repeatingsection.insertitembefore": 331,
|
|
12676
|
+
"contentcontrols.repeatingsection.insertitemafter": 332,
|
|
12677
|
+
"contentcontrols.repeatingsection.cloneitem": 333,
|
|
12678
|
+
"contentcontrols.repeatingsection.deleteitem": 334,
|
|
12679
|
+
"contentcontrols.repeatingsection.setallowinsertdelete": 335,
|
|
12680
|
+
"contentcontrols.group.wrap": 336,
|
|
12681
|
+
"contentcontrols.group.ungroup": 337,
|
|
12682
|
+
"bookmarks.list": 338,
|
|
12683
|
+
"bookmarks.get": 339,
|
|
12684
|
+
"bookmarks.insert": 340,
|
|
12685
|
+
"bookmarks.rename": 341,
|
|
12686
|
+
"bookmarks.remove": 342,
|
|
12687
|
+
"footnotes.list": 343,
|
|
12688
|
+
"footnotes.get": 344,
|
|
12689
|
+
"footnotes.insert": 345,
|
|
12690
|
+
"footnotes.update": 346,
|
|
12691
|
+
"footnotes.remove": 347,
|
|
12692
|
+
"footnotes.configure": 348,
|
|
12693
|
+
"clipboard.parse": 349,
|
|
12694
|
+
"clipboard.insert": 350,
|
|
12695
|
+
"clipboard.serializeselection": 351,
|
|
12696
|
+
"crossrefs.list": 352,
|
|
12697
|
+
"crossrefs.get": 353,
|
|
12698
|
+
"crossrefs.insert": 354,
|
|
12699
|
+
"crossrefs.rebuild": 355,
|
|
12700
|
+
"crossrefs.remove": 356,
|
|
12701
|
+
"index.list": 357,
|
|
12702
|
+
"index.get": 358,
|
|
12703
|
+
"index.insert": 359,
|
|
12704
|
+
"index.configure": 360,
|
|
12705
|
+
"index.rebuild": 361,
|
|
12706
|
+
"index.remove": 362,
|
|
12707
|
+
"index.entries.list": 363,
|
|
12708
|
+
"index.entries.get": 364,
|
|
12709
|
+
"index.entries.insert": 365,
|
|
12710
|
+
"index.entries.update": 366,
|
|
12711
|
+
"index.entries.remove": 367,
|
|
12712
|
+
"captions.list": 368,
|
|
12713
|
+
"captions.get": 369,
|
|
12714
|
+
"captions.insert": 370,
|
|
12715
|
+
"captions.update": 371,
|
|
12716
|
+
"captions.remove": 372,
|
|
12717
|
+
"captions.configure": 373,
|
|
12718
|
+
"fields.list": 374,
|
|
12719
|
+
"fields.get": 375,
|
|
12720
|
+
"fields.insert": 376,
|
|
12721
|
+
"fields.rebuild": 377,
|
|
12722
|
+
"fields.remove": 378,
|
|
12723
|
+
"citations.list": 379,
|
|
12724
|
+
"citations.get": 380,
|
|
12725
|
+
"citations.insert": 381,
|
|
12726
|
+
"citations.update": 382,
|
|
12727
|
+
"citations.remove": 383,
|
|
12728
|
+
"citations.sources.list": 384,
|
|
12729
|
+
"citations.sources.get": 385,
|
|
12730
|
+
"citations.sources.insert": 386,
|
|
12731
|
+
"citations.sources.update": 387,
|
|
12732
|
+
"citations.sources.remove": 388,
|
|
12733
|
+
"citations.bibliography.get": 389,
|
|
12734
|
+
"citations.bibliography.insert": 390,
|
|
12735
|
+
"citations.bibliography.rebuild": 391,
|
|
12736
|
+
"citations.bibliography.configure": 392,
|
|
12737
|
+
"citations.bibliography.remove": 393,
|
|
12738
|
+
"authorities.list": 394,
|
|
12739
|
+
"authorities.get": 395,
|
|
12740
|
+
"authorities.insert": 396,
|
|
12741
|
+
"authorities.configure": 397,
|
|
12742
|
+
"authorities.rebuild": 398,
|
|
12743
|
+
"authorities.remove": 399,
|
|
12744
|
+
"authorities.entries.list": 400,
|
|
12745
|
+
"authorities.entries.get": 401,
|
|
12746
|
+
"authorities.entries.insert": 402,
|
|
12747
|
+
"authorities.entries.update": 403,
|
|
12748
|
+
"authorities.entries.remove": 404,
|
|
12749
|
+
"diff.capture": 405,
|
|
12750
|
+
"diff.compare": 406,
|
|
12751
|
+
"diff.apply": 407,
|
|
12752
|
+
"export.todocx": 408,
|
|
12753
|
+
"protection.get": 409,
|
|
12754
|
+
"protection.seteditingrestriction": 410,
|
|
12755
|
+
"protection.cleareditingrestriction": 411,
|
|
12756
|
+
"permissionranges.list": 412,
|
|
12757
|
+
"permissionranges.get": 413,
|
|
12758
|
+
"permissionranges.create": 414,
|
|
12759
|
+
"permissionranges.remove": 415,
|
|
12760
|
+
"permissionranges.updateprincipal": 416,
|
|
12761
|
+
"customxml.parts.list": 417,
|
|
12762
|
+
"customxml.parts.get": 418,
|
|
12763
|
+
"customxml.parts.create": 419,
|
|
12764
|
+
"customxml.parts.patch": 420,
|
|
12765
|
+
"customxml.parts.remove": 421,
|
|
12766
|
+
"metadata.attach": 422,
|
|
12767
|
+
"metadata.list": 423,
|
|
12768
|
+
"metadata.get": 424,
|
|
12769
|
+
"metadata.update": 425,
|
|
12770
|
+
"metadata.remove": 426,
|
|
12771
|
+
"metadata.resolve": 427,
|
|
12772
|
+
"inserttab": 431,
|
|
12773
|
+
"insertlinebreak": 432,
|
|
12774
|
+
"executecode": 433,
|
|
12775
|
+
"describecommand": 436,
|
|
12776
|
+
"session.list": 437,
|
|
12777
|
+
"session.save": 438,
|
|
12778
|
+
"session.close": 439,
|
|
12779
|
+
"session.setdefault": 440,
|
|
12780
|
+
"preset.list": 441,
|
|
12781
|
+
"preset.getcatalog": 442,
|
|
12782
|
+
"preset.gettools": 443,
|
|
12783
|
+
"preset.getsystemprompt": 444,
|
|
12784
|
+
"preset.getmcpprompt": 445,
|
|
12785
|
+
"preset.dispatch": 446
|
|
12764
12786
|
}
|
|
12765
12787
|
},
|
|
12766
12788
|
"operations": {
|
|
@@ -37196,6 +37218,164 @@ const CONTRACT = {
|
|
|
37196
37218
|
},
|
|
37197
37219
|
"skipAsATool": true
|
|
37198
37220
|
},
|
|
37221
|
+
"doc.blocks.findText": {
|
|
37222
|
+
"operationId": "doc.blocks.findText",
|
|
37223
|
+
"sdkSurface": "document",
|
|
37224
|
+
"command": "blocks find-text",
|
|
37225
|
+
"commandTokens": [
|
|
37226
|
+
"blocks",
|
|
37227
|
+
"find-text"
|
|
37228
|
+
],
|
|
37229
|
+
"category": "core",
|
|
37230
|
+
"description": "Find top-level body blocks containing a literal case-insensitive substring. Matches flattened block text, coalescing repeated hits and nested table paragraphs into one block. Scans at most 20,000 blocks inside the document host and returns compact previews without transferring full-text pages.",
|
|
37231
|
+
"requiresDocumentContext": true,
|
|
37232
|
+
"docRequirement": "optional",
|
|
37233
|
+
"responseEnvelopeKey": "result",
|
|
37234
|
+
"params": [
|
|
37235
|
+
{
|
|
37236
|
+
"name": "doc",
|
|
37237
|
+
"kind": "doc",
|
|
37238
|
+
"type": "string",
|
|
37239
|
+
"description": "Document path. Optional when a session is already open."
|
|
37240
|
+
},
|
|
37241
|
+
{
|
|
37242
|
+
"name": "sessionId",
|
|
37243
|
+
"kind": "flag",
|
|
37244
|
+
"type": "string",
|
|
37245
|
+
"flag": "session",
|
|
37246
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
37247
|
+
},
|
|
37248
|
+
{
|
|
37249
|
+
"name": "text",
|
|
37250
|
+
"kind": "flag",
|
|
37251
|
+
"type": "string",
|
|
37252
|
+
"documentApiInputName": "text",
|
|
37253
|
+
"flag": "text",
|
|
37254
|
+
"required": true,
|
|
37255
|
+
"description": "Literal case-insensitive substring. Whitespace is preserved."
|
|
37256
|
+
},
|
|
37257
|
+
{
|
|
37258
|
+
"name": "limit",
|
|
37259
|
+
"kind": "flag",
|
|
37260
|
+
"type": "number",
|
|
37261
|
+
"documentApiInputName": "limit",
|
|
37262
|
+
"flag": "limit",
|
|
37263
|
+
"required": false,
|
|
37264
|
+
"description": "Maximum matches. Default: 8; zero returns counts only."
|
|
37265
|
+
}
|
|
37266
|
+
],
|
|
37267
|
+
"constraints": null,
|
|
37268
|
+
"documentApiOperationId": "blocks.findText",
|
|
37269
|
+
"mutates": false,
|
|
37270
|
+
"idempotency": "idempotent",
|
|
37271
|
+
"supportsTrackedMode": false,
|
|
37272
|
+
"supportsConditionalTrackedMode": false,
|
|
37273
|
+
"supportsDryRun": false,
|
|
37274
|
+
"inputSchema": {
|
|
37275
|
+
"type": "object",
|
|
37276
|
+
"properties": {
|
|
37277
|
+
"text": {
|
|
37278
|
+
"type": "string",
|
|
37279
|
+
"pattern": "\\S",
|
|
37280
|
+
"description": "Literal case-insensitive substring. Whitespace is preserved."
|
|
37281
|
+
},
|
|
37282
|
+
"limit": {
|
|
37283
|
+
"type": "integer",
|
|
37284
|
+
"minimum": 0,
|
|
37285
|
+
"description": "Maximum matches. Default: 8; zero returns counts only."
|
|
37286
|
+
}
|
|
37287
|
+
},
|
|
37288
|
+
"additionalProperties": false,
|
|
37289
|
+
"required": [
|
|
37290
|
+
"text"
|
|
37291
|
+
]
|
|
37292
|
+
},
|
|
37293
|
+
"outputSchema": {
|
|
37294
|
+
"type": "object",
|
|
37295
|
+
"properties": {
|
|
37296
|
+
"total": {
|
|
37297
|
+
"type": "integer",
|
|
37298
|
+
"minimum": 0
|
|
37299
|
+
},
|
|
37300
|
+
"matches": {
|
|
37301
|
+
"type": "array",
|
|
37302
|
+
"items": {
|
|
37303
|
+
"type": "object",
|
|
37304
|
+
"properties": {
|
|
37305
|
+
"ordinal": {
|
|
37306
|
+
"type": "integer",
|
|
37307
|
+
"minimum": 0,
|
|
37308
|
+
"description": "Zero-based top-level body ordinal."
|
|
37309
|
+
},
|
|
37310
|
+
"nodeId": {
|
|
37311
|
+
"type": "string"
|
|
37312
|
+
},
|
|
37313
|
+
"nodeType": {
|
|
37314
|
+
"enum": [
|
|
37315
|
+
"paragraph",
|
|
37316
|
+
"heading",
|
|
37317
|
+
"listItem",
|
|
37318
|
+
"table",
|
|
37319
|
+
"tableRow",
|
|
37320
|
+
"tableCell",
|
|
37321
|
+
"tableOfContents",
|
|
37322
|
+
"image",
|
|
37323
|
+
"sdt"
|
|
37324
|
+
]
|
|
37325
|
+
},
|
|
37326
|
+
"preview": {
|
|
37327
|
+
"type": "string",
|
|
37328
|
+
"maxLength": 100
|
|
37329
|
+
}
|
|
37330
|
+
},
|
|
37331
|
+
"additionalProperties": false,
|
|
37332
|
+
"required": [
|
|
37333
|
+
"ordinal",
|
|
37334
|
+
"nodeId",
|
|
37335
|
+
"nodeType",
|
|
37336
|
+
"preview"
|
|
37337
|
+
]
|
|
37338
|
+
}
|
|
37339
|
+
},
|
|
37340
|
+
"firstMatchOrdinal": {
|
|
37341
|
+
"type": "integer",
|
|
37342
|
+
"minimum": 0
|
|
37343
|
+
},
|
|
37344
|
+
"scanError": {
|
|
37345
|
+
"type": "object",
|
|
37346
|
+
"properties": {
|
|
37347
|
+
"message": {
|
|
37348
|
+
"type": "string"
|
|
37349
|
+
}
|
|
37350
|
+
},
|
|
37351
|
+
"additionalProperties": false,
|
|
37352
|
+
"required": [
|
|
37353
|
+
"message"
|
|
37354
|
+
]
|
|
37355
|
+
},
|
|
37356
|
+
"scannedBlocks": {
|
|
37357
|
+
"type": "integer",
|
|
37358
|
+
"minimum": 0,
|
|
37359
|
+
"maximum": 20000
|
|
37360
|
+
},
|
|
37361
|
+
"truncated": {
|
|
37362
|
+
"type": "boolean"
|
|
37363
|
+
},
|
|
37364
|
+
"revision": {
|
|
37365
|
+
"type": "string"
|
|
37366
|
+
}
|
|
37367
|
+
},
|
|
37368
|
+
"additionalProperties": false,
|
|
37369
|
+
"required": [
|
|
37370
|
+
"total",
|
|
37371
|
+
"matches",
|
|
37372
|
+
"scannedBlocks",
|
|
37373
|
+
"truncated",
|
|
37374
|
+
"revision"
|
|
37375
|
+
]
|
|
37376
|
+
},
|
|
37377
|
+
"skipAsATool": true
|
|
37378
|
+
},
|
|
37199
37379
|
"doc.blocks.list": {
|
|
37200
37380
|
"operationId": "doc.blocks.list",
|
|
37201
37381
|
"sdkSurface": "document",
|
|
@@ -37205,7 +37385,7 @@ const CONTRACT = {
|
|
|
37205
37385
|
"list"
|
|
37206
37386
|
],
|
|
37207
37387
|
"category": "core",
|
|
37208
|
-
"description": "List top-level blocks in document order with IDs, types, text previews, and optional full text when includeText:true. Supports pagination via offset/limit
|
|
37388
|
+
"description": "List top-level blocks in document order with IDs, types, text previews, and optional full text when includeText:true. Supports pagination via offset/limit after optional nodeTypes, nodeIds, and literal textSearch filtering, single-story scoping via `in: <StoryLocator>`, and final/original/redline projection of numbering metadata without changing block membership.",
|
|
37209
37389
|
"requiresDocumentContext": true,
|
|
37210
37390
|
"docRequirement": "optional",
|
|
37211
37391
|
"responseEnvelopeKey": "result",
|
|
@@ -37223,6 +37403,58 @@ const CONTRACT = {
|
|
|
37223
37403
|
"flag": "session",
|
|
37224
37404
|
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
37225
37405
|
},
|
|
37406
|
+
{
|
|
37407
|
+
"name": "nodeIds",
|
|
37408
|
+
"kind": "flag",
|
|
37409
|
+
"type": "string[]",
|
|
37410
|
+
"documentApiInputName": "nodeIds",
|
|
37411
|
+
"flag": "node-ids",
|
|
37412
|
+
"required": false,
|
|
37413
|
+
"schema": {
|
|
37414
|
+
"type": "array",
|
|
37415
|
+
"items": {
|
|
37416
|
+
"type": "string"
|
|
37417
|
+
},
|
|
37418
|
+
"description": "Top-level block identities to match before pagination."
|
|
37419
|
+
},
|
|
37420
|
+
"description": "Top-level block identities to match before pagination."
|
|
37421
|
+
},
|
|
37422
|
+
{
|
|
37423
|
+
"name": "textSearch",
|
|
37424
|
+
"kind": "jsonFlag",
|
|
37425
|
+
"type": "json",
|
|
37426
|
+
"documentApiInputName": "textSearch",
|
|
37427
|
+
"flag": "text-search-json",
|
|
37428
|
+
"required": false,
|
|
37429
|
+
"schema": {
|
|
37430
|
+
"type": "object",
|
|
37431
|
+
"properties": {
|
|
37432
|
+
"terms": {
|
|
37433
|
+
"type": "array",
|
|
37434
|
+
"items": {
|
|
37435
|
+
"type": "string"
|
|
37436
|
+
},
|
|
37437
|
+
"minItems": 1
|
|
37438
|
+
},
|
|
37439
|
+
"match": {
|
|
37440
|
+
"oneOf": [
|
|
37441
|
+
{
|
|
37442
|
+
"const": "all"
|
|
37443
|
+
},
|
|
37444
|
+
{
|
|
37445
|
+
"const": "any"
|
|
37446
|
+
}
|
|
37447
|
+
]
|
|
37448
|
+
},
|
|
37449
|
+
"caseSensitive": {
|
|
37450
|
+
"type": "boolean"
|
|
37451
|
+
}
|
|
37452
|
+
},
|
|
37453
|
+
"required": [
|
|
37454
|
+
"terms"
|
|
37455
|
+
]
|
|
37456
|
+
}
|
|
37457
|
+
},
|
|
37226
37458
|
{
|
|
37227
37459
|
"name": "in",
|
|
37228
37460
|
"kind": "jsonFlag",
|
|
@@ -37510,6 +37742,40 @@ const CONTRACT = {
|
|
|
37510
37742
|
"inputSchema": {
|
|
37511
37743
|
"type": "object",
|
|
37512
37744
|
"properties": {
|
|
37745
|
+
"nodeIds": {
|
|
37746
|
+
"type": "array",
|
|
37747
|
+
"items": {
|
|
37748
|
+
"type": "string",
|
|
37749
|
+
"minLength": 1
|
|
37750
|
+
},
|
|
37751
|
+
"description": "Top-level block identities to match before pagination."
|
|
37752
|
+
},
|
|
37753
|
+
"textSearch": {
|
|
37754
|
+
"type": "object",
|
|
37755
|
+
"properties": {
|
|
37756
|
+
"terms": {
|
|
37757
|
+
"type": "array",
|
|
37758
|
+
"minItems": 1,
|
|
37759
|
+
"items": {
|
|
37760
|
+
"type": "string",
|
|
37761
|
+
"minLength": 1
|
|
37762
|
+
}
|
|
37763
|
+
},
|
|
37764
|
+
"match": {
|
|
37765
|
+
"enum": [
|
|
37766
|
+
"all",
|
|
37767
|
+
"any"
|
|
37768
|
+
]
|
|
37769
|
+
},
|
|
37770
|
+
"caseSensitive": {
|
|
37771
|
+
"type": "boolean"
|
|
37772
|
+
}
|
|
37773
|
+
},
|
|
37774
|
+
"additionalProperties": false,
|
|
37775
|
+
"required": [
|
|
37776
|
+
"terms"
|
|
37777
|
+
]
|
|
37778
|
+
},
|
|
37513
37779
|
"in": {
|
|
37514
37780
|
"$ref": "#/$defs/StoryLocator"
|
|
37515
37781
|
},
|
|
@@ -171306,6 +171572,10 @@ const CONTRACT = {
|
|
|
171306
171572
|
"wholeWord": {
|
|
171307
171573
|
"type": "boolean",
|
|
171308
171574
|
"description": "Require word-boundary matches. Default: false."
|
|
171575
|
+
},
|
|
171576
|
+
"includeDeletedText": {
|
|
171577
|
+
"type": "boolean",
|
|
171578
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
171309
171579
|
}
|
|
171310
171580
|
},
|
|
171311
171581
|
"required": [
|
|
@@ -171758,6 +172028,10 @@ const CONTRACT = {
|
|
|
171758
172028
|
"wholeWord": {
|
|
171759
172029
|
"type": "boolean",
|
|
171760
172030
|
"description": "Require word-boundary matches. Default: false."
|
|
172031
|
+
},
|
|
172032
|
+
"includeDeletedText": {
|
|
172033
|
+
"type": "boolean",
|
|
172034
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
171761
172035
|
}
|
|
171762
172036
|
},
|
|
171763
172037
|
"additionalProperties": false,
|
|
@@ -173886,6 +174160,10 @@ const CONTRACT = {
|
|
|
173886
174160
|
"wholeWord": {
|
|
173887
174161
|
"type": "boolean",
|
|
173888
174162
|
"description": "Require word-boundary matches. Default: false."
|
|
174163
|
+
},
|
|
174164
|
+
"includeDeletedText": {
|
|
174165
|
+
"type": "boolean",
|
|
174166
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
173889
174167
|
}
|
|
173890
174168
|
},
|
|
173891
174169
|
"required": [
|
|
@@ -175637,6 +175915,26 @@ const CONTRACT = {
|
|
|
175637
175915
|
}
|
|
175638
175916
|
]
|
|
175639
175917
|
},
|
|
175918
|
+
"replacementMode": {
|
|
175919
|
+
"oneOf": [
|
|
175920
|
+
{
|
|
175921
|
+
"const": "literal"
|
|
175922
|
+
},
|
|
175923
|
+
{
|
|
175924
|
+
"const": "regex-template"
|
|
175925
|
+
}
|
|
175926
|
+
]
|
|
175927
|
+
},
|
|
175928
|
+
"caseHandling": {
|
|
175929
|
+
"oneOf": [
|
|
175930
|
+
{
|
|
175931
|
+
"const": "exact"
|
|
175932
|
+
},
|
|
175933
|
+
{
|
|
175934
|
+
"const": "preserve-match"
|
|
175935
|
+
}
|
|
175936
|
+
]
|
|
175937
|
+
},
|
|
175640
175938
|
"style": {
|
|
175641
175939
|
"type": "object",
|
|
175642
175940
|
"properties": {
|
|
@@ -175827,6 +176125,10 @@ const CONTRACT = {
|
|
|
175827
176125
|
"wholeWord": {
|
|
175828
176126
|
"type": "boolean",
|
|
175829
176127
|
"description": "Require word-boundary matches. Default: false."
|
|
176128
|
+
},
|
|
176129
|
+
"includeDeletedText": {
|
|
176130
|
+
"type": "boolean",
|
|
176131
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
175830
176132
|
}
|
|
175831
176133
|
},
|
|
175832
176134
|
"required": [
|
|
@@ -177707,6 +178009,10 @@ const CONTRACT = {
|
|
|
177707
178009
|
"wholeWord": {
|
|
177708
178010
|
"type": "boolean",
|
|
177709
178011
|
"description": "Require word-boundary matches. Default: false."
|
|
178012
|
+
},
|
|
178013
|
+
"includeDeletedText": {
|
|
178014
|
+
"type": "boolean",
|
|
178015
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
177710
178016
|
}
|
|
177711
178017
|
},
|
|
177712
178018
|
"required": [
|
|
@@ -179489,6 +179795,10 @@ const CONTRACT = {
|
|
|
179489
179795
|
"wholeWord": {
|
|
179490
179796
|
"type": "boolean",
|
|
179491
179797
|
"description": "Require word-boundary matches. Default: false."
|
|
179798
|
+
},
|
|
179799
|
+
"includeDeletedText": {
|
|
179800
|
+
"type": "boolean",
|
|
179801
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
179492
179802
|
}
|
|
179493
179803
|
},
|
|
179494
179804
|
"required": [
|
|
@@ -182054,6 +182364,10 @@ const CONTRACT = {
|
|
|
182054
182364
|
"wholeWord": {
|
|
182055
182365
|
"type": "boolean",
|
|
182056
182366
|
"description": "Require word-boundary matches. Default: false."
|
|
182367
|
+
},
|
|
182368
|
+
"includeDeletedText": {
|
|
182369
|
+
"type": "boolean",
|
|
182370
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
182057
182371
|
}
|
|
182058
182372
|
},
|
|
182059
182373
|
"required": [
|
|
@@ -182409,6 +182723,25 @@ const CONTRACT = {
|
|
|
182409
182723
|
"description": "Ordered array of mutation steps. Each step needs 'op' (text.rewrite, text.insert, text.delete, format.apply, or assert) and a 'where' targeting clause."
|
|
182410
182724
|
},
|
|
182411
182725
|
"description": "Ordered array of mutation steps. Each step needs 'op' (text.rewrite, text.insert, text.delete, format.apply, or assert) and a 'where' targeting clause."
|
|
182726
|
+
},
|
|
182727
|
+
{
|
|
182728
|
+
"name": "detail",
|
|
182729
|
+
"kind": "jsonFlag",
|
|
182730
|
+
"type": "json",
|
|
182731
|
+
"documentApiInputName": "detail",
|
|
182732
|
+
"flag": "detail-json",
|
|
182733
|
+
"required": false,
|
|
182734
|
+
"schema": {
|
|
182735
|
+
"type": "object",
|
|
182736
|
+
"properties": {
|
|
182737
|
+
"offset": {
|
|
182738
|
+
"type": "number"
|
|
182739
|
+
},
|
|
182740
|
+
"limit": {
|
|
182741
|
+
"type": "number"
|
|
182742
|
+
}
|
|
182743
|
+
}
|
|
182744
|
+
}
|
|
182412
182745
|
}
|
|
182413
182746
|
],
|
|
182414
182747
|
"constraints": null,
|
|
@@ -182490,6 +182823,10 @@ const CONTRACT = {
|
|
|
182490
182823
|
"wholeWord": {
|
|
182491
182824
|
"type": "boolean",
|
|
182492
182825
|
"description": "Require word-boundary matches. Default: false."
|
|
182826
|
+
},
|
|
182827
|
+
"includeDeletedText": {
|
|
182828
|
+
"type": "boolean",
|
|
182829
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
182493
182830
|
}
|
|
182494
182831
|
},
|
|
182495
182832
|
"additionalProperties": false,
|
|
@@ -182678,6 +183015,20 @@ const CONTRACT = {
|
|
|
182678
183015
|
}
|
|
182679
183016
|
]
|
|
182680
183017
|
},
|
|
183018
|
+
"replacementMode": {
|
|
183019
|
+
"enum": [
|
|
183020
|
+
"literal",
|
|
183021
|
+
"regex-template"
|
|
183022
|
+
],
|
|
183023
|
+
"type": "string"
|
|
183024
|
+
},
|
|
183025
|
+
"caseHandling": {
|
|
183026
|
+
"enum": [
|
|
183027
|
+
"exact",
|
|
183028
|
+
"preserve-match"
|
|
183029
|
+
],
|
|
183030
|
+
"type": "string"
|
|
183031
|
+
},
|
|
182681
183032
|
"style": {
|
|
182682
183033
|
"type": "object",
|
|
182683
183034
|
"properties": {
|
|
@@ -182828,6 +183179,10 @@ const CONTRACT = {
|
|
|
182828
183179
|
"wholeWord": {
|
|
182829
183180
|
"type": "boolean",
|
|
182830
183181
|
"description": "Require word-boundary matches. Default: false."
|
|
183182
|
+
},
|
|
183183
|
+
"includeDeletedText": {
|
|
183184
|
+
"type": "boolean",
|
|
183185
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
182831
183186
|
}
|
|
182832
183187
|
},
|
|
182833
183188
|
"additionalProperties": false,
|
|
@@ -183115,6 +183470,10 @@ const CONTRACT = {
|
|
|
183115
183470
|
"wholeWord": {
|
|
183116
183471
|
"type": "boolean",
|
|
183117
183472
|
"description": "Require word-boundary matches. Default: false."
|
|
183473
|
+
},
|
|
183474
|
+
"includeDeletedText": {
|
|
183475
|
+
"type": "boolean",
|
|
183476
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
183118
183477
|
}
|
|
183119
183478
|
},
|
|
183120
183479
|
"additionalProperties": false,
|
|
@@ -183324,6 +183683,10 @@ const CONTRACT = {
|
|
|
183324
183683
|
"wholeWord": {
|
|
183325
183684
|
"type": "boolean",
|
|
183326
183685
|
"description": "Require word-boundary matches. Default: false."
|
|
183686
|
+
},
|
|
183687
|
+
"includeDeletedText": {
|
|
183688
|
+
"type": "boolean",
|
|
183689
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
183327
183690
|
}
|
|
183328
183691
|
},
|
|
183329
183692
|
"additionalProperties": false,
|
|
@@ -184356,6 +184719,10 @@ const CONTRACT = {
|
|
|
184356
184719
|
"wholeWord": {
|
|
184357
184720
|
"type": "boolean",
|
|
184358
184721
|
"description": "Require word-boundary matches. Default: false."
|
|
184722
|
+
},
|
|
184723
|
+
"includeDeletedText": {
|
|
184724
|
+
"type": "boolean",
|
|
184725
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
184359
184726
|
}
|
|
184360
184727
|
},
|
|
184361
184728
|
"additionalProperties": false,
|
|
@@ -184447,6 +184814,21 @@ const CONTRACT = {
|
|
|
184447
184814
|
]
|
|
184448
184815
|
},
|
|
184449
184816
|
"description": "Ordered array of mutation steps. Each step needs 'op' (text.rewrite, text.insert, text.delete, format.apply, or assert) and a 'where' targeting clause."
|
|
184817
|
+
},
|
|
184818
|
+
"detail": {
|
|
184819
|
+
"type": "object",
|
|
184820
|
+
"properties": {
|
|
184821
|
+
"offset": {
|
|
184822
|
+
"type": "number",
|
|
184823
|
+
"minimum": 0
|
|
184824
|
+
},
|
|
184825
|
+
"limit": {
|
|
184826
|
+
"type": "number",
|
|
184827
|
+
"minimum": 0,
|
|
184828
|
+
"maximum": 1000
|
|
184829
|
+
}
|
|
184830
|
+
},
|
|
184831
|
+
"additionalProperties": false
|
|
184450
184832
|
}
|
|
184451
184833
|
},
|
|
184452
184834
|
"additionalProperties": false,
|
|
@@ -184798,6 +185180,10 @@ const CONTRACT = {
|
|
|
184798
185180
|
"wholeWord": {
|
|
184799
185181
|
"type": "boolean",
|
|
184800
185182
|
"description": "Require word-boundary matches. Default: false."
|
|
185183
|
+
},
|
|
185184
|
+
"includeDeletedText": {
|
|
185185
|
+
"type": "boolean",
|
|
185186
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
184801
185187
|
}
|
|
184802
185188
|
},
|
|
184803
185189
|
"required": [
|
|
@@ -186549,6 +186935,26 @@ const CONTRACT = {
|
|
|
186549
186935
|
}
|
|
186550
186936
|
]
|
|
186551
186937
|
},
|
|
186938
|
+
"replacementMode": {
|
|
186939
|
+
"oneOf": [
|
|
186940
|
+
{
|
|
186941
|
+
"const": "literal"
|
|
186942
|
+
},
|
|
186943
|
+
{
|
|
186944
|
+
"const": "regex-template"
|
|
186945
|
+
}
|
|
186946
|
+
]
|
|
186947
|
+
},
|
|
186948
|
+
"caseHandling": {
|
|
186949
|
+
"oneOf": [
|
|
186950
|
+
{
|
|
186951
|
+
"const": "exact"
|
|
186952
|
+
},
|
|
186953
|
+
{
|
|
186954
|
+
"const": "preserve-match"
|
|
186955
|
+
}
|
|
186956
|
+
]
|
|
186957
|
+
},
|
|
186552
186958
|
"style": {
|
|
186553
186959
|
"type": "object",
|
|
186554
186960
|
"properties": {
|
|
@@ -186739,6 +187145,10 @@ const CONTRACT = {
|
|
|
186739
187145
|
"wholeWord": {
|
|
186740
187146
|
"type": "boolean",
|
|
186741
187147
|
"description": "Require word-boundary matches. Default: false."
|
|
187148
|
+
},
|
|
187149
|
+
"includeDeletedText": {
|
|
187150
|
+
"type": "boolean",
|
|
187151
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
186742
187152
|
}
|
|
186743
187153
|
},
|
|
186744
187154
|
"required": [
|
|
@@ -188619,6 +189029,10 @@ const CONTRACT = {
|
|
|
188619
189029
|
"wholeWord": {
|
|
188620
189030
|
"type": "boolean",
|
|
188621
189031
|
"description": "Require word-boundary matches. Default: false."
|
|
189032
|
+
},
|
|
189033
|
+
"includeDeletedText": {
|
|
189034
|
+
"type": "boolean",
|
|
189035
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
188622
189036
|
}
|
|
188623
189037
|
},
|
|
188624
189038
|
"required": [
|
|
@@ -190401,6 +190815,10 @@ const CONTRACT = {
|
|
|
190401
190815
|
"wholeWord": {
|
|
190402
190816
|
"type": "boolean",
|
|
190403
190817
|
"description": "Require word-boundary matches. Default: false."
|
|
190818
|
+
},
|
|
190819
|
+
"includeDeletedText": {
|
|
190820
|
+
"type": "boolean",
|
|
190821
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
190404
190822
|
}
|
|
190405
190823
|
},
|
|
190406
190824
|
"required": [
|
|
@@ -192966,6 +193384,10 @@ const CONTRACT = {
|
|
|
192966
193384
|
"wholeWord": {
|
|
192967
193385
|
"type": "boolean",
|
|
192968
193386
|
"description": "Require word-boundary matches. Default: false."
|
|
193387
|
+
},
|
|
193388
|
+
"includeDeletedText": {
|
|
193389
|
+
"type": "boolean",
|
|
193390
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
192969
193391
|
}
|
|
192970
193392
|
},
|
|
192971
193393
|
"required": [
|
|
@@ -193402,6 +193824,10 @@ const CONTRACT = {
|
|
|
193402
193824
|
"wholeWord": {
|
|
193403
193825
|
"type": "boolean",
|
|
193404
193826
|
"description": "Require word-boundary matches. Default: false."
|
|
193827
|
+
},
|
|
193828
|
+
"includeDeletedText": {
|
|
193829
|
+
"type": "boolean",
|
|
193830
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
193405
193831
|
}
|
|
193406
193832
|
},
|
|
193407
193833
|
"additionalProperties": false,
|
|
@@ -193590,6 +194016,20 @@ const CONTRACT = {
|
|
|
193590
194016
|
}
|
|
193591
194017
|
]
|
|
193592
194018
|
},
|
|
194019
|
+
"replacementMode": {
|
|
194020
|
+
"enum": [
|
|
194021
|
+
"literal",
|
|
194022
|
+
"regex-template"
|
|
194023
|
+
],
|
|
194024
|
+
"type": "string"
|
|
194025
|
+
},
|
|
194026
|
+
"caseHandling": {
|
|
194027
|
+
"enum": [
|
|
194028
|
+
"exact",
|
|
194029
|
+
"preserve-match"
|
|
194030
|
+
],
|
|
194031
|
+
"type": "string"
|
|
194032
|
+
},
|
|
193593
194033
|
"style": {
|
|
193594
194034
|
"type": "object",
|
|
193595
194035
|
"properties": {
|
|
@@ -193740,6 +194180,10 @@ const CONTRACT = {
|
|
|
193740
194180
|
"wholeWord": {
|
|
193741
194181
|
"type": "boolean",
|
|
193742
194182
|
"description": "Require word-boundary matches. Default: false."
|
|
194183
|
+
},
|
|
194184
|
+
"includeDeletedText": {
|
|
194185
|
+
"type": "boolean",
|
|
194186
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
193743
194187
|
}
|
|
193744
194188
|
},
|
|
193745
194189
|
"additionalProperties": false,
|
|
@@ -194027,6 +194471,10 @@ const CONTRACT = {
|
|
|
194027
194471
|
"wholeWord": {
|
|
194028
194472
|
"type": "boolean",
|
|
194029
194473
|
"description": "Require word-boundary matches. Default: false."
|
|
194474
|
+
},
|
|
194475
|
+
"includeDeletedText": {
|
|
194476
|
+
"type": "boolean",
|
|
194477
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
194030
194478
|
}
|
|
194031
194479
|
},
|
|
194032
194480
|
"additionalProperties": false,
|
|
@@ -194236,6 +194684,10 @@ const CONTRACT = {
|
|
|
194236
194684
|
"wholeWord": {
|
|
194237
194685
|
"type": "boolean",
|
|
194238
194686
|
"description": "Require word-boundary matches. Default: false."
|
|
194687
|
+
},
|
|
194688
|
+
"includeDeletedText": {
|
|
194689
|
+
"type": "boolean",
|
|
194690
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
194239
194691
|
}
|
|
194240
194692
|
},
|
|
194241
194693
|
"additionalProperties": false,
|
|
@@ -195268,6 +195720,10 @@ const CONTRACT = {
|
|
|
195268
195720
|
"wholeWord": {
|
|
195269
195721
|
"type": "boolean",
|
|
195270
195722
|
"description": "Require word-boundary matches. Default: false."
|
|
195723
|
+
},
|
|
195724
|
+
"includeDeletedText": {
|
|
195725
|
+
"type": "boolean",
|
|
195726
|
+
"description": "When true, includes text from pending tracked deletions. Default: false."
|
|
195271
195727
|
}
|
|
195272
195728
|
},
|
|
195273
195729
|
"additionalProperties": false,
|
|
@@ -198212,6 +198668,41 @@ const CONTRACT = {
|
|
|
198212
198668
|
"dryRun"
|
|
198213
198669
|
]
|
|
198214
198670
|
},
|
|
198671
|
+
"blocks.findText": {
|
|
198672
|
+
"type": "object",
|
|
198673
|
+
"properties": {
|
|
198674
|
+
"available": {
|
|
198675
|
+
"type": "boolean"
|
|
198676
|
+
},
|
|
198677
|
+
"tracked": {
|
|
198678
|
+
"type": "boolean"
|
|
198679
|
+
},
|
|
198680
|
+
"dryRun": {
|
|
198681
|
+
"type": "boolean"
|
|
198682
|
+
},
|
|
198683
|
+
"reasons": {
|
|
198684
|
+
"type": "array",
|
|
198685
|
+
"items": {
|
|
198686
|
+
"enum": [
|
|
198687
|
+
"COMMAND_UNAVAILABLE",
|
|
198688
|
+
"HELPER_UNAVAILABLE",
|
|
198689
|
+
"OPERATION_UNAVAILABLE",
|
|
198690
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
198691
|
+
"DRY_RUN_UNAVAILABLE",
|
|
198692
|
+
"NAMESPACE_UNAVAILABLE",
|
|
198693
|
+
"STYLES_PART_MISSING",
|
|
198694
|
+
"COLLABORATION_ACTIVE"
|
|
198695
|
+
]
|
|
198696
|
+
}
|
|
198697
|
+
}
|
|
198698
|
+
},
|
|
198699
|
+
"additionalProperties": false,
|
|
198700
|
+
"required": [
|
|
198701
|
+
"available",
|
|
198702
|
+
"tracked",
|
|
198703
|
+
"dryRun"
|
|
198704
|
+
]
|
|
198705
|
+
},
|
|
198215
198706
|
"blocks.list": {
|
|
198216
198707
|
"type": "object",
|
|
198217
198708
|
"properties": {
|
|
@@ -212548,6 +213039,7 @@ const CONTRACT = {
|
|
|
212548
213039
|
"replace",
|
|
212549
213040
|
"delete",
|
|
212550
213041
|
"formatRange",
|
|
213042
|
+
"blocks.findText",
|
|
212551
213043
|
"blocks.list",
|
|
212552
213044
|
"blocks.delete",
|
|
212553
213045
|
"blocks.deleteRange",
|
|
@@ -236138,6 +236630,9 @@ const CONTRACT = {
|
|
|
236138
236630
|
"items": {
|
|
236139
236631
|
"type": "object",
|
|
236140
236632
|
"properties": {
|
|
236633
|
+
"firstParagraphNodeId": {
|
|
236634
|
+
"type": "string"
|
|
236635
|
+
},
|
|
236141
236636
|
"nodeId": {
|
|
236142
236637
|
"type": "string"
|
|
236143
236638
|
},
|
|
@@ -262086,6 +262581,9 @@ const CONTRACT = {
|
|
|
262086
262581
|
},
|
|
262087
262582
|
{
|
|
262088
262583
|
"const": "html"
|
|
262584
|
+
},
|
|
262585
|
+
{
|
|
262586
|
+
"const": "ooxml"
|
|
262089
262587
|
}
|
|
262090
262588
|
]
|
|
262091
262589
|
}
|
|
@@ -262133,7 +262631,8 @@ const CONTRACT = {
|
|
|
262133
262631
|
"format": {
|
|
262134
262632
|
"enum": [
|
|
262135
262633
|
"text",
|
|
262136
|
-
"html"
|
|
262634
|
+
"html",
|
|
262635
|
+
"ooxml"
|
|
262137
262636
|
]
|
|
262138
262637
|
}
|
|
262139
262638
|
},
|