@superdoc-dev/sdk 1.8.0-next.66 → 1.8.0-next.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client.cjs +8 -2
- package/dist/generated/client.d.ts +224 -8
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/client.js +8 -2
- package/dist/generated/contract.cjs +1426 -368
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +1426 -368
- package/dist/generated/intent-dispatch.generated.cjs +24 -0
- package/dist/generated/intent-dispatch.generated.d.ts.map +1 -1
- package/dist/generated/intent-dispatch.generated.js +24 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools.cjs +91 -4
- package/dist/tools.d.ts +73 -2
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +90 -4
- package/package.json +6 -6
- package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/__pycache__/intent_dispatch_generated.cpython-312.pyc +0 -0
- package/tools/catalog.json +3353 -2121
- package/tools/intent_dispatch_generated.py +41 -0
- package/tools/prompt-templates/system-prompt-core.md +54 -0
- package/tools/system-prompt-mcp.md +54 -0
- package/tools/system-prompt.md +54 -0
- package/tools/tools-policy.json +6 -2
- package/tools/tools.anthropic.json +3050 -2121
- package/tools/tools.generic.json +3084 -2122
- package/tools/tools.openai.json +3053 -2121
- package/tools/tools.vercel.json +3053 -2121
|
@@ -52576,6 +52576,221 @@ export const CONTRACT = {
|
|
|
52576
52576
|
"intentGroup": "list",
|
|
52577
52577
|
"intentAction": "detach"
|
|
52578
52578
|
},
|
|
52579
|
+
"doc.lists.delete": {
|
|
52580
|
+
"operationId": "doc.lists.delete",
|
|
52581
|
+
"sdkSurface": "document",
|
|
52582
|
+
"command": "lists delete",
|
|
52583
|
+
"commandTokens": [
|
|
52584
|
+
"lists",
|
|
52585
|
+
"delete"
|
|
52586
|
+
],
|
|
52587
|
+
"category": "lists",
|
|
52588
|
+
"description": "Delete the entire list that contains the targeted list item. Removes ALL items in the same numbered sequence (the contiguous run of list items sharing the target's numbering) AND their text content from the document. Pass any single list item from the list as `target`; the op walks adjacent siblings to find the full list. Use this for \"remove the list\" / \"delete this list\" intents and for the cleanup step of a list-to-table conversion.",
|
|
52589
|
+
"requiresDocumentContext": true,
|
|
52590
|
+
"docRequirement": "optional",
|
|
52591
|
+
"responseEnvelopeKey": null,
|
|
52592
|
+
"params": [
|
|
52593
|
+
{
|
|
52594
|
+
"name": "doc",
|
|
52595
|
+
"kind": "doc",
|
|
52596
|
+
"type": "string",
|
|
52597
|
+
"description": "Document path. Optional when a session is already open."
|
|
52598
|
+
},
|
|
52599
|
+
{
|
|
52600
|
+
"name": "sessionId",
|
|
52601
|
+
"kind": "flag",
|
|
52602
|
+
"type": "string",
|
|
52603
|
+
"flag": "session",
|
|
52604
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
52605
|
+
},
|
|
52606
|
+
{
|
|
52607
|
+
"name": "out",
|
|
52608
|
+
"kind": "flag",
|
|
52609
|
+
"type": "string",
|
|
52610
|
+
"agentVisible": false
|
|
52611
|
+
},
|
|
52612
|
+
{
|
|
52613
|
+
"name": "force",
|
|
52614
|
+
"kind": "flag",
|
|
52615
|
+
"type": "boolean",
|
|
52616
|
+
"description": "Bypass confirmation checks."
|
|
52617
|
+
},
|
|
52618
|
+
{
|
|
52619
|
+
"name": "expectedRevision",
|
|
52620
|
+
"kind": "flag",
|
|
52621
|
+
"type": "number",
|
|
52622
|
+
"flag": "expected-revision",
|
|
52623
|
+
"agentVisible": false
|
|
52624
|
+
},
|
|
52625
|
+
{
|
|
52626
|
+
"name": "changeMode",
|
|
52627
|
+
"kind": "flag",
|
|
52628
|
+
"type": "string",
|
|
52629
|
+
"flag": "change-mode",
|
|
52630
|
+
"schema": {
|
|
52631
|
+
"enum": [
|
|
52632
|
+
"direct",
|
|
52633
|
+
"tracked"
|
|
52634
|
+
]
|
|
52635
|
+
},
|
|
52636
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
52637
|
+
},
|
|
52638
|
+
{
|
|
52639
|
+
"name": "dryRun",
|
|
52640
|
+
"kind": "flag",
|
|
52641
|
+
"type": "boolean",
|
|
52642
|
+
"flag": "dry-run",
|
|
52643
|
+
"description": "Preview the result without applying changes."
|
|
52644
|
+
},
|
|
52645
|
+
{
|
|
52646
|
+
"name": "target",
|
|
52647
|
+
"kind": "jsonFlag",
|
|
52648
|
+
"type": "json",
|
|
52649
|
+
"flag": "target-json",
|
|
52650
|
+
"required": true,
|
|
52651
|
+
"schema": {
|
|
52652
|
+
"type": "object",
|
|
52653
|
+
"properties": {
|
|
52654
|
+
"kind": {
|
|
52655
|
+
"const": "block"
|
|
52656
|
+
},
|
|
52657
|
+
"nodeType": {
|
|
52658
|
+
"const": "listItem"
|
|
52659
|
+
},
|
|
52660
|
+
"nodeId": {
|
|
52661
|
+
"type": "string"
|
|
52662
|
+
}
|
|
52663
|
+
},
|
|
52664
|
+
"required": [
|
|
52665
|
+
"kind",
|
|
52666
|
+
"nodeType",
|
|
52667
|
+
"nodeId"
|
|
52668
|
+
]
|
|
52669
|
+
}
|
|
52670
|
+
}
|
|
52671
|
+
],
|
|
52672
|
+
"constraints": null,
|
|
52673
|
+
"mutates": true,
|
|
52674
|
+
"idempotency": "conditional",
|
|
52675
|
+
"supportsTrackedMode": false,
|
|
52676
|
+
"supportsDryRun": true,
|
|
52677
|
+
"inputSchema": {
|
|
52678
|
+
"type": "object",
|
|
52679
|
+
"properties": {
|
|
52680
|
+
"target": {
|
|
52681
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
52682
|
+
}
|
|
52683
|
+
},
|
|
52684
|
+
"additionalProperties": false,
|
|
52685
|
+
"required": [
|
|
52686
|
+
"target"
|
|
52687
|
+
]
|
|
52688
|
+
},
|
|
52689
|
+
"outputSchema": {
|
|
52690
|
+
"oneOf": [
|
|
52691
|
+
{
|
|
52692
|
+
"type": "object",
|
|
52693
|
+
"properties": {
|
|
52694
|
+
"success": {
|
|
52695
|
+
"const": true
|
|
52696
|
+
},
|
|
52697
|
+
"deletedCount": {
|
|
52698
|
+
"type": "integer",
|
|
52699
|
+
"minimum": 0
|
|
52700
|
+
}
|
|
52701
|
+
},
|
|
52702
|
+
"additionalProperties": false,
|
|
52703
|
+
"required": [
|
|
52704
|
+
"success",
|
|
52705
|
+
"deletedCount"
|
|
52706
|
+
]
|
|
52707
|
+
},
|
|
52708
|
+
{
|
|
52709
|
+
"type": "object",
|
|
52710
|
+
"properties": {
|
|
52711
|
+
"success": {
|
|
52712
|
+
"const": false
|
|
52713
|
+
},
|
|
52714
|
+
"failure": {
|
|
52715
|
+
"type": "object",
|
|
52716
|
+
"properties": {
|
|
52717
|
+
"code": {
|
|
52718
|
+
"enum": [
|
|
52719
|
+
"INVALID_TARGET"
|
|
52720
|
+
]
|
|
52721
|
+
},
|
|
52722
|
+
"message": {
|
|
52723
|
+
"type": "string"
|
|
52724
|
+
},
|
|
52725
|
+
"details": {}
|
|
52726
|
+
},
|
|
52727
|
+
"additionalProperties": false,
|
|
52728
|
+
"required": [
|
|
52729
|
+
"code",
|
|
52730
|
+
"message"
|
|
52731
|
+
]
|
|
52732
|
+
}
|
|
52733
|
+
},
|
|
52734
|
+
"additionalProperties": false,
|
|
52735
|
+
"required": [
|
|
52736
|
+
"success",
|
|
52737
|
+
"failure"
|
|
52738
|
+
]
|
|
52739
|
+
}
|
|
52740
|
+
]
|
|
52741
|
+
},
|
|
52742
|
+
"successSchema": {
|
|
52743
|
+
"type": "object",
|
|
52744
|
+
"properties": {
|
|
52745
|
+
"success": {
|
|
52746
|
+
"const": true
|
|
52747
|
+
},
|
|
52748
|
+
"deletedCount": {
|
|
52749
|
+
"type": "integer",
|
|
52750
|
+
"minimum": 0
|
|
52751
|
+
}
|
|
52752
|
+
},
|
|
52753
|
+
"additionalProperties": false,
|
|
52754
|
+
"required": [
|
|
52755
|
+
"success",
|
|
52756
|
+
"deletedCount"
|
|
52757
|
+
]
|
|
52758
|
+
},
|
|
52759
|
+
"failureSchema": {
|
|
52760
|
+
"type": "object",
|
|
52761
|
+
"properties": {
|
|
52762
|
+
"success": {
|
|
52763
|
+
"const": false
|
|
52764
|
+
},
|
|
52765
|
+
"failure": {
|
|
52766
|
+
"type": "object",
|
|
52767
|
+
"properties": {
|
|
52768
|
+
"code": {
|
|
52769
|
+
"enum": [
|
|
52770
|
+
"INVALID_TARGET"
|
|
52771
|
+
]
|
|
52772
|
+
},
|
|
52773
|
+
"message": {
|
|
52774
|
+
"type": "string"
|
|
52775
|
+
},
|
|
52776
|
+
"details": {}
|
|
52777
|
+
},
|
|
52778
|
+
"additionalProperties": false,
|
|
52779
|
+
"required": [
|
|
52780
|
+
"code",
|
|
52781
|
+
"message"
|
|
52782
|
+
]
|
|
52783
|
+
}
|
|
52784
|
+
},
|
|
52785
|
+
"additionalProperties": false,
|
|
52786
|
+
"required": [
|
|
52787
|
+
"success",
|
|
52788
|
+
"failure"
|
|
52789
|
+
]
|
|
52790
|
+
},
|
|
52791
|
+
"intentGroup": "list",
|
|
52792
|
+
"intentAction": "delete"
|
|
52793
|
+
},
|
|
52579
52794
|
"doc.lists.indent": {
|
|
52580
52795
|
"operationId": "doc.lists.indent",
|
|
52581
52796
|
"sdkSurface": "document",
|
|
@@ -81487,6 +81702,41 @@ export const CONTRACT = {
|
|
|
81487
81702
|
"dryRun"
|
|
81488
81703
|
]
|
|
81489
81704
|
},
|
|
81705
|
+
"lists.delete": {
|
|
81706
|
+
"type": "object",
|
|
81707
|
+
"properties": {
|
|
81708
|
+
"available": {
|
|
81709
|
+
"type": "boolean"
|
|
81710
|
+
},
|
|
81711
|
+
"tracked": {
|
|
81712
|
+
"type": "boolean"
|
|
81713
|
+
},
|
|
81714
|
+
"dryRun": {
|
|
81715
|
+
"type": "boolean"
|
|
81716
|
+
},
|
|
81717
|
+
"reasons": {
|
|
81718
|
+
"type": "array",
|
|
81719
|
+
"items": {
|
|
81720
|
+
"enum": [
|
|
81721
|
+
"COMMAND_UNAVAILABLE",
|
|
81722
|
+
"HELPER_UNAVAILABLE",
|
|
81723
|
+
"OPERATION_UNAVAILABLE",
|
|
81724
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
81725
|
+
"DRY_RUN_UNAVAILABLE",
|
|
81726
|
+
"NAMESPACE_UNAVAILABLE",
|
|
81727
|
+
"STYLES_PART_MISSING",
|
|
81728
|
+
"COLLABORATION_ACTIVE"
|
|
81729
|
+
]
|
|
81730
|
+
}
|
|
81731
|
+
}
|
|
81732
|
+
},
|
|
81733
|
+
"additionalProperties": false,
|
|
81734
|
+
"required": [
|
|
81735
|
+
"available",
|
|
81736
|
+
"tracked",
|
|
81737
|
+
"dryRun"
|
|
81738
|
+
]
|
|
81739
|
+
},
|
|
81490
81740
|
"lists.indent": {
|
|
81491
81741
|
"type": "object",
|
|
81492
81742
|
"properties": {
|
|
@@ -83902,7 +84152,7 @@ export const CONTRACT = {
|
|
|
83902
84152
|
"dryRun"
|
|
83903
84153
|
]
|
|
83904
84154
|
},
|
|
83905
|
-
"tables.
|
|
84155
|
+
"tables.setCellText": {
|
|
83906
84156
|
"type": "object",
|
|
83907
84157
|
"properties": {
|
|
83908
84158
|
"available": {
|
|
@@ -83937,7 +84187,7 @@ export const CONTRACT = {
|
|
|
83937
84187
|
"dryRun"
|
|
83938
84188
|
]
|
|
83939
84189
|
},
|
|
83940
|
-
"tables.
|
|
84190
|
+
"tables.sort": {
|
|
83941
84191
|
"type": "object",
|
|
83942
84192
|
"properties": {
|
|
83943
84193
|
"available": {
|
|
@@ -83972,7 +84222,7 @@ export const CONTRACT = {
|
|
|
83972
84222
|
"dryRun"
|
|
83973
84223
|
]
|
|
83974
84224
|
},
|
|
83975
|
-
"tables.
|
|
84225
|
+
"tables.setAltText": {
|
|
83976
84226
|
"type": "object",
|
|
83977
84227
|
"properties": {
|
|
83978
84228
|
"available": {
|
|
@@ -84007,7 +84257,7 @@ export const CONTRACT = {
|
|
|
84007
84257
|
"dryRun"
|
|
84008
84258
|
]
|
|
84009
84259
|
},
|
|
84010
|
-
"tables.
|
|
84260
|
+
"tables.setStyle": {
|
|
84011
84261
|
"type": "object",
|
|
84012
84262
|
"properties": {
|
|
84013
84263
|
"available": {
|
|
@@ -84042,7 +84292,7 @@ export const CONTRACT = {
|
|
|
84042
84292
|
"dryRun"
|
|
84043
84293
|
]
|
|
84044
84294
|
},
|
|
84045
|
-
"tables.
|
|
84295
|
+
"tables.clearStyle": {
|
|
84046
84296
|
"type": "object",
|
|
84047
84297
|
"properties": {
|
|
84048
84298
|
"available": {
|
|
@@ -84077,7 +84327,7 @@ export const CONTRACT = {
|
|
|
84077
84327
|
"dryRun"
|
|
84078
84328
|
]
|
|
84079
84329
|
},
|
|
84080
|
-
"tables.
|
|
84330
|
+
"tables.setStyleOption": {
|
|
84081
84331
|
"type": "object",
|
|
84082
84332
|
"properties": {
|
|
84083
84333
|
"available": {
|
|
@@ -84112,7 +84362,7 @@ export const CONTRACT = {
|
|
|
84112
84362
|
"dryRun"
|
|
84113
84363
|
]
|
|
84114
84364
|
},
|
|
84115
|
-
"tables.
|
|
84365
|
+
"tables.setBorder": {
|
|
84116
84366
|
"type": "object",
|
|
84117
84367
|
"properties": {
|
|
84118
84368
|
"available": {
|
|
@@ -84147,7 +84397,7 @@ export const CONTRACT = {
|
|
|
84147
84397
|
"dryRun"
|
|
84148
84398
|
]
|
|
84149
84399
|
},
|
|
84150
|
-
"tables.
|
|
84400
|
+
"tables.clearBorder": {
|
|
84151
84401
|
"type": "object",
|
|
84152
84402
|
"properties": {
|
|
84153
84403
|
"available": {
|
|
@@ -84182,147 +84432,7 @@ export const CONTRACT = {
|
|
|
84182
84432
|
"dryRun"
|
|
84183
84433
|
]
|
|
84184
84434
|
},
|
|
84185
|
-
"tables.
|
|
84186
|
-
"type": "object",
|
|
84187
|
-
"properties": {
|
|
84188
|
-
"available": {
|
|
84189
|
-
"type": "boolean"
|
|
84190
|
-
},
|
|
84191
|
-
"tracked": {
|
|
84192
|
-
"type": "boolean"
|
|
84193
|
-
},
|
|
84194
|
-
"dryRun": {
|
|
84195
|
-
"type": "boolean"
|
|
84196
|
-
},
|
|
84197
|
-
"reasons": {
|
|
84198
|
-
"type": "array",
|
|
84199
|
-
"items": {
|
|
84200
|
-
"enum": [
|
|
84201
|
-
"COMMAND_UNAVAILABLE",
|
|
84202
|
-
"HELPER_UNAVAILABLE",
|
|
84203
|
-
"OPERATION_UNAVAILABLE",
|
|
84204
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
84205
|
-
"DRY_RUN_UNAVAILABLE",
|
|
84206
|
-
"NAMESPACE_UNAVAILABLE",
|
|
84207
|
-
"STYLES_PART_MISSING",
|
|
84208
|
-
"COLLABORATION_ACTIVE"
|
|
84209
|
-
]
|
|
84210
|
-
}
|
|
84211
|
-
}
|
|
84212
|
-
},
|
|
84213
|
-
"additionalProperties": false,
|
|
84214
|
-
"required": [
|
|
84215
|
-
"available",
|
|
84216
|
-
"tracked",
|
|
84217
|
-
"dryRun"
|
|
84218
|
-
]
|
|
84219
|
-
},
|
|
84220
|
-
"tables.clearShading": {
|
|
84221
|
-
"type": "object",
|
|
84222
|
-
"properties": {
|
|
84223
|
-
"available": {
|
|
84224
|
-
"type": "boolean"
|
|
84225
|
-
},
|
|
84226
|
-
"tracked": {
|
|
84227
|
-
"type": "boolean"
|
|
84228
|
-
},
|
|
84229
|
-
"dryRun": {
|
|
84230
|
-
"type": "boolean"
|
|
84231
|
-
},
|
|
84232
|
-
"reasons": {
|
|
84233
|
-
"type": "array",
|
|
84234
|
-
"items": {
|
|
84235
|
-
"enum": [
|
|
84236
|
-
"COMMAND_UNAVAILABLE",
|
|
84237
|
-
"HELPER_UNAVAILABLE",
|
|
84238
|
-
"OPERATION_UNAVAILABLE",
|
|
84239
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
84240
|
-
"DRY_RUN_UNAVAILABLE",
|
|
84241
|
-
"NAMESPACE_UNAVAILABLE",
|
|
84242
|
-
"STYLES_PART_MISSING",
|
|
84243
|
-
"COLLABORATION_ACTIVE"
|
|
84244
|
-
]
|
|
84245
|
-
}
|
|
84246
|
-
}
|
|
84247
|
-
},
|
|
84248
|
-
"additionalProperties": false,
|
|
84249
|
-
"required": [
|
|
84250
|
-
"available",
|
|
84251
|
-
"tracked",
|
|
84252
|
-
"dryRun"
|
|
84253
|
-
]
|
|
84254
|
-
},
|
|
84255
|
-
"tables.setTablePadding": {
|
|
84256
|
-
"type": "object",
|
|
84257
|
-
"properties": {
|
|
84258
|
-
"available": {
|
|
84259
|
-
"type": "boolean"
|
|
84260
|
-
},
|
|
84261
|
-
"tracked": {
|
|
84262
|
-
"type": "boolean"
|
|
84263
|
-
},
|
|
84264
|
-
"dryRun": {
|
|
84265
|
-
"type": "boolean"
|
|
84266
|
-
},
|
|
84267
|
-
"reasons": {
|
|
84268
|
-
"type": "array",
|
|
84269
|
-
"items": {
|
|
84270
|
-
"enum": [
|
|
84271
|
-
"COMMAND_UNAVAILABLE",
|
|
84272
|
-
"HELPER_UNAVAILABLE",
|
|
84273
|
-
"OPERATION_UNAVAILABLE",
|
|
84274
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
84275
|
-
"DRY_RUN_UNAVAILABLE",
|
|
84276
|
-
"NAMESPACE_UNAVAILABLE",
|
|
84277
|
-
"STYLES_PART_MISSING",
|
|
84278
|
-
"COLLABORATION_ACTIVE"
|
|
84279
|
-
]
|
|
84280
|
-
}
|
|
84281
|
-
}
|
|
84282
|
-
},
|
|
84283
|
-
"additionalProperties": false,
|
|
84284
|
-
"required": [
|
|
84285
|
-
"available",
|
|
84286
|
-
"tracked",
|
|
84287
|
-
"dryRun"
|
|
84288
|
-
]
|
|
84289
|
-
},
|
|
84290
|
-
"tables.setCellPadding": {
|
|
84291
|
-
"type": "object",
|
|
84292
|
-
"properties": {
|
|
84293
|
-
"available": {
|
|
84294
|
-
"type": "boolean"
|
|
84295
|
-
},
|
|
84296
|
-
"tracked": {
|
|
84297
|
-
"type": "boolean"
|
|
84298
|
-
},
|
|
84299
|
-
"dryRun": {
|
|
84300
|
-
"type": "boolean"
|
|
84301
|
-
},
|
|
84302
|
-
"reasons": {
|
|
84303
|
-
"type": "array",
|
|
84304
|
-
"items": {
|
|
84305
|
-
"enum": [
|
|
84306
|
-
"COMMAND_UNAVAILABLE",
|
|
84307
|
-
"HELPER_UNAVAILABLE",
|
|
84308
|
-
"OPERATION_UNAVAILABLE",
|
|
84309
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
84310
|
-
"DRY_RUN_UNAVAILABLE",
|
|
84311
|
-
"NAMESPACE_UNAVAILABLE",
|
|
84312
|
-
"STYLES_PART_MISSING",
|
|
84313
|
-
"COLLABORATION_ACTIVE"
|
|
84314
|
-
]
|
|
84315
|
-
}
|
|
84316
|
-
}
|
|
84317
|
-
},
|
|
84318
|
-
"additionalProperties": false,
|
|
84319
|
-
"required": [
|
|
84320
|
-
"available",
|
|
84321
|
-
"tracked",
|
|
84322
|
-
"dryRun"
|
|
84323
|
-
]
|
|
84324
|
-
},
|
|
84325
|
-
"tables.setCellSpacing": {
|
|
84435
|
+
"tables.applyBorderPreset": {
|
|
84326
84436
|
"type": "object",
|
|
84327
84437
|
"properties": {
|
|
84328
84438
|
"available": {
|
|
@@ -84357,7 +84467,7 @@ export const CONTRACT = {
|
|
|
84357
84467
|
"dryRun"
|
|
84358
84468
|
]
|
|
84359
84469
|
},
|
|
84360
|
-
"tables.
|
|
84470
|
+
"tables.setShading": {
|
|
84361
84471
|
"type": "object",
|
|
84362
84472
|
"properties": {
|
|
84363
84473
|
"available": {
|
|
@@ -84392,7 +84502,7 @@ export const CONTRACT = {
|
|
|
84392
84502
|
"dryRun"
|
|
84393
84503
|
]
|
|
84394
84504
|
},
|
|
84395
|
-
"tables.
|
|
84505
|
+
"tables.clearShading": {
|
|
84396
84506
|
"type": "object",
|
|
84397
84507
|
"properties": {
|
|
84398
84508
|
"available": {
|
|
@@ -84427,7 +84537,7 @@ export const CONTRACT = {
|
|
|
84427
84537
|
"dryRun"
|
|
84428
84538
|
]
|
|
84429
84539
|
},
|
|
84430
|
-
"tables.
|
|
84540
|
+
"tables.setTablePadding": {
|
|
84431
84541
|
"type": "object",
|
|
84432
84542
|
"properties": {
|
|
84433
84543
|
"available": {
|
|
@@ -84462,7 +84572,7 @@ export const CONTRACT = {
|
|
|
84462
84572
|
"dryRun"
|
|
84463
84573
|
]
|
|
84464
84574
|
},
|
|
84465
|
-
"tables.
|
|
84575
|
+
"tables.setCellPadding": {
|
|
84466
84576
|
"type": "object",
|
|
84467
84577
|
"properties": {
|
|
84468
84578
|
"available": {
|
|
@@ -84497,7 +84607,7 @@ export const CONTRACT = {
|
|
|
84497
84607
|
"dryRun"
|
|
84498
84608
|
]
|
|
84499
84609
|
},
|
|
84500
|
-
"tables.
|
|
84610
|
+
"tables.setCellSpacing": {
|
|
84501
84611
|
"type": "object",
|
|
84502
84612
|
"properties": {
|
|
84503
84613
|
"available": {
|
|
@@ -84532,7 +84642,7 @@ export const CONTRACT = {
|
|
|
84532
84642
|
"dryRun"
|
|
84533
84643
|
]
|
|
84534
84644
|
},
|
|
84535
|
-
"tables.
|
|
84645
|
+
"tables.clearCellSpacing": {
|
|
84536
84646
|
"type": "object",
|
|
84537
84647
|
"properties": {
|
|
84538
84648
|
"available": {
|
|
@@ -84567,7 +84677,7 @@ export const CONTRACT = {
|
|
|
84567
84677
|
"dryRun"
|
|
84568
84678
|
]
|
|
84569
84679
|
},
|
|
84570
|
-
"tables.
|
|
84680
|
+
"tables.applyStyle": {
|
|
84571
84681
|
"type": "object",
|
|
84572
84682
|
"properties": {
|
|
84573
84683
|
"available": {
|
|
@@ -84602,7 +84712,7 @@ export const CONTRACT = {
|
|
|
84602
84712
|
"dryRun"
|
|
84603
84713
|
]
|
|
84604
84714
|
},
|
|
84605
|
-
"tables.
|
|
84715
|
+
"tables.setBorders": {
|
|
84606
84716
|
"type": "object",
|
|
84607
84717
|
"properties": {
|
|
84608
84718
|
"available": {
|
|
@@ -84637,7 +84747,7 @@ export const CONTRACT = {
|
|
|
84637
84747
|
"dryRun"
|
|
84638
84748
|
]
|
|
84639
84749
|
},
|
|
84640
|
-
"tables.
|
|
84750
|
+
"tables.setTableOptions": {
|
|
84641
84751
|
"type": "object",
|
|
84642
84752
|
"properties": {
|
|
84643
84753
|
"available": {
|
|
@@ -84672,7 +84782,7 @@ export const CONTRACT = {
|
|
|
84672
84782
|
"dryRun"
|
|
84673
84783
|
]
|
|
84674
84784
|
},
|
|
84675
|
-
"tables.
|
|
84785
|
+
"tables.applyPreset": {
|
|
84676
84786
|
"type": "object",
|
|
84677
84787
|
"properties": {
|
|
84678
84788
|
"available": {
|
|
@@ -84707,7 +84817,7 @@ export const CONTRACT = {
|
|
|
84707
84817
|
"dryRun"
|
|
84708
84818
|
]
|
|
84709
84819
|
},
|
|
84710
|
-
"
|
|
84820
|
+
"tables.get": {
|
|
84711
84821
|
"type": "object",
|
|
84712
84822
|
"properties": {
|
|
84713
84823
|
"available": {
|
|
@@ -84742,7 +84852,7 @@ export const CONTRACT = {
|
|
|
84742
84852
|
"dryRun"
|
|
84743
84853
|
]
|
|
84744
84854
|
},
|
|
84745
|
-
"
|
|
84855
|
+
"tables.getCells": {
|
|
84746
84856
|
"type": "object",
|
|
84747
84857
|
"properties": {
|
|
84748
84858
|
"available": {
|
|
@@ -84777,7 +84887,7 @@ export const CONTRACT = {
|
|
|
84777
84887
|
"dryRun"
|
|
84778
84888
|
]
|
|
84779
84889
|
},
|
|
84780
|
-
"
|
|
84890
|
+
"tables.getProperties": {
|
|
84781
84891
|
"type": "object",
|
|
84782
84892
|
"properties": {
|
|
84783
84893
|
"available": {
|
|
@@ -84812,7 +84922,7 @@ export const CONTRACT = {
|
|
|
84812
84922
|
"dryRun"
|
|
84813
84923
|
]
|
|
84814
84924
|
},
|
|
84815
|
-
"
|
|
84925
|
+
"tables.getStyles": {
|
|
84816
84926
|
"type": "object",
|
|
84817
84927
|
"properties": {
|
|
84818
84928
|
"available": {
|
|
@@ -84847,7 +84957,7 @@ export const CONTRACT = {
|
|
|
84847
84957
|
"dryRun"
|
|
84848
84958
|
]
|
|
84849
84959
|
},
|
|
84850
|
-
"
|
|
84960
|
+
"tables.setDefaultStyle": {
|
|
84851
84961
|
"type": "object",
|
|
84852
84962
|
"properties": {
|
|
84853
84963
|
"available": {
|
|
@@ -84882,7 +84992,7 @@ export const CONTRACT = {
|
|
|
84882
84992
|
"dryRun"
|
|
84883
84993
|
]
|
|
84884
84994
|
},
|
|
84885
|
-
"
|
|
84995
|
+
"tables.clearDefaultStyle": {
|
|
84886
84996
|
"type": "object",
|
|
84887
84997
|
"properties": {
|
|
84888
84998
|
"available": {
|
|
@@ -84917,7 +85027,7 @@ export const CONTRACT = {
|
|
|
84917
85027
|
"dryRun"
|
|
84918
85028
|
]
|
|
84919
85029
|
},
|
|
84920
|
-
"
|
|
85030
|
+
"create.tableOfContents": {
|
|
84921
85031
|
"type": "object",
|
|
84922
85032
|
"properties": {
|
|
84923
85033
|
"available": {
|
|
@@ -84952,7 +85062,7 @@ export const CONTRACT = {
|
|
|
84952
85062
|
"dryRun"
|
|
84953
85063
|
]
|
|
84954
85064
|
},
|
|
84955
|
-
"toc.
|
|
85065
|
+
"toc.list": {
|
|
84956
85066
|
"type": "object",
|
|
84957
85067
|
"properties": {
|
|
84958
85068
|
"available": {
|
|
@@ -84987,7 +85097,7 @@ export const CONTRACT = {
|
|
|
84987
85097
|
"dryRun"
|
|
84988
85098
|
]
|
|
84989
85099
|
},
|
|
84990
|
-
"toc.
|
|
85100
|
+
"toc.get": {
|
|
84991
85101
|
"type": "object",
|
|
84992
85102
|
"properties": {
|
|
84993
85103
|
"available": {
|
|
@@ -85022,7 +85132,7 @@ export const CONTRACT = {
|
|
|
85022
85132
|
"dryRun"
|
|
85023
85133
|
]
|
|
85024
85134
|
},
|
|
85025
|
-
"toc.
|
|
85135
|
+
"toc.configure": {
|
|
85026
85136
|
"type": "object",
|
|
85027
85137
|
"properties": {
|
|
85028
85138
|
"available": {
|
|
@@ -85057,7 +85167,7 @@ export const CONTRACT = {
|
|
|
85057
85167
|
"dryRun"
|
|
85058
85168
|
]
|
|
85059
85169
|
},
|
|
85060
|
-
"toc.
|
|
85170
|
+
"toc.update": {
|
|
85061
85171
|
"type": "object",
|
|
85062
85172
|
"properties": {
|
|
85063
85173
|
"available": {
|
|
@@ -85092,7 +85202,7 @@ export const CONTRACT = {
|
|
|
85092
85202
|
"dryRun"
|
|
85093
85203
|
]
|
|
85094
85204
|
},
|
|
85095
|
-
"
|
|
85205
|
+
"toc.remove": {
|
|
85096
85206
|
"type": "object",
|
|
85097
85207
|
"properties": {
|
|
85098
85208
|
"available": {
|
|
@@ -85127,7 +85237,7 @@ export const CONTRACT = {
|
|
|
85127
85237
|
"dryRun"
|
|
85128
85238
|
]
|
|
85129
85239
|
},
|
|
85130
|
-
"
|
|
85240
|
+
"toc.markEntry": {
|
|
85131
85241
|
"type": "object",
|
|
85132
85242
|
"properties": {
|
|
85133
85243
|
"available": {
|
|
@@ -85162,7 +85272,7 @@ export const CONTRACT = {
|
|
|
85162
85272
|
"dryRun"
|
|
85163
85273
|
]
|
|
85164
85274
|
},
|
|
85165
|
-
"
|
|
85275
|
+
"toc.unmarkEntry": {
|
|
85166
85276
|
"type": "object",
|
|
85167
85277
|
"properties": {
|
|
85168
85278
|
"available": {
|
|
@@ -85197,7 +85307,7 @@ export const CONTRACT = {
|
|
|
85197
85307
|
"dryRun"
|
|
85198
85308
|
]
|
|
85199
85309
|
},
|
|
85200
|
-
"
|
|
85310
|
+
"toc.listEntries": {
|
|
85201
85311
|
"type": "object",
|
|
85202
85312
|
"properties": {
|
|
85203
85313
|
"available": {
|
|
@@ -85232,7 +85342,7 @@ export const CONTRACT = {
|
|
|
85232
85342
|
"dryRun"
|
|
85233
85343
|
]
|
|
85234
85344
|
},
|
|
85235
|
-
"
|
|
85345
|
+
"toc.getEntry": {
|
|
85236
85346
|
"type": "object",
|
|
85237
85347
|
"properties": {
|
|
85238
85348
|
"available": {
|
|
@@ -85267,7 +85377,7 @@ export const CONTRACT = {
|
|
|
85267
85377
|
"dryRun"
|
|
85268
85378
|
]
|
|
85269
85379
|
},
|
|
85270
|
-
"
|
|
85380
|
+
"toc.editEntry": {
|
|
85271
85381
|
"type": "object",
|
|
85272
85382
|
"properties": {
|
|
85273
85383
|
"available": {
|
|
@@ -85302,7 +85412,7 @@ export const CONTRACT = {
|
|
|
85302
85412
|
"dryRun"
|
|
85303
85413
|
]
|
|
85304
85414
|
},
|
|
85305
|
-
"
|
|
85415
|
+
"history.get": {
|
|
85306
85416
|
"type": "object",
|
|
85307
85417
|
"properties": {
|
|
85308
85418
|
"available": {
|
|
@@ -85337,7 +85447,7 @@ export const CONTRACT = {
|
|
|
85337
85447
|
"dryRun"
|
|
85338
85448
|
]
|
|
85339
85449
|
},
|
|
85340
|
-
"
|
|
85450
|
+
"history.undo": {
|
|
85341
85451
|
"type": "object",
|
|
85342
85452
|
"properties": {
|
|
85343
85453
|
"available": {
|
|
@@ -85372,7 +85482,7 @@ export const CONTRACT = {
|
|
|
85372
85482
|
"dryRun"
|
|
85373
85483
|
]
|
|
85374
85484
|
},
|
|
85375
|
-
"
|
|
85485
|
+
"history.redo": {
|
|
85376
85486
|
"type": "object",
|
|
85377
85487
|
"properties": {
|
|
85378
85488
|
"available": {
|
|
@@ -85407,7 +85517,7 @@ export const CONTRACT = {
|
|
|
85407
85517
|
"dryRun"
|
|
85408
85518
|
]
|
|
85409
85519
|
},
|
|
85410
|
-
"
|
|
85520
|
+
"create.image": {
|
|
85411
85521
|
"type": "object",
|
|
85412
85522
|
"properties": {
|
|
85413
85523
|
"available": {
|
|
@@ -85442,7 +85552,7 @@ export const CONTRACT = {
|
|
|
85442
85552
|
"dryRun"
|
|
85443
85553
|
]
|
|
85444
85554
|
},
|
|
85445
|
-
"images.
|
|
85555
|
+
"images.list": {
|
|
85446
85556
|
"type": "object",
|
|
85447
85557
|
"properties": {
|
|
85448
85558
|
"available": {
|
|
@@ -85477,7 +85587,7 @@ export const CONTRACT = {
|
|
|
85477
85587
|
"dryRun"
|
|
85478
85588
|
]
|
|
85479
85589
|
},
|
|
85480
|
-
"images.
|
|
85590
|
+
"images.get": {
|
|
85481
85591
|
"type": "object",
|
|
85482
85592
|
"properties": {
|
|
85483
85593
|
"available": {
|
|
@@ -85512,7 +85622,7 @@ export const CONTRACT = {
|
|
|
85512
85622
|
"dryRun"
|
|
85513
85623
|
]
|
|
85514
85624
|
},
|
|
85515
|
-
"images.
|
|
85625
|
+
"images.delete": {
|
|
85516
85626
|
"type": "object",
|
|
85517
85627
|
"properties": {
|
|
85518
85628
|
"available": {
|
|
@@ -85547,7 +85657,7 @@ export const CONTRACT = {
|
|
|
85547
85657
|
"dryRun"
|
|
85548
85658
|
]
|
|
85549
85659
|
},
|
|
85550
|
-
"images.
|
|
85660
|
+
"images.move": {
|
|
85551
85661
|
"type": "object",
|
|
85552
85662
|
"properties": {
|
|
85553
85663
|
"available": {
|
|
@@ -85582,7 +85692,7 @@ export const CONTRACT = {
|
|
|
85582
85692
|
"dryRun"
|
|
85583
85693
|
]
|
|
85584
85694
|
},
|
|
85585
|
-
"images.
|
|
85695
|
+
"images.convertToInline": {
|
|
85586
85696
|
"type": "object",
|
|
85587
85697
|
"properties": {
|
|
85588
85698
|
"available": {
|
|
@@ -85617,7 +85727,7 @@ export const CONTRACT = {
|
|
|
85617
85727
|
"dryRun"
|
|
85618
85728
|
]
|
|
85619
85729
|
},
|
|
85620
|
-
"images.
|
|
85730
|
+
"images.convertToFloating": {
|
|
85621
85731
|
"type": "object",
|
|
85622
85732
|
"properties": {
|
|
85623
85733
|
"available": {
|
|
@@ -85652,7 +85762,7 @@ export const CONTRACT = {
|
|
|
85652
85762
|
"dryRun"
|
|
85653
85763
|
]
|
|
85654
85764
|
},
|
|
85655
|
-
"images.
|
|
85765
|
+
"images.setSize": {
|
|
85656
85766
|
"type": "object",
|
|
85657
85767
|
"properties": {
|
|
85658
85768
|
"available": {
|
|
@@ -85687,7 +85797,7 @@ export const CONTRACT = {
|
|
|
85687
85797
|
"dryRun"
|
|
85688
85798
|
]
|
|
85689
85799
|
},
|
|
85690
|
-
"images.
|
|
85800
|
+
"images.setWrapType": {
|
|
85691
85801
|
"type": "object",
|
|
85692
85802
|
"properties": {
|
|
85693
85803
|
"available": {
|
|
@@ -85722,7 +85832,7 @@ export const CONTRACT = {
|
|
|
85722
85832
|
"dryRun"
|
|
85723
85833
|
]
|
|
85724
85834
|
},
|
|
85725
|
-
"images.
|
|
85835
|
+
"images.setWrapSide": {
|
|
85726
85836
|
"type": "object",
|
|
85727
85837
|
"properties": {
|
|
85728
85838
|
"available": {
|
|
@@ -85757,7 +85867,7 @@ export const CONTRACT = {
|
|
|
85757
85867
|
"dryRun"
|
|
85758
85868
|
]
|
|
85759
85869
|
},
|
|
85760
|
-
"images.
|
|
85870
|
+
"images.setWrapDistances": {
|
|
85761
85871
|
"type": "object",
|
|
85762
85872
|
"properties": {
|
|
85763
85873
|
"available": {
|
|
@@ -85792,7 +85902,7 @@ export const CONTRACT = {
|
|
|
85792
85902
|
"dryRun"
|
|
85793
85903
|
]
|
|
85794
85904
|
},
|
|
85795
|
-
"images.
|
|
85905
|
+
"images.setPosition": {
|
|
85796
85906
|
"type": "object",
|
|
85797
85907
|
"properties": {
|
|
85798
85908
|
"available": {
|
|
@@ -85827,7 +85937,7 @@ export const CONTRACT = {
|
|
|
85827
85937
|
"dryRun"
|
|
85828
85938
|
]
|
|
85829
85939
|
},
|
|
85830
|
-
"images.
|
|
85940
|
+
"images.setAnchorOptions": {
|
|
85831
85941
|
"type": "object",
|
|
85832
85942
|
"properties": {
|
|
85833
85943
|
"available": {
|
|
@@ -85862,7 +85972,7 @@ export const CONTRACT = {
|
|
|
85862
85972
|
"dryRun"
|
|
85863
85973
|
]
|
|
85864
85974
|
},
|
|
85865
|
-
"images.
|
|
85975
|
+
"images.setZOrder": {
|
|
85866
85976
|
"type": "object",
|
|
85867
85977
|
"properties": {
|
|
85868
85978
|
"available": {
|
|
@@ -85897,7 +86007,7 @@ export const CONTRACT = {
|
|
|
85897
86007
|
"dryRun"
|
|
85898
86008
|
]
|
|
85899
86009
|
},
|
|
85900
|
-
"images.
|
|
86010
|
+
"images.scale": {
|
|
85901
86011
|
"type": "object",
|
|
85902
86012
|
"properties": {
|
|
85903
86013
|
"available": {
|
|
@@ -85932,7 +86042,7 @@ export const CONTRACT = {
|
|
|
85932
86042
|
"dryRun"
|
|
85933
86043
|
]
|
|
85934
86044
|
},
|
|
85935
|
-
"images.
|
|
86045
|
+
"images.setLockAspectRatio": {
|
|
85936
86046
|
"type": "object",
|
|
85937
86047
|
"properties": {
|
|
85938
86048
|
"available": {
|
|
@@ -85967,7 +86077,7 @@ export const CONTRACT = {
|
|
|
85967
86077
|
"dryRun"
|
|
85968
86078
|
]
|
|
85969
86079
|
},
|
|
85970
|
-
"images.
|
|
86080
|
+
"images.rotate": {
|
|
85971
86081
|
"type": "object",
|
|
85972
86082
|
"properties": {
|
|
85973
86083
|
"available": {
|
|
@@ -86002,7 +86112,7 @@ export const CONTRACT = {
|
|
|
86002
86112
|
"dryRun"
|
|
86003
86113
|
]
|
|
86004
86114
|
},
|
|
86005
|
-
"images.
|
|
86115
|
+
"images.flip": {
|
|
86006
86116
|
"type": "object",
|
|
86007
86117
|
"properties": {
|
|
86008
86118
|
"available": {
|
|
@@ -86037,7 +86147,7 @@ export const CONTRACT = {
|
|
|
86037
86147
|
"dryRun"
|
|
86038
86148
|
]
|
|
86039
86149
|
},
|
|
86040
|
-
"images.
|
|
86150
|
+
"images.crop": {
|
|
86041
86151
|
"type": "object",
|
|
86042
86152
|
"properties": {
|
|
86043
86153
|
"available": {
|
|
@@ -86072,7 +86182,7 @@ export const CONTRACT = {
|
|
|
86072
86182
|
"dryRun"
|
|
86073
86183
|
]
|
|
86074
86184
|
},
|
|
86075
|
-
"images.
|
|
86185
|
+
"images.resetCrop": {
|
|
86076
86186
|
"type": "object",
|
|
86077
86187
|
"properties": {
|
|
86078
86188
|
"available": {
|
|
@@ -86107,7 +86217,7 @@ export const CONTRACT = {
|
|
|
86107
86217
|
"dryRun"
|
|
86108
86218
|
]
|
|
86109
86219
|
},
|
|
86110
|
-
"images.
|
|
86220
|
+
"images.replaceSource": {
|
|
86111
86221
|
"type": "object",
|
|
86112
86222
|
"properties": {
|
|
86113
86223
|
"available": {
|
|
@@ -86142,7 +86252,7 @@ export const CONTRACT = {
|
|
|
86142
86252
|
"dryRun"
|
|
86143
86253
|
]
|
|
86144
86254
|
},
|
|
86145
|
-
"images.
|
|
86255
|
+
"images.setAltText": {
|
|
86146
86256
|
"type": "object",
|
|
86147
86257
|
"properties": {
|
|
86148
86258
|
"available": {
|
|
@@ -86177,7 +86287,7 @@ export const CONTRACT = {
|
|
|
86177
86287
|
"dryRun"
|
|
86178
86288
|
]
|
|
86179
86289
|
},
|
|
86180
|
-
"
|
|
86290
|
+
"images.setDecorative": {
|
|
86181
86291
|
"type": "object",
|
|
86182
86292
|
"properties": {
|
|
86183
86293
|
"available": {
|
|
@@ -86212,7 +86322,7 @@ export const CONTRACT = {
|
|
|
86212
86322
|
"dryRun"
|
|
86213
86323
|
]
|
|
86214
86324
|
},
|
|
86215
|
-
"
|
|
86325
|
+
"images.setName": {
|
|
86216
86326
|
"type": "object",
|
|
86217
86327
|
"properties": {
|
|
86218
86328
|
"available": {
|
|
@@ -86247,7 +86357,7 @@ export const CONTRACT = {
|
|
|
86247
86357
|
"dryRun"
|
|
86248
86358
|
]
|
|
86249
86359
|
},
|
|
86250
|
-
"
|
|
86360
|
+
"images.setHyperlink": {
|
|
86251
86361
|
"type": "object",
|
|
86252
86362
|
"properties": {
|
|
86253
86363
|
"available": {
|
|
@@ -86282,7 +86392,7 @@ export const CONTRACT = {
|
|
|
86282
86392
|
"dryRun"
|
|
86283
86393
|
]
|
|
86284
86394
|
},
|
|
86285
|
-
"
|
|
86395
|
+
"images.insertCaption": {
|
|
86286
86396
|
"type": "object",
|
|
86287
86397
|
"properties": {
|
|
86288
86398
|
"available": {
|
|
@@ -86317,7 +86427,7 @@ export const CONTRACT = {
|
|
|
86317
86427
|
"dryRun"
|
|
86318
86428
|
]
|
|
86319
86429
|
},
|
|
86320
|
-
"
|
|
86430
|
+
"images.updateCaption": {
|
|
86321
86431
|
"type": "object",
|
|
86322
86432
|
"properties": {
|
|
86323
86433
|
"available": {
|
|
@@ -86352,7 +86462,7 @@ export const CONTRACT = {
|
|
|
86352
86462
|
"dryRun"
|
|
86353
86463
|
]
|
|
86354
86464
|
},
|
|
86355
|
-
"
|
|
86465
|
+
"images.removeCaption": {
|
|
86356
86466
|
"type": "object",
|
|
86357
86467
|
"properties": {
|
|
86358
86468
|
"available": {
|
|
@@ -86387,7 +86497,7 @@ export const CONTRACT = {
|
|
|
86387
86497
|
"dryRun"
|
|
86388
86498
|
]
|
|
86389
86499
|
},
|
|
86390
|
-
"
|
|
86500
|
+
"hyperlinks.list": {
|
|
86391
86501
|
"type": "object",
|
|
86392
86502
|
"properties": {
|
|
86393
86503
|
"available": {
|
|
@@ -86422,7 +86532,7 @@ export const CONTRACT = {
|
|
|
86422
86532
|
"dryRun"
|
|
86423
86533
|
]
|
|
86424
86534
|
},
|
|
86425
|
-
"
|
|
86535
|
+
"hyperlinks.get": {
|
|
86426
86536
|
"type": "object",
|
|
86427
86537
|
"properties": {
|
|
86428
86538
|
"available": {
|
|
@@ -86457,7 +86567,7 @@ export const CONTRACT = {
|
|
|
86457
86567
|
"dryRun"
|
|
86458
86568
|
]
|
|
86459
86569
|
},
|
|
86460
|
-
"
|
|
86570
|
+
"hyperlinks.wrap": {
|
|
86461
86571
|
"type": "object",
|
|
86462
86572
|
"properties": {
|
|
86463
86573
|
"available": {
|
|
@@ -86492,7 +86602,7 @@ export const CONTRACT = {
|
|
|
86492
86602
|
"dryRun"
|
|
86493
86603
|
]
|
|
86494
86604
|
},
|
|
86495
|
-
"
|
|
86605
|
+
"hyperlinks.insert": {
|
|
86496
86606
|
"type": "object",
|
|
86497
86607
|
"properties": {
|
|
86498
86608
|
"available": {
|
|
@@ -86527,7 +86637,7 @@ export const CONTRACT = {
|
|
|
86527
86637
|
"dryRun"
|
|
86528
86638
|
]
|
|
86529
86639
|
},
|
|
86530
|
-
"
|
|
86640
|
+
"hyperlinks.patch": {
|
|
86531
86641
|
"type": "object",
|
|
86532
86642
|
"properties": {
|
|
86533
86643
|
"available": {
|
|
@@ -86562,7 +86672,7 @@ export const CONTRACT = {
|
|
|
86562
86672
|
"dryRun"
|
|
86563
86673
|
]
|
|
86564
86674
|
},
|
|
86565
|
-
"
|
|
86675
|
+
"hyperlinks.remove": {
|
|
86566
86676
|
"type": "object",
|
|
86567
86677
|
"properties": {
|
|
86568
86678
|
"available": {
|
|
@@ -86597,7 +86707,7 @@ export const CONTRACT = {
|
|
|
86597
86707
|
"dryRun"
|
|
86598
86708
|
]
|
|
86599
86709
|
},
|
|
86600
|
-
"headerFooters.
|
|
86710
|
+
"headerFooters.list": {
|
|
86601
86711
|
"type": "object",
|
|
86602
86712
|
"properties": {
|
|
86603
86713
|
"available": {
|
|
@@ -86632,7 +86742,217 @@ export const CONTRACT = {
|
|
|
86632
86742
|
"dryRun"
|
|
86633
86743
|
]
|
|
86634
86744
|
},
|
|
86635
|
-
"headerFooters.
|
|
86745
|
+
"headerFooters.get": {
|
|
86746
|
+
"type": "object",
|
|
86747
|
+
"properties": {
|
|
86748
|
+
"available": {
|
|
86749
|
+
"type": "boolean"
|
|
86750
|
+
},
|
|
86751
|
+
"tracked": {
|
|
86752
|
+
"type": "boolean"
|
|
86753
|
+
},
|
|
86754
|
+
"dryRun": {
|
|
86755
|
+
"type": "boolean"
|
|
86756
|
+
},
|
|
86757
|
+
"reasons": {
|
|
86758
|
+
"type": "array",
|
|
86759
|
+
"items": {
|
|
86760
|
+
"enum": [
|
|
86761
|
+
"COMMAND_UNAVAILABLE",
|
|
86762
|
+
"HELPER_UNAVAILABLE",
|
|
86763
|
+
"OPERATION_UNAVAILABLE",
|
|
86764
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
86765
|
+
"DRY_RUN_UNAVAILABLE",
|
|
86766
|
+
"NAMESPACE_UNAVAILABLE",
|
|
86767
|
+
"STYLES_PART_MISSING",
|
|
86768
|
+
"COLLABORATION_ACTIVE"
|
|
86769
|
+
]
|
|
86770
|
+
}
|
|
86771
|
+
}
|
|
86772
|
+
},
|
|
86773
|
+
"additionalProperties": false,
|
|
86774
|
+
"required": [
|
|
86775
|
+
"available",
|
|
86776
|
+
"tracked",
|
|
86777
|
+
"dryRun"
|
|
86778
|
+
]
|
|
86779
|
+
},
|
|
86780
|
+
"headerFooters.resolve": {
|
|
86781
|
+
"type": "object",
|
|
86782
|
+
"properties": {
|
|
86783
|
+
"available": {
|
|
86784
|
+
"type": "boolean"
|
|
86785
|
+
},
|
|
86786
|
+
"tracked": {
|
|
86787
|
+
"type": "boolean"
|
|
86788
|
+
},
|
|
86789
|
+
"dryRun": {
|
|
86790
|
+
"type": "boolean"
|
|
86791
|
+
},
|
|
86792
|
+
"reasons": {
|
|
86793
|
+
"type": "array",
|
|
86794
|
+
"items": {
|
|
86795
|
+
"enum": [
|
|
86796
|
+
"COMMAND_UNAVAILABLE",
|
|
86797
|
+
"HELPER_UNAVAILABLE",
|
|
86798
|
+
"OPERATION_UNAVAILABLE",
|
|
86799
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
86800
|
+
"DRY_RUN_UNAVAILABLE",
|
|
86801
|
+
"NAMESPACE_UNAVAILABLE",
|
|
86802
|
+
"STYLES_PART_MISSING",
|
|
86803
|
+
"COLLABORATION_ACTIVE"
|
|
86804
|
+
]
|
|
86805
|
+
}
|
|
86806
|
+
}
|
|
86807
|
+
},
|
|
86808
|
+
"additionalProperties": false,
|
|
86809
|
+
"required": [
|
|
86810
|
+
"available",
|
|
86811
|
+
"tracked",
|
|
86812
|
+
"dryRun"
|
|
86813
|
+
]
|
|
86814
|
+
},
|
|
86815
|
+
"headerFooters.refs.set": {
|
|
86816
|
+
"type": "object",
|
|
86817
|
+
"properties": {
|
|
86818
|
+
"available": {
|
|
86819
|
+
"type": "boolean"
|
|
86820
|
+
},
|
|
86821
|
+
"tracked": {
|
|
86822
|
+
"type": "boolean"
|
|
86823
|
+
},
|
|
86824
|
+
"dryRun": {
|
|
86825
|
+
"type": "boolean"
|
|
86826
|
+
},
|
|
86827
|
+
"reasons": {
|
|
86828
|
+
"type": "array",
|
|
86829
|
+
"items": {
|
|
86830
|
+
"enum": [
|
|
86831
|
+
"COMMAND_UNAVAILABLE",
|
|
86832
|
+
"HELPER_UNAVAILABLE",
|
|
86833
|
+
"OPERATION_UNAVAILABLE",
|
|
86834
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
86835
|
+
"DRY_RUN_UNAVAILABLE",
|
|
86836
|
+
"NAMESPACE_UNAVAILABLE",
|
|
86837
|
+
"STYLES_PART_MISSING",
|
|
86838
|
+
"COLLABORATION_ACTIVE"
|
|
86839
|
+
]
|
|
86840
|
+
}
|
|
86841
|
+
}
|
|
86842
|
+
},
|
|
86843
|
+
"additionalProperties": false,
|
|
86844
|
+
"required": [
|
|
86845
|
+
"available",
|
|
86846
|
+
"tracked",
|
|
86847
|
+
"dryRun"
|
|
86848
|
+
]
|
|
86849
|
+
},
|
|
86850
|
+
"headerFooters.refs.clear": {
|
|
86851
|
+
"type": "object",
|
|
86852
|
+
"properties": {
|
|
86853
|
+
"available": {
|
|
86854
|
+
"type": "boolean"
|
|
86855
|
+
},
|
|
86856
|
+
"tracked": {
|
|
86857
|
+
"type": "boolean"
|
|
86858
|
+
},
|
|
86859
|
+
"dryRun": {
|
|
86860
|
+
"type": "boolean"
|
|
86861
|
+
},
|
|
86862
|
+
"reasons": {
|
|
86863
|
+
"type": "array",
|
|
86864
|
+
"items": {
|
|
86865
|
+
"enum": [
|
|
86866
|
+
"COMMAND_UNAVAILABLE",
|
|
86867
|
+
"HELPER_UNAVAILABLE",
|
|
86868
|
+
"OPERATION_UNAVAILABLE",
|
|
86869
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
86870
|
+
"DRY_RUN_UNAVAILABLE",
|
|
86871
|
+
"NAMESPACE_UNAVAILABLE",
|
|
86872
|
+
"STYLES_PART_MISSING",
|
|
86873
|
+
"COLLABORATION_ACTIVE"
|
|
86874
|
+
]
|
|
86875
|
+
}
|
|
86876
|
+
}
|
|
86877
|
+
},
|
|
86878
|
+
"additionalProperties": false,
|
|
86879
|
+
"required": [
|
|
86880
|
+
"available",
|
|
86881
|
+
"tracked",
|
|
86882
|
+
"dryRun"
|
|
86883
|
+
]
|
|
86884
|
+
},
|
|
86885
|
+
"headerFooters.refs.setLinkedToPrevious": {
|
|
86886
|
+
"type": "object",
|
|
86887
|
+
"properties": {
|
|
86888
|
+
"available": {
|
|
86889
|
+
"type": "boolean"
|
|
86890
|
+
},
|
|
86891
|
+
"tracked": {
|
|
86892
|
+
"type": "boolean"
|
|
86893
|
+
},
|
|
86894
|
+
"dryRun": {
|
|
86895
|
+
"type": "boolean"
|
|
86896
|
+
},
|
|
86897
|
+
"reasons": {
|
|
86898
|
+
"type": "array",
|
|
86899
|
+
"items": {
|
|
86900
|
+
"enum": [
|
|
86901
|
+
"COMMAND_UNAVAILABLE",
|
|
86902
|
+
"HELPER_UNAVAILABLE",
|
|
86903
|
+
"OPERATION_UNAVAILABLE",
|
|
86904
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
86905
|
+
"DRY_RUN_UNAVAILABLE",
|
|
86906
|
+
"NAMESPACE_UNAVAILABLE",
|
|
86907
|
+
"STYLES_PART_MISSING",
|
|
86908
|
+
"COLLABORATION_ACTIVE"
|
|
86909
|
+
]
|
|
86910
|
+
}
|
|
86911
|
+
}
|
|
86912
|
+
},
|
|
86913
|
+
"additionalProperties": false,
|
|
86914
|
+
"required": [
|
|
86915
|
+
"available",
|
|
86916
|
+
"tracked",
|
|
86917
|
+
"dryRun"
|
|
86918
|
+
]
|
|
86919
|
+
},
|
|
86920
|
+
"headerFooters.parts.list": {
|
|
86921
|
+
"type": "object",
|
|
86922
|
+
"properties": {
|
|
86923
|
+
"available": {
|
|
86924
|
+
"type": "boolean"
|
|
86925
|
+
},
|
|
86926
|
+
"tracked": {
|
|
86927
|
+
"type": "boolean"
|
|
86928
|
+
},
|
|
86929
|
+
"dryRun": {
|
|
86930
|
+
"type": "boolean"
|
|
86931
|
+
},
|
|
86932
|
+
"reasons": {
|
|
86933
|
+
"type": "array",
|
|
86934
|
+
"items": {
|
|
86935
|
+
"enum": [
|
|
86936
|
+
"COMMAND_UNAVAILABLE",
|
|
86937
|
+
"HELPER_UNAVAILABLE",
|
|
86938
|
+
"OPERATION_UNAVAILABLE",
|
|
86939
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
86940
|
+
"DRY_RUN_UNAVAILABLE",
|
|
86941
|
+
"NAMESPACE_UNAVAILABLE",
|
|
86942
|
+
"STYLES_PART_MISSING",
|
|
86943
|
+
"COLLABORATION_ACTIVE"
|
|
86944
|
+
]
|
|
86945
|
+
}
|
|
86946
|
+
}
|
|
86947
|
+
},
|
|
86948
|
+
"additionalProperties": false,
|
|
86949
|
+
"required": [
|
|
86950
|
+
"available",
|
|
86951
|
+
"tracked",
|
|
86952
|
+
"dryRun"
|
|
86953
|
+
]
|
|
86954
|
+
},
|
|
86955
|
+
"headerFooters.parts.create": {
|
|
86636
86956
|
"type": "object",
|
|
86637
86957
|
"properties": {
|
|
86638
86958
|
"available": {
|
|
@@ -91365,6 +91685,7 @@ export const CONTRACT = {
|
|
|
91365
91685
|
"lists.create",
|
|
91366
91686
|
"lists.attach",
|
|
91367
91687
|
"lists.detach",
|
|
91688
|
+
"lists.delete",
|
|
91368
91689
|
"lists.indent",
|
|
91369
91690
|
"lists.outdent",
|
|
91370
91691
|
"lists.join",
|
|
@@ -91434,6 +91755,7 @@ export const CONTRACT = {
|
|
|
91434
91755
|
"tables.unmergeCells",
|
|
91435
91756
|
"tables.splitCell",
|
|
91436
91757
|
"tables.setCellProperties",
|
|
91758
|
+
"tables.setCellText",
|
|
91437
91759
|
"tables.sort",
|
|
91438
91760
|
"tables.setAltText",
|
|
91439
91761
|
"tables.setStyle",
|
|
@@ -91451,6 +91773,7 @@ export const CONTRACT = {
|
|
|
91451
91773
|
"tables.applyStyle",
|
|
91452
91774
|
"tables.setBorders",
|
|
91453
91775
|
"tables.setTableOptions",
|
|
91776
|
+
"tables.applyPreset",
|
|
91454
91777
|
"tables.get",
|
|
91455
91778
|
"tables.getCells",
|
|
91456
91779
|
"tables.getProperties",
|
|
@@ -92784,7 +93107,9 @@ export const CONTRACT = {
|
|
|
92784
93107
|
"success",
|
|
92785
93108
|
"failure"
|
|
92786
93109
|
]
|
|
92787
|
-
}
|
|
93110
|
+
},
|
|
93111
|
+
"intentGroup": "table",
|
|
93112
|
+
"intentAction": "delete"
|
|
92788
93113
|
},
|
|
92789
93114
|
"doc.tables.clearContents": {
|
|
92790
93115
|
"operationId": "doc.tables.clearContents",
|
|
@@ -94410,7 +94735,9 @@ export const CONTRACT = {
|
|
|
94410
94735
|
"success",
|
|
94411
94736
|
"failure"
|
|
94412
94737
|
]
|
|
94413
|
-
}
|
|
94738
|
+
},
|
|
94739
|
+
"intentGroup": "table",
|
|
94740
|
+
"intentAction": "set_layout"
|
|
94414
94741
|
},
|
|
94415
94742
|
"doc.tables.insertRow": {
|
|
94416
94743
|
"operationId": "doc.tables.insertRow",
|
|
@@ -94421,7 +94748,7 @@ export const CONTRACT = {
|
|
|
94421
94748
|
"insert-row"
|
|
94422
94749
|
],
|
|
94423
94750
|
"category": "tables",
|
|
94424
|
-
"description": "Insert a new row into the target table.",
|
|
94751
|
+
"description": "Insert a new row into the target table. The new row is cloned from an adjacent row, so it inherits the existing cell shading, borders, alignment, and padding. No follow-up styling call is needed unless the new row should look different from the rest of the table.",
|
|
94425
94752
|
"requiresDocumentContext": true,
|
|
94426
94753
|
"docRequirement": "optional",
|
|
94427
94754
|
"responseEnvelopeKey": "result",
|
|
@@ -94530,7 +94857,6 @@ export const CONTRACT = {
|
|
|
94530
94857
|
"name": "position",
|
|
94531
94858
|
"kind": "flag",
|
|
94532
94859
|
"type": "string",
|
|
94533
|
-
"required": true,
|
|
94534
94860
|
"schema": {
|
|
94535
94861
|
"oneOf": [
|
|
94536
94862
|
{
|
|
@@ -94645,6 +94971,48 @@ export const CONTRACT = {
|
|
|
94645
94971
|
"rowIndex",
|
|
94646
94972
|
"position"
|
|
94647
94973
|
]
|
|
94974
|
+
},
|
|
94975
|
+
{
|
|
94976
|
+
"type": "object",
|
|
94977
|
+
"properties": {
|
|
94978
|
+
"target": {
|
|
94979
|
+
"$ref": "#/$defs/TableAddress"
|
|
94980
|
+
},
|
|
94981
|
+
"nodeId": {
|
|
94982
|
+
"type": "string"
|
|
94983
|
+
},
|
|
94984
|
+
"count": {
|
|
94985
|
+
"type": "integer",
|
|
94986
|
+
"minimum": 1
|
|
94987
|
+
}
|
|
94988
|
+
},
|
|
94989
|
+
"additionalProperties": false,
|
|
94990
|
+
"oneOf": [
|
|
94991
|
+
{
|
|
94992
|
+
"required": [
|
|
94993
|
+
"target"
|
|
94994
|
+
]
|
|
94995
|
+
},
|
|
94996
|
+
{
|
|
94997
|
+
"required": [
|
|
94998
|
+
"nodeId"
|
|
94999
|
+
]
|
|
95000
|
+
}
|
|
95001
|
+
],
|
|
95002
|
+
"not": {
|
|
95003
|
+
"anyOf": [
|
|
95004
|
+
{
|
|
95005
|
+
"required": [
|
|
95006
|
+
"rowIndex"
|
|
95007
|
+
]
|
|
95008
|
+
},
|
|
95009
|
+
{
|
|
95010
|
+
"required": [
|
|
95011
|
+
"position"
|
|
95012
|
+
]
|
|
95013
|
+
}
|
|
95014
|
+
]
|
|
95015
|
+
}
|
|
94648
95016
|
}
|
|
94649
95017
|
]
|
|
94650
95018
|
},
|
|
@@ -94763,7 +95131,9 @@ export const CONTRACT = {
|
|
|
94763
95131
|
"success",
|
|
94764
95132
|
"failure"
|
|
94765
95133
|
]
|
|
94766
|
-
}
|
|
95134
|
+
},
|
|
95135
|
+
"intentGroup": "table",
|
|
95136
|
+
"intentAction": "insert_row"
|
|
94767
95137
|
},
|
|
94768
95138
|
"doc.tables.deleteRow": {
|
|
94769
95139
|
"operationId": "doc.tables.deleteRow",
|
|
@@ -95062,7 +95432,9 @@ export const CONTRACT = {
|
|
|
95062
95432
|
"success",
|
|
95063
95433
|
"failure"
|
|
95064
95434
|
]
|
|
95065
|
-
}
|
|
95435
|
+
},
|
|
95436
|
+
"intentGroup": "table",
|
|
95437
|
+
"intentAction": "delete_row"
|
|
95066
95438
|
},
|
|
95067
95439
|
"doc.tables.setRowHeight": {
|
|
95068
95440
|
"operationId": "doc.tables.setRowHeight",
|
|
@@ -95426,7 +95798,9 @@ export const CONTRACT = {
|
|
|
95426
95798
|
"success",
|
|
95427
95799
|
"failure"
|
|
95428
95800
|
]
|
|
95429
|
-
}
|
|
95801
|
+
},
|
|
95802
|
+
"intentGroup": "table",
|
|
95803
|
+
"intentAction": "set_row"
|
|
95430
95804
|
},
|
|
95431
95805
|
"doc.tables.distributeRows": {
|
|
95432
95806
|
"operationId": "doc.tables.distributeRows",
|
|
@@ -95999,7 +96373,9 @@ export const CONTRACT = {
|
|
|
95999
96373
|
"success",
|
|
96000
96374
|
"failure"
|
|
96001
96375
|
]
|
|
96002
|
-
}
|
|
96376
|
+
},
|
|
96377
|
+
"intentGroup": "table",
|
|
96378
|
+
"intentAction": "set_row_options"
|
|
96003
96379
|
},
|
|
96004
96380
|
"doc.tables.insertColumn": {
|
|
96005
96381
|
"operationId": "doc.tables.insertColumn",
|
|
@@ -96010,7 +96386,7 @@ export const CONTRACT = {
|
|
|
96010
96386
|
"insert-column"
|
|
96011
96387
|
],
|
|
96012
96388
|
"category": "tables",
|
|
96013
|
-
"description": "Insert a new column into the target table.",
|
|
96389
|
+
"description": "Insert a new column into the target table. The new column is cloned from an adjacent column, so it inherits the existing cell shading, borders, alignment, and width. No follow-up styling call is needed unless the new column should look different from the rest of the table.",
|
|
96014
96390
|
"requiresDocumentContext": true,
|
|
96015
96391
|
"docRequirement": "optional",
|
|
96016
96392
|
"responseEnvelopeKey": "result",
|
|
@@ -96102,8 +96478,7 @@ export const CONTRACT = {
|
|
|
96102
96478
|
"name": "columnIndex",
|
|
96103
96479
|
"kind": "flag",
|
|
96104
96480
|
"type": "number",
|
|
96105
|
-
"flag": "column-index"
|
|
96106
|
-
"required": true
|
|
96481
|
+
"flag": "column-index"
|
|
96107
96482
|
},
|
|
96108
96483
|
{
|
|
96109
96484
|
"name": "position",
|
|
@@ -96117,6 +96492,12 @@ export const CONTRACT = {
|
|
|
96117
96492
|
},
|
|
96118
96493
|
{
|
|
96119
96494
|
"const": "right"
|
|
96495
|
+
},
|
|
96496
|
+
{
|
|
96497
|
+
"const": "first"
|
|
96498
|
+
},
|
|
96499
|
+
{
|
|
96500
|
+
"const": "last"
|
|
96120
96501
|
}
|
|
96121
96502
|
]
|
|
96122
96503
|
}
|
|
@@ -96148,7 +96529,9 @@ export const CONTRACT = {
|
|
|
96148
96529
|
"position": {
|
|
96149
96530
|
"enum": [
|
|
96150
96531
|
"left",
|
|
96151
|
-
"right"
|
|
96532
|
+
"right",
|
|
96533
|
+
"first",
|
|
96534
|
+
"last"
|
|
96152
96535
|
]
|
|
96153
96536
|
},
|
|
96154
96537
|
"count": {
|
|
@@ -96158,7 +96541,6 @@ export const CONTRACT = {
|
|
|
96158
96541
|
},
|
|
96159
96542
|
"additionalProperties": false,
|
|
96160
96543
|
"required": [
|
|
96161
|
-
"columnIndex",
|
|
96162
96544
|
"position"
|
|
96163
96545
|
],
|
|
96164
96546
|
"oneOf": [
|
|
@@ -96289,7 +96671,9 @@ export const CONTRACT = {
|
|
|
96289
96671
|
"success",
|
|
96290
96672
|
"failure"
|
|
96291
96673
|
]
|
|
96292
|
-
}
|
|
96674
|
+
},
|
|
96675
|
+
"intentGroup": "table",
|
|
96676
|
+
"intentAction": "insert_column"
|
|
96293
96677
|
},
|
|
96294
96678
|
"doc.tables.deleteColumn": {
|
|
96295
96679
|
"operationId": "doc.tables.deleteColumn",
|
|
@@ -96547,7 +96931,9 @@ export const CONTRACT = {
|
|
|
96547
96931
|
"success",
|
|
96548
96932
|
"failure"
|
|
96549
96933
|
]
|
|
96550
|
-
}
|
|
96934
|
+
},
|
|
96935
|
+
"intentGroup": "table",
|
|
96936
|
+
"intentAction": "delete_column"
|
|
96551
96937
|
},
|
|
96552
96938
|
"doc.tables.setColumnWidth": {
|
|
96553
96939
|
"operationId": "doc.tables.setColumnWidth",
|
|
@@ -96817,7 +97203,9 @@ export const CONTRACT = {
|
|
|
96817
97203
|
"success",
|
|
96818
97204
|
"failure"
|
|
96819
97205
|
]
|
|
96820
|
-
}
|
|
97206
|
+
},
|
|
97207
|
+
"intentGroup": "table",
|
|
97208
|
+
"intentAction": "set_column"
|
|
96821
97209
|
},
|
|
96822
97210
|
"doc.tables.distributeColumns": {
|
|
96823
97211
|
"operationId": "doc.tables.distributeColumns",
|
|
@@ -97966,7 +98354,9 @@ export const CONTRACT = {
|
|
|
97966
98354
|
"success",
|
|
97967
98355
|
"failure"
|
|
97968
98356
|
]
|
|
97969
|
-
}
|
|
98357
|
+
},
|
|
98358
|
+
"intentGroup": "table",
|
|
98359
|
+
"intentAction": "merge_cells"
|
|
97970
98360
|
},
|
|
97971
98361
|
"doc.tables.unmergeCells": {
|
|
97972
98362
|
"operationId": "doc.tables.unmergeCells",
|
|
@@ -98293,7 +98683,9 @@ export const CONTRACT = {
|
|
|
98293
98683
|
"success",
|
|
98294
98684
|
"failure"
|
|
98295
98685
|
]
|
|
98296
|
-
}
|
|
98686
|
+
},
|
|
98687
|
+
"intentGroup": "table",
|
|
98688
|
+
"intentAction": "unmerge_cells"
|
|
98297
98689
|
},
|
|
98298
98690
|
"doc.tables.splitCell": {
|
|
98299
98691
|
"operationId": "doc.tables.splitCell",
|
|
@@ -98572,7 +98964,7 @@ export const CONTRACT = {
|
|
|
98572
98964
|
"set-cell-properties"
|
|
98573
98965
|
],
|
|
98574
98966
|
"category": "tables",
|
|
98575
|
-
"description": "Set properties on a table cell
|
|
98967
|
+
"description": "Set non-text properties on a single table cell: vertical alignment, text wrapping, fit-text, or preferred width. Requires a cell-level target (a tableCell block address with kind, nodeType, nodeId). Does NOT accept a table target with rowIndex/columnIndex. To set the text content of a cell, use action \"set_cell_text\" instead.",
|
|
98576
98968
|
"requiresDocumentContext": true,
|
|
98577
98969
|
"docRequirement": "optional",
|
|
98578
98970
|
"responseEnvelopeKey": "result",
|
|
@@ -98858,21 +99250,23 @@ export const CONTRACT = {
|
|
|
98858
99250
|
"success",
|
|
98859
99251
|
"failure"
|
|
98860
99252
|
]
|
|
98861
|
-
}
|
|
99253
|
+
},
|
|
99254
|
+
"intentGroup": "table",
|
|
99255
|
+
"intentAction": "set_cell"
|
|
98862
99256
|
},
|
|
98863
|
-
"doc.tables.
|
|
98864
|
-
"operationId": "doc.tables.
|
|
99257
|
+
"doc.tables.setCellText": {
|
|
99258
|
+
"operationId": "doc.tables.setCellText",
|
|
98865
99259
|
"sdkSurface": "document",
|
|
98866
|
-
"command": "tables
|
|
99260
|
+
"command": "tables set-cell-text",
|
|
98867
99261
|
"commandTokens": [
|
|
98868
99262
|
"tables",
|
|
98869
|
-
"
|
|
99263
|
+
"set-cell-text"
|
|
98870
99264
|
],
|
|
98871
99265
|
"category": "tables",
|
|
98872
|
-
"description": "
|
|
99266
|
+
"description": "Replace the text content of a single table cell with plain text (one paragraph). Accepts either a direct cell locator (a tableCell block address with kind, nodeType, nodeId) OR a table target with rowIndex + columnIndex. Cell properties (vertical alignment, shading, borders, colspan/rowspan) are preserved. Use this for filling cells with values, replacing cell text, or populating empty tables. Much simpler than walking paragraphs and runs through superdoc_edit.",
|
|
98873
99267
|
"requiresDocumentContext": true,
|
|
98874
99268
|
"docRequirement": "optional",
|
|
98875
|
-
"responseEnvelopeKey":
|
|
99269
|
+
"responseEnvelopeKey": null,
|
|
98876
99270
|
"params": [
|
|
98877
99271
|
{
|
|
98878
99272
|
"name": "doc",
|
|
@@ -98932,25 +99326,54 @@ export const CONTRACT = {
|
|
|
98932
99326
|
"type": "json",
|
|
98933
99327
|
"flag": "target-json",
|
|
98934
99328
|
"schema": {
|
|
98935
|
-
"
|
|
98936
|
-
|
|
98937
|
-
|
|
98938
|
-
"
|
|
98939
|
-
|
|
98940
|
-
|
|
98941
|
-
|
|
99329
|
+
"oneOf": [
|
|
99330
|
+
{
|
|
99331
|
+
"type": "object",
|
|
99332
|
+
"properties": {
|
|
99333
|
+
"kind": {
|
|
99334
|
+
"const": "block"
|
|
99335
|
+
},
|
|
99336
|
+
"nodeType": {
|
|
99337
|
+
"const": "tableCell"
|
|
99338
|
+
},
|
|
99339
|
+
"nodeId": {
|
|
99340
|
+
"type": "string"
|
|
99341
|
+
}
|
|
99342
|
+
},
|
|
99343
|
+
"required": [
|
|
99344
|
+
"kind",
|
|
99345
|
+
"nodeType",
|
|
99346
|
+
"nodeId"
|
|
99347
|
+
]
|
|
98942
99348
|
},
|
|
98943
|
-
|
|
98944
|
-
"type": "
|
|
99349
|
+
{
|
|
99350
|
+
"type": "object",
|
|
99351
|
+
"properties": {
|
|
99352
|
+
"kind": {
|
|
99353
|
+
"const": "block"
|
|
99354
|
+
},
|
|
99355
|
+
"nodeType": {
|
|
99356
|
+
"const": "table"
|
|
99357
|
+
},
|
|
99358
|
+
"nodeId": {
|
|
99359
|
+
"type": "string"
|
|
99360
|
+
}
|
|
99361
|
+
},
|
|
99362
|
+
"required": [
|
|
99363
|
+
"kind",
|
|
99364
|
+
"nodeType",
|
|
99365
|
+
"nodeId"
|
|
99366
|
+
]
|
|
98945
99367
|
}
|
|
98946
|
-
},
|
|
98947
|
-
"required": [
|
|
98948
|
-
"kind",
|
|
98949
|
-
"nodeType",
|
|
98950
|
-
"nodeId"
|
|
98951
99368
|
]
|
|
98952
99369
|
}
|
|
98953
99370
|
},
|
|
99371
|
+
{
|
|
99372
|
+
"name": "text",
|
|
99373
|
+
"kind": "flag",
|
|
99374
|
+
"type": "string",
|
|
99375
|
+
"required": true
|
|
99376
|
+
},
|
|
98954
99377
|
{
|
|
98955
99378
|
"name": "nodeId",
|
|
98956
99379
|
"kind": "flag",
|
|
@@ -98958,111 +99381,433 @@ export const CONTRACT = {
|
|
|
98958
99381
|
"flag": "node-id"
|
|
98959
99382
|
},
|
|
98960
99383
|
{
|
|
98961
|
-
"name": "
|
|
98962
|
-
"kind": "
|
|
98963
|
-
"type": "
|
|
98964
|
-
"flag": "
|
|
98965
|
-
|
|
98966
|
-
|
|
98967
|
-
|
|
98968
|
-
|
|
98969
|
-
|
|
98970
|
-
|
|
98971
|
-
"columnIndex": {
|
|
98972
|
-
"type": "number"
|
|
98973
|
-
},
|
|
98974
|
-
"direction": {
|
|
98975
|
-
"oneOf": [
|
|
98976
|
-
{
|
|
98977
|
-
"const": "ascending"
|
|
98978
|
-
},
|
|
98979
|
-
{
|
|
98980
|
-
"const": "descending"
|
|
98981
|
-
}
|
|
98982
|
-
]
|
|
98983
|
-
},
|
|
98984
|
-
"type": {
|
|
98985
|
-
"oneOf": [
|
|
98986
|
-
{
|
|
98987
|
-
"const": "text"
|
|
98988
|
-
},
|
|
98989
|
-
{
|
|
98990
|
-
"const": "number"
|
|
98991
|
-
},
|
|
98992
|
-
{
|
|
98993
|
-
"const": "date"
|
|
98994
|
-
}
|
|
98995
|
-
]
|
|
98996
|
-
}
|
|
98997
|
-
},
|
|
98998
|
-
"required": [
|
|
98999
|
-
"columnIndex",
|
|
99000
|
-
"direction",
|
|
99001
|
-
"type"
|
|
99002
|
-
]
|
|
99003
|
-
}
|
|
99004
|
-
}
|
|
99384
|
+
"name": "rowIndex",
|
|
99385
|
+
"kind": "flag",
|
|
99386
|
+
"type": "number",
|
|
99387
|
+
"flag": "row-index"
|
|
99388
|
+
},
|
|
99389
|
+
{
|
|
99390
|
+
"name": "columnIndex",
|
|
99391
|
+
"kind": "flag",
|
|
99392
|
+
"type": "number",
|
|
99393
|
+
"flag": "column-index"
|
|
99005
99394
|
}
|
|
99006
99395
|
],
|
|
99007
99396
|
"constraints": null,
|
|
99008
99397
|
"mutates": true,
|
|
99009
|
-
"idempotency": "
|
|
99398
|
+
"idempotency": "idempotent",
|
|
99010
99399
|
"supportsTrackedMode": false,
|
|
99011
99400
|
"supportsDryRun": true,
|
|
99012
99401
|
"inputSchema": {
|
|
99013
|
-
"
|
|
99014
|
-
|
|
99015
|
-
|
|
99016
|
-
"
|
|
99017
|
-
|
|
99018
|
-
|
|
99019
|
-
|
|
99402
|
+
"oneOf": [
|
|
99403
|
+
{
|
|
99404
|
+
"type": "object",
|
|
99405
|
+
"properties": {
|
|
99406
|
+
"target": {
|
|
99407
|
+
"$ref": "#/$defs/TableCellAddress"
|
|
99408
|
+
},
|
|
99409
|
+
"text": {
|
|
99410
|
+
"type": "string"
|
|
99411
|
+
}
|
|
99412
|
+
},
|
|
99413
|
+
"additionalProperties": false,
|
|
99414
|
+
"required": [
|
|
99415
|
+
"target",
|
|
99416
|
+
"text"
|
|
99417
|
+
]
|
|
99020
99418
|
},
|
|
99021
|
-
|
|
99022
|
-
"type": "
|
|
99023
|
-
"
|
|
99024
|
-
"
|
|
99025
|
-
|
|
99026
|
-
"columnIndex": {
|
|
99027
|
-
"type": "integer",
|
|
99028
|
-
"minimum": 0
|
|
99029
|
-
},
|
|
99030
|
-
"direction": {
|
|
99031
|
-
"enum": [
|
|
99032
|
-
"ascending",
|
|
99033
|
-
"descending"
|
|
99034
|
-
]
|
|
99035
|
-
},
|
|
99036
|
-
"type": {
|
|
99037
|
-
"enum": [
|
|
99038
|
-
"text",
|
|
99039
|
-
"number",
|
|
99040
|
-
"date"
|
|
99041
|
-
]
|
|
99042
|
-
}
|
|
99419
|
+
{
|
|
99420
|
+
"type": "object",
|
|
99421
|
+
"properties": {
|
|
99422
|
+
"nodeId": {
|
|
99423
|
+
"type": "string"
|
|
99043
99424
|
},
|
|
99044
|
-
"
|
|
99045
|
-
|
|
99046
|
-
|
|
99047
|
-
|
|
99048
|
-
|
|
99049
|
-
|
|
99050
|
-
|
|
99051
|
-
|
|
99052
|
-
|
|
99053
|
-
|
|
99054
|
-
"required": [
|
|
99055
|
-
"keys"
|
|
99056
|
-
],
|
|
99057
|
-
"oneOf": [
|
|
99425
|
+
"text": {
|
|
99426
|
+
"type": "string"
|
|
99427
|
+
}
|
|
99428
|
+
},
|
|
99429
|
+
"additionalProperties": false,
|
|
99430
|
+
"required": [
|
|
99431
|
+
"nodeId",
|
|
99432
|
+
"text"
|
|
99433
|
+
]
|
|
99434
|
+
},
|
|
99058
99435
|
{
|
|
99436
|
+
"type": "object",
|
|
99437
|
+
"properties": {
|
|
99438
|
+
"target": {
|
|
99439
|
+
"$ref": "#/$defs/TableAddress"
|
|
99440
|
+
},
|
|
99441
|
+
"rowIndex": {
|
|
99442
|
+
"type": "integer",
|
|
99443
|
+
"minimum": 0
|
|
99444
|
+
},
|
|
99445
|
+
"columnIndex": {
|
|
99446
|
+
"type": "integer",
|
|
99447
|
+
"minimum": 0
|
|
99448
|
+
},
|
|
99449
|
+
"text": {
|
|
99450
|
+
"type": "string"
|
|
99451
|
+
}
|
|
99452
|
+
},
|
|
99453
|
+
"additionalProperties": false,
|
|
99059
99454
|
"required": [
|
|
99060
|
-
"target"
|
|
99455
|
+
"target",
|
|
99456
|
+
"rowIndex",
|
|
99457
|
+
"columnIndex",
|
|
99458
|
+
"text"
|
|
99061
99459
|
]
|
|
99062
99460
|
},
|
|
99063
99461
|
{
|
|
99462
|
+
"type": "object",
|
|
99463
|
+
"properties": {
|
|
99464
|
+
"nodeId": {
|
|
99465
|
+
"type": "string"
|
|
99466
|
+
},
|
|
99467
|
+
"rowIndex": {
|
|
99468
|
+
"type": "integer",
|
|
99469
|
+
"minimum": 0
|
|
99470
|
+
},
|
|
99471
|
+
"columnIndex": {
|
|
99472
|
+
"type": "integer",
|
|
99473
|
+
"minimum": 0
|
|
99474
|
+
},
|
|
99475
|
+
"text": {
|
|
99476
|
+
"type": "string"
|
|
99477
|
+
}
|
|
99478
|
+
},
|
|
99479
|
+
"additionalProperties": false,
|
|
99064
99480
|
"required": [
|
|
99065
|
-
"nodeId"
|
|
99481
|
+
"nodeId",
|
|
99482
|
+
"rowIndex",
|
|
99483
|
+
"columnIndex",
|
|
99484
|
+
"text"
|
|
99485
|
+
]
|
|
99486
|
+
}
|
|
99487
|
+
]
|
|
99488
|
+
},
|
|
99489
|
+
"outputSchema": {
|
|
99490
|
+
"oneOf": [
|
|
99491
|
+
{
|
|
99492
|
+
"type": "object",
|
|
99493
|
+
"properties": {
|
|
99494
|
+
"success": {
|
|
99495
|
+
"const": true
|
|
99496
|
+
},
|
|
99497
|
+
"table": {
|
|
99498
|
+
"$ref": "#/$defs/TableAddress"
|
|
99499
|
+
},
|
|
99500
|
+
"trackedChangeRefs": {
|
|
99501
|
+
"type": "array",
|
|
99502
|
+
"items": {
|
|
99503
|
+
"$ref": "#/$defs/EntityAddress"
|
|
99504
|
+
}
|
|
99505
|
+
}
|
|
99506
|
+
},
|
|
99507
|
+
"additionalProperties": false,
|
|
99508
|
+
"required": [
|
|
99509
|
+
"success"
|
|
99510
|
+
]
|
|
99511
|
+
},
|
|
99512
|
+
{
|
|
99513
|
+
"type": "object",
|
|
99514
|
+
"properties": {
|
|
99515
|
+
"success": {
|
|
99516
|
+
"const": false
|
|
99517
|
+
},
|
|
99518
|
+
"failure": {
|
|
99519
|
+
"type": "object",
|
|
99520
|
+
"properties": {
|
|
99521
|
+
"code": {
|
|
99522
|
+
"enum": [
|
|
99523
|
+
"NO_OP",
|
|
99524
|
+
"INVALID_TARGET",
|
|
99525
|
+
"TARGET_NOT_FOUND",
|
|
99526
|
+
"CAPABILITY_UNAVAILABLE"
|
|
99527
|
+
]
|
|
99528
|
+
},
|
|
99529
|
+
"message": {
|
|
99530
|
+
"type": "string"
|
|
99531
|
+
},
|
|
99532
|
+
"details": {}
|
|
99533
|
+
},
|
|
99534
|
+
"additionalProperties": false,
|
|
99535
|
+
"required": [
|
|
99536
|
+
"code",
|
|
99537
|
+
"message"
|
|
99538
|
+
]
|
|
99539
|
+
}
|
|
99540
|
+
},
|
|
99541
|
+
"additionalProperties": false,
|
|
99542
|
+
"required": [
|
|
99543
|
+
"success",
|
|
99544
|
+
"failure"
|
|
99545
|
+
]
|
|
99546
|
+
}
|
|
99547
|
+
]
|
|
99548
|
+
},
|
|
99549
|
+
"successSchema": {
|
|
99550
|
+
"type": "object",
|
|
99551
|
+
"properties": {
|
|
99552
|
+
"success": {
|
|
99553
|
+
"const": true
|
|
99554
|
+
},
|
|
99555
|
+
"table": {
|
|
99556
|
+
"$ref": "#/$defs/TableAddress"
|
|
99557
|
+
},
|
|
99558
|
+
"trackedChangeRefs": {
|
|
99559
|
+
"type": "array",
|
|
99560
|
+
"items": {
|
|
99561
|
+
"$ref": "#/$defs/EntityAddress"
|
|
99562
|
+
}
|
|
99563
|
+
}
|
|
99564
|
+
},
|
|
99565
|
+
"additionalProperties": false,
|
|
99566
|
+
"required": [
|
|
99567
|
+
"success"
|
|
99568
|
+
]
|
|
99569
|
+
},
|
|
99570
|
+
"failureSchema": {
|
|
99571
|
+
"type": "object",
|
|
99572
|
+
"properties": {
|
|
99573
|
+
"success": {
|
|
99574
|
+
"const": false
|
|
99575
|
+
},
|
|
99576
|
+
"failure": {
|
|
99577
|
+
"type": "object",
|
|
99578
|
+
"properties": {
|
|
99579
|
+
"code": {
|
|
99580
|
+
"enum": [
|
|
99581
|
+
"NO_OP",
|
|
99582
|
+
"INVALID_TARGET",
|
|
99583
|
+
"TARGET_NOT_FOUND",
|
|
99584
|
+
"CAPABILITY_UNAVAILABLE"
|
|
99585
|
+
]
|
|
99586
|
+
},
|
|
99587
|
+
"message": {
|
|
99588
|
+
"type": "string"
|
|
99589
|
+
},
|
|
99590
|
+
"details": {}
|
|
99591
|
+
},
|
|
99592
|
+
"additionalProperties": false,
|
|
99593
|
+
"required": [
|
|
99594
|
+
"code",
|
|
99595
|
+
"message"
|
|
99596
|
+
]
|
|
99597
|
+
}
|
|
99598
|
+
},
|
|
99599
|
+
"additionalProperties": false,
|
|
99600
|
+
"required": [
|
|
99601
|
+
"success",
|
|
99602
|
+
"failure"
|
|
99603
|
+
]
|
|
99604
|
+
},
|
|
99605
|
+
"intentGroup": "table",
|
|
99606
|
+
"intentAction": "set_cell_text"
|
|
99607
|
+
},
|
|
99608
|
+
"doc.tables.sort": {
|
|
99609
|
+
"operationId": "doc.tables.sort",
|
|
99610
|
+
"sdkSurface": "document",
|
|
99611
|
+
"command": "tables sort",
|
|
99612
|
+
"commandTokens": [
|
|
99613
|
+
"tables",
|
|
99614
|
+
"sort"
|
|
99615
|
+
],
|
|
99616
|
+
"category": "tables",
|
|
99617
|
+
"description": "Sort table rows by a column value.",
|
|
99618
|
+
"requiresDocumentContext": true,
|
|
99619
|
+
"docRequirement": "optional",
|
|
99620
|
+
"responseEnvelopeKey": "result",
|
|
99621
|
+
"params": [
|
|
99622
|
+
{
|
|
99623
|
+
"name": "doc",
|
|
99624
|
+
"kind": "doc",
|
|
99625
|
+
"type": "string",
|
|
99626
|
+
"description": "Document path. Optional when a session is already open."
|
|
99627
|
+
},
|
|
99628
|
+
{
|
|
99629
|
+
"name": "sessionId",
|
|
99630
|
+
"kind": "flag",
|
|
99631
|
+
"type": "string",
|
|
99632
|
+
"flag": "session",
|
|
99633
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
99634
|
+
},
|
|
99635
|
+
{
|
|
99636
|
+
"name": "out",
|
|
99637
|
+
"kind": "flag",
|
|
99638
|
+
"type": "string",
|
|
99639
|
+
"agentVisible": false
|
|
99640
|
+
},
|
|
99641
|
+
{
|
|
99642
|
+
"name": "force",
|
|
99643
|
+
"kind": "flag",
|
|
99644
|
+
"type": "boolean",
|
|
99645
|
+
"description": "Bypass confirmation checks."
|
|
99646
|
+
},
|
|
99647
|
+
{
|
|
99648
|
+
"name": "expectedRevision",
|
|
99649
|
+
"kind": "flag",
|
|
99650
|
+
"type": "number",
|
|
99651
|
+
"flag": "expected-revision",
|
|
99652
|
+
"agentVisible": false
|
|
99653
|
+
},
|
|
99654
|
+
{
|
|
99655
|
+
"name": "changeMode",
|
|
99656
|
+
"kind": "flag",
|
|
99657
|
+
"type": "string",
|
|
99658
|
+
"flag": "change-mode",
|
|
99659
|
+
"schema": {
|
|
99660
|
+
"enum": [
|
|
99661
|
+
"direct",
|
|
99662
|
+
"tracked"
|
|
99663
|
+
]
|
|
99664
|
+
},
|
|
99665
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
99666
|
+
},
|
|
99667
|
+
{
|
|
99668
|
+
"name": "dryRun",
|
|
99669
|
+
"kind": "flag",
|
|
99670
|
+
"type": "boolean",
|
|
99671
|
+
"flag": "dry-run",
|
|
99672
|
+
"description": "Preview the result without applying changes."
|
|
99673
|
+
},
|
|
99674
|
+
{
|
|
99675
|
+
"name": "target",
|
|
99676
|
+
"kind": "jsonFlag",
|
|
99677
|
+
"type": "json",
|
|
99678
|
+
"flag": "target-json",
|
|
99679
|
+
"schema": {
|
|
99680
|
+
"type": "object",
|
|
99681
|
+
"properties": {
|
|
99682
|
+
"kind": {
|
|
99683
|
+
"const": "block"
|
|
99684
|
+
},
|
|
99685
|
+
"nodeType": {
|
|
99686
|
+
"const": "table"
|
|
99687
|
+
},
|
|
99688
|
+
"nodeId": {
|
|
99689
|
+
"type": "string"
|
|
99690
|
+
}
|
|
99691
|
+
},
|
|
99692
|
+
"required": [
|
|
99693
|
+
"kind",
|
|
99694
|
+
"nodeType",
|
|
99695
|
+
"nodeId"
|
|
99696
|
+
]
|
|
99697
|
+
}
|
|
99698
|
+
},
|
|
99699
|
+
{
|
|
99700
|
+
"name": "nodeId",
|
|
99701
|
+
"kind": "flag",
|
|
99702
|
+
"type": "string",
|
|
99703
|
+
"flag": "node-id"
|
|
99704
|
+
},
|
|
99705
|
+
{
|
|
99706
|
+
"name": "keys",
|
|
99707
|
+
"kind": "jsonFlag",
|
|
99708
|
+
"type": "json",
|
|
99709
|
+
"flag": "keys-json",
|
|
99710
|
+
"required": true,
|
|
99711
|
+
"schema": {
|
|
99712
|
+
"type": "array",
|
|
99713
|
+
"items": {
|
|
99714
|
+
"type": "object",
|
|
99715
|
+
"properties": {
|
|
99716
|
+
"columnIndex": {
|
|
99717
|
+
"type": "number"
|
|
99718
|
+
},
|
|
99719
|
+
"direction": {
|
|
99720
|
+
"oneOf": [
|
|
99721
|
+
{
|
|
99722
|
+
"const": "ascending"
|
|
99723
|
+
},
|
|
99724
|
+
{
|
|
99725
|
+
"const": "descending"
|
|
99726
|
+
}
|
|
99727
|
+
]
|
|
99728
|
+
},
|
|
99729
|
+
"type": {
|
|
99730
|
+
"oneOf": [
|
|
99731
|
+
{
|
|
99732
|
+
"const": "text"
|
|
99733
|
+
},
|
|
99734
|
+
{
|
|
99735
|
+
"const": "number"
|
|
99736
|
+
},
|
|
99737
|
+
{
|
|
99738
|
+
"const": "date"
|
|
99739
|
+
}
|
|
99740
|
+
]
|
|
99741
|
+
}
|
|
99742
|
+
},
|
|
99743
|
+
"required": [
|
|
99744
|
+
"columnIndex",
|
|
99745
|
+
"direction",
|
|
99746
|
+
"type"
|
|
99747
|
+
]
|
|
99748
|
+
}
|
|
99749
|
+
}
|
|
99750
|
+
}
|
|
99751
|
+
],
|
|
99752
|
+
"constraints": null,
|
|
99753
|
+
"mutates": true,
|
|
99754
|
+
"idempotency": "non-idempotent",
|
|
99755
|
+
"supportsTrackedMode": false,
|
|
99756
|
+
"supportsDryRun": true,
|
|
99757
|
+
"inputSchema": {
|
|
99758
|
+
"type": "object",
|
|
99759
|
+
"properties": {
|
|
99760
|
+
"target": {
|
|
99761
|
+
"$ref": "#/$defs/TableAddress"
|
|
99762
|
+
},
|
|
99763
|
+
"nodeId": {
|
|
99764
|
+
"type": "string"
|
|
99765
|
+
},
|
|
99766
|
+
"keys": {
|
|
99767
|
+
"type": "array",
|
|
99768
|
+
"items": {
|
|
99769
|
+
"type": "object",
|
|
99770
|
+
"properties": {
|
|
99771
|
+
"columnIndex": {
|
|
99772
|
+
"type": "integer",
|
|
99773
|
+
"minimum": 0
|
|
99774
|
+
},
|
|
99775
|
+
"direction": {
|
|
99776
|
+
"enum": [
|
|
99777
|
+
"ascending",
|
|
99778
|
+
"descending"
|
|
99779
|
+
]
|
|
99780
|
+
},
|
|
99781
|
+
"type": {
|
|
99782
|
+
"enum": [
|
|
99783
|
+
"text",
|
|
99784
|
+
"number",
|
|
99785
|
+
"date"
|
|
99786
|
+
]
|
|
99787
|
+
}
|
|
99788
|
+
},
|
|
99789
|
+
"additionalProperties": false,
|
|
99790
|
+
"required": [
|
|
99791
|
+
"columnIndex",
|
|
99792
|
+
"direction",
|
|
99793
|
+
"type"
|
|
99794
|
+
]
|
|
99795
|
+
}
|
|
99796
|
+
}
|
|
99797
|
+
},
|
|
99798
|
+
"additionalProperties": false,
|
|
99799
|
+
"required": [
|
|
99800
|
+
"keys"
|
|
99801
|
+
],
|
|
99802
|
+
"oneOf": [
|
|
99803
|
+
{
|
|
99804
|
+
"required": [
|
|
99805
|
+
"target"
|
|
99806
|
+
]
|
|
99807
|
+
},
|
|
99808
|
+
{
|
|
99809
|
+
"required": [
|
|
99810
|
+
"nodeId"
|
|
99066
99811
|
]
|
|
99067
99812
|
}
|
|
99068
99813
|
]
|
|
@@ -100438,7 +101183,7 @@ export const CONTRACT = {
|
|
|
100438
101183
|
},
|
|
100439
101184
|
"color": {
|
|
100440
101185
|
"type": "string",
|
|
100441
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
101186
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
100442
101187
|
}
|
|
100443
101188
|
},
|
|
100444
101189
|
"additionalProperties": false,
|
|
@@ -101265,9 +102010,20 @@ export const CONTRACT = {
|
|
|
101265
102010
|
},
|
|
101266
102011
|
{
|
|
101267
102012
|
"name": "color",
|
|
101268
|
-
"kind": "
|
|
101269
|
-
"type": "
|
|
101270
|
-
"
|
|
102013
|
+
"kind": "jsonFlag",
|
|
102014
|
+
"type": "json",
|
|
102015
|
+
"flag": "color-json",
|
|
102016
|
+
"required": true,
|
|
102017
|
+
"schema": {
|
|
102018
|
+
"oneOf": [
|
|
102019
|
+
{
|
|
102020
|
+
"type": "string"
|
|
102021
|
+
},
|
|
102022
|
+
{
|
|
102023
|
+
"type": "json"
|
|
102024
|
+
}
|
|
102025
|
+
]
|
|
102026
|
+
}
|
|
101271
102027
|
}
|
|
101272
102028
|
],
|
|
101273
102029
|
"constraints": null,
|
|
@@ -101285,8 +102041,15 @@ export const CONTRACT = {
|
|
|
101285
102041
|
"type": "string"
|
|
101286
102042
|
},
|
|
101287
102043
|
"color": {
|
|
101288
|
-
"
|
|
101289
|
-
|
|
102044
|
+
"oneOf": [
|
|
102045
|
+
{
|
|
102046
|
+
"type": "string",
|
|
102047
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102048
|
+
},
|
|
102049
|
+
{
|
|
102050
|
+
"type": "null"
|
|
102051
|
+
}
|
|
102052
|
+
]
|
|
101290
102053
|
}
|
|
101291
102054
|
},
|
|
101292
102055
|
"additionalProperties": false,
|
|
@@ -101421,7 +102184,9 @@ export const CONTRACT = {
|
|
|
101421
102184
|
"success",
|
|
101422
102185
|
"failure"
|
|
101423
102186
|
]
|
|
101424
|
-
}
|
|
102187
|
+
},
|
|
102188
|
+
"intentGroup": "table",
|
|
102189
|
+
"intentAction": "set_shading"
|
|
101425
102190
|
},
|
|
101426
102191
|
"doc.tables.clearShading": {
|
|
101427
102192
|
"operationId": "doc.tables.clearShading",
|
|
@@ -102773,7 +103538,7 @@ export const CONTRACT = {
|
|
|
102773
103538
|
"apply-style"
|
|
102774
103539
|
],
|
|
102775
103540
|
"category": "tables",
|
|
102776
|
-
"description": "
|
|
103541
|
+
"description": "Toggle conditional-format flags (header row, banded rows/columns, first/last column, last row) on a table. Pass `styleOptions` with the flags you want to set or clear (omitted flags stay unchanged). For \"format the first row as a header\" use `styleOptions: { headerRow: true }`. Optional `styleId` applies a named table style. Leave it unset unless you have a styleId from `superdoc_get_content` (no need to invent one).",
|
|
102777
103542
|
"requiresDocumentContext": true,
|
|
102778
103543
|
"docRequirement": "optional",
|
|
102779
103544
|
"responseEnvelopeKey": null,
|
|
@@ -103102,7 +103867,9 @@ export const CONTRACT = {
|
|
|
103102
103867
|
"success",
|
|
103103
103868
|
"failure"
|
|
103104
103869
|
]
|
|
103105
|
-
}
|
|
103870
|
+
},
|
|
103871
|
+
"intentGroup": "table",
|
|
103872
|
+
"intentAction": "set_style_options"
|
|
103106
103873
|
},
|
|
103107
103874
|
"doc.tables.setBorders": {
|
|
103108
103875
|
"operationId": "doc.tables.setBorders",
|
|
@@ -103528,7 +104295,7 @@ export const CONTRACT = {
|
|
|
103528
104295
|
},
|
|
103529
104296
|
"color": {
|
|
103530
104297
|
"type": "string",
|
|
103531
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104298
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103532
104299
|
}
|
|
103533
104300
|
},
|
|
103534
104301
|
"additionalProperties": false,
|
|
@@ -103592,7 +104359,7 @@ export const CONTRACT = {
|
|
|
103592
104359
|
},
|
|
103593
104360
|
"color": {
|
|
103594
104361
|
"type": "string",
|
|
103595
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104362
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103596
104363
|
}
|
|
103597
104364
|
},
|
|
103598
104365
|
"additionalProperties": false,
|
|
@@ -103621,7 +104388,7 @@ export const CONTRACT = {
|
|
|
103621
104388
|
},
|
|
103622
104389
|
"color": {
|
|
103623
104390
|
"type": "string",
|
|
103624
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104391
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103625
104392
|
}
|
|
103626
104393
|
},
|
|
103627
104394
|
"additionalProperties": false,
|
|
@@ -103650,7 +104417,7 @@ export const CONTRACT = {
|
|
|
103650
104417
|
},
|
|
103651
104418
|
"color": {
|
|
103652
104419
|
"type": "string",
|
|
103653
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104420
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103654
104421
|
}
|
|
103655
104422
|
},
|
|
103656
104423
|
"additionalProperties": false,
|
|
@@ -103679,7 +104446,7 @@ export const CONTRACT = {
|
|
|
103679
104446
|
},
|
|
103680
104447
|
"color": {
|
|
103681
104448
|
"type": "string",
|
|
103682
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104449
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103683
104450
|
}
|
|
103684
104451
|
},
|
|
103685
104452
|
"additionalProperties": false,
|
|
@@ -103708,7 +104475,7 @@ export const CONTRACT = {
|
|
|
103708
104475
|
},
|
|
103709
104476
|
"color": {
|
|
103710
104477
|
"type": "string",
|
|
103711
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104478
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103712
104479
|
}
|
|
103713
104480
|
},
|
|
103714
104481
|
"additionalProperties": false,
|
|
@@ -103737,7 +104504,7 @@ export const CONTRACT = {
|
|
|
103737
104504
|
},
|
|
103738
104505
|
"color": {
|
|
103739
104506
|
"type": "string",
|
|
103740
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104507
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103741
104508
|
}
|
|
103742
104509
|
},
|
|
103743
104510
|
"additionalProperties": false,
|
|
@@ -103891,7 +104658,9 @@ export const CONTRACT = {
|
|
|
103891
104658
|
"success",
|
|
103892
104659
|
"failure"
|
|
103893
104660
|
]
|
|
103894
|
-
}
|
|
104661
|
+
},
|
|
104662
|
+
"intentGroup": "table",
|
|
104663
|
+
"intentAction": "set_borders"
|
|
103895
104664
|
},
|
|
103896
104665
|
"doc.tables.setTableOptions": {
|
|
103897
104666
|
"operationId": "doc.tables.setTableOptions",
|
|
@@ -104213,6 +104982,295 @@ export const CONTRACT = {
|
|
|
104213
104982
|
"success"
|
|
104214
104983
|
]
|
|
104215
104984
|
},
|
|
104985
|
+
"failureSchema": {
|
|
104986
|
+
"type": "object",
|
|
104987
|
+
"properties": {
|
|
104988
|
+
"success": {
|
|
104989
|
+
"const": false
|
|
104990
|
+
},
|
|
104991
|
+
"failure": {
|
|
104992
|
+
"type": "object",
|
|
104993
|
+
"properties": {
|
|
104994
|
+
"code": {
|
|
104995
|
+
"enum": [
|
|
104996
|
+
"NO_OP",
|
|
104997
|
+
"INVALID_TARGET",
|
|
104998
|
+
"TARGET_NOT_FOUND",
|
|
104999
|
+
"CAPABILITY_UNAVAILABLE"
|
|
105000
|
+
]
|
|
105001
|
+
},
|
|
105002
|
+
"message": {
|
|
105003
|
+
"type": "string"
|
|
105004
|
+
},
|
|
105005
|
+
"details": {}
|
|
105006
|
+
},
|
|
105007
|
+
"additionalProperties": false,
|
|
105008
|
+
"required": [
|
|
105009
|
+
"code",
|
|
105010
|
+
"message"
|
|
105011
|
+
]
|
|
105012
|
+
}
|
|
105013
|
+
},
|
|
105014
|
+
"additionalProperties": false,
|
|
105015
|
+
"required": [
|
|
105016
|
+
"success",
|
|
105017
|
+
"failure"
|
|
105018
|
+
]
|
|
105019
|
+
},
|
|
105020
|
+
"intentGroup": "table",
|
|
105021
|
+
"intentAction": "set_options"
|
|
105022
|
+
},
|
|
105023
|
+
"doc.tables.applyPreset": {
|
|
105024
|
+
"operationId": "doc.tables.applyPreset",
|
|
105025
|
+
"sdkSurface": "document",
|
|
105026
|
+
"command": "tables apply-preset",
|
|
105027
|
+
"commandTokens": [
|
|
105028
|
+
"tables",
|
|
105029
|
+
"apply-preset"
|
|
105030
|
+
],
|
|
105031
|
+
"category": "tables",
|
|
105032
|
+
"description": "Apply a named visual preset to a table. Presets: \"grid\" (1pt black borders all around), \"minimal\" (no outer borders, hairline grey row separators + thicker bottom), \"striped\" (banded rows on, 0.5pt grey borders), \"accent\" (filled header row + thick accent top/bottom; defaults to dark blue, override with `accentColor`). Composes set_borders + set_style_options + header-row shading in one call. Available via the document API and `superdoc_mutations` (intentionally NOT exposed as a top-level action on `superdoc_table`. Agents should compose explicit set_borders / set_shading / set_style_options calls so they always pick concrete colors that match the document context).",
|
|
105033
|
+
"requiresDocumentContext": true,
|
|
105034
|
+
"docRequirement": "optional",
|
|
105035
|
+
"responseEnvelopeKey": null,
|
|
105036
|
+
"params": [
|
|
105037
|
+
{
|
|
105038
|
+
"name": "doc",
|
|
105039
|
+
"kind": "doc",
|
|
105040
|
+
"type": "string",
|
|
105041
|
+
"description": "Document path. Optional when a session is already open."
|
|
105042
|
+
},
|
|
105043
|
+
{
|
|
105044
|
+
"name": "sessionId",
|
|
105045
|
+
"kind": "flag",
|
|
105046
|
+
"type": "string",
|
|
105047
|
+
"flag": "session",
|
|
105048
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
105049
|
+
},
|
|
105050
|
+
{
|
|
105051
|
+
"name": "out",
|
|
105052
|
+
"kind": "flag",
|
|
105053
|
+
"type": "string",
|
|
105054
|
+
"agentVisible": false
|
|
105055
|
+
},
|
|
105056
|
+
{
|
|
105057
|
+
"name": "force",
|
|
105058
|
+
"kind": "flag",
|
|
105059
|
+
"type": "boolean",
|
|
105060
|
+
"description": "Bypass confirmation checks."
|
|
105061
|
+
},
|
|
105062
|
+
{
|
|
105063
|
+
"name": "expectedRevision",
|
|
105064
|
+
"kind": "flag",
|
|
105065
|
+
"type": "number",
|
|
105066
|
+
"flag": "expected-revision",
|
|
105067
|
+
"agentVisible": false
|
|
105068
|
+
},
|
|
105069
|
+
{
|
|
105070
|
+
"name": "changeMode",
|
|
105071
|
+
"kind": "flag",
|
|
105072
|
+
"type": "string",
|
|
105073
|
+
"flag": "change-mode",
|
|
105074
|
+
"schema": {
|
|
105075
|
+
"enum": [
|
|
105076
|
+
"direct",
|
|
105077
|
+
"tracked"
|
|
105078
|
+
]
|
|
105079
|
+
},
|
|
105080
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
105081
|
+
},
|
|
105082
|
+
{
|
|
105083
|
+
"name": "dryRun",
|
|
105084
|
+
"kind": "flag",
|
|
105085
|
+
"type": "boolean",
|
|
105086
|
+
"flag": "dry-run",
|
|
105087
|
+
"description": "Preview the result without applying changes."
|
|
105088
|
+
},
|
|
105089
|
+
{
|
|
105090
|
+
"name": "target",
|
|
105091
|
+
"kind": "jsonFlag",
|
|
105092
|
+
"type": "json",
|
|
105093
|
+
"flag": "target-json",
|
|
105094
|
+
"schema": {
|
|
105095
|
+
"type": "object",
|
|
105096
|
+
"properties": {
|
|
105097
|
+
"kind": {
|
|
105098
|
+
"const": "block"
|
|
105099
|
+
},
|
|
105100
|
+
"nodeType": {
|
|
105101
|
+
"const": "table"
|
|
105102
|
+
},
|
|
105103
|
+
"nodeId": {
|
|
105104
|
+
"type": "string"
|
|
105105
|
+
}
|
|
105106
|
+
},
|
|
105107
|
+
"required": [
|
|
105108
|
+
"kind",
|
|
105109
|
+
"nodeType",
|
|
105110
|
+
"nodeId"
|
|
105111
|
+
]
|
|
105112
|
+
}
|
|
105113
|
+
},
|
|
105114
|
+
{
|
|
105115
|
+
"name": "nodeId",
|
|
105116
|
+
"kind": "flag",
|
|
105117
|
+
"type": "string",
|
|
105118
|
+
"flag": "node-id"
|
|
105119
|
+
},
|
|
105120
|
+
{
|
|
105121
|
+
"name": "preset",
|
|
105122
|
+
"kind": "flag",
|
|
105123
|
+
"type": "string",
|
|
105124
|
+
"required": true,
|
|
105125
|
+
"schema": {
|
|
105126
|
+
"oneOf": [
|
|
105127
|
+
{
|
|
105128
|
+
"const": "grid"
|
|
105129
|
+
},
|
|
105130
|
+
{
|
|
105131
|
+
"const": "minimal"
|
|
105132
|
+
},
|
|
105133
|
+
{
|
|
105134
|
+
"const": "striped"
|
|
105135
|
+
},
|
|
105136
|
+
{
|
|
105137
|
+
"const": "accent"
|
|
105138
|
+
}
|
|
105139
|
+
]
|
|
105140
|
+
}
|
|
105141
|
+
},
|
|
105142
|
+
{
|
|
105143
|
+
"name": "accentColor",
|
|
105144
|
+
"kind": "flag",
|
|
105145
|
+
"type": "string",
|
|
105146
|
+
"flag": "accent-color"
|
|
105147
|
+
}
|
|
105148
|
+
],
|
|
105149
|
+
"constraints": null,
|
|
105150
|
+
"mutates": true,
|
|
105151
|
+
"idempotency": "idempotent",
|
|
105152
|
+
"supportsTrackedMode": false,
|
|
105153
|
+
"supportsDryRun": true,
|
|
105154
|
+
"inputSchema": {
|
|
105155
|
+
"type": "object",
|
|
105156
|
+
"properties": {
|
|
105157
|
+
"target": {
|
|
105158
|
+
"$ref": "#/$defs/TableAddress"
|
|
105159
|
+
},
|
|
105160
|
+
"nodeId": {
|
|
105161
|
+
"type": "string"
|
|
105162
|
+
},
|
|
105163
|
+
"preset": {
|
|
105164
|
+
"enum": [
|
|
105165
|
+
"grid",
|
|
105166
|
+
"minimal",
|
|
105167
|
+
"striped",
|
|
105168
|
+
"accent"
|
|
105169
|
+
]
|
|
105170
|
+
},
|
|
105171
|
+
"accentColor": {
|
|
105172
|
+
"type": "string",
|
|
105173
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
105174
|
+
}
|
|
105175
|
+
},
|
|
105176
|
+
"additionalProperties": false,
|
|
105177
|
+
"required": [
|
|
105178
|
+
"preset"
|
|
105179
|
+
],
|
|
105180
|
+
"oneOf": [
|
|
105181
|
+
{
|
|
105182
|
+
"required": [
|
|
105183
|
+
"target"
|
|
105184
|
+
]
|
|
105185
|
+
},
|
|
105186
|
+
{
|
|
105187
|
+
"required": [
|
|
105188
|
+
"nodeId"
|
|
105189
|
+
]
|
|
105190
|
+
}
|
|
105191
|
+
]
|
|
105192
|
+
},
|
|
105193
|
+
"outputSchema": {
|
|
105194
|
+
"oneOf": [
|
|
105195
|
+
{
|
|
105196
|
+
"type": "object",
|
|
105197
|
+
"properties": {
|
|
105198
|
+
"success": {
|
|
105199
|
+
"const": true
|
|
105200
|
+
},
|
|
105201
|
+
"table": {
|
|
105202
|
+
"$ref": "#/$defs/TableAddress"
|
|
105203
|
+
},
|
|
105204
|
+
"trackedChangeRefs": {
|
|
105205
|
+
"type": "array",
|
|
105206
|
+
"items": {
|
|
105207
|
+
"$ref": "#/$defs/EntityAddress"
|
|
105208
|
+
}
|
|
105209
|
+
}
|
|
105210
|
+
},
|
|
105211
|
+
"additionalProperties": false,
|
|
105212
|
+
"required": [
|
|
105213
|
+
"success"
|
|
105214
|
+
]
|
|
105215
|
+
},
|
|
105216
|
+
{
|
|
105217
|
+
"type": "object",
|
|
105218
|
+
"properties": {
|
|
105219
|
+
"success": {
|
|
105220
|
+
"const": false
|
|
105221
|
+
},
|
|
105222
|
+
"failure": {
|
|
105223
|
+
"type": "object",
|
|
105224
|
+
"properties": {
|
|
105225
|
+
"code": {
|
|
105226
|
+
"enum": [
|
|
105227
|
+
"NO_OP",
|
|
105228
|
+
"INVALID_TARGET",
|
|
105229
|
+
"TARGET_NOT_FOUND",
|
|
105230
|
+
"CAPABILITY_UNAVAILABLE"
|
|
105231
|
+
]
|
|
105232
|
+
},
|
|
105233
|
+
"message": {
|
|
105234
|
+
"type": "string"
|
|
105235
|
+
},
|
|
105236
|
+
"details": {}
|
|
105237
|
+
},
|
|
105238
|
+
"additionalProperties": false,
|
|
105239
|
+
"required": [
|
|
105240
|
+
"code",
|
|
105241
|
+
"message"
|
|
105242
|
+
]
|
|
105243
|
+
}
|
|
105244
|
+
},
|
|
105245
|
+
"additionalProperties": false,
|
|
105246
|
+
"required": [
|
|
105247
|
+
"success",
|
|
105248
|
+
"failure"
|
|
105249
|
+
]
|
|
105250
|
+
}
|
|
105251
|
+
]
|
|
105252
|
+
},
|
|
105253
|
+
"successSchema": {
|
|
105254
|
+
"type": "object",
|
|
105255
|
+
"properties": {
|
|
105256
|
+
"success": {
|
|
105257
|
+
"const": true
|
|
105258
|
+
},
|
|
105259
|
+
"table": {
|
|
105260
|
+
"$ref": "#/$defs/TableAddress"
|
|
105261
|
+
},
|
|
105262
|
+
"trackedChangeRefs": {
|
|
105263
|
+
"type": "array",
|
|
105264
|
+
"items": {
|
|
105265
|
+
"$ref": "#/$defs/EntityAddress"
|
|
105266
|
+
}
|
|
105267
|
+
}
|
|
105268
|
+
},
|
|
105269
|
+
"additionalProperties": false,
|
|
105270
|
+
"required": [
|
|
105271
|
+
"success"
|
|
105272
|
+
]
|
|
105273
|
+
},
|
|
104216
105274
|
"failureSchema": {
|
|
104217
105275
|
"type": "object",
|
|
104218
105276
|
"properties": {
|
|
@@ -104693,7 +105751,7 @@ export const CONTRACT = {
|
|
|
104693
105751
|
},
|
|
104694
105752
|
"color": {
|
|
104695
105753
|
"type": "string",
|
|
104696
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
105754
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
104697
105755
|
}
|
|
104698
105756
|
},
|
|
104699
105757
|
"additionalProperties": false,
|
|
@@ -104722,7 +105780,7 @@ export const CONTRACT = {
|
|
|
104722
105780
|
},
|
|
104723
105781
|
"color": {
|
|
104724
105782
|
"type": "string",
|
|
104725
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
105783
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
104726
105784
|
}
|
|
104727
105785
|
},
|
|
104728
105786
|
"additionalProperties": false,
|
|
@@ -104751,7 +105809,7 @@ export const CONTRACT = {
|
|
|
104751
105809
|
},
|
|
104752
105810
|
"color": {
|
|
104753
105811
|
"type": "string",
|
|
104754
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
105812
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
104755
105813
|
}
|
|
104756
105814
|
},
|
|
104757
105815
|
"additionalProperties": false,
|
|
@@ -104780,7 +105838,7 @@ export const CONTRACT = {
|
|
|
104780
105838
|
},
|
|
104781
105839
|
"color": {
|
|
104782
105840
|
"type": "string",
|
|
104783
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
105841
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
104784
105842
|
}
|
|
104785
105843
|
},
|
|
104786
105844
|
"additionalProperties": false,
|
|
@@ -104809,7 +105867,7 @@ export const CONTRACT = {
|
|
|
104809
105867
|
},
|
|
104810
105868
|
"color": {
|
|
104811
105869
|
"type": "string",
|
|
104812
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
105870
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
104813
105871
|
}
|
|
104814
105872
|
},
|
|
104815
105873
|
"additionalProperties": false,
|
|
@@ -104838,7 +105896,7 @@ export const CONTRACT = {
|
|
|
104838
105896
|
},
|
|
104839
105897
|
"color": {
|
|
104840
105898
|
"type": "string",
|
|
104841
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
105899
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
104842
105900
|
}
|
|
104843
105901
|
},
|
|
104844
105902
|
"additionalProperties": false,
|