@superdoc-dev/sdk 1.8.0-next.66 → 1.8.0-next.67
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
|
@@ -51455,6 +51455,221 @@ const CONTRACT = {
|
|
|
51455
51455
|
"intentGroup": "list",
|
|
51456
51456
|
"intentAction": "detach"
|
|
51457
51457
|
},
|
|
51458
|
+
"doc.lists.delete": {
|
|
51459
|
+
"operationId": "doc.lists.delete",
|
|
51460
|
+
"sdkSurface": "document",
|
|
51461
|
+
"command": "lists delete",
|
|
51462
|
+
"commandTokens": [
|
|
51463
|
+
"lists",
|
|
51464
|
+
"delete"
|
|
51465
|
+
],
|
|
51466
|
+
"category": "lists",
|
|
51467
|
+
"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.",
|
|
51468
|
+
"requiresDocumentContext": true,
|
|
51469
|
+
"docRequirement": "optional",
|
|
51470
|
+
"responseEnvelopeKey": null,
|
|
51471
|
+
"params": [
|
|
51472
|
+
{
|
|
51473
|
+
"name": "doc",
|
|
51474
|
+
"kind": "doc",
|
|
51475
|
+
"type": "string",
|
|
51476
|
+
"description": "Document path. Optional when a session is already open."
|
|
51477
|
+
},
|
|
51478
|
+
{
|
|
51479
|
+
"name": "sessionId",
|
|
51480
|
+
"kind": "flag",
|
|
51481
|
+
"type": "string",
|
|
51482
|
+
"flag": "session",
|
|
51483
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
51484
|
+
},
|
|
51485
|
+
{
|
|
51486
|
+
"name": "out",
|
|
51487
|
+
"kind": "flag",
|
|
51488
|
+
"type": "string",
|
|
51489
|
+
"agentVisible": false
|
|
51490
|
+
},
|
|
51491
|
+
{
|
|
51492
|
+
"name": "force",
|
|
51493
|
+
"kind": "flag",
|
|
51494
|
+
"type": "boolean",
|
|
51495
|
+
"description": "Bypass confirmation checks."
|
|
51496
|
+
},
|
|
51497
|
+
{
|
|
51498
|
+
"name": "expectedRevision",
|
|
51499
|
+
"kind": "flag",
|
|
51500
|
+
"type": "number",
|
|
51501
|
+
"flag": "expected-revision",
|
|
51502
|
+
"agentVisible": false
|
|
51503
|
+
},
|
|
51504
|
+
{
|
|
51505
|
+
"name": "changeMode",
|
|
51506
|
+
"kind": "flag",
|
|
51507
|
+
"type": "string",
|
|
51508
|
+
"flag": "change-mode",
|
|
51509
|
+
"schema": {
|
|
51510
|
+
"enum": [
|
|
51511
|
+
"direct",
|
|
51512
|
+
"tracked"
|
|
51513
|
+
]
|
|
51514
|
+
},
|
|
51515
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
51516
|
+
},
|
|
51517
|
+
{
|
|
51518
|
+
"name": "dryRun",
|
|
51519
|
+
"kind": "flag",
|
|
51520
|
+
"type": "boolean",
|
|
51521
|
+
"flag": "dry-run",
|
|
51522
|
+
"description": "Preview the result without applying changes."
|
|
51523
|
+
},
|
|
51524
|
+
{
|
|
51525
|
+
"name": "target",
|
|
51526
|
+
"kind": "jsonFlag",
|
|
51527
|
+
"type": "json",
|
|
51528
|
+
"flag": "target-json",
|
|
51529
|
+
"required": true,
|
|
51530
|
+
"schema": {
|
|
51531
|
+
"type": "object",
|
|
51532
|
+
"properties": {
|
|
51533
|
+
"kind": {
|
|
51534
|
+
"const": "block"
|
|
51535
|
+
},
|
|
51536
|
+
"nodeType": {
|
|
51537
|
+
"const": "listItem"
|
|
51538
|
+
},
|
|
51539
|
+
"nodeId": {
|
|
51540
|
+
"type": "string"
|
|
51541
|
+
}
|
|
51542
|
+
},
|
|
51543
|
+
"required": [
|
|
51544
|
+
"kind",
|
|
51545
|
+
"nodeType",
|
|
51546
|
+
"nodeId"
|
|
51547
|
+
]
|
|
51548
|
+
}
|
|
51549
|
+
}
|
|
51550
|
+
],
|
|
51551
|
+
"constraints": null,
|
|
51552
|
+
"mutates": true,
|
|
51553
|
+
"idempotency": "conditional",
|
|
51554
|
+
"supportsTrackedMode": false,
|
|
51555
|
+
"supportsDryRun": true,
|
|
51556
|
+
"inputSchema": {
|
|
51557
|
+
"type": "object",
|
|
51558
|
+
"properties": {
|
|
51559
|
+
"target": {
|
|
51560
|
+
"$ref": "#/$defs/ListItemAddress"
|
|
51561
|
+
}
|
|
51562
|
+
},
|
|
51563
|
+
"additionalProperties": false,
|
|
51564
|
+
"required": [
|
|
51565
|
+
"target"
|
|
51566
|
+
]
|
|
51567
|
+
},
|
|
51568
|
+
"outputSchema": {
|
|
51569
|
+
"oneOf": [
|
|
51570
|
+
{
|
|
51571
|
+
"type": "object",
|
|
51572
|
+
"properties": {
|
|
51573
|
+
"success": {
|
|
51574
|
+
"const": true
|
|
51575
|
+
},
|
|
51576
|
+
"deletedCount": {
|
|
51577
|
+
"type": "integer",
|
|
51578
|
+
"minimum": 0
|
|
51579
|
+
}
|
|
51580
|
+
},
|
|
51581
|
+
"additionalProperties": false,
|
|
51582
|
+
"required": [
|
|
51583
|
+
"success",
|
|
51584
|
+
"deletedCount"
|
|
51585
|
+
]
|
|
51586
|
+
},
|
|
51587
|
+
{
|
|
51588
|
+
"type": "object",
|
|
51589
|
+
"properties": {
|
|
51590
|
+
"success": {
|
|
51591
|
+
"const": false
|
|
51592
|
+
},
|
|
51593
|
+
"failure": {
|
|
51594
|
+
"type": "object",
|
|
51595
|
+
"properties": {
|
|
51596
|
+
"code": {
|
|
51597
|
+
"enum": [
|
|
51598
|
+
"INVALID_TARGET"
|
|
51599
|
+
]
|
|
51600
|
+
},
|
|
51601
|
+
"message": {
|
|
51602
|
+
"type": "string"
|
|
51603
|
+
},
|
|
51604
|
+
"details": {}
|
|
51605
|
+
},
|
|
51606
|
+
"additionalProperties": false,
|
|
51607
|
+
"required": [
|
|
51608
|
+
"code",
|
|
51609
|
+
"message"
|
|
51610
|
+
]
|
|
51611
|
+
}
|
|
51612
|
+
},
|
|
51613
|
+
"additionalProperties": false,
|
|
51614
|
+
"required": [
|
|
51615
|
+
"success",
|
|
51616
|
+
"failure"
|
|
51617
|
+
]
|
|
51618
|
+
}
|
|
51619
|
+
]
|
|
51620
|
+
},
|
|
51621
|
+
"successSchema": {
|
|
51622
|
+
"type": "object",
|
|
51623
|
+
"properties": {
|
|
51624
|
+
"success": {
|
|
51625
|
+
"const": true
|
|
51626
|
+
},
|
|
51627
|
+
"deletedCount": {
|
|
51628
|
+
"type": "integer",
|
|
51629
|
+
"minimum": 0
|
|
51630
|
+
}
|
|
51631
|
+
},
|
|
51632
|
+
"additionalProperties": false,
|
|
51633
|
+
"required": [
|
|
51634
|
+
"success",
|
|
51635
|
+
"deletedCount"
|
|
51636
|
+
]
|
|
51637
|
+
},
|
|
51638
|
+
"failureSchema": {
|
|
51639
|
+
"type": "object",
|
|
51640
|
+
"properties": {
|
|
51641
|
+
"success": {
|
|
51642
|
+
"const": false
|
|
51643
|
+
},
|
|
51644
|
+
"failure": {
|
|
51645
|
+
"type": "object",
|
|
51646
|
+
"properties": {
|
|
51647
|
+
"code": {
|
|
51648
|
+
"enum": [
|
|
51649
|
+
"INVALID_TARGET"
|
|
51650
|
+
]
|
|
51651
|
+
},
|
|
51652
|
+
"message": {
|
|
51653
|
+
"type": "string"
|
|
51654
|
+
},
|
|
51655
|
+
"details": {}
|
|
51656
|
+
},
|
|
51657
|
+
"additionalProperties": false,
|
|
51658
|
+
"required": [
|
|
51659
|
+
"code",
|
|
51660
|
+
"message"
|
|
51661
|
+
]
|
|
51662
|
+
}
|
|
51663
|
+
},
|
|
51664
|
+
"additionalProperties": false,
|
|
51665
|
+
"required": [
|
|
51666
|
+
"success",
|
|
51667
|
+
"failure"
|
|
51668
|
+
]
|
|
51669
|
+
},
|
|
51670
|
+
"intentGroup": "list",
|
|
51671
|
+
"intentAction": "delete"
|
|
51672
|
+
},
|
|
51458
51673
|
"doc.lists.indent": {
|
|
51459
51674
|
"operationId": "doc.lists.indent",
|
|
51460
51675
|
"sdkSurface": "document",
|
|
@@ -80366,6 +80581,41 @@ const CONTRACT = {
|
|
|
80366
80581
|
"dryRun"
|
|
80367
80582
|
]
|
|
80368
80583
|
},
|
|
80584
|
+
"lists.delete": {
|
|
80585
|
+
"type": "object",
|
|
80586
|
+
"properties": {
|
|
80587
|
+
"available": {
|
|
80588
|
+
"type": "boolean"
|
|
80589
|
+
},
|
|
80590
|
+
"tracked": {
|
|
80591
|
+
"type": "boolean"
|
|
80592
|
+
},
|
|
80593
|
+
"dryRun": {
|
|
80594
|
+
"type": "boolean"
|
|
80595
|
+
},
|
|
80596
|
+
"reasons": {
|
|
80597
|
+
"type": "array",
|
|
80598
|
+
"items": {
|
|
80599
|
+
"enum": [
|
|
80600
|
+
"COMMAND_UNAVAILABLE",
|
|
80601
|
+
"HELPER_UNAVAILABLE",
|
|
80602
|
+
"OPERATION_UNAVAILABLE",
|
|
80603
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
80604
|
+
"DRY_RUN_UNAVAILABLE",
|
|
80605
|
+
"NAMESPACE_UNAVAILABLE",
|
|
80606
|
+
"STYLES_PART_MISSING",
|
|
80607
|
+
"COLLABORATION_ACTIVE"
|
|
80608
|
+
]
|
|
80609
|
+
}
|
|
80610
|
+
}
|
|
80611
|
+
},
|
|
80612
|
+
"additionalProperties": false,
|
|
80613
|
+
"required": [
|
|
80614
|
+
"available",
|
|
80615
|
+
"tracked",
|
|
80616
|
+
"dryRun"
|
|
80617
|
+
]
|
|
80618
|
+
},
|
|
80369
80619
|
"lists.indent": {
|
|
80370
80620
|
"type": "object",
|
|
80371
80621
|
"properties": {
|
|
@@ -82781,7 +83031,7 @@ const CONTRACT = {
|
|
|
82781
83031
|
"dryRun"
|
|
82782
83032
|
]
|
|
82783
83033
|
},
|
|
82784
|
-
"tables.
|
|
83034
|
+
"tables.setCellText": {
|
|
82785
83035
|
"type": "object",
|
|
82786
83036
|
"properties": {
|
|
82787
83037
|
"available": {
|
|
@@ -82816,7 +83066,7 @@ const CONTRACT = {
|
|
|
82816
83066
|
"dryRun"
|
|
82817
83067
|
]
|
|
82818
83068
|
},
|
|
82819
|
-
"tables.
|
|
83069
|
+
"tables.sort": {
|
|
82820
83070
|
"type": "object",
|
|
82821
83071
|
"properties": {
|
|
82822
83072
|
"available": {
|
|
@@ -82851,7 +83101,7 @@ const CONTRACT = {
|
|
|
82851
83101
|
"dryRun"
|
|
82852
83102
|
]
|
|
82853
83103
|
},
|
|
82854
|
-
"tables.
|
|
83104
|
+
"tables.setAltText": {
|
|
82855
83105
|
"type": "object",
|
|
82856
83106
|
"properties": {
|
|
82857
83107
|
"available": {
|
|
@@ -82886,7 +83136,7 @@ const CONTRACT = {
|
|
|
82886
83136
|
"dryRun"
|
|
82887
83137
|
]
|
|
82888
83138
|
},
|
|
82889
|
-
"tables.
|
|
83139
|
+
"tables.setStyle": {
|
|
82890
83140
|
"type": "object",
|
|
82891
83141
|
"properties": {
|
|
82892
83142
|
"available": {
|
|
@@ -82921,7 +83171,7 @@ const CONTRACT = {
|
|
|
82921
83171
|
"dryRun"
|
|
82922
83172
|
]
|
|
82923
83173
|
},
|
|
82924
|
-
"tables.
|
|
83174
|
+
"tables.clearStyle": {
|
|
82925
83175
|
"type": "object",
|
|
82926
83176
|
"properties": {
|
|
82927
83177
|
"available": {
|
|
@@ -82956,7 +83206,7 @@ const CONTRACT = {
|
|
|
82956
83206
|
"dryRun"
|
|
82957
83207
|
]
|
|
82958
83208
|
},
|
|
82959
|
-
"tables.
|
|
83209
|
+
"tables.setStyleOption": {
|
|
82960
83210
|
"type": "object",
|
|
82961
83211
|
"properties": {
|
|
82962
83212
|
"available": {
|
|
@@ -82991,7 +83241,7 @@ const CONTRACT = {
|
|
|
82991
83241
|
"dryRun"
|
|
82992
83242
|
]
|
|
82993
83243
|
},
|
|
82994
|
-
"tables.
|
|
83244
|
+
"tables.setBorder": {
|
|
82995
83245
|
"type": "object",
|
|
82996
83246
|
"properties": {
|
|
82997
83247
|
"available": {
|
|
@@ -83026,7 +83276,7 @@ const CONTRACT = {
|
|
|
83026
83276
|
"dryRun"
|
|
83027
83277
|
]
|
|
83028
83278
|
},
|
|
83029
|
-
"tables.
|
|
83279
|
+
"tables.clearBorder": {
|
|
83030
83280
|
"type": "object",
|
|
83031
83281
|
"properties": {
|
|
83032
83282
|
"available": {
|
|
@@ -83061,147 +83311,7 @@ const CONTRACT = {
|
|
|
83061
83311
|
"dryRun"
|
|
83062
83312
|
]
|
|
83063
83313
|
},
|
|
83064
|
-
"tables.
|
|
83065
|
-
"type": "object",
|
|
83066
|
-
"properties": {
|
|
83067
|
-
"available": {
|
|
83068
|
-
"type": "boolean"
|
|
83069
|
-
},
|
|
83070
|
-
"tracked": {
|
|
83071
|
-
"type": "boolean"
|
|
83072
|
-
},
|
|
83073
|
-
"dryRun": {
|
|
83074
|
-
"type": "boolean"
|
|
83075
|
-
},
|
|
83076
|
-
"reasons": {
|
|
83077
|
-
"type": "array",
|
|
83078
|
-
"items": {
|
|
83079
|
-
"enum": [
|
|
83080
|
-
"COMMAND_UNAVAILABLE",
|
|
83081
|
-
"HELPER_UNAVAILABLE",
|
|
83082
|
-
"OPERATION_UNAVAILABLE",
|
|
83083
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
83084
|
-
"DRY_RUN_UNAVAILABLE",
|
|
83085
|
-
"NAMESPACE_UNAVAILABLE",
|
|
83086
|
-
"STYLES_PART_MISSING",
|
|
83087
|
-
"COLLABORATION_ACTIVE"
|
|
83088
|
-
]
|
|
83089
|
-
}
|
|
83090
|
-
}
|
|
83091
|
-
},
|
|
83092
|
-
"additionalProperties": false,
|
|
83093
|
-
"required": [
|
|
83094
|
-
"available",
|
|
83095
|
-
"tracked",
|
|
83096
|
-
"dryRun"
|
|
83097
|
-
]
|
|
83098
|
-
},
|
|
83099
|
-
"tables.clearShading": {
|
|
83100
|
-
"type": "object",
|
|
83101
|
-
"properties": {
|
|
83102
|
-
"available": {
|
|
83103
|
-
"type": "boolean"
|
|
83104
|
-
},
|
|
83105
|
-
"tracked": {
|
|
83106
|
-
"type": "boolean"
|
|
83107
|
-
},
|
|
83108
|
-
"dryRun": {
|
|
83109
|
-
"type": "boolean"
|
|
83110
|
-
},
|
|
83111
|
-
"reasons": {
|
|
83112
|
-
"type": "array",
|
|
83113
|
-
"items": {
|
|
83114
|
-
"enum": [
|
|
83115
|
-
"COMMAND_UNAVAILABLE",
|
|
83116
|
-
"HELPER_UNAVAILABLE",
|
|
83117
|
-
"OPERATION_UNAVAILABLE",
|
|
83118
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
83119
|
-
"DRY_RUN_UNAVAILABLE",
|
|
83120
|
-
"NAMESPACE_UNAVAILABLE",
|
|
83121
|
-
"STYLES_PART_MISSING",
|
|
83122
|
-
"COLLABORATION_ACTIVE"
|
|
83123
|
-
]
|
|
83124
|
-
}
|
|
83125
|
-
}
|
|
83126
|
-
},
|
|
83127
|
-
"additionalProperties": false,
|
|
83128
|
-
"required": [
|
|
83129
|
-
"available",
|
|
83130
|
-
"tracked",
|
|
83131
|
-
"dryRun"
|
|
83132
|
-
]
|
|
83133
|
-
},
|
|
83134
|
-
"tables.setTablePadding": {
|
|
83135
|
-
"type": "object",
|
|
83136
|
-
"properties": {
|
|
83137
|
-
"available": {
|
|
83138
|
-
"type": "boolean"
|
|
83139
|
-
},
|
|
83140
|
-
"tracked": {
|
|
83141
|
-
"type": "boolean"
|
|
83142
|
-
},
|
|
83143
|
-
"dryRun": {
|
|
83144
|
-
"type": "boolean"
|
|
83145
|
-
},
|
|
83146
|
-
"reasons": {
|
|
83147
|
-
"type": "array",
|
|
83148
|
-
"items": {
|
|
83149
|
-
"enum": [
|
|
83150
|
-
"COMMAND_UNAVAILABLE",
|
|
83151
|
-
"HELPER_UNAVAILABLE",
|
|
83152
|
-
"OPERATION_UNAVAILABLE",
|
|
83153
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
83154
|
-
"DRY_RUN_UNAVAILABLE",
|
|
83155
|
-
"NAMESPACE_UNAVAILABLE",
|
|
83156
|
-
"STYLES_PART_MISSING",
|
|
83157
|
-
"COLLABORATION_ACTIVE"
|
|
83158
|
-
]
|
|
83159
|
-
}
|
|
83160
|
-
}
|
|
83161
|
-
},
|
|
83162
|
-
"additionalProperties": false,
|
|
83163
|
-
"required": [
|
|
83164
|
-
"available",
|
|
83165
|
-
"tracked",
|
|
83166
|
-
"dryRun"
|
|
83167
|
-
]
|
|
83168
|
-
},
|
|
83169
|
-
"tables.setCellPadding": {
|
|
83170
|
-
"type": "object",
|
|
83171
|
-
"properties": {
|
|
83172
|
-
"available": {
|
|
83173
|
-
"type": "boolean"
|
|
83174
|
-
},
|
|
83175
|
-
"tracked": {
|
|
83176
|
-
"type": "boolean"
|
|
83177
|
-
},
|
|
83178
|
-
"dryRun": {
|
|
83179
|
-
"type": "boolean"
|
|
83180
|
-
},
|
|
83181
|
-
"reasons": {
|
|
83182
|
-
"type": "array",
|
|
83183
|
-
"items": {
|
|
83184
|
-
"enum": [
|
|
83185
|
-
"COMMAND_UNAVAILABLE",
|
|
83186
|
-
"HELPER_UNAVAILABLE",
|
|
83187
|
-
"OPERATION_UNAVAILABLE",
|
|
83188
|
-
"TRACKED_MODE_UNAVAILABLE",
|
|
83189
|
-
"DRY_RUN_UNAVAILABLE",
|
|
83190
|
-
"NAMESPACE_UNAVAILABLE",
|
|
83191
|
-
"STYLES_PART_MISSING",
|
|
83192
|
-
"COLLABORATION_ACTIVE"
|
|
83193
|
-
]
|
|
83194
|
-
}
|
|
83195
|
-
}
|
|
83196
|
-
},
|
|
83197
|
-
"additionalProperties": false,
|
|
83198
|
-
"required": [
|
|
83199
|
-
"available",
|
|
83200
|
-
"tracked",
|
|
83201
|
-
"dryRun"
|
|
83202
|
-
]
|
|
83203
|
-
},
|
|
83204
|
-
"tables.setCellSpacing": {
|
|
83314
|
+
"tables.applyBorderPreset": {
|
|
83205
83315
|
"type": "object",
|
|
83206
83316
|
"properties": {
|
|
83207
83317
|
"available": {
|
|
@@ -83236,7 +83346,7 @@ const CONTRACT = {
|
|
|
83236
83346
|
"dryRun"
|
|
83237
83347
|
]
|
|
83238
83348
|
},
|
|
83239
|
-
"tables.
|
|
83349
|
+
"tables.setShading": {
|
|
83240
83350
|
"type": "object",
|
|
83241
83351
|
"properties": {
|
|
83242
83352
|
"available": {
|
|
@@ -83271,7 +83381,7 @@ const CONTRACT = {
|
|
|
83271
83381
|
"dryRun"
|
|
83272
83382
|
]
|
|
83273
83383
|
},
|
|
83274
|
-
"tables.
|
|
83384
|
+
"tables.clearShading": {
|
|
83275
83385
|
"type": "object",
|
|
83276
83386
|
"properties": {
|
|
83277
83387
|
"available": {
|
|
@@ -83306,7 +83416,7 @@ const CONTRACT = {
|
|
|
83306
83416
|
"dryRun"
|
|
83307
83417
|
]
|
|
83308
83418
|
},
|
|
83309
|
-
"tables.
|
|
83419
|
+
"tables.setTablePadding": {
|
|
83310
83420
|
"type": "object",
|
|
83311
83421
|
"properties": {
|
|
83312
83422
|
"available": {
|
|
@@ -83341,7 +83451,7 @@ const CONTRACT = {
|
|
|
83341
83451
|
"dryRun"
|
|
83342
83452
|
]
|
|
83343
83453
|
},
|
|
83344
|
-
"tables.
|
|
83454
|
+
"tables.setCellPadding": {
|
|
83345
83455
|
"type": "object",
|
|
83346
83456
|
"properties": {
|
|
83347
83457
|
"available": {
|
|
@@ -83376,7 +83486,7 @@ const CONTRACT = {
|
|
|
83376
83486
|
"dryRun"
|
|
83377
83487
|
]
|
|
83378
83488
|
},
|
|
83379
|
-
"tables.
|
|
83489
|
+
"tables.setCellSpacing": {
|
|
83380
83490
|
"type": "object",
|
|
83381
83491
|
"properties": {
|
|
83382
83492
|
"available": {
|
|
@@ -83411,7 +83521,7 @@ const CONTRACT = {
|
|
|
83411
83521
|
"dryRun"
|
|
83412
83522
|
]
|
|
83413
83523
|
},
|
|
83414
|
-
"tables.
|
|
83524
|
+
"tables.clearCellSpacing": {
|
|
83415
83525
|
"type": "object",
|
|
83416
83526
|
"properties": {
|
|
83417
83527
|
"available": {
|
|
@@ -83446,7 +83556,7 @@ const CONTRACT = {
|
|
|
83446
83556
|
"dryRun"
|
|
83447
83557
|
]
|
|
83448
83558
|
},
|
|
83449
|
-
"tables.
|
|
83559
|
+
"tables.applyStyle": {
|
|
83450
83560
|
"type": "object",
|
|
83451
83561
|
"properties": {
|
|
83452
83562
|
"available": {
|
|
@@ -83481,7 +83591,7 @@ const CONTRACT = {
|
|
|
83481
83591
|
"dryRun"
|
|
83482
83592
|
]
|
|
83483
83593
|
},
|
|
83484
|
-
"tables.
|
|
83594
|
+
"tables.setBorders": {
|
|
83485
83595
|
"type": "object",
|
|
83486
83596
|
"properties": {
|
|
83487
83597
|
"available": {
|
|
@@ -83516,7 +83626,7 @@ const CONTRACT = {
|
|
|
83516
83626
|
"dryRun"
|
|
83517
83627
|
]
|
|
83518
83628
|
},
|
|
83519
|
-
"tables.
|
|
83629
|
+
"tables.setTableOptions": {
|
|
83520
83630
|
"type": "object",
|
|
83521
83631
|
"properties": {
|
|
83522
83632
|
"available": {
|
|
@@ -83551,7 +83661,7 @@ const CONTRACT = {
|
|
|
83551
83661
|
"dryRun"
|
|
83552
83662
|
]
|
|
83553
83663
|
},
|
|
83554
|
-
"tables.
|
|
83664
|
+
"tables.applyPreset": {
|
|
83555
83665
|
"type": "object",
|
|
83556
83666
|
"properties": {
|
|
83557
83667
|
"available": {
|
|
@@ -83586,7 +83696,7 @@ const CONTRACT = {
|
|
|
83586
83696
|
"dryRun"
|
|
83587
83697
|
]
|
|
83588
83698
|
},
|
|
83589
|
-
"
|
|
83699
|
+
"tables.get": {
|
|
83590
83700
|
"type": "object",
|
|
83591
83701
|
"properties": {
|
|
83592
83702
|
"available": {
|
|
@@ -83621,7 +83731,7 @@ const CONTRACT = {
|
|
|
83621
83731
|
"dryRun"
|
|
83622
83732
|
]
|
|
83623
83733
|
},
|
|
83624
|
-
"
|
|
83734
|
+
"tables.getCells": {
|
|
83625
83735
|
"type": "object",
|
|
83626
83736
|
"properties": {
|
|
83627
83737
|
"available": {
|
|
@@ -83656,7 +83766,7 @@ const CONTRACT = {
|
|
|
83656
83766
|
"dryRun"
|
|
83657
83767
|
]
|
|
83658
83768
|
},
|
|
83659
|
-
"
|
|
83769
|
+
"tables.getProperties": {
|
|
83660
83770
|
"type": "object",
|
|
83661
83771
|
"properties": {
|
|
83662
83772
|
"available": {
|
|
@@ -83691,7 +83801,7 @@ const CONTRACT = {
|
|
|
83691
83801
|
"dryRun"
|
|
83692
83802
|
]
|
|
83693
83803
|
},
|
|
83694
|
-
"
|
|
83804
|
+
"tables.getStyles": {
|
|
83695
83805
|
"type": "object",
|
|
83696
83806
|
"properties": {
|
|
83697
83807
|
"available": {
|
|
@@ -83726,7 +83836,7 @@ const CONTRACT = {
|
|
|
83726
83836
|
"dryRun"
|
|
83727
83837
|
]
|
|
83728
83838
|
},
|
|
83729
|
-
"
|
|
83839
|
+
"tables.setDefaultStyle": {
|
|
83730
83840
|
"type": "object",
|
|
83731
83841
|
"properties": {
|
|
83732
83842
|
"available": {
|
|
@@ -83761,7 +83871,7 @@ const CONTRACT = {
|
|
|
83761
83871
|
"dryRun"
|
|
83762
83872
|
]
|
|
83763
83873
|
},
|
|
83764
|
-
"
|
|
83874
|
+
"tables.clearDefaultStyle": {
|
|
83765
83875
|
"type": "object",
|
|
83766
83876
|
"properties": {
|
|
83767
83877
|
"available": {
|
|
@@ -83796,7 +83906,7 @@ const CONTRACT = {
|
|
|
83796
83906
|
"dryRun"
|
|
83797
83907
|
]
|
|
83798
83908
|
},
|
|
83799
|
-
"
|
|
83909
|
+
"create.tableOfContents": {
|
|
83800
83910
|
"type": "object",
|
|
83801
83911
|
"properties": {
|
|
83802
83912
|
"available": {
|
|
@@ -83831,7 +83941,7 @@ const CONTRACT = {
|
|
|
83831
83941
|
"dryRun"
|
|
83832
83942
|
]
|
|
83833
83943
|
},
|
|
83834
|
-
"toc.
|
|
83944
|
+
"toc.list": {
|
|
83835
83945
|
"type": "object",
|
|
83836
83946
|
"properties": {
|
|
83837
83947
|
"available": {
|
|
@@ -83866,7 +83976,7 @@ const CONTRACT = {
|
|
|
83866
83976
|
"dryRun"
|
|
83867
83977
|
]
|
|
83868
83978
|
},
|
|
83869
|
-
"toc.
|
|
83979
|
+
"toc.get": {
|
|
83870
83980
|
"type": "object",
|
|
83871
83981
|
"properties": {
|
|
83872
83982
|
"available": {
|
|
@@ -83901,7 +84011,7 @@ const CONTRACT = {
|
|
|
83901
84011
|
"dryRun"
|
|
83902
84012
|
]
|
|
83903
84013
|
},
|
|
83904
|
-
"toc.
|
|
84014
|
+
"toc.configure": {
|
|
83905
84015
|
"type": "object",
|
|
83906
84016
|
"properties": {
|
|
83907
84017
|
"available": {
|
|
@@ -83936,7 +84046,7 @@ const CONTRACT = {
|
|
|
83936
84046
|
"dryRun"
|
|
83937
84047
|
]
|
|
83938
84048
|
},
|
|
83939
|
-
"toc.
|
|
84049
|
+
"toc.update": {
|
|
83940
84050
|
"type": "object",
|
|
83941
84051
|
"properties": {
|
|
83942
84052
|
"available": {
|
|
@@ -83971,7 +84081,7 @@ const CONTRACT = {
|
|
|
83971
84081
|
"dryRun"
|
|
83972
84082
|
]
|
|
83973
84083
|
},
|
|
83974
|
-
"
|
|
84084
|
+
"toc.remove": {
|
|
83975
84085
|
"type": "object",
|
|
83976
84086
|
"properties": {
|
|
83977
84087
|
"available": {
|
|
@@ -84006,7 +84116,7 @@ const CONTRACT = {
|
|
|
84006
84116
|
"dryRun"
|
|
84007
84117
|
]
|
|
84008
84118
|
},
|
|
84009
|
-
"
|
|
84119
|
+
"toc.markEntry": {
|
|
84010
84120
|
"type": "object",
|
|
84011
84121
|
"properties": {
|
|
84012
84122
|
"available": {
|
|
@@ -84041,7 +84151,7 @@ const CONTRACT = {
|
|
|
84041
84151
|
"dryRun"
|
|
84042
84152
|
]
|
|
84043
84153
|
},
|
|
84044
|
-
"
|
|
84154
|
+
"toc.unmarkEntry": {
|
|
84045
84155
|
"type": "object",
|
|
84046
84156
|
"properties": {
|
|
84047
84157
|
"available": {
|
|
@@ -84076,7 +84186,7 @@ const CONTRACT = {
|
|
|
84076
84186
|
"dryRun"
|
|
84077
84187
|
]
|
|
84078
84188
|
},
|
|
84079
|
-
"
|
|
84189
|
+
"toc.listEntries": {
|
|
84080
84190
|
"type": "object",
|
|
84081
84191
|
"properties": {
|
|
84082
84192
|
"available": {
|
|
@@ -84111,7 +84221,7 @@ const CONTRACT = {
|
|
|
84111
84221
|
"dryRun"
|
|
84112
84222
|
]
|
|
84113
84223
|
},
|
|
84114
|
-
"
|
|
84224
|
+
"toc.getEntry": {
|
|
84115
84225
|
"type": "object",
|
|
84116
84226
|
"properties": {
|
|
84117
84227
|
"available": {
|
|
@@ -84146,7 +84256,7 @@ const CONTRACT = {
|
|
|
84146
84256
|
"dryRun"
|
|
84147
84257
|
]
|
|
84148
84258
|
},
|
|
84149
|
-
"
|
|
84259
|
+
"toc.editEntry": {
|
|
84150
84260
|
"type": "object",
|
|
84151
84261
|
"properties": {
|
|
84152
84262
|
"available": {
|
|
@@ -84181,7 +84291,7 @@ const CONTRACT = {
|
|
|
84181
84291
|
"dryRun"
|
|
84182
84292
|
]
|
|
84183
84293
|
},
|
|
84184
|
-
"
|
|
84294
|
+
"history.get": {
|
|
84185
84295
|
"type": "object",
|
|
84186
84296
|
"properties": {
|
|
84187
84297
|
"available": {
|
|
@@ -84216,7 +84326,7 @@ const CONTRACT = {
|
|
|
84216
84326
|
"dryRun"
|
|
84217
84327
|
]
|
|
84218
84328
|
},
|
|
84219
|
-
"
|
|
84329
|
+
"history.undo": {
|
|
84220
84330
|
"type": "object",
|
|
84221
84331
|
"properties": {
|
|
84222
84332
|
"available": {
|
|
@@ -84251,7 +84361,7 @@ const CONTRACT = {
|
|
|
84251
84361
|
"dryRun"
|
|
84252
84362
|
]
|
|
84253
84363
|
},
|
|
84254
|
-
"
|
|
84364
|
+
"history.redo": {
|
|
84255
84365
|
"type": "object",
|
|
84256
84366
|
"properties": {
|
|
84257
84367
|
"available": {
|
|
@@ -84286,7 +84396,7 @@ const CONTRACT = {
|
|
|
84286
84396
|
"dryRun"
|
|
84287
84397
|
]
|
|
84288
84398
|
},
|
|
84289
|
-
"
|
|
84399
|
+
"create.image": {
|
|
84290
84400
|
"type": "object",
|
|
84291
84401
|
"properties": {
|
|
84292
84402
|
"available": {
|
|
@@ -84321,7 +84431,7 @@ const CONTRACT = {
|
|
|
84321
84431
|
"dryRun"
|
|
84322
84432
|
]
|
|
84323
84433
|
},
|
|
84324
|
-
"images.
|
|
84434
|
+
"images.list": {
|
|
84325
84435
|
"type": "object",
|
|
84326
84436
|
"properties": {
|
|
84327
84437
|
"available": {
|
|
@@ -84356,7 +84466,7 @@ const CONTRACT = {
|
|
|
84356
84466
|
"dryRun"
|
|
84357
84467
|
]
|
|
84358
84468
|
},
|
|
84359
|
-
"images.
|
|
84469
|
+
"images.get": {
|
|
84360
84470
|
"type": "object",
|
|
84361
84471
|
"properties": {
|
|
84362
84472
|
"available": {
|
|
@@ -84391,7 +84501,7 @@ const CONTRACT = {
|
|
|
84391
84501
|
"dryRun"
|
|
84392
84502
|
]
|
|
84393
84503
|
},
|
|
84394
|
-
"images.
|
|
84504
|
+
"images.delete": {
|
|
84395
84505
|
"type": "object",
|
|
84396
84506
|
"properties": {
|
|
84397
84507
|
"available": {
|
|
@@ -84426,7 +84536,7 @@ const CONTRACT = {
|
|
|
84426
84536
|
"dryRun"
|
|
84427
84537
|
]
|
|
84428
84538
|
},
|
|
84429
|
-
"images.
|
|
84539
|
+
"images.move": {
|
|
84430
84540
|
"type": "object",
|
|
84431
84541
|
"properties": {
|
|
84432
84542
|
"available": {
|
|
@@ -84461,7 +84571,7 @@ const CONTRACT = {
|
|
|
84461
84571
|
"dryRun"
|
|
84462
84572
|
]
|
|
84463
84573
|
},
|
|
84464
|
-
"images.
|
|
84574
|
+
"images.convertToInline": {
|
|
84465
84575
|
"type": "object",
|
|
84466
84576
|
"properties": {
|
|
84467
84577
|
"available": {
|
|
@@ -84496,7 +84606,7 @@ const CONTRACT = {
|
|
|
84496
84606
|
"dryRun"
|
|
84497
84607
|
]
|
|
84498
84608
|
},
|
|
84499
|
-
"images.
|
|
84609
|
+
"images.convertToFloating": {
|
|
84500
84610
|
"type": "object",
|
|
84501
84611
|
"properties": {
|
|
84502
84612
|
"available": {
|
|
@@ -84531,7 +84641,7 @@ const CONTRACT = {
|
|
|
84531
84641
|
"dryRun"
|
|
84532
84642
|
]
|
|
84533
84643
|
},
|
|
84534
|
-
"images.
|
|
84644
|
+
"images.setSize": {
|
|
84535
84645
|
"type": "object",
|
|
84536
84646
|
"properties": {
|
|
84537
84647
|
"available": {
|
|
@@ -84566,7 +84676,7 @@ const CONTRACT = {
|
|
|
84566
84676
|
"dryRun"
|
|
84567
84677
|
]
|
|
84568
84678
|
},
|
|
84569
|
-
"images.
|
|
84679
|
+
"images.setWrapType": {
|
|
84570
84680
|
"type": "object",
|
|
84571
84681
|
"properties": {
|
|
84572
84682
|
"available": {
|
|
@@ -84601,7 +84711,7 @@ const CONTRACT = {
|
|
|
84601
84711
|
"dryRun"
|
|
84602
84712
|
]
|
|
84603
84713
|
},
|
|
84604
|
-
"images.
|
|
84714
|
+
"images.setWrapSide": {
|
|
84605
84715
|
"type": "object",
|
|
84606
84716
|
"properties": {
|
|
84607
84717
|
"available": {
|
|
@@ -84636,7 +84746,7 @@ const CONTRACT = {
|
|
|
84636
84746
|
"dryRun"
|
|
84637
84747
|
]
|
|
84638
84748
|
},
|
|
84639
|
-
"images.
|
|
84749
|
+
"images.setWrapDistances": {
|
|
84640
84750
|
"type": "object",
|
|
84641
84751
|
"properties": {
|
|
84642
84752
|
"available": {
|
|
@@ -84671,7 +84781,7 @@ const CONTRACT = {
|
|
|
84671
84781
|
"dryRun"
|
|
84672
84782
|
]
|
|
84673
84783
|
},
|
|
84674
|
-
"images.
|
|
84784
|
+
"images.setPosition": {
|
|
84675
84785
|
"type": "object",
|
|
84676
84786
|
"properties": {
|
|
84677
84787
|
"available": {
|
|
@@ -84706,7 +84816,7 @@ const CONTRACT = {
|
|
|
84706
84816
|
"dryRun"
|
|
84707
84817
|
]
|
|
84708
84818
|
},
|
|
84709
|
-
"images.
|
|
84819
|
+
"images.setAnchorOptions": {
|
|
84710
84820
|
"type": "object",
|
|
84711
84821
|
"properties": {
|
|
84712
84822
|
"available": {
|
|
@@ -84741,7 +84851,7 @@ const CONTRACT = {
|
|
|
84741
84851
|
"dryRun"
|
|
84742
84852
|
]
|
|
84743
84853
|
},
|
|
84744
|
-
"images.
|
|
84854
|
+
"images.setZOrder": {
|
|
84745
84855
|
"type": "object",
|
|
84746
84856
|
"properties": {
|
|
84747
84857
|
"available": {
|
|
@@ -84776,7 +84886,7 @@ const CONTRACT = {
|
|
|
84776
84886
|
"dryRun"
|
|
84777
84887
|
]
|
|
84778
84888
|
},
|
|
84779
|
-
"images.
|
|
84889
|
+
"images.scale": {
|
|
84780
84890
|
"type": "object",
|
|
84781
84891
|
"properties": {
|
|
84782
84892
|
"available": {
|
|
@@ -84811,7 +84921,7 @@ const CONTRACT = {
|
|
|
84811
84921
|
"dryRun"
|
|
84812
84922
|
]
|
|
84813
84923
|
},
|
|
84814
|
-
"images.
|
|
84924
|
+
"images.setLockAspectRatio": {
|
|
84815
84925
|
"type": "object",
|
|
84816
84926
|
"properties": {
|
|
84817
84927
|
"available": {
|
|
@@ -84846,7 +84956,7 @@ const CONTRACT = {
|
|
|
84846
84956
|
"dryRun"
|
|
84847
84957
|
]
|
|
84848
84958
|
},
|
|
84849
|
-
"images.
|
|
84959
|
+
"images.rotate": {
|
|
84850
84960
|
"type": "object",
|
|
84851
84961
|
"properties": {
|
|
84852
84962
|
"available": {
|
|
@@ -84881,7 +84991,7 @@ const CONTRACT = {
|
|
|
84881
84991
|
"dryRun"
|
|
84882
84992
|
]
|
|
84883
84993
|
},
|
|
84884
|
-
"images.
|
|
84994
|
+
"images.flip": {
|
|
84885
84995
|
"type": "object",
|
|
84886
84996
|
"properties": {
|
|
84887
84997
|
"available": {
|
|
@@ -84916,7 +85026,7 @@ const CONTRACT = {
|
|
|
84916
85026
|
"dryRun"
|
|
84917
85027
|
]
|
|
84918
85028
|
},
|
|
84919
|
-
"images.
|
|
85029
|
+
"images.crop": {
|
|
84920
85030
|
"type": "object",
|
|
84921
85031
|
"properties": {
|
|
84922
85032
|
"available": {
|
|
@@ -84951,7 +85061,7 @@ const CONTRACT = {
|
|
|
84951
85061
|
"dryRun"
|
|
84952
85062
|
]
|
|
84953
85063
|
},
|
|
84954
|
-
"images.
|
|
85064
|
+
"images.resetCrop": {
|
|
84955
85065
|
"type": "object",
|
|
84956
85066
|
"properties": {
|
|
84957
85067
|
"available": {
|
|
@@ -84986,7 +85096,7 @@ const CONTRACT = {
|
|
|
84986
85096
|
"dryRun"
|
|
84987
85097
|
]
|
|
84988
85098
|
},
|
|
84989
|
-
"images.
|
|
85099
|
+
"images.replaceSource": {
|
|
84990
85100
|
"type": "object",
|
|
84991
85101
|
"properties": {
|
|
84992
85102
|
"available": {
|
|
@@ -85021,7 +85131,7 @@ const CONTRACT = {
|
|
|
85021
85131
|
"dryRun"
|
|
85022
85132
|
]
|
|
85023
85133
|
},
|
|
85024
|
-
"images.
|
|
85134
|
+
"images.setAltText": {
|
|
85025
85135
|
"type": "object",
|
|
85026
85136
|
"properties": {
|
|
85027
85137
|
"available": {
|
|
@@ -85056,7 +85166,7 @@ const CONTRACT = {
|
|
|
85056
85166
|
"dryRun"
|
|
85057
85167
|
]
|
|
85058
85168
|
},
|
|
85059
|
-
"
|
|
85169
|
+
"images.setDecorative": {
|
|
85060
85170
|
"type": "object",
|
|
85061
85171
|
"properties": {
|
|
85062
85172
|
"available": {
|
|
@@ -85091,7 +85201,7 @@ const CONTRACT = {
|
|
|
85091
85201
|
"dryRun"
|
|
85092
85202
|
]
|
|
85093
85203
|
},
|
|
85094
|
-
"
|
|
85204
|
+
"images.setName": {
|
|
85095
85205
|
"type": "object",
|
|
85096
85206
|
"properties": {
|
|
85097
85207
|
"available": {
|
|
@@ -85126,7 +85236,7 @@ const CONTRACT = {
|
|
|
85126
85236
|
"dryRun"
|
|
85127
85237
|
]
|
|
85128
85238
|
},
|
|
85129
|
-
"
|
|
85239
|
+
"images.setHyperlink": {
|
|
85130
85240
|
"type": "object",
|
|
85131
85241
|
"properties": {
|
|
85132
85242
|
"available": {
|
|
@@ -85161,7 +85271,7 @@ const CONTRACT = {
|
|
|
85161
85271
|
"dryRun"
|
|
85162
85272
|
]
|
|
85163
85273
|
},
|
|
85164
|
-
"
|
|
85274
|
+
"images.insertCaption": {
|
|
85165
85275
|
"type": "object",
|
|
85166
85276
|
"properties": {
|
|
85167
85277
|
"available": {
|
|
@@ -85196,7 +85306,7 @@ const CONTRACT = {
|
|
|
85196
85306
|
"dryRun"
|
|
85197
85307
|
]
|
|
85198
85308
|
},
|
|
85199
|
-
"
|
|
85309
|
+
"images.updateCaption": {
|
|
85200
85310
|
"type": "object",
|
|
85201
85311
|
"properties": {
|
|
85202
85312
|
"available": {
|
|
@@ -85231,7 +85341,7 @@ const CONTRACT = {
|
|
|
85231
85341
|
"dryRun"
|
|
85232
85342
|
]
|
|
85233
85343
|
},
|
|
85234
|
-
"
|
|
85344
|
+
"images.removeCaption": {
|
|
85235
85345
|
"type": "object",
|
|
85236
85346
|
"properties": {
|
|
85237
85347
|
"available": {
|
|
@@ -85266,7 +85376,7 @@ const CONTRACT = {
|
|
|
85266
85376
|
"dryRun"
|
|
85267
85377
|
]
|
|
85268
85378
|
},
|
|
85269
|
-
"
|
|
85379
|
+
"hyperlinks.list": {
|
|
85270
85380
|
"type": "object",
|
|
85271
85381
|
"properties": {
|
|
85272
85382
|
"available": {
|
|
@@ -85301,7 +85411,7 @@ const CONTRACT = {
|
|
|
85301
85411
|
"dryRun"
|
|
85302
85412
|
]
|
|
85303
85413
|
},
|
|
85304
|
-
"
|
|
85414
|
+
"hyperlinks.get": {
|
|
85305
85415
|
"type": "object",
|
|
85306
85416
|
"properties": {
|
|
85307
85417
|
"available": {
|
|
@@ -85336,7 +85446,7 @@ const CONTRACT = {
|
|
|
85336
85446
|
"dryRun"
|
|
85337
85447
|
]
|
|
85338
85448
|
},
|
|
85339
|
-
"
|
|
85449
|
+
"hyperlinks.wrap": {
|
|
85340
85450
|
"type": "object",
|
|
85341
85451
|
"properties": {
|
|
85342
85452
|
"available": {
|
|
@@ -85371,7 +85481,7 @@ const CONTRACT = {
|
|
|
85371
85481
|
"dryRun"
|
|
85372
85482
|
]
|
|
85373
85483
|
},
|
|
85374
|
-
"
|
|
85484
|
+
"hyperlinks.insert": {
|
|
85375
85485
|
"type": "object",
|
|
85376
85486
|
"properties": {
|
|
85377
85487
|
"available": {
|
|
@@ -85406,7 +85516,7 @@ const CONTRACT = {
|
|
|
85406
85516
|
"dryRun"
|
|
85407
85517
|
]
|
|
85408
85518
|
},
|
|
85409
|
-
"
|
|
85519
|
+
"hyperlinks.patch": {
|
|
85410
85520
|
"type": "object",
|
|
85411
85521
|
"properties": {
|
|
85412
85522
|
"available": {
|
|
@@ -85441,7 +85551,7 @@ const CONTRACT = {
|
|
|
85441
85551
|
"dryRun"
|
|
85442
85552
|
]
|
|
85443
85553
|
},
|
|
85444
|
-
"
|
|
85554
|
+
"hyperlinks.remove": {
|
|
85445
85555
|
"type": "object",
|
|
85446
85556
|
"properties": {
|
|
85447
85557
|
"available": {
|
|
@@ -85476,7 +85586,7 @@ const CONTRACT = {
|
|
|
85476
85586
|
"dryRun"
|
|
85477
85587
|
]
|
|
85478
85588
|
},
|
|
85479
|
-
"headerFooters.
|
|
85589
|
+
"headerFooters.list": {
|
|
85480
85590
|
"type": "object",
|
|
85481
85591
|
"properties": {
|
|
85482
85592
|
"available": {
|
|
@@ -85511,7 +85621,217 @@ const CONTRACT = {
|
|
|
85511
85621
|
"dryRun"
|
|
85512
85622
|
]
|
|
85513
85623
|
},
|
|
85514
|
-
"headerFooters.
|
|
85624
|
+
"headerFooters.get": {
|
|
85625
|
+
"type": "object",
|
|
85626
|
+
"properties": {
|
|
85627
|
+
"available": {
|
|
85628
|
+
"type": "boolean"
|
|
85629
|
+
},
|
|
85630
|
+
"tracked": {
|
|
85631
|
+
"type": "boolean"
|
|
85632
|
+
},
|
|
85633
|
+
"dryRun": {
|
|
85634
|
+
"type": "boolean"
|
|
85635
|
+
},
|
|
85636
|
+
"reasons": {
|
|
85637
|
+
"type": "array",
|
|
85638
|
+
"items": {
|
|
85639
|
+
"enum": [
|
|
85640
|
+
"COMMAND_UNAVAILABLE",
|
|
85641
|
+
"HELPER_UNAVAILABLE",
|
|
85642
|
+
"OPERATION_UNAVAILABLE",
|
|
85643
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
85644
|
+
"DRY_RUN_UNAVAILABLE",
|
|
85645
|
+
"NAMESPACE_UNAVAILABLE",
|
|
85646
|
+
"STYLES_PART_MISSING",
|
|
85647
|
+
"COLLABORATION_ACTIVE"
|
|
85648
|
+
]
|
|
85649
|
+
}
|
|
85650
|
+
}
|
|
85651
|
+
},
|
|
85652
|
+
"additionalProperties": false,
|
|
85653
|
+
"required": [
|
|
85654
|
+
"available",
|
|
85655
|
+
"tracked",
|
|
85656
|
+
"dryRun"
|
|
85657
|
+
]
|
|
85658
|
+
},
|
|
85659
|
+
"headerFooters.resolve": {
|
|
85660
|
+
"type": "object",
|
|
85661
|
+
"properties": {
|
|
85662
|
+
"available": {
|
|
85663
|
+
"type": "boolean"
|
|
85664
|
+
},
|
|
85665
|
+
"tracked": {
|
|
85666
|
+
"type": "boolean"
|
|
85667
|
+
},
|
|
85668
|
+
"dryRun": {
|
|
85669
|
+
"type": "boolean"
|
|
85670
|
+
},
|
|
85671
|
+
"reasons": {
|
|
85672
|
+
"type": "array",
|
|
85673
|
+
"items": {
|
|
85674
|
+
"enum": [
|
|
85675
|
+
"COMMAND_UNAVAILABLE",
|
|
85676
|
+
"HELPER_UNAVAILABLE",
|
|
85677
|
+
"OPERATION_UNAVAILABLE",
|
|
85678
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
85679
|
+
"DRY_RUN_UNAVAILABLE",
|
|
85680
|
+
"NAMESPACE_UNAVAILABLE",
|
|
85681
|
+
"STYLES_PART_MISSING",
|
|
85682
|
+
"COLLABORATION_ACTIVE"
|
|
85683
|
+
]
|
|
85684
|
+
}
|
|
85685
|
+
}
|
|
85686
|
+
},
|
|
85687
|
+
"additionalProperties": false,
|
|
85688
|
+
"required": [
|
|
85689
|
+
"available",
|
|
85690
|
+
"tracked",
|
|
85691
|
+
"dryRun"
|
|
85692
|
+
]
|
|
85693
|
+
},
|
|
85694
|
+
"headerFooters.refs.set": {
|
|
85695
|
+
"type": "object",
|
|
85696
|
+
"properties": {
|
|
85697
|
+
"available": {
|
|
85698
|
+
"type": "boolean"
|
|
85699
|
+
},
|
|
85700
|
+
"tracked": {
|
|
85701
|
+
"type": "boolean"
|
|
85702
|
+
},
|
|
85703
|
+
"dryRun": {
|
|
85704
|
+
"type": "boolean"
|
|
85705
|
+
},
|
|
85706
|
+
"reasons": {
|
|
85707
|
+
"type": "array",
|
|
85708
|
+
"items": {
|
|
85709
|
+
"enum": [
|
|
85710
|
+
"COMMAND_UNAVAILABLE",
|
|
85711
|
+
"HELPER_UNAVAILABLE",
|
|
85712
|
+
"OPERATION_UNAVAILABLE",
|
|
85713
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
85714
|
+
"DRY_RUN_UNAVAILABLE",
|
|
85715
|
+
"NAMESPACE_UNAVAILABLE",
|
|
85716
|
+
"STYLES_PART_MISSING",
|
|
85717
|
+
"COLLABORATION_ACTIVE"
|
|
85718
|
+
]
|
|
85719
|
+
}
|
|
85720
|
+
}
|
|
85721
|
+
},
|
|
85722
|
+
"additionalProperties": false,
|
|
85723
|
+
"required": [
|
|
85724
|
+
"available",
|
|
85725
|
+
"tracked",
|
|
85726
|
+
"dryRun"
|
|
85727
|
+
]
|
|
85728
|
+
},
|
|
85729
|
+
"headerFooters.refs.clear": {
|
|
85730
|
+
"type": "object",
|
|
85731
|
+
"properties": {
|
|
85732
|
+
"available": {
|
|
85733
|
+
"type": "boolean"
|
|
85734
|
+
},
|
|
85735
|
+
"tracked": {
|
|
85736
|
+
"type": "boolean"
|
|
85737
|
+
},
|
|
85738
|
+
"dryRun": {
|
|
85739
|
+
"type": "boolean"
|
|
85740
|
+
},
|
|
85741
|
+
"reasons": {
|
|
85742
|
+
"type": "array",
|
|
85743
|
+
"items": {
|
|
85744
|
+
"enum": [
|
|
85745
|
+
"COMMAND_UNAVAILABLE",
|
|
85746
|
+
"HELPER_UNAVAILABLE",
|
|
85747
|
+
"OPERATION_UNAVAILABLE",
|
|
85748
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
85749
|
+
"DRY_RUN_UNAVAILABLE",
|
|
85750
|
+
"NAMESPACE_UNAVAILABLE",
|
|
85751
|
+
"STYLES_PART_MISSING",
|
|
85752
|
+
"COLLABORATION_ACTIVE"
|
|
85753
|
+
]
|
|
85754
|
+
}
|
|
85755
|
+
}
|
|
85756
|
+
},
|
|
85757
|
+
"additionalProperties": false,
|
|
85758
|
+
"required": [
|
|
85759
|
+
"available",
|
|
85760
|
+
"tracked",
|
|
85761
|
+
"dryRun"
|
|
85762
|
+
]
|
|
85763
|
+
},
|
|
85764
|
+
"headerFooters.refs.setLinkedToPrevious": {
|
|
85765
|
+
"type": "object",
|
|
85766
|
+
"properties": {
|
|
85767
|
+
"available": {
|
|
85768
|
+
"type": "boolean"
|
|
85769
|
+
},
|
|
85770
|
+
"tracked": {
|
|
85771
|
+
"type": "boolean"
|
|
85772
|
+
},
|
|
85773
|
+
"dryRun": {
|
|
85774
|
+
"type": "boolean"
|
|
85775
|
+
},
|
|
85776
|
+
"reasons": {
|
|
85777
|
+
"type": "array",
|
|
85778
|
+
"items": {
|
|
85779
|
+
"enum": [
|
|
85780
|
+
"COMMAND_UNAVAILABLE",
|
|
85781
|
+
"HELPER_UNAVAILABLE",
|
|
85782
|
+
"OPERATION_UNAVAILABLE",
|
|
85783
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
85784
|
+
"DRY_RUN_UNAVAILABLE",
|
|
85785
|
+
"NAMESPACE_UNAVAILABLE",
|
|
85786
|
+
"STYLES_PART_MISSING",
|
|
85787
|
+
"COLLABORATION_ACTIVE"
|
|
85788
|
+
]
|
|
85789
|
+
}
|
|
85790
|
+
}
|
|
85791
|
+
},
|
|
85792
|
+
"additionalProperties": false,
|
|
85793
|
+
"required": [
|
|
85794
|
+
"available",
|
|
85795
|
+
"tracked",
|
|
85796
|
+
"dryRun"
|
|
85797
|
+
]
|
|
85798
|
+
},
|
|
85799
|
+
"headerFooters.parts.list": {
|
|
85800
|
+
"type": "object",
|
|
85801
|
+
"properties": {
|
|
85802
|
+
"available": {
|
|
85803
|
+
"type": "boolean"
|
|
85804
|
+
},
|
|
85805
|
+
"tracked": {
|
|
85806
|
+
"type": "boolean"
|
|
85807
|
+
},
|
|
85808
|
+
"dryRun": {
|
|
85809
|
+
"type": "boolean"
|
|
85810
|
+
},
|
|
85811
|
+
"reasons": {
|
|
85812
|
+
"type": "array",
|
|
85813
|
+
"items": {
|
|
85814
|
+
"enum": [
|
|
85815
|
+
"COMMAND_UNAVAILABLE",
|
|
85816
|
+
"HELPER_UNAVAILABLE",
|
|
85817
|
+
"OPERATION_UNAVAILABLE",
|
|
85818
|
+
"TRACKED_MODE_UNAVAILABLE",
|
|
85819
|
+
"DRY_RUN_UNAVAILABLE",
|
|
85820
|
+
"NAMESPACE_UNAVAILABLE",
|
|
85821
|
+
"STYLES_PART_MISSING",
|
|
85822
|
+
"COLLABORATION_ACTIVE"
|
|
85823
|
+
]
|
|
85824
|
+
}
|
|
85825
|
+
}
|
|
85826
|
+
},
|
|
85827
|
+
"additionalProperties": false,
|
|
85828
|
+
"required": [
|
|
85829
|
+
"available",
|
|
85830
|
+
"tracked",
|
|
85831
|
+
"dryRun"
|
|
85832
|
+
]
|
|
85833
|
+
},
|
|
85834
|
+
"headerFooters.parts.create": {
|
|
85515
85835
|
"type": "object",
|
|
85516
85836
|
"properties": {
|
|
85517
85837
|
"available": {
|
|
@@ -90244,6 +90564,7 @@ const CONTRACT = {
|
|
|
90244
90564
|
"lists.create",
|
|
90245
90565
|
"lists.attach",
|
|
90246
90566
|
"lists.detach",
|
|
90567
|
+
"lists.delete",
|
|
90247
90568
|
"lists.indent",
|
|
90248
90569
|
"lists.outdent",
|
|
90249
90570
|
"lists.join",
|
|
@@ -90313,6 +90634,7 @@ const CONTRACT = {
|
|
|
90313
90634
|
"tables.unmergeCells",
|
|
90314
90635
|
"tables.splitCell",
|
|
90315
90636
|
"tables.setCellProperties",
|
|
90637
|
+
"tables.setCellText",
|
|
90316
90638
|
"tables.sort",
|
|
90317
90639
|
"tables.setAltText",
|
|
90318
90640
|
"tables.setStyle",
|
|
@@ -90330,6 +90652,7 @@ const CONTRACT = {
|
|
|
90330
90652
|
"tables.applyStyle",
|
|
90331
90653
|
"tables.setBorders",
|
|
90332
90654
|
"tables.setTableOptions",
|
|
90655
|
+
"tables.applyPreset",
|
|
90333
90656
|
"tables.get",
|
|
90334
90657
|
"tables.getCells",
|
|
90335
90658
|
"tables.getProperties",
|
|
@@ -91663,7 +91986,9 @@ const CONTRACT = {
|
|
|
91663
91986
|
"success",
|
|
91664
91987
|
"failure"
|
|
91665
91988
|
]
|
|
91666
|
-
}
|
|
91989
|
+
},
|
|
91990
|
+
"intentGroup": "table",
|
|
91991
|
+
"intentAction": "delete"
|
|
91667
91992
|
},
|
|
91668
91993
|
"doc.tables.clearContents": {
|
|
91669
91994
|
"operationId": "doc.tables.clearContents",
|
|
@@ -93289,7 +93614,9 @@ const CONTRACT = {
|
|
|
93289
93614
|
"success",
|
|
93290
93615
|
"failure"
|
|
93291
93616
|
]
|
|
93292
|
-
}
|
|
93617
|
+
},
|
|
93618
|
+
"intentGroup": "table",
|
|
93619
|
+
"intentAction": "set_layout"
|
|
93293
93620
|
},
|
|
93294
93621
|
"doc.tables.insertRow": {
|
|
93295
93622
|
"operationId": "doc.tables.insertRow",
|
|
@@ -93300,7 +93627,7 @@ const CONTRACT = {
|
|
|
93300
93627
|
"insert-row"
|
|
93301
93628
|
],
|
|
93302
93629
|
"category": "tables",
|
|
93303
|
-
"description": "Insert a new row into the target table.",
|
|
93630
|
+
"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.",
|
|
93304
93631
|
"requiresDocumentContext": true,
|
|
93305
93632
|
"docRequirement": "optional",
|
|
93306
93633
|
"responseEnvelopeKey": "result",
|
|
@@ -93409,7 +93736,6 @@ const CONTRACT = {
|
|
|
93409
93736
|
"name": "position",
|
|
93410
93737
|
"kind": "flag",
|
|
93411
93738
|
"type": "string",
|
|
93412
|
-
"required": true,
|
|
93413
93739
|
"schema": {
|
|
93414
93740
|
"oneOf": [
|
|
93415
93741
|
{
|
|
@@ -93524,6 +93850,48 @@ const CONTRACT = {
|
|
|
93524
93850
|
"rowIndex",
|
|
93525
93851
|
"position"
|
|
93526
93852
|
]
|
|
93853
|
+
},
|
|
93854
|
+
{
|
|
93855
|
+
"type": "object",
|
|
93856
|
+
"properties": {
|
|
93857
|
+
"target": {
|
|
93858
|
+
"$ref": "#/$defs/TableAddress"
|
|
93859
|
+
},
|
|
93860
|
+
"nodeId": {
|
|
93861
|
+
"type": "string"
|
|
93862
|
+
},
|
|
93863
|
+
"count": {
|
|
93864
|
+
"type": "integer",
|
|
93865
|
+
"minimum": 1
|
|
93866
|
+
}
|
|
93867
|
+
},
|
|
93868
|
+
"additionalProperties": false,
|
|
93869
|
+
"oneOf": [
|
|
93870
|
+
{
|
|
93871
|
+
"required": [
|
|
93872
|
+
"target"
|
|
93873
|
+
]
|
|
93874
|
+
},
|
|
93875
|
+
{
|
|
93876
|
+
"required": [
|
|
93877
|
+
"nodeId"
|
|
93878
|
+
]
|
|
93879
|
+
}
|
|
93880
|
+
],
|
|
93881
|
+
"not": {
|
|
93882
|
+
"anyOf": [
|
|
93883
|
+
{
|
|
93884
|
+
"required": [
|
|
93885
|
+
"rowIndex"
|
|
93886
|
+
]
|
|
93887
|
+
},
|
|
93888
|
+
{
|
|
93889
|
+
"required": [
|
|
93890
|
+
"position"
|
|
93891
|
+
]
|
|
93892
|
+
}
|
|
93893
|
+
]
|
|
93894
|
+
}
|
|
93527
93895
|
}
|
|
93528
93896
|
]
|
|
93529
93897
|
},
|
|
@@ -93642,7 +94010,9 @@ const CONTRACT = {
|
|
|
93642
94010
|
"success",
|
|
93643
94011
|
"failure"
|
|
93644
94012
|
]
|
|
93645
|
-
}
|
|
94013
|
+
},
|
|
94014
|
+
"intentGroup": "table",
|
|
94015
|
+
"intentAction": "insert_row"
|
|
93646
94016
|
},
|
|
93647
94017
|
"doc.tables.deleteRow": {
|
|
93648
94018
|
"operationId": "doc.tables.deleteRow",
|
|
@@ -93941,7 +94311,9 @@ const CONTRACT = {
|
|
|
93941
94311
|
"success",
|
|
93942
94312
|
"failure"
|
|
93943
94313
|
]
|
|
93944
|
-
}
|
|
94314
|
+
},
|
|
94315
|
+
"intentGroup": "table",
|
|
94316
|
+
"intentAction": "delete_row"
|
|
93945
94317
|
},
|
|
93946
94318
|
"doc.tables.setRowHeight": {
|
|
93947
94319
|
"operationId": "doc.tables.setRowHeight",
|
|
@@ -94305,7 +94677,9 @@ const CONTRACT = {
|
|
|
94305
94677
|
"success",
|
|
94306
94678
|
"failure"
|
|
94307
94679
|
]
|
|
94308
|
-
}
|
|
94680
|
+
},
|
|
94681
|
+
"intentGroup": "table",
|
|
94682
|
+
"intentAction": "set_row"
|
|
94309
94683
|
},
|
|
94310
94684
|
"doc.tables.distributeRows": {
|
|
94311
94685
|
"operationId": "doc.tables.distributeRows",
|
|
@@ -94878,7 +95252,9 @@ const CONTRACT = {
|
|
|
94878
95252
|
"success",
|
|
94879
95253
|
"failure"
|
|
94880
95254
|
]
|
|
94881
|
-
}
|
|
95255
|
+
},
|
|
95256
|
+
"intentGroup": "table",
|
|
95257
|
+
"intentAction": "set_row_options"
|
|
94882
95258
|
},
|
|
94883
95259
|
"doc.tables.insertColumn": {
|
|
94884
95260
|
"operationId": "doc.tables.insertColumn",
|
|
@@ -94889,7 +95265,7 @@ const CONTRACT = {
|
|
|
94889
95265
|
"insert-column"
|
|
94890
95266
|
],
|
|
94891
95267
|
"category": "tables",
|
|
94892
|
-
"description": "Insert a new column into the target table.",
|
|
95268
|
+
"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.",
|
|
94893
95269
|
"requiresDocumentContext": true,
|
|
94894
95270
|
"docRequirement": "optional",
|
|
94895
95271
|
"responseEnvelopeKey": "result",
|
|
@@ -94981,8 +95357,7 @@ const CONTRACT = {
|
|
|
94981
95357
|
"name": "columnIndex",
|
|
94982
95358
|
"kind": "flag",
|
|
94983
95359
|
"type": "number",
|
|
94984
|
-
"flag": "column-index"
|
|
94985
|
-
"required": true
|
|
95360
|
+
"flag": "column-index"
|
|
94986
95361
|
},
|
|
94987
95362
|
{
|
|
94988
95363
|
"name": "position",
|
|
@@ -94996,6 +95371,12 @@ const CONTRACT = {
|
|
|
94996
95371
|
},
|
|
94997
95372
|
{
|
|
94998
95373
|
"const": "right"
|
|
95374
|
+
},
|
|
95375
|
+
{
|
|
95376
|
+
"const": "first"
|
|
95377
|
+
},
|
|
95378
|
+
{
|
|
95379
|
+
"const": "last"
|
|
94999
95380
|
}
|
|
95000
95381
|
]
|
|
95001
95382
|
}
|
|
@@ -95027,7 +95408,9 @@ const CONTRACT = {
|
|
|
95027
95408
|
"position": {
|
|
95028
95409
|
"enum": [
|
|
95029
95410
|
"left",
|
|
95030
|
-
"right"
|
|
95411
|
+
"right",
|
|
95412
|
+
"first",
|
|
95413
|
+
"last"
|
|
95031
95414
|
]
|
|
95032
95415
|
},
|
|
95033
95416
|
"count": {
|
|
@@ -95037,7 +95420,6 @@ const CONTRACT = {
|
|
|
95037
95420
|
},
|
|
95038
95421
|
"additionalProperties": false,
|
|
95039
95422
|
"required": [
|
|
95040
|
-
"columnIndex",
|
|
95041
95423
|
"position"
|
|
95042
95424
|
],
|
|
95043
95425
|
"oneOf": [
|
|
@@ -95168,7 +95550,9 @@ const CONTRACT = {
|
|
|
95168
95550
|
"success",
|
|
95169
95551
|
"failure"
|
|
95170
95552
|
]
|
|
95171
|
-
}
|
|
95553
|
+
},
|
|
95554
|
+
"intentGroup": "table",
|
|
95555
|
+
"intentAction": "insert_column"
|
|
95172
95556
|
},
|
|
95173
95557
|
"doc.tables.deleteColumn": {
|
|
95174
95558
|
"operationId": "doc.tables.deleteColumn",
|
|
@@ -95426,7 +95810,9 @@ const CONTRACT = {
|
|
|
95426
95810
|
"success",
|
|
95427
95811
|
"failure"
|
|
95428
95812
|
]
|
|
95429
|
-
}
|
|
95813
|
+
},
|
|
95814
|
+
"intentGroup": "table",
|
|
95815
|
+
"intentAction": "delete_column"
|
|
95430
95816
|
},
|
|
95431
95817
|
"doc.tables.setColumnWidth": {
|
|
95432
95818
|
"operationId": "doc.tables.setColumnWidth",
|
|
@@ -95696,7 +96082,9 @@ const CONTRACT = {
|
|
|
95696
96082
|
"success",
|
|
95697
96083
|
"failure"
|
|
95698
96084
|
]
|
|
95699
|
-
}
|
|
96085
|
+
},
|
|
96086
|
+
"intentGroup": "table",
|
|
96087
|
+
"intentAction": "set_column"
|
|
95700
96088
|
},
|
|
95701
96089
|
"doc.tables.distributeColumns": {
|
|
95702
96090
|
"operationId": "doc.tables.distributeColumns",
|
|
@@ -96845,7 +97233,9 @@ const CONTRACT = {
|
|
|
96845
97233
|
"success",
|
|
96846
97234
|
"failure"
|
|
96847
97235
|
]
|
|
96848
|
-
}
|
|
97236
|
+
},
|
|
97237
|
+
"intentGroup": "table",
|
|
97238
|
+
"intentAction": "merge_cells"
|
|
96849
97239
|
},
|
|
96850
97240
|
"doc.tables.unmergeCells": {
|
|
96851
97241
|
"operationId": "doc.tables.unmergeCells",
|
|
@@ -97172,7 +97562,9 @@ const CONTRACT = {
|
|
|
97172
97562
|
"success",
|
|
97173
97563
|
"failure"
|
|
97174
97564
|
]
|
|
97175
|
-
}
|
|
97565
|
+
},
|
|
97566
|
+
"intentGroup": "table",
|
|
97567
|
+
"intentAction": "unmerge_cells"
|
|
97176
97568
|
},
|
|
97177
97569
|
"doc.tables.splitCell": {
|
|
97178
97570
|
"operationId": "doc.tables.splitCell",
|
|
@@ -97451,7 +97843,7 @@ const CONTRACT = {
|
|
|
97451
97843
|
"set-cell-properties"
|
|
97452
97844
|
],
|
|
97453
97845
|
"category": "tables",
|
|
97454
|
-
"description": "Set properties on a table cell
|
|
97846
|
+
"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.",
|
|
97455
97847
|
"requiresDocumentContext": true,
|
|
97456
97848
|
"docRequirement": "optional",
|
|
97457
97849
|
"responseEnvelopeKey": "result",
|
|
@@ -97737,21 +98129,23 @@ const CONTRACT = {
|
|
|
97737
98129
|
"success",
|
|
97738
98130
|
"failure"
|
|
97739
98131
|
]
|
|
97740
|
-
}
|
|
98132
|
+
},
|
|
98133
|
+
"intentGroup": "table",
|
|
98134
|
+
"intentAction": "set_cell"
|
|
97741
98135
|
},
|
|
97742
|
-
"doc.tables.
|
|
97743
|
-
"operationId": "doc.tables.
|
|
98136
|
+
"doc.tables.setCellText": {
|
|
98137
|
+
"operationId": "doc.tables.setCellText",
|
|
97744
98138
|
"sdkSurface": "document",
|
|
97745
|
-
"command": "tables
|
|
98139
|
+
"command": "tables set-cell-text",
|
|
97746
98140
|
"commandTokens": [
|
|
97747
98141
|
"tables",
|
|
97748
|
-
"
|
|
98142
|
+
"set-cell-text"
|
|
97749
98143
|
],
|
|
97750
98144
|
"category": "tables",
|
|
97751
|
-
"description": "
|
|
98145
|
+
"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.",
|
|
97752
98146
|
"requiresDocumentContext": true,
|
|
97753
98147
|
"docRequirement": "optional",
|
|
97754
|
-
"responseEnvelopeKey":
|
|
98148
|
+
"responseEnvelopeKey": null,
|
|
97755
98149
|
"params": [
|
|
97756
98150
|
{
|
|
97757
98151
|
"name": "doc",
|
|
@@ -97811,25 +98205,54 @@ const CONTRACT = {
|
|
|
97811
98205
|
"type": "json",
|
|
97812
98206
|
"flag": "target-json",
|
|
97813
98207
|
"schema": {
|
|
97814
|
-
"
|
|
97815
|
-
|
|
97816
|
-
|
|
97817
|
-
"
|
|
97818
|
-
|
|
97819
|
-
|
|
97820
|
-
|
|
98208
|
+
"oneOf": [
|
|
98209
|
+
{
|
|
98210
|
+
"type": "object",
|
|
98211
|
+
"properties": {
|
|
98212
|
+
"kind": {
|
|
98213
|
+
"const": "block"
|
|
98214
|
+
},
|
|
98215
|
+
"nodeType": {
|
|
98216
|
+
"const": "tableCell"
|
|
98217
|
+
},
|
|
98218
|
+
"nodeId": {
|
|
98219
|
+
"type": "string"
|
|
98220
|
+
}
|
|
98221
|
+
},
|
|
98222
|
+
"required": [
|
|
98223
|
+
"kind",
|
|
98224
|
+
"nodeType",
|
|
98225
|
+
"nodeId"
|
|
98226
|
+
]
|
|
97821
98227
|
},
|
|
97822
|
-
|
|
97823
|
-
"type": "
|
|
98228
|
+
{
|
|
98229
|
+
"type": "object",
|
|
98230
|
+
"properties": {
|
|
98231
|
+
"kind": {
|
|
98232
|
+
"const": "block"
|
|
98233
|
+
},
|
|
98234
|
+
"nodeType": {
|
|
98235
|
+
"const": "table"
|
|
98236
|
+
},
|
|
98237
|
+
"nodeId": {
|
|
98238
|
+
"type": "string"
|
|
98239
|
+
}
|
|
98240
|
+
},
|
|
98241
|
+
"required": [
|
|
98242
|
+
"kind",
|
|
98243
|
+
"nodeType",
|
|
98244
|
+
"nodeId"
|
|
98245
|
+
]
|
|
97824
98246
|
}
|
|
97825
|
-
},
|
|
97826
|
-
"required": [
|
|
97827
|
-
"kind",
|
|
97828
|
-
"nodeType",
|
|
97829
|
-
"nodeId"
|
|
97830
98247
|
]
|
|
97831
98248
|
}
|
|
97832
98249
|
},
|
|
98250
|
+
{
|
|
98251
|
+
"name": "text",
|
|
98252
|
+
"kind": "flag",
|
|
98253
|
+
"type": "string",
|
|
98254
|
+
"required": true
|
|
98255
|
+
},
|
|
97833
98256
|
{
|
|
97834
98257
|
"name": "nodeId",
|
|
97835
98258
|
"kind": "flag",
|
|
@@ -97837,111 +98260,433 @@ const CONTRACT = {
|
|
|
97837
98260
|
"flag": "node-id"
|
|
97838
98261
|
},
|
|
97839
98262
|
{
|
|
97840
|
-
"name": "
|
|
97841
|
-
"kind": "
|
|
97842
|
-
"type": "
|
|
97843
|
-
"flag": "
|
|
97844
|
-
|
|
97845
|
-
|
|
97846
|
-
|
|
97847
|
-
|
|
97848
|
-
|
|
97849
|
-
|
|
97850
|
-
"columnIndex": {
|
|
97851
|
-
"type": "number"
|
|
97852
|
-
},
|
|
97853
|
-
"direction": {
|
|
97854
|
-
"oneOf": [
|
|
97855
|
-
{
|
|
97856
|
-
"const": "ascending"
|
|
97857
|
-
},
|
|
97858
|
-
{
|
|
97859
|
-
"const": "descending"
|
|
97860
|
-
}
|
|
97861
|
-
]
|
|
97862
|
-
},
|
|
97863
|
-
"type": {
|
|
97864
|
-
"oneOf": [
|
|
97865
|
-
{
|
|
97866
|
-
"const": "text"
|
|
97867
|
-
},
|
|
97868
|
-
{
|
|
97869
|
-
"const": "number"
|
|
97870
|
-
},
|
|
97871
|
-
{
|
|
97872
|
-
"const": "date"
|
|
97873
|
-
}
|
|
97874
|
-
]
|
|
97875
|
-
}
|
|
97876
|
-
},
|
|
97877
|
-
"required": [
|
|
97878
|
-
"columnIndex",
|
|
97879
|
-
"direction",
|
|
97880
|
-
"type"
|
|
97881
|
-
]
|
|
97882
|
-
}
|
|
97883
|
-
}
|
|
98263
|
+
"name": "rowIndex",
|
|
98264
|
+
"kind": "flag",
|
|
98265
|
+
"type": "number",
|
|
98266
|
+
"flag": "row-index"
|
|
98267
|
+
},
|
|
98268
|
+
{
|
|
98269
|
+
"name": "columnIndex",
|
|
98270
|
+
"kind": "flag",
|
|
98271
|
+
"type": "number",
|
|
98272
|
+
"flag": "column-index"
|
|
97884
98273
|
}
|
|
97885
98274
|
],
|
|
97886
98275
|
"constraints": null,
|
|
97887
98276
|
"mutates": true,
|
|
97888
|
-
"idempotency": "
|
|
98277
|
+
"idempotency": "idempotent",
|
|
97889
98278
|
"supportsTrackedMode": false,
|
|
97890
98279
|
"supportsDryRun": true,
|
|
97891
98280
|
"inputSchema": {
|
|
97892
|
-
"
|
|
97893
|
-
|
|
97894
|
-
|
|
97895
|
-
"
|
|
97896
|
-
|
|
97897
|
-
|
|
97898
|
-
|
|
98281
|
+
"oneOf": [
|
|
98282
|
+
{
|
|
98283
|
+
"type": "object",
|
|
98284
|
+
"properties": {
|
|
98285
|
+
"target": {
|
|
98286
|
+
"$ref": "#/$defs/TableCellAddress"
|
|
98287
|
+
},
|
|
98288
|
+
"text": {
|
|
98289
|
+
"type": "string"
|
|
98290
|
+
}
|
|
98291
|
+
},
|
|
98292
|
+
"additionalProperties": false,
|
|
98293
|
+
"required": [
|
|
98294
|
+
"target",
|
|
98295
|
+
"text"
|
|
98296
|
+
]
|
|
97899
98297
|
},
|
|
97900
|
-
|
|
97901
|
-
"type": "
|
|
97902
|
-
"
|
|
97903
|
-
"
|
|
97904
|
-
|
|
97905
|
-
"columnIndex": {
|
|
97906
|
-
"type": "integer",
|
|
97907
|
-
"minimum": 0
|
|
97908
|
-
},
|
|
97909
|
-
"direction": {
|
|
97910
|
-
"enum": [
|
|
97911
|
-
"ascending",
|
|
97912
|
-
"descending"
|
|
97913
|
-
]
|
|
97914
|
-
},
|
|
97915
|
-
"type": {
|
|
97916
|
-
"enum": [
|
|
97917
|
-
"text",
|
|
97918
|
-
"number",
|
|
97919
|
-
"date"
|
|
97920
|
-
]
|
|
97921
|
-
}
|
|
98298
|
+
{
|
|
98299
|
+
"type": "object",
|
|
98300
|
+
"properties": {
|
|
98301
|
+
"nodeId": {
|
|
98302
|
+
"type": "string"
|
|
97922
98303
|
},
|
|
97923
|
-
"
|
|
97924
|
-
|
|
97925
|
-
|
|
97926
|
-
|
|
97927
|
-
|
|
97928
|
-
|
|
97929
|
-
|
|
97930
|
-
|
|
97931
|
-
|
|
97932
|
-
|
|
97933
|
-
"required": [
|
|
97934
|
-
"keys"
|
|
97935
|
-
],
|
|
97936
|
-
"oneOf": [
|
|
98304
|
+
"text": {
|
|
98305
|
+
"type": "string"
|
|
98306
|
+
}
|
|
98307
|
+
},
|
|
98308
|
+
"additionalProperties": false,
|
|
98309
|
+
"required": [
|
|
98310
|
+
"nodeId",
|
|
98311
|
+
"text"
|
|
98312
|
+
]
|
|
98313
|
+
},
|
|
97937
98314
|
{
|
|
98315
|
+
"type": "object",
|
|
98316
|
+
"properties": {
|
|
98317
|
+
"target": {
|
|
98318
|
+
"$ref": "#/$defs/TableAddress"
|
|
98319
|
+
},
|
|
98320
|
+
"rowIndex": {
|
|
98321
|
+
"type": "integer",
|
|
98322
|
+
"minimum": 0
|
|
98323
|
+
},
|
|
98324
|
+
"columnIndex": {
|
|
98325
|
+
"type": "integer",
|
|
98326
|
+
"minimum": 0
|
|
98327
|
+
},
|
|
98328
|
+
"text": {
|
|
98329
|
+
"type": "string"
|
|
98330
|
+
}
|
|
98331
|
+
},
|
|
98332
|
+
"additionalProperties": false,
|
|
97938
98333
|
"required": [
|
|
97939
|
-
"target"
|
|
98334
|
+
"target",
|
|
98335
|
+
"rowIndex",
|
|
98336
|
+
"columnIndex",
|
|
98337
|
+
"text"
|
|
97940
98338
|
]
|
|
97941
98339
|
},
|
|
97942
98340
|
{
|
|
98341
|
+
"type": "object",
|
|
98342
|
+
"properties": {
|
|
98343
|
+
"nodeId": {
|
|
98344
|
+
"type": "string"
|
|
98345
|
+
},
|
|
98346
|
+
"rowIndex": {
|
|
98347
|
+
"type": "integer",
|
|
98348
|
+
"minimum": 0
|
|
98349
|
+
},
|
|
98350
|
+
"columnIndex": {
|
|
98351
|
+
"type": "integer",
|
|
98352
|
+
"minimum": 0
|
|
98353
|
+
},
|
|
98354
|
+
"text": {
|
|
98355
|
+
"type": "string"
|
|
98356
|
+
}
|
|
98357
|
+
},
|
|
98358
|
+
"additionalProperties": false,
|
|
97943
98359
|
"required": [
|
|
97944
|
-
"nodeId"
|
|
98360
|
+
"nodeId",
|
|
98361
|
+
"rowIndex",
|
|
98362
|
+
"columnIndex",
|
|
98363
|
+
"text"
|
|
98364
|
+
]
|
|
98365
|
+
}
|
|
98366
|
+
]
|
|
98367
|
+
},
|
|
98368
|
+
"outputSchema": {
|
|
98369
|
+
"oneOf": [
|
|
98370
|
+
{
|
|
98371
|
+
"type": "object",
|
|
98372
|
+
"properties": {
|
|
98373
|
+
"success": {
|
|
98374
|
+
"const": true
|
|
98375
|
+
},
|
|
98376
|
+
"table": {
|
|
98377
|
+
"$ref": "#/$defs/TableAddress"
|
|
98378
|
+
},
|
|
98379
|
+
"trackedChangeRefs": {
|
|
98380
|
+
"type": "array",
|
|
98381
|
+
"items": {
|
|
98382
|
+
"$ref": "#/$defs/EntityAddress"
|
|
98383
|
+
}
|
|
98384
|
+
}
|
|
98385
|
+
},
|
|
98386
|
+
"additionalProperties": false,
|
|
98387
|
+
"required": [
|
|
98388
|
+
"success"
|
|
98389
|
+
]
|
|
98390
|
+
},
|
|
98391
|
+
{
|
|
98392
|
+
"type": "object",
|
|
98393
|
+
"properties": {
|
|
98394
|
+
"success": {
|
|
98395
|
+
"const": false
|
|
98396
|
+
},
|
|
98397
|
+
"failure": {
|
|
98398
|
+
"type": "object",
|
|
98399
|
+
"properties": {
|
|
98400
|
+
"code": {
|
|
98401
|
+
"enum": [
|
|
98402
|
+
"NO_OP",
|
|
98403
|
+
"INVALID_TARGET",
|
|
98404
|
+
"TARGET_NOT_FOUND",
|
|
98405
|
+
"CAPABILITY_UNAVAILABLE"
|
|
98406
|
+
]
|
|
98407
|
+
},
|
|
98408
|
+
"message": {
|
|
98409
|
+
"type": "string"
|
|
98410
|
+
},
|
|
98411
|
+
"details": {}
|
|
98412
|
+
},
|
|
98413
|
+
"additionalProperties": false,
|
|
98414
|
+
"required": [
|
|
98415
|
+
"code",
|
|
98416
|
+
"message"
|
|
98417
|
+
]
|
|
98418
|
+
}
|
|
98419
|
+
},
|
|
98420
|
+
"additionalProperties": false,
|
|
98421
|
+
"required": [
|
|
98422
|
+
"success",
|
|
98423
|
+
"failure"
|
|
98424
|
+
]
|
|
98425
|
+
}
|
|
98426
|
+
]
|
|
98427
|
+
},
|
|
98428
|
+
"successSchema": {
|
|
98429
|
+
"type": "object",
|
|
98430
|
+
"properties": {
|
|
98431
|
+
"success": {
|
|
98432
|
+
"const": true
|
|
98433
|
+
},
|
|
98434
|
+
"table": {
|
|
98435
|
+
"$ref": "#/$defs/TableAddress"
|
|
98436
|
+
},
|
|
98437
|
+
"trackedChangeRefs": {
|
|
98438
|
+
"type": "array",
|
|
98439
|
+
"items": {
|
|
98440
|
+
"$ref": "#/$defs/EntityAddress"
|
|
98441
|
+
}
|
|
98442
|
+
}
|
|
98443
|
+
},
|
|
98444
|
+
"additionalProperties": false,
|
|
98445
|
+
"required": [
|
|
98446
|
+
"success"
|
|
98447
|
+
]
|
|
98448
|
+
},
|
|
98449
|
+
"failureSchema": {
|
|
98450
|
+
"type": "object",
|
|
98451
|
+
"properties": {
|
|
98452
|
+
"success": {
|
|
98453
|
+
"const": false
|
|
98454
|
+
},
|
|
98455
|
+
"failure": {
|
|
98456
|
+
"type": "object",
|
|
98457
|
+
"properties": {
|
|
98458
|
+
"code": {
|
|
98459
|
+
"enum": [
|
|
98460
|
+
"NO_OP",
|
|
98461
|
+
"INVALID_TARGET",
|
|
98462
|
+
"TARGET_NOT_FOUND",
|
|
98463
|
+
"CAPABILITY_UNAVAILABLE"
|
|
98464
|
+
]
|
|
98465
|
+
},
|
|
98466
|
+
"message": {
|
|
98467
|
+
"type": "string"
|
|
98468
|
+
},
|
|
98469
|
+
"details": {}
|
|
98470
|
+
},
|
|
98471
|
+
"additionalProperties": false,
|
|
98472
|
+
"required": [
|
|
98473
|
+
"code",
|
|
98474
|
+
"message"
|
|
98475
|
+
]
|
|
98476
|
+
}
|
|
98477
|
+
},
|
|
98478
|
+
"additionalProperties": false,
|
|
98479
|
+
"required": [
|
|
98480
|
+
"success",
|
|
98481
|
+
"failure"
|
|
98482
|
+
]
|
|
98483
|
+
},
|
|
98484
|
+
"intentGroup": "table",
|
|
98485
|
+
"intentAction": "set_cell_text"
|
|
98486
|
+
},
|
|
98487
|
+
"doc.tables.sort": {
|
|
98488
|
+
"operationId": "doc.tables.sort",
|
|
98489
|
+
"sdkSurface": "document",
|
|
98490
|
+
"command": "tables sort",
|
|
98491
|
+
"commandTokens": [
|
|
98492
|
+
"tables",
|
|
98493
|
+
"sort"
|
|
98494
|
+
],
|
|
98495
|
+
"category": "tables",
|
|
98496
|
+
"description": "Sort table rows by a column value.",
|
|
98497
|
+
"requiresDocumentContext": true,
|
|
98498
|
+
"docRequirement": "optional",
|
|
98499
|
+
"responseEnvelopeKey": "result",
|
|
98500
|
+
"params": [
|
|
98501
|
+
{
|
|
98502
|
+
"name": "doc",
|
|
98503
|
+
"kind": "doc",
|
|
98504
|
+
"type": "string",
|
|
98505
|
+
"description": "Document path. Optional when a session is already open."
|
|
98506
|
+
},
|
|
98507
|
+
{
|
|
98508
|
+
"name": "sessionId",
|
|
98509
|
+
"kind": "flag",
|
|
98510
|
+
"type": "string",
|
|
98511
|
+
"flag": "session",
|
|
98512
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
98513
|
+
},
|
|
98514
|
+
{
|
|
98515
|
+
"name": "out",
|
|
98516
|
+
"kind": "flag",
|
|
98517
|
+
"type": "string",
|
|
98518
|
+
"agentVisible": false
|
|
98519
|
+
},
|
|
98520
|
+
{
|
|
98521
|
+
"name": "force",
|
|
98522
|
+
"kind": "flag",
|
|
98523
|
+
"type": "boolean",
|
|
98524
|
+
"description": "Bypass confirmation checks."
|
|
98525
|
+
},
|
|
98526
|
+
{
|
|
98527
|
+
"name": "expectedRevision",
|
|
98528
|
+
"kind": "flag",
|
|
98529
|
+
"type": "number",
|
|
98530
|
+
"flag": "expected-revision",
|
|
98531
|
+
"agentVisible": false
|
|
98532
|
+
},
|
|
98533
|
+
{
|
|
98534
|
+
"name": "changeMode",
|
|
98535
|
+
"kind": "flag",
|
|
98536
|
+
"type": "string",
|
|
98537
|
+
"flag": "change-mode",
|
|
98538
|
+
"schema": {
|
|
98539
|
+
"enum": [
|
|
98540
|
+
"direct",
|
|
98541
|
+
"tracked"
|
|
98542
|
+
]
|
|
98543
|
+
},
|
|
98544
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
98545
|
+
},
|
|
98546
|
+
{
|
|
98547
|
+
"name": "dryRun",
|
|
98548
|
+
"kind": "flag",
|
|
98549
|
+
"type": "boolean",
|
|
98550
|
+
"flag": "dry-run",
|
|
98551
|
+
"description": "Preview the result without applying changes."
|
|
98552
|
+
},
|
|
98553
|
+
{
|
|
98554
|
+
"name": "target",
|
|
98555
|
+
"kind": "jsonFlag",
|
|
98556
|
+
"type": "json",
|
|
98557
|
+
"flag": "target-json",
|
|
98558
|
+
"schema": {
|
|
98559
|
+
"type": "object",
|
|
98560
|
+
"properties": {
|
|
98561
|
+
"kind": {
|
|
98562
|
+
"const": "block"
|
|
98563
|
+
},
|
|
98564
|
+
"nodeType": {
|
|
98565
|
+
"const": "table"
|
|
98566
|
+
},
|
|
98567
|
+
"nodeId": {
|
|
98568
|
+
"type": "string"
|
|
98569
|
+
}
|
|
98570
|
+
},
|
|
98571
|
+
"required": [
|
|
98572
|
+
"kind",
|
|
98573
|
+
"nodeType",
|
|
98574
|
+
"nodeId"
|
|
98575
|
+
]
|
|
98576
|
+
}
|
|
98577
|
+
},
|
|
98578
|
+
{
|
|
98579
|
+
"name": "nodeId",
|
|
98580
|
+
"kind": "flag",
|
|
98581
|
+
"type": "string",
|
|
98582
|
+
"flag": "node-id"
|
|
98583
|
+
},
|
|
98584
|
+
{
|
|
98585
|
+
"name": "keys",
|
|
98586
|
+
"kind": "jsonFlag",
|
|
98587
|
+
"type": "json",
|
|
98588
|
+
"flag": "keys-json",
|
|
98589
|
+
"required": true,
|
|
98590
|
+
"schema": {
|
|
98591
|
+
"type": "array",
|
|
98592
|
+
"items": {
|
|
98593
|
+
"type": "object",
|
|
98594
|
+
"properties": {
|
|
98595
|
+
"columnIndex": {
|
|
98596
|
+
"type": "number"
|
|
98597
|
+
},
|
|
98598
|
+
"direction": {
|
|
98599
|
+
"oneOf": [
|
|
98600
|
+
{
|
|
98601
|
+
"const": "ascending"
|
|
98602
|
+
},
|
|
98603
|
+
{
|
|
98604
|
+
"const": "descending"
|
|
98605
|
+
}
|
|
98606
|
+
]
|
|
98607
|
+
},
|
|
98608
|
+
"type": {
|
|
98609
|
+
"oneOf": [
|
|
98610
|
+
{
|
|
98611
|
+
"const": "text"
|
|
98612
|
+
},
|
|
98613
|
+
{
|
|
98614
|
+
"const": "number"
|
|
98615
|
+
},
|
|
98616
|
+
{
|
|
98617
|
+
"const": "date"
|
|
98618
|
+
}
|
|
98619
|
+
]
|
|
98620
|
+
}
|
|
98621
|
+
},
|
|
98622
|
+
"required": [
|
|
98623
|
+
"columnIndex",
|
|
98624
|
+
"direction",
|
|
98625
|
+
"type"
|
|
98626
|
+
]
|
|
98627
|
+
}
|
|
98628
|
+
}
|
|
98629
|
+
}
|
|
98630
|
+
],
|
|
98631
|
+
"constraints": null,
|
|
98632
|
+
"mutates": true,
|
|
98633
|
+
"idempotency": "non-idempotent",
|
|
98634
|
+
"supportsTrackedMode": false,
|
|
98635
|
+
"supportsDryRun": true,
|
|
98636
|
+
"inputSchema": {
|
|
98637
|
+
"type": "object",
|
|
98638
|
+
"properties": {
|
|
98639
|
+
"target": {
|
|
98640
|
+
"$ref": "#/$defs/TableAddress"
|
|
98641
|
+
},
|
|
98642
|
+
"nodeId": {
|
|
98643
|
+
"type": "string"
|
|
98644
|
+
},
|
|
98645
|
+
"keys": {
|
|
98646
|
+
"type": "array",
|
|
98647
|
+
"items": {
|
|
98648
|
+
"type": "object",
|
|
98649
|
+
"properties": {
|
|
98650
|
+
"columnIndex": {
|
|
98651
|
+
"type": "integer",
|
|
98652
|
+
"minimum": 0
|
|
98653
|
+
},
|
|
98654
|
+
"direction": {
|
|
98655
|
+
"enum": [
|
|
98656
|
+
"ascending",
|
|
98657
|
+
"descending"
|
|
98658
|
+
]
|
|
98659
|
+
},
|
|
98660
|
+
"type": {
|
|
98661
|
+
"enum": [
|
|
98662
|
+
"text",
|
|
98663
|
+
"number",
|
|
98664
|
+
"date"
|
|
98665
|
+
]
|
|
98666
|
+
}
|
|
98667
|
+
},
|
|
98668
|
+
"additionalProperties": false,
|
|
98669
|
+
"required": [
|
|
98670
|
+
"columnIndex",
|
|
98671
|
+
"direction",
|
|
98672
|
+
"type"
|
|
98673
|
+
]
|
|
98674
|
+
}
|
|
98675
|
+
}
|
|
98676
|
+
},
|
|
98677
|
+
"additionalProperties": false,
|
|
98678
|
+
"required": [
|
|
98679
|
+
"keys"
|
|
98680
|
+
],
|
|
98681
|
+
"oneOf": [
|
|
98682
|
+
{
|
|
98683
|
+
"required": [
|
|
98684
|
+
"target"
|
|
98685
|
+
]
|
|
98686
|
+
},
|
|
98687
|
+
{
|
|
98688
|
+
"required": [
|
|
98689
|
+
"nodeId"
|
|
97945
98690
|
]
|
|
97946
98691
|
}
|
|
97947
98692
|
]
|
|
@@ -99317,7 +100062,7 @@ const CONTRACT = {
|
|
|
99317
100062
|
},
|
|
99318
100063
|
"color": {
|
|
99319
100064
|
"type": "string",
|
|
99320
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
100065
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
99321
100066
|
}
|
|
99322
100067
|
},
|
|
99323
100068
|
"additionalProperties": false,
|
|
@@ -100144,9 +100889,20 @@ const CONTRACT = {
|
|
|
100144
100889
|
},
|
|
100145
100890
|
{
|
|
100146
100891
|
"name": "color",
|
|
100147
|
-
"kind": "
|
|
100148
|
-
"type": "
|
|
100149
|
-
"
|
|
100892
|
+
"kind": "jsonFlag",
|
|
100893
|
+
"type": "json",
|
|
100894
|
+
"flag": "color-json",
|
|
100895
|
+
"required": true,
|
|
100896
|
+
"schema": {
|
|
100897
|
+
"oneOf": [
|
|
100898
|
+
{
|
|
100899
|
+
"type": "string"
|
|
100900
|
+
},
|
|
100901
|
+
{
|
|
100902
|
+
"type": "json"
|
|
100903
|
+
}
|
|
100904
|
+
]
|
|
100905
|
+
}
|
|
100150
100906
|
}
|
|
100151
100907
|
],
|
|
100152
100908
|
"constraints": null,
|
|
@@ -100164,8 +100920,15 @@ const CONTRACT = {
|
|
|
100164
100920
|
"type": "string"
|
|
100165
100921
|
},
|
|
100166
100922
|
"color": {
|
|
100167
|
-
"
|
|
100168
|
-
|
|
100923
|
+
"oneOf": [
|
|
100924
|
+
{
|
|
100925
|
+
"type": "string",
|
|
100926
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
100927
|
+
},
|
|
100928
|
+
{
|
|
100929
|
+
"type": "null"
|
|
100930
|
+
}
|
|
100931
|
+
]
|
|
100169
100932
|
}
|
|
100170
100933
|
},
|
|
100171
100934
|
"additionalProperties": false,
|
|
@@ -100300,7 +101063,9 @@ const CONTRACT = {
|
|
|
100300
101063
|
"success",
|
|
100301
101064
|
"failure"
|
|
100302
101065
|
]
|
|
100303
|
-
}
|
|
101066
|
+
},
|
|
101067
|
+
"intentGroup": "table",
|
|
101068
|
+
"intentAction": "set_shading"
|
|
100304
101069
|
},
|
|
100305
101070
|
"doc.tables.clearShading": {
|
|
100306
101071
|
"operationId": "doc.tables.clearShading",
|
|
@@ -101652,7 +102417,7 @@ const CONTRACT = {
|
|
|
101652
102417
|
"apply-style"
|
|
101653
102418
|
],
|
|
101654
102419
|
"category": "tables",
|
|
101655
|
-
"description": "
|
|
102420
|
+
"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).",
|
|
101656
102421
|
"requiresDocumentContext": true,
|
|
101657
102422
|
"docRequirement": "optional",
|
|
101658
102423
|
"responseEnvelopeKey": null,
|
|
@@ -101981,7 +102746,9 @@ const CONTRACT = {
|
|
|
101981
102746
|
"success",
|
|
101982
102747
|
"failure"
|
|
101983
102748
|
]
|
|
101984
|
-
}
|
|
102749
|
+
},
|
|
102750
|
+
"intentGroup": "table",
|
|
102751
|
+
"intentAction": "set_style_options"
|
|
101985
102752
|
},
|
|
101986
102753
|
"doc.tables.setBorders": {
|
|
101987
102754
|
"operationId": "doc.tables.setBorders",
|
|
@@ -102407,7 +103174,7 @@ const CONTRACT = {
|
|
|
102407
103174
|
},
|
|
102408
103175
|
"color": {
|
|
102409
103176
|
"type": "string",
|
|
102410
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
103177
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102411
103178
|
}
|
|
102412
103179
|
},
|
|
102413
103180
|
"additionalProperties": false,
|
|
@@ -102471,7 +103238,7 @@ const CONTRACT = {
|
|
|
102471
103238
|
},
|
|
102472
103239
|
"color": {
|
|
102473
103240
|
"type": "string",
|
|
102474
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
103241
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102475
103242
|
}
|
|
102476
103243
|
},
|
|
102477
103244
|
"additionalProperties": false,
|
|
@@ -102500,7 +103267,7 @@ const CONTRACT = {
|
|
|
102500
103267
|
},
|
|
102501
103268
|
"color": {
|
|
102502
103269
|
"type": "string",
|
|
102503
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
103270
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102504
103271
|
}
|
|
102505
103272
|
},
|
|
102506
103273
|
"additionalProperties": false,
|
|
@@ -102529,7 +103296,7 @@ const CONTRACT = {
|
|
|
102529
103296
|
},
|
|
102530
103297
|
"color": {
|
|
102531
103298
|
"type": "string",
|
|
102532
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
103299
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102533
103300
|
}
|
|
102534
103301
|
},
|
|
102535
103302
|
"additionalProperties": false,
|
|
@@ -102558,7 +103325,7 @@ const CONTRACT = {
|
|
|
102558
103325
|
},
|
|
102559
103326
|
"color": {
|
|
102560
103327
|
"type": "string",
|
|
102561
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
103328
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102562
103329
|
}
|
|
102563
103330
|
},
|
|
102564
103331
|
"additionalProperties": false,
|
|
@@ -102587,7 +103354,7 @@ const CONTRACT = {
|
|
|
102587
103354
|
},
|
|
102588
103355
|
"color": {
|
|
102589
103356
|
"type": "string",
|
|
102590
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
103357
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102591
103358
|
}
|
|
102592
103359
|
},
|
|
102593
103360
|
"additionalProperties": false,
|
|
@@ -102616,7 +103383,7 @@ const CONTRACT = {
|
|
|
102616
103383
|
},
|
|
102617
103384
|
"color": {
|
|
102618
103385
|
"type": "string",
|
|
102619
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
103386
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
102620
103387
|
}
|
|
102621
103388
|
},
|
|
102622
103389
|
"additionalProperties": false,
|
|
@@ -102770,7 +103537,9 @@ const CONTRACT = {
|
|
|
102770
103537
|
"success",
|
|
102771
103538
|
"failure"
|
|
102772
103539
|
]
|
|
102773
|
-
}
|
|
103540
|
+
},
|
|
103541
|
+
"intentGroup": "table",
|
|
103542
|
+
"intentAction": "set_borders"
|
|
102774
103543
|
},
|
|
102775
103544
|
"doc.tables.setTableOptions": {
|
|
102776
103545
|
"operationId": "doc.tables.setTableOptions",
|
|
@@ -103092,6 +103861,295 @@ const CONTRACT = {
|
|
|
103092
103861
|
"success"
|
|
103093
103862
|
]
|
|
103094
103863
|
},
|
|
103864
|
+
"failureSchema": {
|
|
103865
|
+
"type": "object",
|
|
103866
|
+
"properties": {
|
|
103867
|
+
"success": {
|
|
103868
|
+
"const": false
|
|
103869
|
+
},
|
|
103870
|
+
"failure": {
|
|
103871
|
+
"type": "object",
|
|
103872
|
+
"properties": {
|
|
103873
|
+
"code": {
|
|
103874
|
+
"enum": [
|
|
103875
|
+
"NO_OP",
|
|
103876
|
+
"INVALID_TARGET",
|
|
103877
|
+
"TARGET_NOT_FOUND",
|
|
103878
|
+
"CAPABILITY_UNAVAILABLE"
|
|
103879
|
+
]
|
|
103880
|
+
},
|
|
103881
|
+
"message": {
|
|
103882
|
+
"type": "string"
|
|
103883
|
+
},
|
|
103884
|
+
"details": {}
|
|
103885
|
+
},
|
|
103886
|
+
"additionalProperties": false,
|
|
103887
|
+
"required": [
|
|
103888
|
+
"code",
|
|
103889
|
+
"message"
|
|
103890
|
+
]
|
|
103891
|
+
}
|
|
103892
|
+
},
|
|
103893
|
+
"additionalProperties": false,
|
|
103894
|
+
"required": [
|
|
103895
|
+
"success",
|
|
103896
|
+
"failure"
|
|
103897
|
+
]
|
|
103898
|
+
},
|
|
103899
|
+
"intentGroup": "table",
|
|
103900
|
+
"intentAction": "set_options"
|
|
103901
|
+
},
|
|
103902
|
+
"doc.tables.applyPreset": {
|
|
103903
|
+
"operationId": "doc.tables.applyPreset",
|
|
103904
|
+
"sdkSurface": "document",
|
|
103905
|
+
"command": "tables apply-preset",
|
|
103906
|
+
"commandTokens": [
|
|
103907
|
+
"tables",
|
|
103908
|
+
"apply-preset"
|
|
103909
|
+
],
|
|
103910
|
+
"category": "tables",
|
|
103911
|
+
"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).",
|
|
103912
|
+
"requiresDocumentContext": true,
|
|
103913
|
+
"docRequirement": "optional",
|
|
103914
|
+
"responseEnvelopeKey": null,
|
|
103915
|
+
"params": [
|
|
103916
|
+
{
|
|
103917
|
+
"name": "doc",
|
|
103918
|
+
"kind": "doc",
|
|
103919
|
+
"type": "string",
|
|
103920
|
+
"description": "Document path. Optional when a session is already open."
|
|
103921
|
+
},
|
|
103922
|
+
{
|
|
103923
|
+
"name": "sessionId",
|
|
103924
|
+
"kind": "flag",
|
|
103925
|
+
"type": "string",
|
|
103926
|
+
"flag": "session",
|
|
103927
|
+
"description": "Session ID for multi-session workflows. Optional when only one session is open."
|
|
103928
|
+
},
|
|
103929
|
+
{
|
|
103930
|
+
"name": "out",
|
|
103931
|
+
"kind": "flag",
|
|
103932
|
+
"type": "string",
|
|
103933
|
+
"agentVisible": false
|
|
103934
|
+
},
|
|
103935
|
+
{
|
|
103936
|
+
"name": "force",
|
|
103937
|
+
"kind": "flag",
|
|
103938
|
+
"type": "boolean",
|
|
103939
|
+
"description": "Bypass confirmation checks."
|
|
103940
|
+
},
|
|
103941
|
+
{
|
|
103942
|
+
"name": "expectedRevision",
|
|
103943
|
+
"kind": "flag",
|
|
103944
|
+
"type": "number",
|
|
103945
|
+
"flag": "expected-revision",
|
|
103946
|
+
"agentVisible": false
|
|
103947
|
+
},
|
|
103948
|
+
{
|
|
103949
|
+
"name": "changeMode",
|
|
103950
|
+
"kind": "flag",
|
|
103951
|
+
"type": "string",
|
|
103952
|
+
"flag": "change-mode",
|
|
103953
|
+
"schema": {
|
|
103954
|
+
"enum": [
|
|
103955
|
+
"direct",
|
|
103956
|
+
"tracked"
|
|
103957
|
+
]
|
|
103958
|
+
},
|
|
103959
|
+
"description": "Edit mode: \"direct\" applies changes immediately, \"tracked\" records as suggestions."
|
|
103960
|
+
},
|
|
103961
|
+
{
|
|
103962
|
+
"name": "dryRun",
|
|
103963
|
+
"kind": "flag",
|
|
103964
|
+
"type": "boolean",
|
|
103965
|
+
"flag": "dry-run",
|
|
103966
|
+
"description": "Preview the result without applying changes."
|
|
103967
|
+
},
|
|
103968
|
+
{
|
|
103969
|
+
"name": "target",
|
|
103970
|
+
"kind": "jsonFlag",
|
|
103971
|
+
"type": "json",
|
|
103972
|
+
"flag": "target-json",
|
|
103973
|
+
"schema": {
|
|
103974
|
+
"type": "object",
|
|
103975
|
+
"properties": {
|
|
103976
|
+
"kind": {
|
|
103977
|
+
"const": "block"
|
|
103978
|
+
},
|
|
103979
|
+
"nodeType": {
|
|
103980
|
+
"const": "table"
|
|
103981
|
+
},
|
|
103982
|
+
"nodeId": {
|
|
103983
|
+
"type": "string"
|
|
103984
|
+
}
|
|
103985
|
+
},
|
|
103986
|
+
"required": [
|
|
103987
|
+
"kind",
|
|
103988
|
+
"nodeType",
|
|
103989
|
+
"nodeId"
|
|
103990
|
+
]
|
|
103991
|
+
}
|
|
103992
|
+
},
|
|
103993
|
+
{
|
|
103994
|
+
"name": "nodeId",
|
|
103995
|
+
"kind": "flag",
|
|
103996
|
+
"type": "string",
|
|
103997
|
+
"flag": "node-id"
|
|
103998
|
+
},
|
|
103999
|
+
{
|
|
104000
|
+
"name": "preset",
|
|
104001
|
+
"kind": "flag",
|
|
104002
|
+
"type": "string",
|
|
104003
|
+
"required": true,
|
|
104004
|
+
"schema": {
|
|
104005
|
+
"oneOf": [
|
|
104006
|
+
{
|
|
104007
|
+
"const": "grid"
|
|
104008
|
+
},
|
|
104009
|
+
{
|
|
104010
|
+
"const": "minimal"
|
|
104011
|
+
},
|
|
104012
|
+
{
|
|
104013
|
+
"const": "striped"
|
|
104014
|
+
},
|
|
104015
|
+
{
|
|
104016
|
+
"const": "accent"
|
|
104017
|
+
}
|
|
104018
|
+
]
|
|
104019
|
+
}
|
|
104020
|
+
},
|
|
104021
|
+
{
|
|
104022
|
+
"name": "accentColor",
|
|
104023
|
+
"kind": "flag",
|
|
104024
|
+
"type": "string",
|
|
104025
|
+
"flag": "accent-color"
|
|
104026
|
+
}
|
|
104027
|
+
],
|
|
104028
|
+
"constraints": null,
|
|
104029
|
+
"mutates": true,
|
|
104030
|
+
"idempotency": "idempotent",
|
|
104031
|
+
"supportsTrackedMode": false,
|
|
104032
|
+
"supportsDryRun": true,
|
|
104033
|
+
"inputSchema": {
|
|
104034
|
+
"type": "object",
|
|
104035
|
+
"properties": {
|
|
104036
|
+
"target": {
|
|
104037
|
+
"$ref": "#/$defs/TableAddress"
|
|
104038
|
+
},
|
|
104039
|
+
"nodeId": {
|
|
104040
|
+
"type": "string"
|
|
104041
|
+
},
|
|
104042
|
+
"preset": {
|
|
104043
|
+
"enum": [
|
|
104044
|
+
"grid",
|
|
104045
|
+
"minimal",
|
|
104046
|
+
"striped",
|
|
104047
|
+
"accent"
|
|
104048
|
+
]
|
|
104049
|
+
},
|
|
104050
|
+
"accentColor": {
|
|
104051
|
+
"type": "string",
|
|
104052
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
104053
|
+
}
|
|
104054
|
+
},
|
|
104055
|
+
"additionalProperties": false,
|
|
104056
|
+
"required": [
|
|
104057
|
+
"preset"
|
|
104058
|
+
],
|
|
104059
|
+
"oneOf": [
|
|
104060
|
+
{
|
|
104061
|
+
"required": [
|
|
104062
|
+
"target"
|
|
104063
|
+
]
|
|
104064
|
+
},
|
|
104065
|
+
{
|
|
104066
|
+
"required": [
|
|
104067
|
+
"nodeId"
|
|
104068
|
+
]
|
|
104069
|
+
}
|
|
104070
|
+
]
|
|
104071
|
+
},
|
|
104072
|
+
"outputSchema": {
|
|
104073
|
+
"oneOf": [
|
|
104074
|
+
{
|
|
104075
|
+
"type": "object",
|
|
104076
|
+
"properties": {
|
|
104077
|
+
"success": {
|
|
104078
|
+
"const": true
|
|
104079
|
+
},
|
|
104080
|
+
"table": {
|
|
104081
|
+
"$ref": "#/$defs/TableAddress"
|
|
104082
|
+
},
|
|
104083
|
+
"trackedChangeRefs": {
|
|
104084
|
+
"type": "array",
|
|
104085
|
+
"items": {
|
|
104086
|
+
"$ref": "#/$defs/EntityAddress"
|
|
104087
|
+
}
|
|
104088
|
+
}
|
|
104089
|
+
},
|
|
104090
|
+
"additionalProperties": false,
|
|
104091
|
+
"required": [
|
|
104092
|
+
"success"
|
|
104093
|
+
]
|
|
104094
|
+
},
|
|
104095
|
+
{
|
|
104096
|
+
"type": "object",
|
|
104097
|
+
"properties": {
|
|
104098
|
+
"success": {
|
|
104099
|
+
"const": false
|
|
104100
|
+
},
|
|
104101
|
+
"failure": {
|
|
104102
|
+
"type": "object",
|
|
104103
|
+
"properties": {
|
|
104104
|
+
"code": {
|
|
104105
|
+
"enum": [
|
|
104106
|
+
"NO_OP",
|
|
104107
|
+
"INVALID_TARGET",
|
|
104108
|
+
"TARGET_NOT_FOUND",
|
|
104109
|
+
"CAPABILITY_UNAVAILABLE"
|
|
104110
|
+
]
|
|
104111
|
+
},
|
|
104112
|
+
"message": {
|
|
104113
|
+
"type": "string"
|
|
104114
|
+
},
|
|
104115
|
+
"details": {}
|
|
104116
|
+
},
|
|
104117
|
+
"additionalProperties": false,
|
|
104118
|
+
"required": [
|
|
104119
|
+
"code",
|
|
104120
|
+
"message"
|
|
104121
|
+
]
|
|
104122
|
+
}
|
|
104123
|
+
},
|
|
104124
|
+
"additionalProperties": false,
|
|
104125
|
+
"required": [
|
|
104126
|
+
"success",
|
|
104127
|
+
"failure"
|
|
104128
|
+
]
|
|
104129
|
+
}
|
|
104130
|
+
]
|
|
104131
|
+
},
|
|
104132
|
+
"successSchema": {
|
|
104133
|
+
"type": "object",
|
|
104134
|
+
"properties": {
|
|
104135
|
+
"success": {
|
|
104136
|
+
"const": true
|
|
104137
|
+
},
|
|
104138
|
+
"table": {
|
|
104139
|
+
"$ref": "#/$defs/TableAddress"
|
|
104140
|
+
},
|
|
104141
|
+
"trackedChangeRefs": {
|
|
104142
|
+
"type": "array",
|
|
104143
|
+
"items": {
|
|
104144
|
+
"$ref": "#/$defs/EntityAddress"
|
|
104145
|
+
}
|
|
104146
|
+
}
|
|
104147
|
+
},
|
|
104148
|
+
"additionalProperties": false,
|
|
104149
|
+
"required": [
|
|
104150
|
+
"success"
|
|
104151
|
+
]
|
|
104152
|
+
},
|
|
103095
104153
|
"failureSchema": {
|
|
103096
104154
|
"type": "object",
|
|
103097
104155
|
"properties": {
|
|
@@ -103572,7 +104630,7 @@ const CONTRACT = {
|
|
|
103572
104630
|
},
|
|
103573
104631
|
"color": {
|
|
103574
104632
|
"type": "string",
|
|
103575
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104633
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103576
104634
|
}
|
|
103577
104635
|
},
|
|
103578
104636
|
"additionalProperties": false,
|
|
@@ -103601,7 +104659,7 @@ const CONTRACT = {
|
|
|
103601
104659
|
},
|
|
103602
104660
|
"color": {
|
|
103603
104661
|
"type": "string",
|
|
103604
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104662
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103605
104663
|
}
|
|
103606
104664
|
},
|
|
103607
104665
|
"additionalProperties": false,
|
|
@@ -103630,7 +104688,7 @@ const CONTRACT = {
|
|
|
103630
104688
|
},
|
|
103631
104689
|
"color": {
|
|
103632
104690
|
"type": "string",
|
|
103633
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104691
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103634
104692
|
}
|
|
103635
104693
|
},
|
|
103636
104694
|
"additionalProperties": false,
|
|
@@ -103659,7 +104717,7 @@ const CONTRACT = {
|
|
|
103659
104717
|
},
|
|
103660
104718
|
"color": {
|
|
103661
104719
|
"type": "string",
|
|
103662
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104720
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103663
104721
|
}
|
|
103664
104722
|
},
|
|
103665
104723
|
"additionalProperties": false,
|
|
@@ -103688,7 +104746,7 @@ const CONTRACT = {
|
|
|
103688
104746
|
},
|
|
103689
104747
|
"color": {
|
|
103690
104748
|
"type": "string",
|
|
103691
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104749
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103692
104750
|
}
|
|
103693
104751
|
},
|
|
103694
104752
|
"additionalProperties": false,
|
|
@@ -103717,7 +104775,7 @@ const CONTRACT = {
|
|
|
103717
104775
|
},
|
|
103718
104776
|
"color": {
|
|
103719
104777
|
"type": "string",
|
|
103720
|
-
"pattern": "^([0-9A-Fa-f]{6}|auto)$"
|
|
104778
|
+
"pattern": "^(#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})|auto)$"
|
|
103721
104779
|
}
|
|
103722
104780
|
},
|
|
103723
104781
|
"additionalProperties": false,
|