@superdoc-dev/sdk 1.0.0-alpha.4 → 1.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +116 -0
- package/dist/generated/client.d.ts +2 -0
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/contract.d.ts +34 -0
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +50 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/runtime/process.d.ts.map +1 -1
- package/dist/runtime/transport-common.d.ts.map +1 -1
- package/dist/runtime/transport-common.js +1 -3
- package/package.json +6 -6
- package/tools/catalog.json +1575 -1281
- package/tools/tools-policy.json +1 -1
- package/tools/tools.anthropic.json +1582 -1288
- package/tools/tools.generic.json +1575 -1281
- package/tools/tools.openai.json +1582 -1288
- package/tools/tools.vercel.json +1582 -1288
|
@@ -6,204 +6,134 @@
|
|
|
6
6
|
"name": "find_content",
|
|
7
7
|
"description": "Search the document for nodes matching type, text, or attribute criteria.",
|
|
8
8
|
"input_schema": {
|
|
9
|
-
"
|
|
9
|
+
"type": "object",
|
|
10
10
|
"properties": {
|
|
11
|
-
"
|
|
12
|
-
"type": "
|
|
13
|
-
},
|
|
14
|
-
"includeUnknown": {
|
|
15
|
-
"type": "boolean"
|
|
16
|
-
},
|
|
17
|
-
"limit": {
|
|
18
|
-
"type": "integer"
|
|
19
|
-
},
|
|
20
|
-
"offset": {
|
|
21
|
-
"type": "integer"
|
|
11
|
+
"doc": {
|
|
12
|
+
"type": "string"
|
|
22
13
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
{
|
|
26
|
-
"additionalProperties": false,
|
|
27
|
-
"properties": {
|
|
28
|
-
"caseSensitive": {
|
|
29
|
-
"type": "boolean"
|
|
30
|
-
},
|
|
31
|
-
"mode": {
|
|
32
|
-
"enum": [
|
|
33
|
-
"contains",
|
|
34
|
-
"regex"
|
|
35
|
-
]
|
|
36
|
-
},
|
|
37
|
-
"pattern": {
|
|
38
|
-
"type": "string"
|
|
39
|
-
},
|
|
40
|
-
"type": {
|
|
41
|
-
"const": "text"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"required": [
|
|
45
|
-
"type",
|
|
46
|
-
"pattern"
|
|
47
|
-
],
|
|
48
|
-
"type": "object"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"additionalProperties": false,
|
|
52
|
-
"properties": {
|
|
53
|
-
"kind": {
|
|
54
|
-
"enum": [
|
|
55
|
-
"block",
|
|
56
|
-
"inline"
|
|
57
|
-
]
|
|
58
|
-
},
|
|
59
|
-
"nodeType": {
|
|
60
|
-
"enum": [
|
|
61
|
-
"paragraph",
|
|
62
|
-
"heading",
|
|
63
|
-
"listItem",
|
|
64
|
-
"table",
|
|
65
|
-
"tableRow",
|
|
66
|
-
"tableCell",
|
|
67
|
-
"image",
|
|
68
|
-
"sdt",
|
|
69
|
-
"run",
|
|
70
|
-
"bookmark",
|
|
71
|
-
"comment",
|
|
72
|
-
"hyperlink",
|
|
73
|
-
"footnoteRef",
|
|
74
|
-
"tab",
|
|
75
|
-
"lineBreak"
|
|
76
|
-
]
|
|
77
|
-
},
|
|
78
|
-
"type": {
|
|
79
|
-
"const": "node"
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"required": [
|
|
83
|
-
"type"
|
|
84
|
-
],
|
|
85
|
-
"type": "object"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"additionalProperties": false,
|
|
89
|
-
"properties": {
|
|
90
|
-
"nodeType": {
|
|
91
|
-
"enum": [
|
|
92
|
-
"paragraph",
|
|
93
|
-
"heading",
|
|
94
|
-
"listItem",
|
|
95
|
-
"table",
|
|
96
|
-
"tableRow",
|
|
97
|
-
"tableCell",
|
|
98
|
-
"image",
|
|
99
|
-
"sdt",
|
|
100
|
-
"run",
|
|
101
|
-
"bookmark",
|
|
102
|
-
"comment",
|
|
103
|
-
"hyperlink",
|
|
104
|
-
"footnoteRef",
|
|
105
|
-
"tab",
|
|
106
|
-
"lineBreak"
|
|
107
|
-
]
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
"required": [
|
|
111
|
-
"nodeType"
|
|
112
|
-
],
|
|
113
|
-
"type": "object"
|
|
114
|
-
}
|
|
115
|
-
]
|
|
14
|
+
"sessionId": {
|
|
15
|
+
"type": "string"
|
|
116
16
|
},
|
|
117
17
|
"within": {
|
|
118
18
|
"oneOf": [
|
|
119
19
|
{
|
|
120
|
-
"
|
|
20
|
+
"type": "object",
|
|
121
21
|
"properties": {
|
|
122
22
|
"kind": {
|
|
123
23
|
"const": "block"
|
|
124
24
|
},
|
|
125
|
-
"nodeId": {
|
|
126
|
-
"type": "string"
|
|
127
|
-
},
|
|
128
25
|
"nodeType": {
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
26
|
+
"oneOf": [
|
|
27
|
+
{
|
|
28
|
+
"const": "paragraph"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"const": "heading"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"const": "listItem"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"const": "table"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"const": "tableRow"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"const": "tableCell"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"const": "image"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"const": "sdt"
|
|
50
|
+
}
|
|
138
51
|
]
|
|
52
|
+
},
|
|
53
|
+
"nodeId": {
|
|
54
|
+
"type": "string"
|
|
139
55
|
}
|
|
140
56
|
},
|
|
141
57
|
"required": [
|
|
142
58
|
"kind",
|
|
143
59
|
"nodeType",
|
|
144
60
|
"nodeId"
|
|
145
|
-
]
|
|
146
|
-
"type": "object"
|
|
61
|
+
]
|
|
147
62
|
},
|
|
148
63
|
{
|
|
149
|
-
"
|
|
64
|
+
"type": "object",
|
|
150
65
|
"properties": {
|
|
66
|
+
"kind": {
|
|
67
|
+
"const": "inline"
|
|
68
|
+
},
|
|
69
|
+
"nodeType": {
|
|
70
|
+
"oneOf": [
|
|
71
|
+
{
|
|
72
|
+
"const": "run"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"const": "bookmark"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"const": "comment"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"const": "hyperlink"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"const": "sdt"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"const": "image"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"const": "footnoteRef"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"const": "tab"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"const": "lineBreak"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
},
|
|
151
100
|
"anchor": {
|
|
152
|
-
"
|
|
101
|
+
"type": "object",
|
|
153
102
|
"properties": {
|
|
154
|
-
"
|
|
155
|
-
"
|
|
103
|
+
"start": {
|
|
104
|
+
"type": "object",
|
|
156
105
|
"properties": {
|
|
157
106
|
"blockId": {
|
|
158
107
|
"type": "string"
|
|
159
108
|
},
|
|
160
109
|
"offset": {
|
|
161
|
-
"type": "
|
|
110
|
+
"type": "number"
|
|
162
111
|
}
|
|
163
112
|
},
|
|
164
113
|
"required": [
|
|
165
114
|
"blockId",
|
|
166
115
|
"offset"
|
|
167
|
-
]
|
|
168
|
-
"type": "object"
|
|
116
|
+
]
|
|
169
117
|
},
|
|
170
|
-
"
|
|
171
|
-
"
|
|
118
|
+
"end": {
|
|
119
|
+
"type": "object",
|
|
172
120
|
"properties": {
|
|
173
121
|
"blockId": {
|
|
174
122
|
"type": "string"
|
|
175
123
|
},
|
|
176
124
|
"offset": {
|
|
177
|
-
"type": "
|
|
125
|
+
"type": "number"
|
|
178
126
|
}
|
|
179
127
|
},
|
|
180
128
|
"required": [
|
|
181
129
|
"blockId",
|
|
182
130
|
"offset"
|
|
183
|
-
]
|
|
184
|
-
"type": "object"
|
|
131
|
+
]
|
|
185
132
|
}
|
|
186
133
|
},
|
|
187
134
|
"required": [
|
|
188
135
|
"start",
|
|
189
136
|
"end"
|
|
190
|
-
],
|
|
191
|
-
"type": "object"
|
|
192
|
-
},
|
|
193
|
-
"kind": {
|
|
194
|
-
"const": "inline"
|
|
195
|
-
},
|
|
196
|
-
"nodeType": {
|
|
197
|
-
"enum": [
|
|
198
|
-
"run",
|
|
199
|
-
"bookmark",
|
|
200
|
-
"comment",
|
|
201
|
-
"hyperlink",
|
|
202
|
-
"sdt",
|
|
203
|
-
"image",
|
|
204
|
-
"footnoteRef",
|
|
205
|
-
"tab",
|
|
206
|
-
"lineBreak"
|
|
207
137
|
]
|
|
208
138
|
}
|
|
209
139
|
},
|
|
@@ -211,248 +141,210 @@
|
|
|
211
141
|
"kind",
|
|
212
142
|
"nodeType",
|
|
213
143
|
"anchor"
|
|
214
|
-
]
|
|
215
|
-
"type": "object"
|
|
144
|
+
]
|
|
216
145
|
}
|
|
217
146
|
]
|
|
218
|
-
}
|
|
147
|
+
},
|
|
148
|
+
"limit": {
|
|
149
|
+
"type": "number"
|
|
150
|
+
},
|
|
151
|
+
"offset": {
|
|
152
|
+
"type": "number"
|
|
153
|
+
},
|
|
154
|
+
"includeNodes": {
|
|
155
|
+
"type": "boolean"
|
|
156
|
+
},
|
|
157
|
+
"includeUnknown": {
|
|
158
|
+
"type": "boolean"
|
|
159
|
+
},
|
|
160
|
+
"type": {
|
|
161
|
+
"type": "string"
|
|
162
|
+
},
|
|
163
|
+
"nodeType": {
|
|
164
|
+
"type": "string"
|
|
165
|
+
},
|
|
166
|
+
"kind": {
|
|
167
|
+
"type": "string"
|
|
168
|
+
},
|
|
169
|
+
"pattern": {
|
|
170
|
+
"type": "string"
|
|
171
|
+
},
|
|
172
|
+
"mode": {
|
|
173
|
+
"type": "string"
|
|
174
|
+
},
|
|
175
|
+
"caseSensitive": {
|
|
176
|
+
"type": "boolean"
|
|
177
|
+
},
|
|
178
|
+
"query": {}
|
|
219
179
|
},
|
|
220
|
-
"
|
|
221
|
-
"select"
|
|
222
|
-
],
|
|
223
|
-
"type": "object"
|
|
180
|
+
"additionalProperties": false
|
|
224
181
|
}
|
|
225
182
|
},
|
|
226
183
|
{
|
|
227
184
|
"name": "get_node",
|
|
228
185
|
"description": "Retrieve a single node by target position.",
|
|
229
186
|
"input_schema": {
|
|
230
|
-
"
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
"
|
|
234
|
-
"kind": {
|
|
235
|
-
"const": "block"
|
|
236
|
-
},
|
|
237
|
-
"nodeId": {
|
|
238
|
-
"type": "string"
|
|
239
|
-
},
|
|
240
|
-
"nodeType": {
|
|
241
|
-
"enum": [
|
|
242
|
-
"paragraph",
|
|
243
|
-
"heading",
|
|
244
|
-
"listItem",
|
|
245
|
-
"table",
|
|
246
|
-
"tableRow",
|
|
247
|
-
"tableCell",
|
|
248
|
-
"image",
|
|
249
|
-
"sdt"
|
|
250
|
-
]
|
|
251
|
-
}
|
|
252
|
-
},
|
|
253
|
-
"required": [
|
|
254
|
-
"kind",
|
|
255
|
-
"nodeType",
|
|
256
|
-
"nodeId"
|
|
257
|
-
],
|
|
258
|
-
"type": "object"
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"doc": {
|
|
190
|
+
"type": "string"
|
|
259
191
|
},
|
|
260
|
-
{
|
|
261
|
-
"
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"end": {
|
|
267
|
-
"additionalProperties": false,
|
|
268
|
-
"properties": {
|
|
269
|
-
"blockId": {
|
|
270
|
-
"type": "string"
|
|
271
|
-
},
|
|
272
|
-
"offset": {
|
|
273
|
-
"type": "integer"
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
"required": [
|
|
277
|
-
"blockId",
|
|
278
|
-
"offset"
|
|
279
|
-
],
|
|
280
|
-
"type": "object"
|
|
281
|
-
},
|
|
282
|
-
"start": {
|
|
283
|
-
"additionalProperties": false,
|
|
284
|
-
"properties": {
|
|
285
|
-
"blockId": {
|
|
286
|
-
"type": "string"
|
|
287
|
-
},
|
|
288
|
-
"offset": {
|
|
289
|
-
"type": "integer"
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
"required": [
|
|
293
|
-
"blockId",
|
|
294
|
-
"offset"
|
|
295
|
-
],
|
|
296
|
-
"type": "object"
|
|
297
|
-
}
|
|
298
|
-
},
|
|
299
|
-
"required": [
|
|
300
|
-
"start",
|
|
301
|
-
"end"
|
|
302
|
-
],
|
|
303
|
-
"type": "object"
|
|
304
|
-
},
|
|
305
|
-
"kind": {
|
|
306
|
-
"const": "inline"
|
|
307
|
-
},
|
|
308
|
-
"nodeType": {
|
|
309
|
-
"enum": [
|
|
310
|
-
"run",
|
|
311
|
-
"bookmark",
|
|
312
|
-
"comment",
|
|
313
|
-
"hyperlink",
|
|
314
|
-
"sdt",
|
|
315
|
-
"image",
|
|
316
|
-
"footnoteRef",
|
|
317
|
-
"tab",
|
|
318
|
-
"lineBreak"
|
|
319
|
-
]
|
|
320
|
-
}
|
|
321
|
-
},
|
|
322
|
-
"required": [
|
|
323
|
-
"kind",
|
|
324
|
-
"nodeType",
|
|
325
|
-
"anchor"
|
|
326
|
-
],
|
|
327
|
-
"type": "object"
|
|
328
|
-
}
|
|
329
|
-
]
|
|
192
|
+
"sessionId": {
|
|
193
|
+
"type": "string"
|
|
194
|
+
},
|
|
195
|
+
"address": {}
|
|
196
|
+
},
|
|
197
|
+
"additionalProperties": false
|
|
330
198
|
}
|
|
331
199
|
},
|
|
332
200
|
{
|
|
333
201
|
"name": "get_node_by_id",
|
|
334
202
|
"description": "Retrieve a single node by its unique ID.",
|
|
335
203
|
"input_schema": {
|
|
336
|
-
"
|
|
204
|
+
"type": "object",
|
|
337
205
|
"properties": {
|
|
338
|
-
"
|
|
206
|
+
"doc": {
|
|
207
|
+
"type": "string"
|
|
208
|
+
},
|
|
209
|
+
"sessionId": {
|
|
210
|
+
"type": "string"
|
|
211
|
+
},
|
|
212
|
+
"id": {
|
|
339
213
|
"type": "string"
|
|
340
214
|
},
|
|
341
215
|
"nodeType": {
|
|
342
|
-
"
|
|
343
|
-
"paragraph",
|
|
344
|
-
"heading",
|
|
345
|
-
"listItem",
|
|
346
|
-
"table",
|
|
347
|
-
"tableRow",
|
|
348
|
-
"tableCell",
|
|
349
|
-
"image",
|
|
350
|
-
"sdt"
|
|
351
|
-
]
|
|
216
|
+
"type": "string"
|
|
352
217
|
}
|
|
353
218
|
},
|
|
354
219
|
"required": [
|
|
355
|
-
"
|
|
220
|
+
"id"
|
|
356
221
|
],
|
|
357
|
-
"
|
|
222
|
+
"additionalProperties": false
|
|
358
223
|
}
|
|
359
224
|
},
|
|
360
225
|
{
|
|
361
226
|
"name": "get_document_info",
|
|
362
227
|
"description": "Return document metadata including revision, node count, and capabilities.",
|
|
363
228
|
"input_schema": {
|
|
364
|
-
"
|
|
365
|
-
"properties": {
|
|
366
|
-
|
|
229
|
+
"type": "object",
|
|
230
|
+
"properties": {
|
|
231
|
+
"doc": {
|
|
232
|
+
"type": "string"
|
|
233
|
+
},
|
|
234
|
+
"sessionId": {
|
|
235
|
+
"type": "string"
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
"additionalProperties": false
|
|
367
239
|
}
|
|
368
240
|
},
|
|
369
241
|
{
|
|
370
242
|
"name": "insert_content",
|
|
371
243
|
"description": "Insert text or inline content at a target position.",
|
|
372
244
|
"input_schema": {
|
|
373
|
-
"
|
|
245
|
+
"type": "object",
|
|
374
246
|
"properties": {
|
|
247
|
+
"doc": {
|
|
248
|
+
"type": "string"
|
|
249
|
+
},
|
|
250
|
+
"sessionId": {
|
|
251
|
+
"type": "string"
|
|
252
|
+
},
|
|
253
|
+
"force": {
|
|
254
|
+
"type": "boolean"
|
|
255
|
+
},
|
|
375
256
|
"target": {
|
|
376
|
-
"
|
|
257
|
+
"type": "object",
|
|
377
258
|
"properties": {
|
|
378
|
-
"blockId": {
|
|
379
|
-
"type": "string"
|
|
380
|
-
},
|
|
381
259
|
"kind": {
|
|
382
260
|
"const": "text"
|
|
383
261
|
},
|
|
262
|
+
"blockId": {
|
|
263
|
+
"type": "string"
|
|
264
|
+
},
|
|
384
265
|
"range": {
|
|
385
|
-
"
|
|
266
|
+
"type": "object",
|
|
386
267
|
"properties": {
|
|
387
|
-
"end": {
|
|
388
|
-
"type": "integer"
|
|
389
|
-
},
|
|
390
268
|
"start": {
|
|
391
|
-
"type": "
|
|
269
|
+
"type": "number"
|
|
270
|
+
},
|
|
271
|
+
"end": {
|
|
272
|
+
"type": "number"
|
|
392
273
|
}
|
|
393
274
|
},
|
|
394
275
|
"required": [
|
|
395
276
|
"start",
|
|
396
277
|
"end"
|
|
397
|
-
]
|
|
398
|
-
"type": "object"
|
|
278
|
+
]
|
|
399
279
|
}
|
|
400
280
|
},
|
|
401
281
|
"required": [
|
|
402
282
|
"kind",
|
|
403
283
|
"blockId",
|
|
404
284
|
"range"
|
|
405
|
-
]
|
|
406
|
-
"type": "object"
|
|
285
|
+
]
|
|
407
286
|
},
|
|
408
287
|
"text": {
|
|
409
288
|
"type": "string"
|
|
289
|
+
},
|
|
290
|
+
"blockId": {
|
|
291
|
+
"type": "string"
|
|
292
|
+
},
|
|
293
|
+
"offset": {
|
|
294
|
+
"type": "number"
|
|
410
295
|
}
|
|
411
296
|
},
|
|
412
297
|
"required": [
|
|
413
298
|
"text"
|
|
414
299
|
],
|
|
415
|
-
"
|
|
300
|
+
"additionalProperties": false
|
|
416
301
|
}
|
|
417
302
|
},
|
|
418
303
|
{
|
|
419
304
|
"name": "replace_content",
|
|
420
305
|
"description": "Replace content at a target position with new text or inline content.",
|
|
421
306
|
"input_schema": {
|
|
422
|
-
"
|
|
307
|
+
"type": "object",
|
|
423
308
|
"properties": {
|
|
309
|
+
"doc": {
|
|
310
|
+
"type": "string"
|
|
311
|
+
},
|
|
312
|
+
"sessionId": {
|
|
313
|
+
"type": "string"
|
|
314
|
+
},
|
|
315
|
+
"force": {
|
|
316
|
+
"type": "boolean"
|
|
317
|
+
},
|
|
424
318
|
"target": {
|
|
425
|
-
"
|
|
319
|
+
"type": "object",
|
|
426
320
|
"properties": {
|
|
427
|
-
"blockId": {
|
|
428
|
-
"type": "string"
|
|
429
|
-
},
|
|
430
321
|
"kind": {
|
|
431
322
|
"const": "text"
|
|
432
323
|
},
|
|
324
|
+
"blockId": {
|
|
325
|
+
"type": "string"
|
|
326
|
+
},
|
|
433
327
|
"range": {
|
|
434
|
-
"
|
|
328
|
+
"type": "object",
|
|
435
329
|
"properties": {
|
|
436
|
-
"end": {
|
|
437
|
-
"type": "integer"
|
|
438
|
-
},
|
|
439
330
|
"start": {
|
|
440
|
-
"type": "
|
|
331
|
+
"type": "number"
|
|
332
|
+
},
|
|
333
|
+
"end": {
|
|
334
|
+
"type": "number"
|
|
441
335
|
}
|
|
442
336
|
},
|
|
443
337
|
"required": [
|
|
444
338
|
"start",
|
|
445
339
|
"end"
|
|
446
|
-
]
|
|
447
|
-
"type": "object"
|
|
340
|
+
]
|
|
448
341
|
}
|
|
449
342
|
},
|
|
450
343
|
"required": [
|
|
451
344
|
"kind",
|
|
452
345
|
"blockId",
|
|
453
346
|
"range"
|
|
454
|
-
]
|
|
455
|
-
"type": "object"
|
|
347
|
+
]
|
|
456
348
|
},
|
|
457
349
|
"text": {
|
|
458
350
|
"type": "string"
|
|
@@ -462,249 +354,293 @@
|
|
|
462
354
|
"target",
|
|
463
355
|
"text"
|
|
464
356
|
],
|
|
465
|
-
"
|
|
357
|
+
"additionalProperties": false
|
|
466
358
|
}
|
|
467
359
|
},
|
|
468
360
|
{
|
|
469
361
|
"name": "delete_content",
|
|
470
362
|
"description": "Delete content at a target position.",
|
|
471
363
|
"input_schema": {
|
|
472
|
-
"
|
|
364
|
+
"type": "object",
|
|
473
365
|
"properties": {
|
|
366
|
+
"doc": {
|
|
367
|
+
"type": "string"
|
|
368
|
+
},
|
|
369
|
+
"sessionId": {
|
|
370
|
+
"type": "string"
|
|
371
|
+
},
|
|
372
|
+
"force": {
|
|
373
|
+
"type": "boolean"
|
|
374
|
+
},
|
|
474
375
|
"target": {
|
|
475
|
-
"
|
|
376
|
+
"type": "object",
|
|
476
377
|
"properties": {
|
|
477
|
-
"blockId": {
|
|
478
|
-
"type": "string"
|
|
479
|
-
},
|
|
480
378
|
"kind": {
|
|
481
379
|
"const": "text"
|
|
482
380
|
},
|
|
381
|
+
"blockId": {
|
|
382
|
+
"type": "string"
|
|
383
|
+
},
|
|
483
384
|
"range": {
|
|
484
|
-
"
|
|
385
|
+
"type": "object",
|
|
485
386
|
"properties": {
|
|
486
|
-
"end": {
|
|
487
|
-
"type": "integer"
|
|
488
|
-
},
|
|
489
387
|
"start": {
|
|
490
|
-
"type": "
|
|
388
|
+
"type": "number"
|
|
389
|
+
},
|
|
390
|
+
"end": {
|
|
391
|
+
"type": "number"
|
|
491
392
|
}
|
|
492
393
|
},
|
|
493
394
|
"required": [
|
|
494
395
|
"start",
|
|
495
396
|
"end"
|
|
496
|
-
]
|
|
497
|
-
"type": "object"
|
|
397
|
+
]
|
|
498
398
|
}
|
|
499
399
|
},
|
|
500
400
|
"required": [
|
|
501
401
|
"kind",
|
|
502
402
|
"blockId",
|
|
503
403
|
"range"
|
|
504
|
-
]
|
|
505
|
-
"type": "object"
|
|
404
|
+
]
|
|
506
405
|
}
|
|
507
406
|
},
|
|
508
407
|
"required": [
|
|
509
408
|
"target"
|
|
510
409
|
],
|
|
511
|
-
"
|
|
410
|
+
"additionalProperties": false
|
|
512
411
|
}
|
|
513
412
|
},
|
|
514
413
|
{
|
|
515
414
|
"name": "format_bold",
|
|
516
415
|
"description": "Toggle bold formatting on the target range.",
|
|
517
416
|
"input_schema": {
|
|
518
|
-
"
|
|
417
|
+
"type": "object",
|
|
519
418
|
"properties": {
|
|
419
|
+
"doc": {
|
|
420
|
+
"type": "string"
|
|
421
|
+
},
|
|
422
|
+
"sessionId": {
|
|
423
|
+
"type": "string"
|
|
424
|
+
},
|
|
425
|
+
"force": {
|
|
426
|
+
"type": "boolean"
|
|
427
|
+
},
|
|
520
428
|
"target": {
|
|
521
|
-
"
|
|
429
|
+
"type": "object",
|
|
522
430
|
"properties": {
|
|
523
|
-
"blockId": {
|
|
524
|
-
"type": "string"
|
|
525
|
-
},
|
|
526
431
|
"kind": {
|
|
527
432
|
"const": "text"
|
|
528
433
|
},
|
|
434
|
+
"blockId": {
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
529
437
|
"range": {
|
|
530
|
-
"
|
|
438
|
+
"type": "object",
|
|
531
439
|
"properties": {
|
|
532
|
-
"end": {
|
|
533
|
-
"type": "integer"
|
|
534
|
-
},
|
|
535
440
|
"start": {
|
|
536
|
-
"type": "
|
|
441
|
+
"type": "number"
|
|
442
|
+
},
|
|
443
|
+
"end": {
|
|
444
|
+
"type": "number"
|
|
537
445
|
}
|
|
538
446
|
},
|
|
539
447
|
"required": [
|
|
540
448
|
"start",
|
|
541
449
|
"end"
|
|
542
|
-
]
|
|
543
|
-
"type": "object"
|
|
450
|
+
]
|
|
544
451
|
}
|
|
545
452
|
},
|
|
546
453
|
"required": [
|
|
547
454
|
"kind",
|
|
548
455
|
"blockId",
|
|
549
456
|
"range"
|
|
550
|
-
]
|
|
551
|
-
"type": "object"
|
|
457
|
+
]
|
|
552
458
|
}
|
|
553
459
|
},
|
|
554
460
|
"required": [
|
|
555
461
|
"target"
|
|
556
462
|
],
|
|
557
|
-
"
|
|
463
|
+
"additionalProperties": false
|
|
558
464
|
}
|
|
559
465
|
},
|
|
560
466
|
{
|
|
561
467
|
"name": "format_italic",
|
|
562
468
|
"description": "Toggle italic formatting on the target range.",
|
|
563
469
|
"input_schema": {
|
|
564
|
-
"
|
|
470
|
+
"type": "object",
|
|
565
471
|
"properties": {
|
|
472
|
+
"doc": {
|
|
473
|
+
"type": "string"
|
|
474
|
+
},
|
|
475
|
+
"sessionId": {
|
|
476
|
+
"type": "string"
|
|
477
|
+
},
|
|
478
|
+
"force": {
|
|
479
|
+
"type": "boolean"
|
|
480
|
+
},
|
|
566
481
|
"target": {
|
|
567
|
-
"
|
|
482
|
+
"type": "object",
|
|
568
483
|
"properties": {
|
|
569
|
-
"blockId": {
|
|
570
|
-
"type": "string"
|
|
571
|
-
},
|
|
572
484
|
"kind": {
|
|
573
485
|
"const": "text"
|
|
574
486
|
},
|
|
487
|
+
"blockId": {
|
|
488
|
+
"type": "string"
|
|
489
|
+
},
|
|
575
490
|
"range": {
|
|
576
|
-
"
|
|
491
|
+
"type": "object",
|
|
577
492
|
"properties": {
|
|
578
|
-
"end": {
|
|
579
|
-
"type": "integer"
|
|
580
|
-
},
|
|
581
493
|
"start": {
|
|
582
|
-
"type": "
|
|
494
|
+
"type": "number"
|
|
495
|
+
},
|
|
496
|
+
"end": {
|
|
497
|
+
"type": "number"
|
|
583
498
|
}
|
|
584
499
|
},
|
|
585
500
|
"required": [
|
|
586
501
|
"start",
|
|
587
502
|
"end"
|
|
588
|
-
]
|
|
589
|
-
"type": "object"
|
|
503
|
+
]
|
|
590
504
|
}
|
|
591
505
|
},
|
|
592
506
|
"required": [
|
|
593
507
|
"kind",
|
|
594
508
|
"blockId",
|
|
595
509
|
"range"
|
|
596
|
-
]
|
|
597
|
-
"type": "object"
|
|
510
|
+
]
|
|
598
511
|
}
|
|
599
512
|
},
|
|
600
513
|
"required": [
|
|
601
514
|
"target"
|
|
602
515
|
],
|
|
603
|
-
"
|
|
516
|
+
"additionalProperties": false
|
|
604
517
|
}
|
|
605
518
|
},
|
|
606
519
|
{
|
|
607
520
|
"name": "format_underline",
|
|
608
521
|
"description": "Toggle underline formatting on the target range.",
|
|
609
522
|
"input_schema": {
|
|
610
|
-
"
|
|
523
|
+
"type": "object",
|
|
611
524
|
"properties": {
|
|
525
|
+
"doc": {
|
|
526
|
+
"type": "string"
|
|
527
|
+
},
|
|
528
|
+
"sessionId": {
|
|
529
|
+
"type": "string"
|
|
530
|
+
},
|
|
531
|
+
"force": {
|
|
532
|
+
"type": "boolean"
|
|
533
|
+
},
|
|
612
534
|
"target": {
|
|
613
|
-
"
|
|
535
|
+
"type": "object",
|
|
614
536
|
"properties": {
|
|
615
|
-
"blockId": {
|
|
616
|
-
"type": "string"
|
|
617
|
-
},
|
|
618
537
|
"kind": {
|
|
619
538
|
"const": "text"
|
|
620
539
|
},
|
|
540
|
+
"blockId": {
|
|
541
|
+
"type": "string"
|
|
542
|
+
},
|
|
621
543
|
"range": {
|
|
622
|
-
"
|
|
544
|
+
"type": "object",
|
|
623
545
|
"properties": {
|
|
624
|
-
"end": {
|
|
625
|
-
"type": "integer"
|
|
626
|
-
},
|
|
627
546
|
"start": {
|
|
628
|
-
"type": "
|
|
547
|
+
"type": "number"
|
|
548
|
+
},
|
|
549
|
+
"end": {
|
|
550
|
+
"type": "number"
|
|
629
551
|
}
|
|
630
552
|
},
|
|
631
553
|
"required": [
|
|
632
554
|
"start",
|
|
633
555
|
"end"
|
|
634
|
-
]
|
|
635
|
-
"type": "object"
|
|
556
|
+
]
|
|
636
557
|
}
|
|
637
558
|
},
|
|
638
559
|
"required": [
|
|
639
560
|
"kind",
|
|
640
561
|
"blockId",
|
|
641
562
|
"range"
|
|
642
|
-
]
|
|
643
|
-
"type": "object"
|
|
563
|
+
]
|
|
644
564
|
}
|
|
645
565
|
},
|
|
646
566
|
"required": [
|
|
647
567
|
"target"
|
|
648
568
|
],
|
|
649
|
-
"
|
|
569
|
+
"additionalProperties": false
|
|
650
570
|
}
|
|
651
571
|
},
|
|
652
572
|
{
|
|
653
573
|
"name": "format_strikethrough",
|
|
654
574
|
"description": "Toggle strikethrough formatting on the target range.",
|
|
655
575
|
"input_schema": {
|
|
656
|
-
"
|
|
576
|
+
"type": "object",
|
|
657
577
|
"properties": {
|
|
578
|
+
"doc": {
|
|
579
|
+
"type": "string"
|
|
580
|
+
},
|
|
581
|
+
"sessionId": {
|
|
582
|
+
"type": "string"
|
|
583
|
+
},
|
|
584
|
+
"force": {
|
|
585
|
+
"type": "boolean"
|
|
586
|
+
},
|
|
658
587
|
"target": {
|
|
659
|
-
"
|
|
588
|
+
"type": "object",
|
|
660
589
|
"properties": {
|
|
661
|
-
"blockId": {
|
|
662
|
-
"type": "string"
|
|
663
|
-
},
|
|
664
590
|
"kind": {
|
|
665
591
|
"const": "text"
|
|
666
592
|
},
|
|
593
|
+
"blockId": {
|
|
594
|
+
"type": "string"
|
|
595
|
+
},
|
|
667
596
|
"range": {
|
|
668
|
-
"
|
|
597
|
+
"type": "object",
|
|
669
598
|
"properties": {
|
|
670
|
-
"end": {
|
|
671
|
-
"type": "integer"
|
|
672
|
-
},
|
|
673
599
|
"start": {
|
|
674
|
-
"type": "
|
|
600
|
+
"type": "number"
|
|
601
|
+
},
|
|
602
|
+
"end": {
|
|
603
|
+
"type": "number"
|
|
675
604
|
}
|
|
676
605
|
},
|
|
677
606
|
"required": [
|
|
678
607
|
"start",
|
|
679
608
|
"end"
|
|
680
|
-
]
|
|
681
|
-
"type": "object"
|
|
609
|
+
]
|
|
682
610
|
}
|
|
683
611
|
},
|
|
684
612
|
"required": [
|
|
685
613
|
"kind",
|
|
686
614
|
"blockId",
|
|
687
615
|
"range"
|
|
688
|
-
]
|
|
689
|
-
"type": "object"
|
|
616
|
+
]
|
|
690
617
|
}
|
|
691
618
|
},
|
|
692
619
|
"required": [
|
|
693
620
|
"target"
|
|
694
621
|
],
|
|
695
|
-
"
|
|
622
|
+
"additionalProperties": false
|
|
696
623
|
}
|
|
697
624
|
},
|
|
698
625
|
{
|
|
699
626
|
"name": "create_paragraph",
|
|
700
627
|
"description": "Create a new paragraph at the target position.",
|
|
701
628
|
"input_schema": {
|
|
702
|
-
"
|
|
629
|
+
"type": "object",
|
|
703
630
|
"properties": {
|
|
631
|
+
"doc": {
|
|
632
|
+
"type": "string"
|
|
633
|
+
},
|
|
634
|
+
"sessionId": {
|
|
635
|
+
"type": "string"
|
|
636
|
+
},
|
|
637
|
+
"force": {
|
|
638
|
+
"type": "boolean"
|
|
639
|
+
},
|
|
704
640
|
"at": {
|
|
705
641
|
"oneOf": [
|
|
706
642
|
{
|
|
707
|
-
"
|
|
643
|
+
"type": "object",
|
|
708
644
|
"properties": {
|
|
709
645
|
"kind": {
|
|
710
646
|
"const": "documentStart"
|
|
@@ -712,11 +648,10 @@
|
|
|
712
648
|
},
|
|
713
649
|
"required": [
|
|
714
650
|
"kind"
|
|
715
|
-
]
|
|
716
|
-
"type": "object"
|
|
651
|
+
]
|
|
717
652
|
},
|
|
718
653
|
{
|
|
719
|
-
"
|
|
654
|
+
"type": "object",
|
|
720
655
|
"properties": {
|
|
721
656
|
"kind": {
|
|
722
657
|
"const": "documentEnd"
|
|
@@ -724,445 +659,532 @@
|
|
|
724
659
|
},
|
|
725
660
|
"required": [
|
|
726
661
|
"kind"
|
|
727
|
-
]
|
|
728
|
-
"type": "object"
|
|
662
|
+
]
|
|
729
663
|
},
|
|
730
664
|
{
|
|
731
|
-
"
|
|
665
|
+
"type": "object",
|
|
732
666
|
"properties": {
|
|
733
667
|
"kind": {
|
|
734
668
|
"const": "before"
|
|
735
669
|
},
|
|
736
670
|
"target": {
|
|
737
|
-
"
|
|
671
|
+
"type": "object",
|
|
738
672
|
"properties": {
|
|
739
673
|
"kind": {
|
|
740
674
|
"const": "block"
|
|
741
675
|
},
|
|
742
|
-
"nodeId": {
|
|
743
|
-
"type": "string"
|
|
744
|
-
},
|
|
745
676
|
"nodeType": {
|
|
746
|
-
"
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
677
|
+
"oneOf": [
|
|
678
|
+
{
|
|
679
|
+
"const": "paragraph"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"const": "heading"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"const": "listItem"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"const": "table"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"const": "tableRow"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"const": "tableCell"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"const": "image"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"const": "sdt"
|
|
701
|
+
}
|
|
755
702
|
]
|
|
703
|
+
},
|
|
704
|
+
"nodeId": {
|
|
705
|
+
"type": "string"
|
|
756
706
|
}
|
|
757
707
|
},
|
|
758
708
|
"required": [
|
|
759
709
|
"kind",
|
|
760
710
|
"nodeType",
|
|
761
711
|
"nodeId"
|
|
762
|
-
]
|
|
763
|
-
"type": "object"
|
|
712
|
+
]
|
|
764
713
|
}
|
|
765
714
|
},
|
|
766
715
|
"required": [
|
|
767
716
|
"kind",
|
|
768
717
|
"target"
|
|
769
|
-
]
|
|
770
|
-
"type": "object"
|
|
718
|
+
]
|
|
771
719
|
},
|
|
772
720
|
{
|
|
773
|
-
"
|
|
721
|
+
"type": "object",
|
|
774
722
|
"properties": {
|
|
775
723
|
"kind": {
|
|
776
724
|
"const": "after"
|
|
777
725
|
},
|
|
778
726
|
"target": {
|
|
779
|
-
"
|
|
727
|
+
"type": "object",
|
|
780
728
|
"properties": {
|
|
781
729
|
"kind": {
|
|
782
730
|
"const": "block"
|
|
783
731
|
},
|
|
784
|
-
"nodeId": {
|
|
785
|
-
"type": "string"
|
|
786
|
-
},
|
|
787
732
|
"nodeType": {
|
|
788
|
-
"
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
733
|
+
"oneOf": [
|
|
734
|
+
{
|
|
735
|
+
"const": "paragraph"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"const": "heading"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"const": "listItem"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"const": "table"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"const": "tableRow"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"const": "tableCell"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"const": "image"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"const": "sdt"
|
|
757
|
+
}
|
|
797
758
|
]
|
|
759
|
+
},
|
|
760
|
+
"nodeId": {
|
|
761
|
+
"type": "string"
|
|
798
762
|
}
|
|
799
763
|
},
|
|
800
764
|
"required": [
|
|
801
765
|
"kind",
|
|
802
766
|
"nodeType",
|
|
803
767
|
"nodeId"
|
|
804
|
-
]
|
|
805
|
-
"type": "object"
|
|
768
|
+
]
|
|
806
769
|
}
|
|
807
770
|
},
|
|
808
771
|
"required": [
|
|
809
772
|
"kind",
|
|
810
773
|
"target"
|
|
811
|
-
]
|
|
812
|
-
"type": "object"
|
|
774
|
+
]
|
|
813
775
|
}
|
|
814
776
|
]
|
|
815
777
|
},
|
|
816
778
|
"text": {
|
|
817
779
|
"type": "string"
|
|
818
|
-
}
|
|
780
|
+
},
|
|
781
|
+
"input": {}
|
|
819
782
|
},
|
|
820
|
-
"
|
|
783
|
+
"additionalProperties": false
|
|
821
784
|
}
|
|
822
|
-
},
|
|
823
|
-
{
|
|
824
|
-
"name": "list_lists",
|
|
825
|
-
"description": "List all list nodes in the document, optionally filtered by scope.",
|
|
826
|
-
"input_schema": {
|
|
827
|
-
"
|
|
828
|
-
"properties": {
|
|
829
|
-
"
|
|
830
|
-
"
|
|
831
|
-
"ordered",
|
|
832
|
-
"bullet"
|
|
833
|
-
]
|
|
834
|
-
},
|
|
835
|
-
"level": {
|
|
836
|
-
"type": "integer"
|
|
837
|
-
},
|
|
838
|
-
"limit": {
|
|
839
|
-
"type": "integer"
|
|
840
|
-
},
|
|
841
|
-
"offset": {
|
|
842
|
-
"type": "integer"
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"name": "list_lists",
|
|
788
|
+
"description": "List all list nodes in the document, optionally filtered by scope.",
|
|
789
|
+
"input_schema": {
|
|
790
|
+
"type": "object",
|
|
791
|
+
"properties": {
|
|
792
|
+
"doc": {
|
|
793
|
+
"type": "string"
|
|
843
794
|
},
|
|
844
|
-
"
|
|
845
|
-
"type": "
|
|
795
|
+
"sessionId": {
|
|
796
|
+
"type": "string"
|
|
846
797
|
},
|
|
847
798
|
"within": {
|
|
848
|
-
"
|
|
799
|
+
"type": "object",
|
|
849
800
|
"properties": {
|
|
850
801
|
"kind": {
|
|
851
802
|
"const": "block"
|
|
852
803
|
},
|
|
853
|
-
"nodeId": {
|
|
854
|
-
"type": "string"
|
|
855
|
-
},
|
|
856
804
|
"nodeType": {
|
|
857
|
-
"
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
805
|
+
"oneOf": [
|
|
806
|
+
{
|
|
807
|
+
"const": "paragraph"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"const": "heading"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"const": "listItem"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"const": "table"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"const": "tableRow"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"const": "tableCell"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"const": "image"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"const": "sdt"
|
|
829
|
+
}
|
|
866
830
|
]
|
|
831
|
+
},
|
|
832
|
+
"nodeId": {
|
|
833
|
+
"type": "string"
|
|
867
834
|
}
|
|
868
835
|
},
|
|
869
836
|
"required": [
|
|
870
837
|
"kind",
|
|
871
838
|
"nodeType",
|
|
872
839
|
"nodeId"
|
|
873
|
-
]
|
|
874
|
-
|
|
875
|
-
|
|
840
|
+
]
|
|
841
|
+
},
|
|
842
|
+
"limit": {
|
|
843
|
+
"type": "number"
|
|
844
|
+
},
|
|
845
|
+
"offset": {
|
|
846
|
+
"type": "number"
|
|
847
|
+
},
|
|
848
|
+
"kind": {
|
|
849
|
+
"type": "string"
|
|
850
|
+
},
|
|
851
|
+
"level": {
|
|
852
|
+
"type": "number"
|
|
853
|
+
},
|
|
854
|
+
"ordinal": {
|
|
855
|
+
"type": "number"
|
|
856
|
+
},
|
|
857
|
+
"query": {}
|
|
876
858
|
},
|
|
877
|
-
"
|
|
859
|
+
"additionalProperties": false
|
|
878
860
|
}
|
|
879
861
|
},
|
|
880
862
|
{
|
|
881
863
|
"name": "get_list",
|
|
882
864
|
"description": "Retrieve a specific list node by target.",
|
|
883
865
|
"input_schema": {
|
|
884
|
-
"
|
|
866
|
+
"type": "object",
|
|
885
867
|
"properties": {
|
|
868
|
+
"doc": {
|
|
869
|
+
"type": "string"
|
|
870
|
+
},
|
|
871
|
+
"sessionId": {
|
|
872
|
+
"type": "string"
|
|
873
|
+
},
|
|
886
874
|
"address": {
|
|
887
|
-
"
|
|
875
|
+
"type": "object",
|
|
888
876
|
"properties": {
|
|
889
877
|
"kind": {
|
|
890
878
|
"const": "block"
|
|
891
879
|
},
|
|
892
|
-
"nodeId": {
|
|
893
|
-
"type": "string"
|
|
894
|
-
},
|
|
895
880
|
"nodeType": {
|
|
896
881
|
"const": "listItem"
|
|
882
|
+
},
|
|
883
|
+
"nodeId": {
|
|
884
|
+
"type": "string"
|
|
897
885
|
}
|
|
898
886
|
},
|
|
899
887
|
"required": [
|
|
900
888
|
"kind",
|
|
901
889
|
"nodeType",
|
|
902
890
|
"nodeId"
|
|
903
|
-
]
|
|
904
|
-
"type": "object"
|
|
891
|
+
]
|
|
905
892
|
}
|
|
906
893
|
},
|
|
907
894
|
"required": [
|
|
908
895
|
"address"
|
|
909
896
|
],
|
|
910
|
-
"
|
|
897
|
+
"additionalProperties": false
|
|
911
898
|
}
|
|
912
899
|
},
|
|
913
900
|
{
|
|
914
901
|
"name": "insert_list",
|
|
915
902
|
"description": "Insert a new list at the target position.",
|
|
916
903
|
"input_schema": {
|
|
917
|
-
"
|
|
904
|
+
"type": "object",
|
|
918
905
|
"properties": {
|
|
919
|
-
"
|
|
920
|
-
"
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
906
|
+
"doc": {
|
|
907
|
+
"type": "string"
|
|
908
|
+
},
|
|
909
|
+
"sessionId": {
|
|
910
|
+
"type": "string"
|
|
911
|
+
},
|
|
912
|
+
"force": {
|
|
913
|
+
"type": "boolean"
|
|
924
914
|
},
|
|
925
915
|
"target": {
|
|
926
|
-
"
|
|
916
|
+
"type": "object",
|
|
927
917
|
"properties": {
|
|
928
918
|
"kind": {
|
|
929
919
|
"const": "block"
|
|
930
920
|
},
|
|
931
|
-
"nodeId": {
|
|
932
|
-
"type": "string"
|
|
933
|
-
},
|
|
934
921
|
"nodeType": {
|
|
935
922
|
"const": "listItem"
|
|
923
|
+
},
|
|
924
|
+
"nodeId": {
|
|
925
|
+
"type": "string"
|
|
936
926
|
}
|
|
937
927
|
},
|
|
938
928
|
"required": [
|
|
939
929
|
"kind",
|
|
940
930
|
"nodeType",
|
|
941
931
|
"nodeId"
|
|
942
|
-
]
|
|
943
|
-
|
|
932
|
+
]
|
|
933
|
+
},
|
|
934
|
+
"position": {
|
|
935
|
+
"type": "string"
|
|
944
936
|
},
|
|
945
937
|
"text": {
|
|
946
938
|
"type": "string"
|
|
947
|
-
}
|
|
939
|
+
},
|
|
940
|
+
"input": {}
|
|
948
941
|
},
|
|
949
|
-
"
|
|
950
|
-
"target",
|
|
951
|
-
"position"
|
|
952
|
-
],
|
|
953
|
-
"type": "object"
|
|
942
|
+
"additionalProperties": false
|
|
954
943
|
}
|
|
955
944
|
},
|
|
956
945
|
{
|
|
957
946
|
"name": "set_list_type",
|
|
958
947
|
"description": "Change the list type (ordered, unordered) of a target list.",
|
|
959
948
|
"input_schema": {
|
|
960
|
-
"
|
|
949
|
+
"type": "object",
|
|
961
950
|
"properties": {
|
|
962
|
-
"
|
|
963
|
-
"
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
951
|
+
"doc": {
|
|
952
|
+
"type": "string"
|
|
953
|
+
},
|
|
954
|
+
"sessionId": {
|
|
955
|
+
"type": "string"
|
|
956
|
+
},
|
|
957
|
+
"force": {
|
|
958
|
+
"type": "boolean"
|
|
967
959
|
},
|
|
968
960
|
"target": {
|
|
969
|
-
"
|
|
961
|
+
"type": "object",
|
|
970
962
|
"properties": {
|
|
971
963
|
"kind": {
|
|
972
964
|
"const": "block"
|
|
973
965
|
},
|
|
974
|
-
"nodeId": {
|
|
975
|
-
"type": "string"
|
|
976
|
-
},
|
|
977
966
|
"nodeType": {
|
|
978
967
|
"const": "listItem"
|
|
968
|
+
},
|
|
969
|
+
"nodeId": {
|
|
970
|
+
"type": "string"
|
|
979
971
|
}
|
|
980
972
|
},
|
|
981
973
|
"required": [
|
|
982
974
|
"kind",
|
|
983
975
|
"nodeType",
|
|
984
976
|
"nodeId"
|
|
985
|
-
]
|
|
986
|
-
|
|
987
|
-
|
|
977
|
+
]
|
|
978
|
+
},
|
|
979
|
+
"kind": {
|
|
980
|
+
"type": "string"
|
|
981
|
+
},
|
|
982
|
+
"input": {}
|
|
988
983
|
},
|
|
989
|
-
"
|
|
990
|
-
"target",
|
|
991
|
-
"kind"
|
|
992
|
-
],
|
|
993
|
-
"type": "object"
|
|
984
|
+
"additionalProperties": false
|
|
994
985
|
}
|
|
995
986
|
},
|
|
996
987
|
{
|
|
997
988
|
"name": "indent_list",
|
|
998
989
|
"description": "Increase the indentation level of a list item.",
|
|
999
990
|
"input_schema": {
|
|
1000
|
-
"
|
|
991
|
+
"type": "object",
|
|
1001
992
|
"properties": {
|
|
993
|
+
"doc": {
|
|
994
|
+
"type": "string"
|
|
995
|
+
},
|
|
996
|
+
"sessionId": {
|
|
997
|
+
"type": "string"
|
|
998
|
+
},
|
|
999
|
+
"force": {
|
|
1000
|
+
"type": "boolean"
|
|
1001
|
+
},
|
|
1002
1002
|
"target": {
|
|
1003
|
-
"
|
|
1003
|
+
"type": "object",
|
|
1004
1004
|
"properties": {
|
|
1005
1005
|
"kind": {
|
|
1006
1006
|
"const": "block"
|
|
1007
1007
|
},
|
|
1008
|
-
"nodeId": {
|
|
1009
|
-
"type": "string"
|
|
1010
|
-
},
|
|
1011
1008
|
"nodeType": {
|
|
1012
1009
|
"const": "listItem"
|
|
1010
|
+
},
|
|
1011
|
+
"nodeId": {
|
|
1012
|
+
"type": "string"
|
|
1013
1013
|
}
|
|
1014
1014
|
},
|
|
1015
1015
|
"required": [
|
|
1016
1016
|
"kind",
|
|
1017
1017
|
"nodeType",
|
|
1018
1018
|
"nodeId"
|
|
1019
|
-
]
|
|
1020
|
-
|
|
1021
|
-
}
|
|
1019
|
+
]
|
|
1020
|
+
},
|
|
1021
|
+
"input": {}
|
|
1022
1022
|
},
|
|
1023
|
-
"
|
|
1024
|
-
"target"
|
|
1025
|
-
],
|
|
1026
|
-
"type": "object"
|
|
1023
|
+
"additionalProperties": false
|
|
1027
1024
|
}
|
|
1028
1025
|
},
|
|
1029
1026
|
{
|
|
1030
1027
|
"name": "outdent_list",
|
|
1031
1028
|
"description": "Decrease the indentation level of a list item.",
|
|
1032
1029
|
"input_schema": {
|
|
1033
|
-
"
|
|
1030
|
+
"type": "object",
|
|
1034
1031
|
"properties": {
|
|
1032
|
+
"doc": {
|
|
1033
|
+
"type": "string"
|
|
1034
|
+
},
|
|
1035
|
+
"sessionId": {
|
|
1036
|
+
"type": "string"
|
|
1037
|
+
},
|
|
1038
|
+
"force": {
|
|
1039
|
+
"type": "boolean"
|
|
1040
|
+
},
|
|
1035
1041
|
"target": {
|
|
1036
|
-
"
|
|
1042
|
+
"type": "object",
|
|
1037
1043
|
"properties": {
|
|
1038
1044
|
"kind": {
|
|
1039
1045
|
"const": "block"
|
|
1040
1046
|
},
|
|
1041
|
-
"nodeId": {
|
|
1042
|
-
"type": "string"
|
|
1043
|
-
},
|
|
1044
1047
|
"nodeType": {
|
|
1045
1048
|
"const": "listItem"
|
|
1049
|
+
},
|
|
1050
|
+
"nodeId": {
|
|
1051
|
+
"type": "string"
|
|
1046
1052
|
}
|
|
1047
1053
|
},
|
|
1048
1054
|
"required": [
|
|
1049
1055
|
"kind",
|
|
1050
1056
|
"nodeType",
|
|
1051
1057
|
"nodeId"
|
|
1052
|
-
]
|
|
1053
|
-
|
|
1054
|
-
}
|
|
1058
|
+
]
|
|
1059
|
+
},
|
|
1060
|
+
"input": {}
|
|
1055
1061
|
},
|
|
1056
|
-
"
|
|
1057
|
-
"target"
|
|
1058
|
-
],
|
|
1059
|
-
"type": "object"
|
|
1062
|
+
"additionalProperties": false
|
|
1060
1063
|
}
|
|
1061
1064
|
},
|
|
1062
1065
|
{
|
|
1063
1066
|
"name": "restart_list_numbering",
|
|
1064
1067
|
"description": "Restart numbering of an ordered list at the target item.",
|
|
1065
1068
|
"input_schema": {
|
|
1066
|
-
"
|
|
1069
|
+
"type": "object",
|
|
1067
1070
|
"properties": {
|
|
1071
|
+
"doc": {
|
|
1072
|
+
"type": "string"
|
|
1073
|
+
},
|
|
1074
|
+
"sessionId": {
|
|
1075
|
+
"type": "string"
|
|
1076
|
+
},
|
|
1077
|
+
"force": {
|
|
1078
|
+
"type": "boolean"
|
|
1079
|
+
},
|
|
1068
1080
|
"target": {
|
|
1069
|
-
"
|
|
1081
|
+
"type": "object",
|
|
1070
1082
|
"properties": {
|
|
1071
1083
|
"kind": {
|
|
1072
1084
|
"const": "block"
|
|
1073
1085
|
},
|
|
1074
|
-
"nodeId": {
|
|
1075
|
-
"type": "string"
|
|
1076
|
-
},
|
|
1077
1086
|
"nodeType": {
|
|
1078
1087
|
"const": "listItem"
|
|
1088
|
+
},
|
|
1089
|
+
"nodeId": {
|
|
1090
|
+
"type": "string"
|
|
1079
1091
|
}
|
|
1080
1092
|
},
|
|
1081
1093
|
"required": [
|
|
1082
1094
|
"kind",
|
|
1083
1095
|
"nodeType",
|
|
1084
1096
|
"nodeId"
|
|
1085
|
-
]
|
|
1086
|
-
|
|
1087
|
-
}
|
|
1097
|
+
]
|
|
1098
|
+
},
|
|
1099
|
+
"input": {}
|
|
1088
1100
|
},
|
|
1089
|
-
"
|
|
1090
|
-
"target"
|
|
1091
|
-
],
|
|
1092
|
-
"type": "object"
|
|
1101
|
+
"additionalProperties": false
|
|
1093
1102
|
}
|
|
1094
1103
|
},
|
|
1095
1104
|
{
|
|
1096
1105
|
"name": "exit_list",
|
|
1097
1106
|
"description": "Exit a list context, converting the target item to a paragraph.",
|
|
1098
1107
|
"input_schema": {
|
|
1099
|
-
"
|
|
1108
|
+
"type": "object",
|
|
1100
1109
|
"properties": {
|
|
1110
|
+
"doc": {
|
|
1111
|
+
"type": "string"
|
|
1112
|
+
},
|
|
1113
|
+
"sessionId": {
|
|
1114
|
+
"type": "string"
|
|
1115
|
+
},
|
|
1116
|
+
"force": {
|
|
1117
|
+
"type": "boolean"
|
|
1118
|
+
},
|
|
1101
1119
|
"target": {
|
|
1102
|
-
"
|
|
1120
|
+
"type": "object",
|
|
1103
1121
|
"properties": {
|
|
1104
1122
|
"kind": {
|
|
1105
1123
|
"const": "block"
|
|
1106
1124
|
},
|
|
1107
|
-
"nodeId": {
|
|
1108
|
-
"type": "string"
|
|
1109
|
-
},
|
|
1110
1125
|
"nodeType": {
|
|
1111
1126
|
"const": "listItem"
|
|
1127
|
+
},
|
|
1128
|
+
"nodeId": {
|
|
1129
|
+
"type": "string"
|
|
1112
1130
|
}
|
|
1113
1131
|
},
|
|
1114
1132
|
"required": [
|
|
1115
1133
|
"kind",
|
|
1116
1134
|
"nodeType",
|
|
1117
1135
|
"nodeId"
|
|
1118
|
-
]
|
|
1119
|
-
|
|
1120
|
-
}
|
|
1136
|
+
]
|
|
1137
|
+
},
|
|
1138
|
+
"input": {}
|
|
1121
1139
|
},
|
|
1122
|
-
"
|
|
1123
|
-
"target"
|
|
1124
|
-
],
|
|
1125
|
-
"type": "object"
|
|
1140
|
+
"additionalProperties": false
|
|
1126
1141
|
}
|
|
1127
1142
|
},
|
|
1128
1143
|
{
|
|
1129
1144
|
"name": "add_comment",
|
|
1130
1145
|
"description": "Add a new comment thread anchored to a target range.",
|
|
1131
1146
|
"input_schema": {
|
|
1132
|
-
"
|
|
1147
|
+
"type": "object",
|
|
1133
1148
|
"properties": {
|
|
1149
|
+
"doc": {
|
|
1150
|
+
"type": "string"
|
|
1151
|
+
},
|
|
1152
|
+
"sessionId": {
|
|
1153
|
+
"type": "string"
|
|
1154
|
+
},
|
|
1155
|
+
"force": {
|
|
1156
|
+
"type": "boolean"
|
|
1157
|
+
},
|
|
1134
1158
|
"target": {
|
|
1135
|
-
"
|
|
1159
|
+
"type": "object",
|
|
1136
1160
|
"properties": {
|
|
1137
|
-
"blockId": {
|
|
1138
|
-
"type": "string"
|
|
1139
|
-
},
|
|
1140
1161
|
"kind": {
|
|
1141
1162
|
"const": "text"
|
|
1142
1163
|
},
|
|
1164
|
+
"blockId": {
|
|
1165
|
+
"type": "string"
|
|
1166
|
+
},
|
|
1143
1167
|
"range": {
|
|
1144
|
-
"
|
|
1168
|
+
"type": "object",
|
|
1145
1169
|
"properties": {
|
|
1146
|
-
"end": {
|
|
1147
|
-
"type": "integer"
|
|
1148
|
-
},
|
|
1149
1170
|
"start": {
|
|
1150
|
-
"type": "
|
|
1171
|
+
"type": "number"
|
|
1172
|
+
},
|
|
1173
|
+
"end": {
|
|
1174
|
+
"type": "number"
|
|
1151
1175
|
}
|
|
1152
1176
|
},
|
|
1153
1177
|
"required": [
|
|
1154
1178
|
"start",
|
|
1155
1179
|
"end"
|
|
1156
|
-
]
|
|
1157
|
-
"type": "object"
|
|
1180
|
+
]
|
|
1158
1181
|
}
|
|
1159
1182
|
},
|
|
1160
1183
|
"required": [
|
|
1161
1184
|
"kind",
|
|
1162
1185
|
"blockId",
|
|
1163
1186
|
"range"
|
|
1164
|
-
]
|
|
1165
|
-
"type": "object"
|
|
1187
|
+
]
|
|
1166
1188
|
},
|
|
1167
1189
|
"text": {
|
|
1168
1190
|
"type": "string"
|
|
@@ -1172,16 +1194,25 @@
|
|
|
1172
1194
|
"target",
|
|
1173
1195
|
"text"
|
|
1174
1196
|
],
|
|
1175
|
-
"
|
|
1197
|
+
"additionalProperties": false
|
|
1176
1198
|
}
|
|
1177
1199
|
},
|
|
1178
1200
|
{
|
|
1179
1201
|
"name": "edit_comment",
|
|
1180
1202
|
"description": "Edit the content of an existing comment.",
|
|
1181
1203
|
"input_schema": {
|
|
1182
|
-
"
|
|
1204
|
+
"type": "object",
|
|
1183
1205
|
"properties": {
|
|
1184
|
-
"
|
|
1206
|
+
"doc": {
|
|
1207
|
+
"type": "string"
|
|
1208
|
+
},
|
|
1209
|
+
"sessionId": {
|
|
1210
|
+
"type": "string"
|
|
1211
|
+
},
|
|
1212
|
+
"force": {
|
|
1213
|
+
"type": "boolean"
|
|
1214
|
+
},
|
|
1215
|
+
"id": {
|
|
1185
1216
|
"type": "string"
|
|
1186
1217
|
},
|
|
1187
1218
|
"text": {
|
|
@@ -1189,19 +1220,28 @@
|
|
|
1189
1220
|
}
|
|
1190
1221
|
},
|
|
1191
1222
|
"required": [
|
|
1192
|
-
"
|
|
1223
|
+
"id",
|
|
1193
1224
|
"text"
|
|
1194
1225
|
],
|
|
1195
|
-
"
|
|
1226
|
+
"additionalProperties": false
|
|
1196
1227
|
}
|
|
1197
1228
|
},
|
|
1198
1229
|
{
|
|
1199
1230
|
"name": "reply_to_comment",
|
|
1200
1231
|
"description": "Add a reply to an existing comment thread.",
|
|
1201
1232
|
"input_schema": {
|
|
1202
|
-
"
|
|
1233
|
+
"type": "object",
|
|
1203
1234
|
"properties": {
|
|
1204
|
-
"
|
|
1235
|
+
"doc": {
|
|
1236
|
+
"type": "string"
|
|
1237
|
+
},
|
|
1238
|
+
"sessionId": {
|
|
1239
|
+
"type": "string"
|
|
1240
|
+
},
|
|
1241
|
+
"force": {
|
|
1242
|
+
"type": "boolean"
|
|
1243
|
+
},
|
|
1244
|
+
"parentId": {
|
|
1205
1245
|
"type": "string"
|
|
1206
1246
|
},
|
|
1207
1247
|
"text": {
|
|
@@ -1209,101 +1249,135 @@
|
|
|
1209
1249
|
}
|
|
1210
1250
|
},
|
|
1211
1251
|
"required": [
|
|
1212
|
-
"
|
|
1252
|
+
"parentId",
|
|
1213
1253
|
"text"
|
|
1214
1254
|
],
|
|
1215
|
-
"
|
|
1255
|
+
"additionalProperties": false
|
|
1216
1256
|
}
|
|
1217
1257
|
},
|
|
1218
1258
|
{
|
|
1219
1259
|
"name": "move_comment",
|
|
1220
1260
|
"description": "Move a comment thread to a new anchor range.",
|
|
1221
1261
|
"input_schema": {
|
|
1222
|
-
"
|
|
1262
|
+
"type": "object",
|
|
1223
1263
|
"properties": {
|
|
1224
|
-
"
|
|
1264
|
+
"doc": {
|
|
1265
|
+
"type": "string"
|
|
1266
|
+
},
|
|
1267
|
+
"sessionId": {
|
|
1268
|
+
"type": "string"
|
|
1269
|
+
},
|
|
1270
|
+
"force": {
|
|
1271
|
+
"type": "boolean"
|
|
1272
|
+
},
|
|
1273
|
+
"id": {
|
|
1225
1274
|
"type": "string"
|
|
1226
1275
|
},
|
|
1227
1276
|
"target": {
|
|
1228
|
-
"
|
|
1277
|
+
"type": "object",
|
|
1229
1278
|
"properties": {
|
|
1230
|
-
"blockId": {
|
|
1231
|
-
"type": "string"
|
|
1232
|
-
},
|
|
1233
1279
|
"kind": {
|
|
1234
1280
|
"const": "text"
|
|
1235
1281
|
},
|
|
1282
|
+
"blockId": {
|
|
1283
|
+
"type": "string"
|
|
1284
|
+
},
|
|
1236
1285
|
"range": {
|
|
1237
|
-
"
|
|
1286
|
+
"type": "object",
|
|
1238
1287
|
"properties": {
|
|
1239
|
-
"end": {
|
|
1240
|
-
"type": "integer"
|
|
1241
|
-
},
|
|
1242
1288
|
"start": {
|
|
1243
|
-
"type": "
|
|
1289
|
+
"type": "number"
|
|
1290
|
+
},
|
|
1291
|
+
"end": {
|
|
1292
|
+
"type": "number"
|
|
1244
1293
|
}
|
|
1245
1294
|
},
|
|
1246
1295
|
"required": [
|
|
1247
1296
|
"start",
|
|
1248
1297
|
"end"
|
|
1249
|
-
]
|
|
1250
|
-
"type": "object"
|
|
1298
|
+
]
|
|
1251
1299
|
}
|
|
1252
1300
|
},
|
|
1253
1301
|
"required": [
|
|
1254
1302
|
"kind",
|
|
1255
1303
|
"blockId",
|
|
1256
1304
|
"range"
|
|
1257
|
-
]
|
|
1258
|
-
"type": "object"
|
|
1305
|
+
]
|
|
1259
1306
|
}
|
|
1260
1307
|
},
|
|
1261
1308
|
"required": [
|
|
1262
|
-
"
|
|
1309
|
+
"id",
|
|
1263
1310
|
"target"
|
|
1264
1311
|
],
|
|
1265
|
-
"
|
|
1312
|
+
"additionalProperties": false
|
|
1266
1313
|
}
|
|
1267
1314
|
},
|
|
1268
1315
|
{
|
|
1269
1316
|
"name": "resolve_comment",
|
|
1270
1317
|
"description": "Resolve or unresolve a comment thread.",
|
|
1271
1318
|
"input_schema": {
|
|
1272
|
-
"
|
|
1319
|
+
"type": "object",
|
|
1273
1320
|
"properties": {
|
|
1274
|
-
"
|
|
1321
|
+
"doc": {
|
|
1322
|
+
"type": "string"
|
|
1323
|
+
},
|
|
1324
|
+
"sessionId": {
|
|
1325
|
+
"type": "string"
|
|
1326
|
+
},
|
|
1327
|
+
"force": {
|
|
1328
|
+
"type": "boolean"
|
|
1329
|
+
},
|
|
1330
|
+
"id": {
|
|
1275
1331
|
"type": "string"
|
|
1276
1332
|
}
|
|
1277
1333
|
},
|
|
1278
1334
|
"required": [
|
|
1279
|
-
"
|
|
1335
|
+
"id"
|
|
1280
1336
|
],
|
|
1281
|
-
"
|
|
1337
|
+
"additionalProperties": false
|
|
1282
1338
|
}
|
|
1283
1339
|
},
|
|
1284
1340
|
{
|
|
1285
1341
|
"name": "remove_comment",
|
|
1286
1342
|
"description": "Remove a comment or reply by ID.",
|
|
1287
1343
|
"input_schema": {
|
|
1288
|
-
"
|
|
1344
|
+
"type": "object",
|
|
1289
1345
|
"properties": {
|
|
1290
|
-
"
|
|
1346
|
+
"doc": {
|
|
1347
|
+
"type": "string"
|
|
1348
|
+
},
|
|
1349
|
+
"sessionId": {
|
|
1350
|
+
"type": "string"
|
|
1351
|
+
},
|
|
1352
|
+
"force": {
|
|
1353
|
+
"type": "boolean"
|
|
1354
|
+
},
|
|
1355
|
+
"id": {
|
|
1291
1356
|
"type": "string"
|
|
1292
1357
|
}
|
|
1293
1358
|
},
|
|
1294
1359
|
"required": [
|
|
1295
|
-
"
|
|
1360
|
+
"id"
|
|
1296
1361
|
],
|
|
1297
|
-
"
|
|
1362
|
+
"additionalProperties": false
|
|
1298
1363
|
}
|
|
1299
1364
|
},
|
|
1300
1365
|
{
|
|
1301
1366
|
"name": "set_comment_internal",
|
|
1302
1367
|
"description": "Toggle the internal (private) flag on a comment thread.",
|
|
1303
1368
|
"input_schema": {
|
|
1304
|
-
"
|
|
1369
|
+
"type": "object",
|
|
1305
1370
|
"properties": {
|
|
1306
|
-
"
|
|
1371
|
+
"doc": {
|
|
1372
|
+
"type": "string"
|
|
1373
|
+
},
|
|
1374
|
+
"sessionId": {
|
|
1375
|
+
"type": "string"
|
|
1376
|
+
},
|
|
1377
|
+
"force": {
|
|
1378
|
+
"type": "boolean"
|
|
1379
|
+
},
|
|
1380
|
+
"id": {
|
|
1307
1381
|
"type": "string"
|
|
1308
1382
|
},
|
|
1309
1383
|
"isInternal": {
|
|
@@ -1311,105 +1385,140 @@
|
|
|
1311
1385
|
}
|
|
1312
1386
|
},
|
|
1313
1387
|
"required": [
|
|
1314
|
-
"
|
|
1388
|
+
"id",
|
|
1315
1389
|
"isInternal"
|
|
1316
1390
|
],
|
|
1317
|
-
"
|
|
1391
|
+
"additionalProperties": false
|
|
1318
1392
|
}
|
|
1319
1393
|
},
|
|
1320
1394
|
{
|
|
1321
1395
|
"name": "set_comment_active",
|
|
1322
1396
|
"description": "Set the active (focused) comment thread for UI highlighting.",
|
|
1323
1397
|
"input_schema": {
|
|
1324
|
-
"
|
|
1398
|
+
"type": "object",
|
|
1325
1399
|
"properties": {
|
|
1400
|
+
"doc": {
|
|
1401
|
+
"type": "string"
|
|
1402
|
+
},
|
|
1403
|
+
"sessionId": {
|
|
1404
|
+
"type": "string"
|
|
1405
|
+
},
|
|
1406
|
+
"force": {
|
|
1407
|
+
"type": "boolean"
|
|
1408
|
+
},
|
|
1326
1409
|
"commentId": {
|
|
1327
|
-
"type":
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1410
|
+
"type": "json"
|
|
1411
|
+
},
|
|
1412
|
+
"id": {
|
|
1413
|
+
"type": "string"
|
|
1414
|
+
},
|
|
1415
|
+
"clear": {
|
|
1416
|
+
"type": "boolean"
|
|
1331
1417
|
}
|
|
1332
1418
|
},
|
|
1333
|
-
"
|
|
1334
|
-
"commentId"
|
|
1335
|
-
],
|
|
1336
|
-
"type": "object"
|
|
1419
|
+
"additionalProperties": false
|
|
1337
1420
|
}
|
|
1338
1421
|
},
|
|
1339
1422
|
{
|
|
1340
1423
|
"name": "go_to_comment",
|
|
1341
1424
|
"description": "Scroll the viewport to a comment thread by ID.",
|
|
1342
1425
|
"input_schema": {
|
|
1343
|
-
"
|
|
1426
|
+
"type": "object",
|
|
1344
1427
|
"properties": {
|
|
1345
|
-
"
|
|
1428
|
+
"doc": {
|
|
1429
|
+
"type": "string"
|
|
1430
|
+
},
|
|
1431
|
+
"sessionId": {
|
|
1432
|
+
"type": "string"
|
|
1433
|
+
},
|
|
1434
|
+
"id": {
|
|
1346
1435
|
"type": "string"
|
|
1347
1436
|
}
|
|
1348
1437
|
},
|
|
1349
1438
|
"required": [
|
|
1350
|
-
"
|
|
1439
|
+
"id"
|
|
1351
1440
|
],
|
|
1352
|
-
"
|
|
1441
|
+
"additionalProperties": false
|
|
1353
1442
|
}
|
|
1354
1443
|
},
|
|
1355
1444
|
{
|
|
1356
1445
|
"name": "get_comment",
|
|
1357
1446
|
"description": "Retrieve a single comment thread by ID.",
|
|
1358
1447
|
"input_schema": {
|
|
1359
|
-
"
|
|
1448
|
+
"type": "object",
|
|
1360
1449
|
"properties": {
|
|
1361
|
-
"
|
|
1450
|
+
"doc": {
|
|
1451
|
+
"type": "string"
|
|
1452
|
+
},
|
|
1453
|
+
"sessionId": {
|
|
1454
|
+
"type": "string"
|
|
1455
|
+
},
|
|
1456
|
+
"id": {
|
|
1362
1457
|
"type": "string"
|
|
1363
1458
|
}
|
|
1364
1459
|
},
|
|
1365
1460
|
"required": [
|
|
1366
|
-
"
|
|
1461
|
+
"id"
|
|
1367
1462
|
],
|
|
1368
|
-
"
|
|
1463
|
+
"additionalProperties": false
|
|
1369
1464
|
}
|
|
1370
1465
|
},
|
|
1371
1466
|
{
|
|
1372
1467
|
"name": "list_comments",
|
|
1373
1468
|
"description": "List all comment threads in the document.",
|
|
1374
1469
|
"input_schema": {
|
|
1375
|
-
"
|
|
1470
|
+
"type": "object",
|
|
1376
1471
|
"properties": {
|
|
1472
|
+
"doc": {
|
|
1473
|
+
"type": "string"
|
|
1474
|
+
},
|
|
1475
|
+
"sessionId": {
|
|
1476
|
+
"type": "string"
|
|
1477
|
+
},
|
|
1377
1478
|
"includeResolved": {
|
|
1378
1479
|
"type": "boolean"
|
|
1379
1480
|
}
|
|
1380
1481
|
},
|
|
1381
|
-
"
|
|
1482
|
+
"additionalProperties": false
|
|
1382
1483
|
}
|
|
1383
1484
|
},
|
|
1384
1485
|
{
|
|
1385
1486
|
"name": "list_tracked_changes",
|
|
1386
1487
|
"description": "List all tracked changes in the document.",
|
|
1387
1488
|
"input_schema": {
|
|
1388
|
-
"
|
|
1489
|
+
"type": "object",
|
|
1389
1490
|
"properties": {
|
|
1491
|
+
"doc": {
|
|
1492
|
+
"type": "string"
|
|
1493
|
+
},
|
|
1494
|
+
"sessionId": {
|
|
1495
|
+
"type": "string"
|
|
1496
|
+
},
|
|
1390
1497
|
"limit": {
|
|
1391
|
-
"type": "
|
|
1498
|
+
"type": "number"
|
|
1392
1499
|
},
|
|
1393
1500
|
"offset": {
|
|
1394
|
-
"type": "
|
|
1501
|
+
"type": "number"
|
|
1395
1502
|
},
|
|
1396
1503
|
"type": {
|
|
1397
|
-
"
|
|
1398
|
-
"insert",
|
|
1399
|
-
"delete",
|
|
1400
|
-
"format"
|
|
1401
|
-
]
|
|
1504
|
+
"type": "string"
|
|
1402
1505
|
}
|
|
1403
1506
|
},
|
|
1404
|
-
"
|
|
1507
|
+
"additionalProperties": false
|
|
1405
1508
|
}
|
|
1406
1509
|
},
|
|
1407
1510
|
{
|
|
1408
1511
|
"name": "get_tracked_change",
|
|
1409
1512
|
"description": "Retrieve a single tracked change by ID.",
|
|
1410
1513
|
"input_schema": {
|
|
1411
|
-
"
|
|
1514
|
+
"type": "object",
|
|
1412
1515
|
"properties": {
|
|
1516
|
+
"doc": {
|
|
1517
|
+
"type": "string"
|
|
1518
|
+
},
|
|
1519
|
+
"sessionId": {
|
|
1520
|
+
"type": "string"
|
|
1521
|
+
},
|
|
1413
1522
|
"id": {
|
|
1414
1523
|
"type": "string"
|
|
1415
1524
|
}
|
|
@@ -1417,15 +1526,24 @@
|
|
|
1417
1526
|
"required": [
|
|
1418
1527
|
"id"
|
|
1419
1528
|
],
|
|
1420
|
-
"
|
|
1529
|
+
"additionalProperties": false
|
|
1421
1530
|
}
|
|
1422
1531
|
},
|
|
1423
1532
|
{
|
|
1424
1533
|
"name": "accept_tracked_change",
|
|
1425
1534
|
"description": "Accept a tracked change, applying it permanently.",
|
|
1426
1535
|
"input_schema": {
|
|
1427
|
-
"
|
|
1536
|
+
"type": "object",
|
|
1428
1537
|
"properties": {
|
|
1538
|
+
"doc": {
|
|
1539
|
+
"type": "string"
|
|
1540
|
+
},
|
|
1541
|
+
"sessionId": {
|
|
1542
|
+
"type": "string"
|
|
1543
|
+
},
|
|
1544
|
+
"force": {
|
|
1545
|
+
"type": "boolean"
|
|
1546
|
+
},
|
|
1429
1547
|
"id": {
|
|
1430
1548
|
"type": "string"
|
|
1431
1549
|
}
|
|
@@ -1433,15 +1551,24 @@
|
|
|
1433
1551
|
"required": [
|
|
1434
1552
|
"id"
|
|
1435
1553
|
],
|
|
1436
|
-
"
|
|
1554
|
+
"additionalProperties": false
|
|
1437
1555
|
}
|
|
1438
1556
|
},
|
|
1439
1557
|
{
|
|
1440
1558
|
"name": "reject_tracked_change",
|
|
1441
1559
|
"description": "Reject a tracked change, reverting it.",
|
|
1442
1560
|
"input_schema": {
|
|
1443
|
-
"
|
|
1561
|
+
"type": "object",
|
|
1444
1562
|
"properties": {
|
|
1563
|
+
"doc": {
|
|
1564
|
+
"type": "string"
|
|
1565
|
+
},
|
|
1566
|
+
"sessionId": {
|
|
1567
|
+
"type": "string"
|
|
1568
|
+
},
|
|
1569
|
+
"force": {
|
|
1570
|
+
"type": "boolean"
|
|
1571
|
+
},
|
|
1445
1572
|
"id": {
|
|
1446
1573
|
"type": "string"
|
|
1447
1574
|
}
|
|
@@ -1449,25 +1576,45 @@
|
|
|
1449
1576
|
"required": [
|
|
1450
1577
|
"id"
|
|
1451
1578
|
],
|
|
1452
|
-
"
|
|
1579
|
+
"additionalProperties": false
|
|
1453
1580
|
}
|
|
1454
1581
|
},
|
|
1455
1582
|
{
|
|
1456
1583
|
"name": "accept_all_tracked_changes",
|
|
1457
1584
|
"description": "Accept all tracked changes in the document.",
|
|
1458
1585
|
"input_schema": {
|
|
1459
|
-
"
|
|
1460
|
-
"properties": {
|
|
1461
|
-
|
|
1586
|
+
"type": "object",
|
|
1587
|
+
"properties": {
|
|
1588
|
+
"doc": {
|
|
1589
|
+
"type": "string"
|
|
1590
|
+
},
|
|
1591
|
+
"sessionId": {
|
|
1592
|
+
"type": "string"
|
|
1593
|
+
},
|
|
1594
|
+
"force": {
|
|
1595
|
+
"type": "boolean"
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
"additionalProperties": false
|
|
1462
1599
|
}
|
|
1463
1600
|
},
|
|
1464
1601
|
{
|
|
1465
1602
|
"name": "reject_all_tracked_changes",
|
|
1466
1603
|
"description": "Reject all tracked changes in the document.",
|
|
1467
1604
|
"input_schema": {
|
|
1468
|
-
"
|
|
1469
|
-
"properties": {
|
|
1470
|
-
|
|
1605
|
+
"type": "object",
|
|
1606
|
+
"properties": {
|
|
1607
|
+
"doc": {
|
|
1608
|
+
"type": "string"
|
|
1609
|
+
},
|
|
1610
|
+
"sessionId": {
|
|
1611
|
+
"type": "string"
|
|
1612
|
+
},
|
|
1613
|
+
"force": {
|
|
1614
|
+
"type": "boolean"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
"additionalProperties": false
|
|
1471
1618
|
}
|
|
1472
1619
|
},
|
|
1473
1620
|
{
|
|
@@ -1641,204 +1788,134 @@
|
|
|
1641
1788
|
"name": "doc_find",
|
|
1642
1789
|
"description": "Search the document for nodes matching type, text, or attribute criteria.",
|
|
1643
1790
|
"input_schema": {
|
|
1644
|
-
"
|
|
1791
|
+
"type": "object",
|
|
1645
1792
|
"properties": {
|
|
1646
|
-
"
|
|
1647
|
-
"type": "
|
|
1648
|
-
},
|
|
1649
|
-
"includeUnknown": {
|
|
1650
|
-
"type": "boolean"
|
|
1651
|
-
},
|
|
1652
|
-
"limit": {
|
|
1653
|
-
"type": "integer"
|
|
1654
|
-
},
|
|
1655
|
-
"offset": {
|
|
1656
|
-
"type": "integer"
|
|
1793
|
+
"doc": {
|
|
1794
|
+
"type": "string"
|
|
1657
1795
|
},
|
|
1658
|
-
"
|
|
1659
|
-
"
|
|
1660
|
-
{
|
|
1661
|
-
"additionalProperties": false,
|
|
1662
|
-
"properties": {
|
|
1663
|
-
"caseSensitive": {
|
|
1664
|
-
"type": "boolean"
|
|
1665
|
-
},
|
|
1666
|
-
"mode": {
|
|
1667
|
-
"enum": [
|
|
1668
|
-
"contains",
|
|
1669
|
-
"regex"
|
|
1670
|
-
]
|
|
1671
|
-
},
|
|
1672
|
-
"pattern": {
|
|
1673
|
-
"type": "string"
|
|
1674
|
-
},
|
|
1675
|
-
"type": {
|
|
1676
|
-
"const": "text"
|
|
1677
|
-
}
|
|
1678
|
-
},
|
|
1679
|
-
"required": [
|
|
1680
|
-
"type",
|
|
1681
|
-
"pattern"
|
|
1682
|
-
],
|
|
1683
|
-
"type": "object"
|
|
1684
|
-
},
|
|
1685
|
-
{
|
|
1686
|
-
"additionalProperties": false,
|
|
1687
|
-
"properties": {
|
|
1688
|
-
"kind": {
|
|
1689
|
-
"enum": [
|
|
1690
|
-
"block",
|
|
1691
|
-
"inline"
|
|
1692
|
-
]
|
|
1693
|
-
},
|
|
1694
|
-
"nodeType": {
|
|
1695
|
-
"enum": [
|
|
1696
|
-
"paragraph",
|
|
1697
|
-
"heading",
|
|
1698
|
-
"listItem",
|
|
1699
|
-
"table",
|
|
1700
|
-
"tableRow",
|
|
1701
|
-
"tableCell",
|
|
1702
|
-
"image",
|
|
1703
|
-
"sdt",
|
|
1704
|
-
"run",
|
|
1705
|
-
"bookmark",
|
|
1706
|
-
"comment",
|
|
1707
|
-
"hyperlink",
|
|
1708
|
-
"footnoteRef",
|
|
1709
|
-
"tab",
|
|
1710
|
-
"lineBreak"
|
|
1711
|
-
]
|
|
1712
|
-
},
|
|
1713
|
-
"type": {
|
|
1714
|
-
"const": "node"
|
|
1715
|
-
}
|
|
1716
|
-
},
|
|
1717
|
-
"required": [
|
|
1718
|
-
"type"
|
|
1719
|
-
],
|
|
1720
|
-
"type": "object"
|
|
1721
|
-
},
|
|
1722
|
-
{
|
|
1723
|
-
"additionalProperties": false,
|
|
1724
|
-
"properties": {
|
|
1725
|
-
"nodeType": {
|
|
1726
|
-
"enum": [
|
|
1727
|
-
"paragraph",
|
|
1728
|
-
"heading",
|
|
1729
|
-
"listItem",
|
|
1730
|
-
"table",
|
|
1731
|
-
"tableRow",
|
|
1732
|
-
"tableCell",
|
|
1733
|
-
"image",
|
|
1734
|
-
"sdt",
|
|
1735
|
-
"run",
|
|
1736
|
-
"bookmark",
|
|
1737
|
-
"comment",
|
|
1738
|
-
"hyperlink",
|
|
1739
|
-
"footnoteRef",
|
|
1740
|
-
"tab",
|
|
1741
|
-
"lineBreak"
|
|
1742
|
-
]
|
|
1743
|
-
}
|
|
1744
|
-
},
|
|
1745
|
-
"required": [
|
|
1746
|
-
"nodeType"
|
|
1747
|
-
],
|
|
1748
|
-
"type": "object"
|
|
1749
|
-
}
|
|
1750
|
-
]
|
|
1796
|
+
"sessionId": {
|
|
1797
|
+
"type": "string"
|
|
1751
1798
|
},
|
|
1752
1799
|
"within": {
|
|
1753
1800
|
"oneOf": [
|
|
1754
1801
|
{
|
|
1755
|
-
"
|
|
1802
|
+
"type": "object",
|
|
1756
1803
|
"properties": {
|
|
1757
1804
|
"kind": {
|
|
1758
1805
|
"const": "block"
|
|
1759
1806
|
},
|
|
1760
|
-
"nodeId": {
|
|
1761
|
-
"type": "string"
|
|
1762
|
-
},
|
|
1763
1807
|
"nodeType": {
|
|
1764
|
-
"
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1808
|
+
"oneOf": [
|
|
1809
|
+
{
|
|
1810
|
+
"const": "paragraph"
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"const": "heading"
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"const": "listItem"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"const": "table"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"const": "tableRow"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"const": "tableCell"
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"const": "image"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"const": "sdt"
|
|
1832
|
+
}
|
|
1773
1833
|
]
|
|
1834
|
+
},
|
|
1835
|
+
"nodeId": {
|
|
1836
|
+
"type": "string"
|
|
1774
1837
|
}
|
|
1775
1838
|
},
|
|
1776
1839
|
"required": [
|
|
1777
1840
|
"kind",
|
|
1778
1841
|
"nodeType",
|
|
1779
1842
|
"nodeId"
|
|
1780
|
-
]
|
|
1781
|
-
"type": "object"
|
|
1843
|
+
]
|
|
1782
1844
|
},
|
|
1783
1845
|
{
|
|
1784
|
-
"
|
|
1846
|
+
"type": "object",
|
|
1785
1847
|
"properties": {
|
|
1848
|
+
"kind": {
|
|
1849
|
+
"const": "inline"
|
|
1850
|
+
},
|
|
1851
|
+
"nodeType": {
|
|
1852
|
+
"oneOf": [
|
|
1853
|
+
{
|
|
1854
|
+
"const": "run"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
"const": "bookmark"
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
"const": "comment"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"const": "hyperlink"
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"const": "sdt"
|
|
1867
|
+
},
|
|
1868
|
+
{
|
|
1869
|
+
"const": "image"
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"const": "footnoteRef"
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"const": "tab"
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"const": "lineBreak"
|
|
1879
|
+
}
|
|
1880
|
+
]
|
|
1881
|
+
},
|
|
1786
1882
|
"anchor": {
|
|
1787
|
-
"
|
|
1883
|
+
"type": "object",
|
|
1788
1884
|
"properties": {
|
|
1789
|
-
"
|
|
1790
|
-
"
|
|
1885
|
+
"start": {
|
|
1886
|
+
"type": "object",
|
|
1791
1887
|
"properties": {
|
|
1792
1888
|
"blockId": {
|
|
1793
1889
|
"type": "string"
|
|
1794
1890
|
},
|
|
1795
1891
|
"offset": {
|
|
1796
|
-
"type": "
|
|
1892
|
+
"type": "number"
|
|
1797
1893
|
}
|
|
1798
1894
|
},
|
|
1799
1895
|
"required": [
|
|
1800
1896
|
"blockId",
|
|
1801
1897
|
"offset"
|
|
1802
|
-
]
|
|
1803
|
-
"type": "object"
|
|
1898
|
+
]
|
|
1804
1899
|
},
|
|
1805
|
-
"
|
|
1806
|
-
"
|
|
1900
|
+
"end": {
|
|
1901
|
+
"type": "object",
|
|
1807
1902
|
"properties": {
|
|
1808
1903
|
"blockId": {
|
|
1809
1904
|
"type": "string"
|
|
1810
1905
|
},
|
|
1811
1906
|
"offset": {
|
|
1812
|
-
"type": "
|
|
1907
|
+
"type": "number"
|
|
1813
1908
|
}
|
|
1814
1909
|
},
|
|
1815
1910
|
"required": [
|
|
1816
1911
|
"blockId",
|
|
1817
1912
|
"offset"
|
|
1818
|
-
]
|
|
1819
|
-
"type": "object"
|
|
1913
|
+
]
|
|
1820
1914
|
}
|
|
1821
1915
|
},
|
|
1822
1916
|
"required": [
|
|
1823
1917
|
"start",
|
|
1824
1918
|
"end"
|
|
1825
|
-
],
|
|
1826
|
-
"type": "object"
|
|
1827
|
-
},
|
|
1828
|
-
"kind": {
|
|
1829
|
-
"const": "inline"
|
|
1830
|
-
},
|
|
1831
|
-
"nodeType": {
|
|
1832
|
-
"enum": [
|
|
1833
|
-
"run",
|
|
1834
|
-
"bookmark",
|
|
1835
|
-
"comment",
|
|
1836
|
-
"hyperlink",
|
|
1837
|
-
"sdt",
|
|
1838
|
-
"image",
|
|
1839
|
-
"footnoteRef",
|
|
1840
|
-
"tab",
|
|
1841
|
-
"lineBreak"
|
|
1842
1919
|
]
|
|
1843
1920
|
}
|
|
1844
1921
|
},
|
|
@@ -1846,248 +1923,210 @@
|
|
|
1846
1923
|
"kind",
|
|
1847
1924
|
"nodeType",
|
|
1848
1925
|
"anchor"
|
|
1849
|
-
]
|
|
1850
|
-
"type": "object"
|
|
1926
|
+
]
|
|
1851
1927
|
}
|
|
1852
1928
|
]
|
|
1853
|
-
}
|
|
1929
|
+
},
|
|
1930
|
+
"limit": {
|
|
1931
|
+
"type": "number"
|
|
1932
|
+
},
|
|
1933
|
+
"offset": {
|
|
1934
|
+
"type": "number"
|
|
1935
|
+
},
|
|
1936
|
+
"includeNodes": {
|
|
1937
|
+
"type": "boolean"
|
|
1938
|
+
},
|
|
1939
|
+
"includeUnknown": {
|
|
1940
|
+
"type": "boolean"
|
|
1941
|
+
},
|
|
1942
|
+
"type": {
|
|
1943
|
+
"type": "string"
|
|
1944
|
+
},
|
|
1945
|
+
"nodeType": {
|
|
1946
|
+
"type": "string"
|
|
1947
|
+
},
|
|
1948
|
+
"kind": {
|
|
1949
|
+
"type": "string"
|
|
1950
|
+
},
|
|
1951
|
+
"pattern": {
|
|
1952
|
+
"type": "string"
|
|
1953
|
+
},
|
|
1954
|
+
"mode": {
|
|
1955
|
+
"type": "string"
|
|
1956
|
+
},
|
|
1957
|
+
"caseSensitive": {
|
|
1958
|
+
"type": "boolean"
|
|
1959
|
+
},
|
|
1960
|
+
"query": {}
|
|
1854
1961
|
},
|
|
1855
|
-
"
|
|
1856
|
-
"select"
|
|
1857
|
-
],
|
|
1858
|
-
"type": "object"
|
|
1962
|
+
"additionalProperties": false
|
|
1859
1963
|
}
|
|
1860
1964
|
},
|
|
1861
1965
|
{
|
|
1862
1966
|
"name": "doc_getNode",
|
|
1863
1967
|
"description": "Retrieve a single node by target position.",
|
|
1864
1968
|
"input_schema": {
|
|
1865
|
-
"
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
"
|
|
1869
|
-
"kind": {
|
|
1870
|
-
"const": "block"
|
|
1871
|
-
},
|
|
1872
|
-
"nodeId": {
|
|
1873
|
-
"type": "string"
|
|
1874
|
-
},
|
|
1875
|
-
"nodeType": {
|
|
1876
|
-
"enum": [
|
|
1877
|
-
"paragraph",
|
|
1878
|
-
"heading",
|
|
1879
|
-
"listItem",
|
|
1880
|
-
"table",
|
|
1881
|
-
"tableRow",
|
|
1882
|
-
"tableCell",
|
|
1883
|
-
"image",
|
|
1884
|
-
"sdt"
|
|
1885
|
-
]
|
|
1886
|
-
}
|
|
1887
|
-
},
|
|
1888
|
-
"required": [
|
|
1889
|
-
"kind",
|
|
1890
|
-
"nodeType",
|
|
1891
|
-
"nodeId"
|
|
1892
|
-
],
|
|
1893
|
-
"type": "object"
|
|
1969
|
+
"type": "object",
|
|
1970
|
+
"properties": {
|
|
1971
|
+
"doc": {
|
|
1972
|
+
"type": "string"
|
|
1894
1973
|
},
|
|
1895
|
-
{
|
|
1896
|
-
"
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
"end": {
|
|
1902
|
-
"additionalProperties": false,
|
|
1903
|
-
"properties": {
|
|
1904
|
-
"blockId": {
|
|
1905
|
-
"type": "string"
|
|
1906
|
-
},
|
|
1907
|
-
"offset": {
|
|
1908
|
-
"type": "integer"
|
|
1909
|
-
}
|
|
1910
|
-
},
|
|
1911
|
-
"required": [
|
|
1912
|
-
"blockId",
|
|
1913
|
-
"offset"
|
|
1914
|
-
],
|
|
1915
|
-
"type": "object"
|
|
1916
|
-
},
|
|
1917
|
-
"start": {
|
|
1918
|
-
"additionalProperties": false,
|
|
1919
|
-
"properties": {
|
|
1920
|
-
"blockId": {
|
|
1921
|
-
"type": "string"
|
|
1922
|
-
},
|
|
1923
|
-
"offset": {
|
|
1924
|
-
"type": "integer"
|
|
1925
|
-
}
|
|
1926
|
-
},
|
|
1927
|
-
"required": [
|
|
1928
|
-
"blockId",
|
|
1929
|
-
"offset"
|
|
1930
|
-
],
|
|
1931
|
-
"type": "object"
|
|
1932
|
-
}
|
|
1933
|
-
},
|
|
1934
|
-
"required": [
|
|
1935
|
-
"start",
|
|
1936
|
-
"end"
|
|
1937
|
-
],
|
|
1938
|
-
"type": "object"
|
|
1939
|
-
},
|
|
1940
|
-
"kind": {
|
|
1941
|
-
"const": "inline"
|
|
1942
|
-
},
|
|
1943
|
-
"nodeType": {
|
|
1944
|
-
"enum": [
|
|
1945
|
-
"run",
|
|
1946
|
-
"bookmark",
|
|
1947
|
-
"comment",
|
|
1948
|
-
"hyperlink",
|
|
1949
|
-
"sdt",
|
|
1950
|
-
"image",
|
|
1951
|
-
"footnoteRef",
|
|
1952
|
-
"tab",
|
|
1953
|
-
"lineBreak"
|
|
1954
|
-
]
|
|
1955
|
-
}
|
|
1956
|
-
},
|
|
1957
|
-
"required": [
|
|
1958
|
-
"kind",
|
|
1959
|
-
"nodeType",
|
|
1960
|
-
"anchor"
|
|
1961
|
-
],
|
|
1962
|
-
"type": "object"
|
|
1963
|
-
}
|
|
1964
|
-
]
|
|
1974
|
+
"sessionId": {
|
|
1975
|
+
"type": "string"
|
|
1976
|
+
},
|
|
1977
|
+
"address": {}
|
|
1978
|
+
},
|
|
1979
|
+
"additionalProperties": false
|
|
1965
1980
|
}
|
|
1966
1981
|
},
|
|
1967
1982
|
{
|
|
1968
1983
|
"name": "doc_getNodeById",
|
|
1969
1984
|
"description": "Retrieve a single node by its unique ID.",
|
|
1970
1985
|
"input_schema": {
|
|
1971
|
-
"
|
|
1986
|
+
"type": "object",
|
|
1972
1987
|
"properties": {
|
|
1973
|
-
"
|
|
1988
|
+
"doc": {
|
|
1989
|
+
"type": "string"
|
|
1990
|
+
},
|
|
1991
|
+
"sessionId": {
|
|
1992
|
+
"type": "string"
|
|
1993
|
+
},
|
|
1994
|
+
"id": {
|
|
1974
1995
|
"type": "string"
|
|
1975
1996
|
},
|
|
1976
1997
|
"nodeType": {
|
|
1977
|
-
"
|
|
1978
|
-
"paragraph",
|
|
1979
|
-
"heading",
|
|
1980
|
-
"listItem",
|
|
1981
|
-
"table",
|
|
1982
|
-
"tableRow",
|
|
1983
|
-
"tableCell",
|
|
1984
|
-
"image",
|
|
1985
|
-
"sdt"
|
|
1986
|
-
]
|
|
1998
|
+
"type": "string"
|
|
1987
1999
|
}
|
|
1988
2000
|
},
|
|
1989
2001
|
"required": [
|
|
1990
|
-
"
|
|
2002
|
+
"id"
|
|
1991
2003
|
],
|
|
1992
|
-
"
|
|
2004
|
+
"additionalProperties": false
|
|
1993
2005
|
}
|
|
1994
2006
|
},
|
|
1995
2007
|
{
|
|
1996
2008
|
"name": "doc_info",
|
|
1997
2009
|
"description": "Return document metadata including revision, node count, and capabilities.",
|
|
1998
2010
|
"input_schema": {
|
|
1999
|
-
"
|
|
2000
|
-
"properties": {
|
|
2001
|
-
|
|
2011
|
+
"type": "object",
|
|
2012
|
+
"properties": {
|
|
2013
|
+
"doc": {
|
|
2014
|
+
"type": "string"
|
|
2015
|
+
},
|
|
2016
|
+
"sessionId": {
|
|
2017
|
+
"type": "string"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
"additionalProperties": false
|
|
2002
2021
|
}
|
|
2003
2022
|
},
|
|
2004
2023
|
{
|
|
2005
2024
|
"name": "doc_insert",
|
|
2006
2025
|
"description": "Insert text or inline content at a target position.",
|
|
2007
2026
|
"input_schema": {
|
|
2008
|
-
"
|
|
2027
|
+
"type": "object",
|
|
2009
2028
|
"properties": {
|
|
2029
|
+
"doc": {
|
|
2030
|
+
"type": "string"
|
|
2031
|
+
},
|
|
2032
|
+
"sessionId": {
|
|
2033
|
+
"type": "string"
|
|
2034
|
+
},
|
|
2035
|
+
"force": {
|
|
2036
|
+
"type": "boolean"
|
|
2037
|
+
},
|
|
2010
2038
|
"target": {
|
|
2011
|
-
"
|
|
2039
|
+
"type": "object",
|
|
2012
2040
|
"properties": {
|
|
2013
|
-
"blockId": {
|
|
2014
|
-
"type": "string"
|
|
2015
|
-
},
|
|
2016
2041
|
"kind": {
|
|
2017
2042
|
"const": "text"
|
|
2018
2043
|
},
|
|
2044
|
+
"blockId": {
|
|
2045
|
+
"type": "string"
|
|
2046
|
+
},
|
|
2019
2047
|
"range": {
|
|
2020
|
-
"
|
|
2048
|
+
"type": "object",
|
|
2021
2049
|
"properties": {
|
|
2022
|
-
"end": {
|
|
2023
|
-
"type": "integer"
|
|
2024
|
-
},
|
|
2025
2050
|
"start": {
|
|
2026
|
-
"type": "
|
|
2051
|
+
"type": "number"
|
|
2052
|
+
},
|
|
2053
|
+
"end": {
|
|
2054
|
+
"type": "number"
|
|
2027
2055
|
}
|
|
2028
2056
|
},
|
|
2029
2057
|
"required": [
|
|
2030
2058
|
"start",
|
|
2031
2059
|
"end"
|
|
2032
|
-
]
|
|
2033
|
-
"type": "object"
|
|
2060
|
+
]
|
|
2034
2061
|
}
|
|
2035
2062
|
},
|
|
2036
2063
|
"required": [
|
|
2037
2064
|
"kind",
|
|
2038
2065
|
"blockId",
|
|
2039
2066
|
"range"
|
|
2040
|
-
]
|
|
2041
|
-
"type": "object"
|
|
2067
|
+
]
|
|
2042
2068
|
},
|
|
2043
2069
|
"text": {
|
|
2044
2070
|
"type": "string"
|
|
2071
|
+
},
|
|
2072
|
+
"blockId": {
|
|
2073
|
+
"type": "string"
|
|
2074
|
+
},
|
|
2075
|
+
"offset": {
|
|
2076
|
+
"type": "number"
|
|
2045
2077
|
}
|
|
2046
2078
|
},
|
|
2047
2079
|
"required": [
|
|
2048
2080
|
"text"
|
|
2049
2081
|
],
|
|
2050
|
-
"
|
|
2082
|
+
"additionalProperties": false
|
|
2051
2083
|
}
|
|
2052
2084
|
},
|
|
2053
2085
|
{
|
|
2054
2086
|
"name": "doc_replace",
|
|
2055
2087
|
"description": "Replace content at a target position with new text or inline content.",
|
|
2056
2088
|
"input_schema": {
|
|
2057
|
-
"
|
|
2089
|
+
"type": "object",
|
|
2058
2090
|
"properties": {
|
|
2091
|
+
"doc": {
|
|
2092
|
+
"type": "string"
|
|
2093
|
+
},
|
|
2094
|
+
"sessionId": {
|
|
2095
|
+
"type": "string"
|
|
2096
|
+
},
|
|
2097
|
+
"force": {
|
|
2098
|
+
"type": "boolean"
|
|
2099
|
+
},
|
|
2059
2100
|
"target": {
|
|
2060
|
-
"
|
|
2101
|
+
"type": "object",
|
|
2061
2102
|
"properties": {
|
|
2062
|
-
"blockId": {
|
|
2063
|
-
"type": "string"
|
|
2064
|
-
},
|
|
2065
2103
|
"kind": {
|
|
2066
2104
|
"const": "text"
|
|
2067
2105
|
},
|
|
2106
|
+
"blockId": {
|
|
2107
|
+
"type": "string"
|
|
2108
|
+
},
|
|
2068
2109
|
"range": {
|
|
2069
|
-
"
|
|
2110
|
+
"type": "object",
|
|
2070
2111
|
"properties": {
|
|
2071
|
-
"end": {
|
|
2072
|
-
"type": "integer"
|
|
2073
|
-
},
|
|
2074
2112
|
"start": {
|
|
2075
|
-
"type": "
|
|
2113
|
+
"type": "number"
|
|
2114
|
+
},
|
|
2115
|
+
"end": {
|
|
2116
|
+
"type": "number"
|
|
2076
2117
|
}
|
|
2077
2118
|
},
|
|
2078
2119
|
"required": [
|
|
2079
2120
|
"start",
|
|
2080
2121
|
"end"
|
|
2081
|
-
]
|
|
2082
|
-
"type": "object"
|
|
2122
|
+
]
|
|
2083
2123
|
}
|
|
2084
2124
|
},
|
|
2085
2125
|
"required": [
|
|
2086
2126
|
"kind",
|
|
2087
2127
|
"blockId",
|
|
2088
2128
|
"range"
|
|
2089
|
-
]
|
|
2090
|
-
"type": "object"
|
|
2129
|
+
]
|
|
2091
2130
|
},
|
|
2092
2131
|
"text": {
|
|
2093
2132
|
"type": "string"
|
|
@@ -2097,249 +2136,293 @@
|
|
|
2097
2136
|
"target",
|
|
2098
2137
|
"text"
|
|
2099
2138
|
],
|
|
2100
|
-
"
|
|
2139
|
+
"additionalProperties": false
|
|
2101
2140
|
}
|
|
2102
2141
|
},
|
|
2103
2142
|
{
|
|
2104
2143
|
"name": "doc_delete",
|
|
2105
2144
|
"description": "Delete content at a target position.",
|
|
2106
2145
|
"input_schema": {
|
|
2107
|
-
"
|
|
2146
|
+
"type": "object",
|
|
2108
2147
|
"properties": {
|
|
2148
|
+
"doc": {
|
|
2149
|
+
"type": "string"
|
|
2150
|
+
},
|
|
2151
|
+
"sessionId": {
|
|
2152
|
+
"type": "string"
|
|
2153
|
+
},
|
|
2154
|
+
"force": {
|
|
2155
|
+
"type": "boolean"
|
|
2156
|
+
},
|
|
2109
2157
|
"target": {
|
|
2110
|
-
"
|
|
2158
|
+
"type": "object",
|
|
2111
2159
|
"properties": {
|
|
2112
|
-
"blockId": {
|
|
2113
|
-
"type": "string"
|
|
2114
|
-
},
|
|
2115
2160
|
"kind": {
|
|
2116
2161
|
"const": "text"
|
|
2117
2162
|
},
|
|
2163
|
+
"blockId": {
|
|
2164
|
+
"type": "string"
|
|
2165
|
+
},
|
|
2118
2166
|
"range": {
|
|
2119
|
-
"
|
|
2167
|
+
"type": "object",
|
|
2120
2168
|
"properties": {
|
|
2121
|
-
"end": {
|
|
2122
|
-
"type": "integer"
|
|
2123
|
-
},
|
|
2124
2169
|
"start": {
|
|
2125
|
-
"type": "
|
|
2170
|
+
"type": "number"
|
|
2171
|
+
},
|
|
2172
|
+
"end": {
|
|
2173
|
+
"type": "number"
|
|
2126
2174
|
}
|
|
2127
2175
|
},
|
|
2128
2176
|
"required": [
|
|
2129
2177
|
"start",
|
|
2130
2178
|
"end"
|
|
2131
|
-
]
|
|
2132
|
-
"type": "object"
|
|
2179
|
+
]
|
|
2133
2180
|
}
|
|
2134
2181
|
},
|
|
2135
2182
|
"required": [
|
|
2136
2183
|
"kind",
|
|
2137
2184
|
"blockId",
|
|
2138
2185
|
"range"
|
|
2139
|
-
]
|
|
2140
|
-
"type": "object"
|
|
2186
|
+
]
|
|
2141
2187
|
}
|
|
2142
2188
|
},
|
|
2143
2189
|
"required": [
|
|
2144
2190
|
"target"
|
|
2145
2191
|
],
|
|
2146
|
-
"
|
|
2192
|
+
"additionalProperties": false
|
|
2147
2193
|
}
|
|
2148
2194
|
},
|
|
2149
2195
|
{
|
|
2150
2196
|
"name": "doc_format_bold",
|
|
2151
2197
|
"description": "Toggle bold formatting on the target range.",
|
|
2152
2198
|
"input_schema": {
|
|
2153
|
-
"
|
|
2199
|
+
"type": "object",
|
|
2154
2200
|
"properties": {
|
|
2201
|
+
"doc": {
|
|
2202
|
+
"type": "string"
|
|
2203
|
+
},
|
|
2204
|
+
"sessionId": {
|
|
2205
|
+
"type": "string"
|
|
2206
|
+
},
|
|
2207
|
+
"force": {
|
|
2208
|
+
"type": "boolean"
|
|
2209
|
+
},
|
|
2155
2210
|
"target": {
|
|
2156
|
-
"
|
|
2211
|
+
"type": "object",
|
|
2157
2212
|
"properties": {
|
|
2158
|
-
"blockId": {
|
|
2159
|
-
"type": "string"
|
|
2160
|
-
},
|
|
2161
2213
|
"kind": {
|
|
2162
2214
|
"const": "text"
|
|
2163
2215
|
},
|
|
2216
|
+
"blockId": {
|
|
2217
|
+
"type": "string"
|
|
2218
|
+
},
|
|
2164
2219
|
"range": {
|
|
2165
|
-
"
|
|
2220
|
+
"type": "object",
|
|
2166
2221
|
"properties": {
|
|
2167
|
-
"end": {
|
|
2168
|
-
"type": "integer"
|
|
2169
|
-
},
|
|
2170
2222
|
"start": {
|
|
2171
|
-
"type": "
|
|
2223
|
+
"type": "number"
|
|
2224
|
+
},
|
|
2225
|
+
"end": {
|
|
2226
|
+
"type": "number"
|
|
2172
2227
|
}
|
|
2173
2228
|
},
|
|
2174
2229
|
"required": [
|
|
2175
2230
|
"start",
|
|
2176
2231
|
"end"
|
|
2177
|
-
]
|
|
2178
|
-
"type": "object"
|
|
2232
|
+
]
|
|
2179
2233
|
}
|
|
2180
2234
|
},
|
|
2181
2235
|
"required": [
|
|
2182
2236
|
"kind",
|
|
2183
2237
|
"blockId",
|
|
2184
2238
|
"range"
|
|
2185
|
-
]
|
|
2186
|
-
"type": "object"
|
|
2239
|
+
]
|
|
2187
2240
|
}
|
|
2188
2241
|
},
|
|
2189
2242
|
"required": [
|
|
2190
2243
|
"target"
|
|
2191
2244
|
],
|
|
2192
|
-
"
|
|
2245
|
+
"additionalProperties": false
|
|
2193
2246
|
}
|
|
2194
2247
|
},
|
|
2195
2248
|
{
|
|
2196
2249
|
"name": "doc_format_italic",
|
|
2197
2250
|
"description": "Toggle italic formatting on the target range.",
|
|
2198
2251
|
"input_schema": {
|
|
2199
|
-
"
|
|
2252
|
+
"type": "object",
|
|
2200
2253
|
"properties": {
|
|
2254
|
+
"doc": {
|
|
2255
|
+
"type": "string"
|
|
2256
|
+
},
|
|
2257
|
+
"sessionId": {
|
|
2258
|
+
"type": "string"
|
|
2259
|
+
},
|
|
2260
|
+
"force": {
|
|
2261
|
+
"type": "boolean"
|
|
2262
|
+
},
|
|
2201
2263
|
"target": {
|
|
2202
|
-
"
|
|
2264
|
+
"type": "object",
|
|
2203
2265
|
"properties": {
|
|
2204
|
-
"blockId": {
|
|
2205
|
-
"type": "string"
|
|
2206
|
-
},
|
|
2207
2266
|
"kind": {
|
|
2208
2267
|
"const": "text"
|
|
2209
2268
|
},
|
|
2269
|
+
"blockId": {
|
|
2270
|
+
"type": "string"
|
|
2271
|
+
},
|
|
2210
2272
|
"range": {
|
|
2211
|
-
"
|
|
2273
|
+
"type": "object",
|
|
2212
2274
|
"properties": {
|
|
2213
|
-
"end": {
|
|
2214
|
-
"type": "integer"
|
|
2215
|
-
},
|
|
2216
2275
|
"start": {
|
|
2217
|
-
"type": "
|
|
2276
|
+
"type": "number"
|
|
2277
|
+
},
|
|
2278
|
+
"end": {
|
|
2279
|
+
"type": "number"
|
|
2218
2280
|
}
|
|
2219
2281
|
},
|
|
2220
2282
|
"required": [
|
|
2221
2283
|
"start",
|
|
2222
2284
|
"end"
|
|
2223
|
-
]
|
|
2224
|
-
"type": "object"
|
|
2285
|
+
]
|
|
2225
2286
|
}
|
|
2226
2287
|
},
|
|
2227
2288
|
"required": [
|
|
2228
2289
|
"kind",
|
|
2229
2290
|
"blockId",
|
|
2230
2291
|
"range"
|
|
2231
|
-
]
|
|
2232
|
-
"type": "object"
|
|
2292
|
+
]
|
|
2233
2293
|
}
|
|
2234
2294
|
},
|
|
2235
2295
|
"required": [
|
|
2236
2296
|
"target"
|
|
2237
2297
|
],
|
|
2238
|
-
"
|
|
2298
|
+
"additionalProperties": false
|
|
2239
2299
|
}
|
|
2240
2300
|
},
|
|
2241
2301
|
{
|
|
2242
2302
|
"name": "doc_format_underline",
|
|
2243
2303
|
"description": "Toggle underline formatting on the target range.",
|
|
2244
2304
|
"input_schema": {
|
|
2245
|
-
"
|
|
2305
|
+
"type": "object",
|
|
2246
2306
|
"properties": {
|
|
2307
|
+
"doc": {
|
|
2308
|
+
"type": "string"
|
|
2309
|
+
},
|
|
2310
|
+
"sessionId": {
|
|
2311
|
+
"type": "string"
|
|
2312
|
+
},
|
|
2313
|
+
"force": {
|
|
2314
|
+
"type": "boolean"
|
|
2315
|
+
},
|
|
2247
2316
|
"target": {
|
|
2248
|
-
"
|
|
2317
|
+
"type": "object",
|
|
2249
2318
|
"properties": {
|
|
2250
|
-
"blockId": {
|
|
2251
|
-
"type": "string"
|
|
2252
|
-
},
|
|
2253
2319
|
"kind": {
|
|
2254
2320
|
"const": "text"
|
|
2255
2321
|
},
|
|
2322
|
+
"blockId": {
|
|
2323
|
+
"type": "string"
|
|
2324
|
+
},
|
|
2256
2325
|
"range": {
|
|
2257
|
-
"
|
|
2258
|
-
"properties": {
|
|
2259
|
-
"end": {
|
|
2260
|
-
"type": "integer"
|
|
2261
|
-
},
|
|
2326
|
+
"type": "object",
|
|
2327
|
+
"properties": {
|
|
2262
2328
|
"start": {
|
|
2263
|
-
"type": "
|
|
2329
|
+
"type": "number"
|
|
2330
|
+
},
|
|
2331
|
+
"end": {
|
|
2332
|
+
"type": "number"
|
|
2264
2333
|
}
|
|
2265
2334
|
},
|
|
2266
2335
|
"required": [
|
|
2267
2336
|
"start",
|
|
2268
2337
|
"end"
|
|
2269
|
-
]
|
|
2270
|
-
"type": "object"
|
|
2338
|
+
]
|
|
2271
2339
|
}
|
|
2272
2340
|
},
|
|
2273
2341
|
"required": [
|
|
2274
2342
|
"kind",
|
|
2275
2343
|
"blockId",
|
|
2276
2344
|
"range"
|
|
2277
|
-
]
|
|
2278
|
-
"type": "object"
|
|
2345
|
+
]
|
|
2279
2346
|
}
|
|
2280
2347
|
},
|
|
2281
2348
|
"required": [
|
|
2282
2349
|
"target"
|
|
2283
2350
|
],
|
|
2284
|
-
"
|
|
2351
|
+
"additionalProperties": false
|
|
2285
2352
|
}
|
|
2286
2353
|
},
|
|
2287
2354
|
{
|
|
2288
2355
|
"name": "doc_format_strikethrough",
|
|
2289
2356
|
"description": "Toggle strikethrough formatting on the target range.",
|
|
2290
2357
|
"input_schema": {
|
|
2291
|
-
"
|
|
2358
|
+
"type": "object",
|
|
2292
2359
|
"properties": {
|
|
2360
|
+
"doc": {
|
|
2361
|
+
"type": "string"
|
|
2362
|
+
},
|
|
2363
|
+
"sessionId": {
|
|
2364
|
+
"type": "string"
|
|
2365
|
+
},
|
|
2366
|
+
"force": {
|
|
2367
|
+
"type": "boolean"
|
|
2368
|
+
},
|
|
2293
2369
|
"target": {
|
|
2294
|
-
"
|
|
2370
|
+
"type": "object",
|
|
2295
2371
|
"properties": {
|
|
2296
|
-
"blockId": {
|
|
2297
|
-
"type": "string"
|
|
2298
|
-
},
|
|
2299
2372
|
"kind": {
|
|
2300
2373
|
"const": "text"
|
|
2301
2374
|
},
|
|
2375
|
+
"blockId": {
|
|
2376
|
+
"type": "string"
|
|
2377
|
+
},
|
|
2302
2378
|
"range": {
|
|
2303
|
-
"
|
|
2379
|
+
"type": "object",
|
|
2304
2380
|
"properties": {
|
|
2305
|
-
"end": {
|
|
2306
|
-
"type": "integer"
|
|
2307
|
-
},
|
|
2308
2381
|
"start": {
|
|
2309
|
-
"type": "
|
|
2382
|
+
"type": "number"
|
|
2383
|
+
},
|
|
2384
|
+
"end": {
|
|
2385
|
+
"type": "number"
|
|
2310
2386
|
}
|
|
2311
2387
|
},
|
|
2312
2388
|
"required": [
|
|
2313
2389
|
"start",
|
|
2314
2390
|
"end"
|
|
2315
|
-
]
|
|
2316
|
-
"type": "object"
|
|
2391
|
+
]
|
|
2317
2392
|
}
|
|
2318
2393
|
},
|
|
2319
2394
|
"required": [
|
|
2320
2395
|
"kind",
|
|
2321
2396
|
"blockId",
|
|
2322
2397
|
"range"
|
|
2323
|
-
]
|
|
2324
|
-
"type": "object"
|
|
2398
|
+
]
|
|
2325
2399
|
}
|
|
2326
2400
|
},
|
|
2327
2401
|
"required": [
|
|
2328
2402
|
"target"
|
|
2329
2403
|
],
|
|
2330
|
-
"
|
|
2404
|
+
"additionalProperties": false
|
|
2331
2405
|
}
|
|
2332
2406
|
},
|
|
2333
2407
|
{
|
|
2334
2408
|
"name": "doc_create_paragraph",
|
|
2335
2409
|
"description": "Create a new paragraph at the target position.",
|
|
2336
2410
|
"input_schema": {
|
|
2337
|
-
"
|
|
2411
|
+
"type": "object",
|
|
2338
2412
|
"properties": {
|
|
2413
|
+
"doc": {
|
|
2414
|
+
"type": "string"
|
|
2415
|
+
},
|
|
2416
|
+
"sessionId": {
|
|
2417
|
+
"type": "string"
|
|
2418
|
+
},
|
|
2419
|
+
"force": {
|
|
2420
|
+
"type": "boolean"
|
|
2421
|
+
},
|
|
2339
2422
|
"at": {
|
|
2340
2423
|
"oneOf": [
|
|
2341
2424
|
{
|
|
2342
|
-
"
|
|
2425
|
+
"type": "object",
|
|
2343
2426
|
"properties": {
|
|
2344
2427
|
"kind": {
|
|
2345
2428
|
"const": "documentStart"
|
|
@@ -2347,11 +2430,10 @@
|
|
|
2347
2430
|
},
|
|
2348
2431
|
"required": [
|
|
2349
2432
|
"kind"
|
|
2350
|
-
]
|
|
2351
|
-
"type": "object"
|
|
2433
|
+
]
|
|
2352
2434
|
},
|
|
2353
2435
|
{
|
|
2354
|
-
"
|
|
2436
|
+
"type": "object",
|
|
2355
2437
|
"properties": {
|
|
2356
2438
|
"kind": {
|
|
2357
2439
|
"const": "documentEnd"
|
|
@@ -2359,445 +2441,532 @@
|
|
|
2359
2441
|
},
|
|
2360
2442
|
"required": [
|
|
2361
2443
|
"kind"
|
|
2362
|
-
]
|
|
2363
|
-
"type": "object"
|
|
2444
|
+
]
|
|
2364
2445
|
},
|
|
2365
2446
|
{
|
|
2366
|
-
"
|
|
2447
|
+
"type": "object",
|
|
2367
2448
|
"properties": {
|
|
2368
2449
|
"kind": {
|
|
2369
2450
|
"const": "before"
|
|
2370
2451
|
},
|
|
2371
2452
|
"target": {
|
|
2372
|
-
"
|
|
2453
|
+
"type": "object",
|
|
2373
2454
|
"properties": {
|
|
2374
2455
|
"kind": {
|
|
2375
2456
|
"const": "block"
|
|
2376
2457
|
},
|
|
2377
|
-
"nodeId": {
|
|
2378
|
-
"type": "string"
|
|
2379
|
-
},
|
|
2380
2458
|
"nodeType": {
|
|
2381
|
-
"
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2459
|
+
"oneOf": [
|
|
2460
|
+
{
|
|
2461
|
+
"const": "paragraph"
|
|
2462
|
+
},
|
|
2463
|
+
{
|
|
2464
|
+
"const": "heading"
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
"const": "listItem"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"const": "table"
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
"const": "tableRow"
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
"const": "tableCell"
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
"const": "image"
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"const": "sdt"
|
|
2483
|
+
}
|
|
2390
2484
|
]
|
|
2485
|
+
},
|
|
2486
|
+
"nodeId": {
|
|
2487
|
+
"type": "string"
|
|
2391
2488
|
}
|
|
2392
2489
|
},
|
|
2393
2490
|
"required": [
|
|
2394
2491
|
"kind",
|
|
2395
2492
|
"nodeType",
|
|
2396
2493
|
"nodeId"
|
|
2397
|
-
]
|
|
2398
|
-
"type": "object"
|
|
2494
|
+
]
|
|
2399
2495
|
}
|
|
2400
2496
|
},
|
|
2401
2497
|
"required": [
|
|
2402
2498
|
"kind",
|
|
2403
2499
|
"target"
|
|
2404
|
-
]
|
|
2405
|
-
"type": "object"
|
|
2500
|
+
]
|
|
2406
2501
|
},
|
|
2407
2502
|
{
|
|
2408
|
-
"
|
|
2503
|
+
"type": "object",
|
|
2409
2504
|
"properties": {
|
|
2410
2505
|
"kind": {
|
|
2411
2506
|
"const": "after"
|
|
2412
2507
|
},
|
|
2413
2508
|
"target": {
|
|
2414
|
-
"
|
|
2509
|
+
"type": "object",
|
|
2415
2510
|
"properties": {
|
|
2416
2511
|
"kind": {
|
|
2417
2512
|
"const": "block"
|
|
2418
2513
|
},
|
|
2419
|
-
"nodeId": {
|
|
2420
|
-
"type": "string"
|
|
2421
|
-
},
|
|
2422
2514
|
"nodeType": {
|
|
2423
|
-
"
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2515
|
+
"oneOf": [
|
|
2516
|
+
{
|
|
2517
|
+
"const": "paragraph"
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
"const": "heading"
|
|
2521
|
+
},
|
|
2522
|
+
{
|
|
2523
|
+
"const": "listItem"
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"const": "table"
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
"const": "tableRow"
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
"const": "tableCell"
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"const": "image"
|
|
2536
|
+
},
|
|
2537
|
+
{
|
|
2538
|
+
"const": "sdt"
|
|
2539
|
+
}
|
|
2432
2540
|
]
|
|
2541
|
+
},
|
|
2542
|
+
"nodeId": {
|
|
2543
|
+
"type": "string"
|
|
2433
2544
|
}
|
|
2434
2545
|
},
|
|
2435
2546
|
"required": [
|
|
2436
2547
|
"kind",
|
|
2437
2548
|
"nodeType",
|
|
2438
2549
|
"nodeId"
|
|
2439
|
-
]
|
|
2440
|
-
"type": "object"
|
|
2550
|
+
]
|
|
2441
2551
|
}
|
|
2442
2552
|
},
|
|
2443
2553
|
"required": [
|
|
2444
2554
|
"kind",
|
|
2445
2555
|
"target"
|
|
2446
|
-
]
|
|
2447
|
-
"type": "object"
|
|
2556
|
+
]
|
|
2448
2557
|
}
|
|
2449
2558
|
]
|
|
2450
2559
|
},
|
|
2451
2560
|
"text": {
|
|
2452
2561
|
"type": "string"
|
|
2453
|
-
}
|
|
2562
|
+
},
|
|
2563
|
+
"input": {}
|
|
2454
2564
|
},
|
|
2455
|
-
"
|
|
2565
|
+
"additionalProperties": false
|
|
2456
2566
|
}
|
|
2457
2567
|
},
|
|
2458
2568
|
{
|
|
2459
2569
|
"name": "doc_lists_list",
|
|
2460
2570
|
"description": "List all list nodes in the document, optionally filtered by scope.",
|
|
2461
2571
|
"input_schema": {
|
|
2462
|
-
"
|
|
2572
|
+
"type": "object",
|
|
2463
2573
|
"properties": {
|
|
2464
|
-
"
|
|
2465
|
-
"
|
|
2466
|
-
"ordered",
|
|
2467
|
-
"bullet"
|
|
2468
|
-
]
|
|
2469
|
-
},
|
|
2470
|
-
"level": {
|
|
2471
|
-
"type": "integer"
|
|
2472
|
-
},
|
|
2473
|
-
"limit": {
|
|
2474
|
-
"type": "integer"
|
|
2475
|
-
},
|
|
2476
|
-
"offset": {
|
|
2477
|
-
"type": "integer"
|
|
2574
|
+
"doc": {
|
|
2575
|
+
"type": "string"
|
|
2478
2576
|
},
|
|
2479
|
-
"
|
|
2480
|
-
"type": "
|
|
2577
|
+
"sessionId": {
|
|
2578
|
+
"type": "string"
|
|
2481
2579
|
},
|
|
2482
2580
|
"within": {
|
|
2483
|
-
"
|
|
2581
|
+
"type": "object",
|
|
2484
2582
|
"properties": {
|
|
2485
2583
|
"kind": {
|
|
2486
2584
|
"const": "block"
|
|
2487
2585
|
},
|
|
2488
|
-
"nodeId": {
|
|
2489
|
-
"type": "string"
|
|
2490
|
-
},
|
|
2491
2586
|
"nodeType": {
|
|
2492
|
-
"
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2587
|
+
"oneOf": [
|
|
2588
|
+
{
|
|
2589
|
+
"const": "paragraph"
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"const": "heading"
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
"const": "listItem"
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"const": "table"
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
"const": "tableRow"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"const": "tableCell"
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
"const": "image"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"const": "sdt"
|
|
2611
|
+
}
|
|
2501
2612
|
]
|
|
2613
|
+
},
|
|
2614
|
+
"nodeId": {
|
|
2615
|
+
"type": "string"
|
|
2502
2616
|
}
|
|
2503
2617
|
},
|
|
2504
2618
|
"required": [
|
|
2505
2619
|
"kind",
|
|
2506
2620
|
"nodeType",
|
|
2507
2621
|
"nodeId"
|
|
2508
|
-
]
|
|
2509
|
-
|
|
2510
|
-
|
|
2622
|
+
]
|
|
2623
|
+
},
|
|
2624
|
+
"limit": {
|
|
2625
|
+
"type": "number"
|
|
2626
|
+
},
|
|
2627
|
+
"offset": {
|
|
2628
|
+
"type": "number"
|
|
2629
|
+
},
|
|
2630
|
+
"kind": {
|
|
2631
|
+
"type": "string"
|
|
2632
|
+
},
|
|
2633
|
+
"level": {
|
|
2634
|
+
"type": "number"
|
|
2635
|
+
},
|
|
2636
|
+
"ordinal": {
|
|
2637
|
+
"type": "number"
|
|
2638
|
+
},
|
|
2639
|
+
"query": {}
|
|
2511
2640
|
},
|
|
2512
|
-
"
|
|
2641
|
+
"additionalProperties": false
|
|
2513
2642
|
}
|
|
2514
2643
|
},
|
|
2515
2644
|
{
|
|
2516
2645
|
"name": "doc_lists_get",
|
|
2517
2646
|
"description": "Retrieve a specific list node by target.",
|
|
2518
2647
|
"input_schema": {
|
|
2519
|
-
"
|
|
2648
|
+
"type": "object",
|
|
2520
2649
|
"properties": {
|
|
2650
|
+
"doc": {
|
|
2651
|
+
"type": "string"
|
|
2652
|
+
},
|
|
2653
|
+
"sessionId": {
|
|
2654
|
+
"type": "string"
|
|
2655
|
+
},
|
|
2521
2656
|
"address": {
|
|
2522
|
-
"
|
|
2657
|
+
"type": "object",
|
|
2523
2658
|
"properties": {
|
|
2524
2659
|
"kind": {
|
|
2525
2660
|
"const": "block"
|
|
2526
2661
|
},
|
|
2527
|
-
"nodeId": {
|
|
2528
|
-
"type": "string"
|
|
2529
|
-
},
|
|
2530
2662
|
"nodeType": {
|
|
2531
2663
|
"const": "listItem"
|
|
2664
|
+
},
|
|
2665
|
+
"nodeId": {
|
|
2666
|
+
"type": "string"
|
|
2532
2667
|
}
|
|
2533
2668
|
},
|
|
2534
2669
|
"required": [
|
|
2535
2670
|
"kind",
|
|
2536
2671
|
"nodeType",
|
|
2537
2672
|
"nodeId"
|
|
2538
|
-
]
|
|
2539
|
-
"type": "object"
|
|
2673
|
+
]
|
|
2540
2674
|
}
|
|
2541
2675
|
},
|
|
2542
2676
|
"required": [
|
|
2543
2677
|
"address"
|
|
2544
2678
|
],
|
|
2545
|
-
"
|
|
2679
|
+
"additionalProperties": false
|
|
2546
2680
|
}
|
|
2547
2681
|
},
|
|
2548
2682
|
{
|
|
2549
2683
|
"name": "doc_lists_insert",
|
|
2550
2684
|
"description": "Insert a new list at the target position.",
|
|
2551
2685
|
"input_schema": {
|
|
2552
|
-
"
|
|
2686
|
+
"type": "object",
|
|
2553
2687
|
"properties": {
|
|
2554
|
-
"
|
|
2555
|
-
"
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2688
|
+
"doc": {
|
|
2689
|
+
"type": "string"
|
|
2690
|
+
},
|
|
2691
|
+
"sessionId": {
|
|
2692
|
+
"type": "string"
|
|
2693
|
+
},
|
|
2694
|
+
"force": {
|
|
2695
|
+
"type": "boolean"
|
|
2559
2696
|
},
|
|
2560
2697
|
"target": {
|
|
2561
|
-
"
|
|
2698
|
+
"type": "object",
|
|
2562
2699
|
"properties": {
|
|
2563
2700
|
"kind": {
|
|
2564
2701
|
"const": "block"
|
|
2565
2702
|
},
|
|
2566
|
-
"nodeId": {
|
|
2567
|
-
"type": "string"
|
|
2568
|
-
},
|
|
2569
2703
|
"nodeType": {
|
|
2570
2704
|
"const": "listItem"
|
|
2705
|
+
},
|
|
2706
|
+
"nodeId": {
|
|
2707
|
+
"type": "string"
|
|
2571
2708
|
}
|
|
2572
2709
|
},
|
|
2573
2710
|
"required": [
|
|
2574
2711
|
"kind",
|
|
2575
2712
|
"nodeType",
|
|
2576
2713
|
"nodeId"
|
|
2577
|
-
]
|
|
2578
|
-
|
|
2714
|
+
]
|
|
2715
|
+
},
|
|
2716
|
+
"position": {
|
|
2717
|
+
"type": "string"
|
|
2579
2718
|
},
|
|
2580
2719
|
"text": {
|
|
2581
2720
|
"type": "string"
|
|
2582
|
-
}
|
|
2721
|
+
},
|
|
2722
|
+
"input": {}
|
|
2583
2723
|
},
|
|
2584
|
-
"
|
|
2585
|
-
"target",
|
|
2586
|
-
"position"
|
|
2587
|
-
],
|
|
2588
|
-
"type": "object"
|
|
2724
|
+
"additionalProperties": false
|
|
2589
2725
|
}
|
|
2590
2726
|
},
|
|
2591
2727
|
{
|
|
2592
2728
|
"name": "doc_lists_setType",
|
|
2593
2729
|
"description": "Change the list type (ordered, unordered) of a target list.",
|
|
2594
2730
|
"input_schema": {
|
|
2595
|
-
"
|
|
2731
|
+
"type": "object",
|
|
2596
2732
|
"properties": {
|
|
2597
|
-
"
|
|
2598
|
-
"
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2733
|
+
"doc": {
|
|
2734
|
+
"type": "string"
|
|
2735
|
+
},
|
|
2736
|
+
"sessionId": {
|
|
2737
|
+
"type": "string"
|
|
2738
|
+
},
|
|
2739
|
+
"force": {
|
|
2740
|
+
"type": "boolean"
|
|
2602
2741
|
},
|
|
2603
2742
|
"target": {
|
|
2604
|
-
"
|
|
2743
|
+
"type": "object",
|
|
2605
2744
|
"properties": {
|
|
2606
2745
|
"kind": {
|
|
2607
2746
|
"const": "block"
|
|
2608
2747
|
},
|
|
2609
|
-
"nodeId": {
|
|
2610
|
-
"type": "string"
|
|
2611
|
-
},
|
|
2612
2748
|
"nodeType": {
|
|
2613
2749
|
"const": "listItem"
|
|
2750
|
+
},
|
|
2751
|
+
"nodeId": {
|
|
2752
|
+
"type": "string"
|
|
2614
2753
|
}
|
|
2615
2754
|
},
|
|
2616
2755
|
"required": [
|
|
2617
2756
|
"kind",
|
|
2618
2757
|
"nodeType",
|
|
2619
2758
|
"nodeId"
|
|
2620
|
-
]
|
|
2621
|
-
|
|
2622
|
-
|
|
2759
|
+
]
|
|
2760
|
+
},
|
|
2761
|
+
"kind": {
|
|
2762
|
+
"type": "string"
|
|
2763
|
+
},
|
|
2764
|
+
"input": {}
|
|
2623
2765
|
},
|
|
2624
|
-
"
|
|
2625
|
-
"target",
|
|
2626
|
-
"kind"
|
|
2627
|
-
],
|
|
2628
|
-
"type": "object"
|
|
2766
|
+
"additionalProperties": false
|
|
2629
2767
|
}
|
|
2630
2768
|
},
|
|
2631
2769
|
{
|
|
2632
2770
|
"name": "doc_lists_indent",
|
|
2633
2771
|
"description": "Increase the indentation level of a list item.",
|
|
2634
2772
|
"input_schema": {
|
|
2635
|
-
"
|
|
2773
|
+
"type": "object",
|
|
2636
2774
|
"properties": {
|
|
2775
|
+
"doc": {
|
|
2776
|
+
"type": "string"
|
|
2777
|
+
},
|
|
2778
|
+
"sessionId": {
|
|
2779
|
+
"type": "string"
|
|
2780
|
+
},
|
|
2781
|
+
"force": {
|
|
2782
|
+
"type": "boolean"
|
|
2783
|
+
},
|
|
2637
2784
|
"target": {
|
|
2638
|
-
"
|
|
2785
|
+
"type": "object",
|
|
2639
2786
|
"properties": {
|
|
2640
2787
|
"kind": {
|
|
2641
2788
|
"const": "block"
|
|
2642
2789
|
},
|
|
2643
|
-
"nodeId": {
|
|
2644
|
-
"type": "string"
|
|
2645
|
-
},
|
|
2646
2790
|
"nodeType": {
|
|
2647
2791
|
"const": "listItem"
|
|
2792
|
+
},
|
|
2793
|
+
"nodeId": {
|
|
2794
|
+
"type": "string"
|
|
2648
2795
|
}
|
|
2649
2796
|
},
|
|
2650
2797
|
"required": [
|
|
2651
2798
|
"kind",
|
|
2652
2799
|
"nodeType",
|
|
2653
2800
|
"nodeId"
|
|
2654
|
-
]
|
|
2655
|
-
|
|
2656
|
-
}
|
|
2801
|
+
]
|
|
2802
|
+
},
|
|
2803
|
+
"input": {}
|
|
2657
2804
|
},
|
|
2658
|
-
"
|
|
2659
|
-
"target"
|
|
2660
|
-
],
|
|
2661
|
-
"type": "object"
|
|
2805
|
+
"additionalProperties": false
|
|
2662
2806
|
}
|
|
2663
2807
|
},
|
|
2664
2808
|
{
|
|
2665
2809
|
"name": "doc_lists_outdent",
|
|
2666
2810
|
"description": "Decrease the indentation level of a list item.",
|
|
2667
2811
|
"input_schema": {
|
|
2668
|
-
"
|
|
2812
|
+
"type": "object",
|
|
2669
2813
|
"properties": {
|
|
2814
|
+
"doc": {
|
|
2815
|
+
"type": "string"
|
|
2816
|
+
},
|
|
2817
|
+
"sessionId": {
|
|
2818
|
+
"type": "string"
|
|
2819
|
+
},
|
|
2820
|
+
"force": {
|
|
2821
|
+
"type": "boolean"
|
|
2822
|
+
},
|
|
2670
2823
|
"target": {
|
|
2671
|
-
"
|
|
2824
|
+
"type": "object",
|
|
2672
2825
|
"properties": {
|
|
2673
2826
|
"kind": {
|
|
2674
2827
|
"const": "block"
|
|
2675
2828
|
},
|
|
2676
|
-
"nodeId": {
|
|
2677
|
-
"type": "string"
|
|
2678
|
-
},
|
|
2679
2829
|
"nodeType": {
|
|
2680
2830
|
"const": "listItem"
|
|
2831
|
+
},
|
|
2832
|
+
"nodeId": {
|
|
2833
|
+
"type": "string"
|
|
2681
2834
|
}
|
|
2682
2835
|
},
|
|
2683
2836
|
"required": [
|
|
2684
2837
|
"kind",
|
|
2685
2838
|
"nodeType",
|
|
2686
2839
|
"nodeId"
|
|
2687
|
-
]
|
|
2688
|
-
|
|
2689
|
-
}
|
|
2840
|
+
]
|
|
2841
|
+
},
|
|
2842
|
+
"input": {}
|
|
2690
2843
|
},
|
|
2691
|
-
"
|
|
2692
|
-
"target"
|
|
2693
|
-
],
|
|
2694
|
-
"type": "object"
|
|
2844
|
+
"additionalProperties": false
|
|
2695
2845
|
}
|
|
2696
2846
|
},
|
|
2697
2847
|
{
|
|
2698
2848
|
"name": "doc_lists_restart",
|
|
2699
2849
|
"description": "Restart numbering of an ordered list at the target item.",
|
|
2700
2850
|
"input_schema": {
|
|
2701
|
-
"
|
|
2851
|
+
"type": "object",
|
|
2702
2852
|
"properties": {
|
|
2853
|
+
"doc": {
|
|
2854
|
+
"type": "string"
|
|
2855
|
+
},
|
|
2856
|
+
"sessionId": {
|
|
2857
|
+
"type": "string"
|
|
2858
|
+
},
|
|
2859
|
+
"force": {
|
|
2860
|
+
"type": "boolean"
|
|
2861
|
+
},
|
|
2703
2862
|
"target": {
|
|
2704
|
-
"
|
|
2863
|
+
"type": "object",
|
|
2705
2864
|
"properties": {
|
|
2706
2865
|
"kind": {
|
|
2707
2866
|
"const": "block"
|
|
2708
2867
|
},
|
|
2709
|
-
"nodeId": {
|
|
2710
|
-
"type": "string"
|
|
2711
|
-
},
|
|
2712
2868
|
"nodeType": {
|
|
2713
2869
|
"const": "listItem"
|
|
2870
|
+
},
|
|
2871
|
+
"nodeId": {
|
|
2872
|
+
"type": "string"
|
|
2714
2873
|
}
|
|
2715
2874
|
},
|
|
2716
2875
|
"required": [
|
|
2717
2876
|
"kind",
|
|
2718
2877
|
"nodeType",
|
|
2719
2878
|
"nodeId"
|
|
2720
|
-
]
|
|
2721
|
-
|
|
2722
|
-
}
|
|
2723
|
-
},
|
|
2724
|
-
"
|
|
2725
|
-
"target"
|
|
2726
|
-
],
|
|
2727
|
-
"type": "object"
|
|
2879
|
+
]
|
|
2880
|
+
},
|
|
2881
|
+
"input": {}
|
|
2882
|
+
},
|
|
2883
|
+
"additionalProperties": false
|
|
2728
2884
|
}
|
|
2729
2885
|
},
|
|
2730
2886
|
{
|
|
2731
2887
|
"name": "doc_lists_exit",
|
|
2732
2888
|
"description": "Exit a list context, converting the target item to a paragraph.",
|
|
2733
2889
|
"input_schema": {
|
|
2734
|
-
"
|
|
2890
|
+
"type": "object",
|
|
2735
2891
|
"properties": {
|
|
2892
|
+
"doc": {
|
|
2893
|
+
"type": "string"
|
|
2894
|
+
},
|
|
2895
|
+
"sessionId": {
|
|
2896
|
+
"type": "string"
|
|
2897
|
+
},
|
|
2898
|
+
"force": {
|
|
2899
|
+
"type": "boolean"
|
|
2900
|
+
},
|
|
2736
2901
|
"target": {
|
|
2737
|
-
"
|
|
2902
|
+
"type": "object",
|
|
2738
2903
|
"properties": {
|
|
2739
2904
|
"kind": {
|
|
2740
2905
|
"const": "block"
|
|
2741
2906
|
},
|
|
2742
|
-
"nodeId": {
|
|
2743
|
-
"type": "string"
|
|
2744
|
-
},
|
|
2745
2907
|
"nodeType": {
|
|
2746
2908
|
"const": "listItem"
|
|
2909
|
+
},
|
|
2910
|
+
"nodeId": {
|
|
2911
|
+
"type": "string"
|
|
2747
2912
|
}
|
|
2748
2913
|
},
|
|
2749
2914
|
"required": [
|
|
2750
2915
|
"kind",
|
|
2751
2916
|
"nodeType",
|
|
2752
2917
|
"nodeId"
|
|
2753
|
-
]
|
|
2754
|
-
|
|
2755
|
-
}
|
|
2918
|
+
]
|
|
2919
|
+
},
|
|
2920
|
+
"input": {}
|
|
2756
2921
|
},
|
|
2757
|
-
"
|
|
2758
|
-
"target"
|
|
2759
|
-
],
|
|
2760
|
-
"type": "object"
|
|
2922
|
+
"additionalProperties": false
|
|
2761
2923
|
}
|
|
2762
2924
|
},
|
|
2763
2925
|
{
|
|
2764
2926
|
"name": "doc_comments_add",
|
|
2765
2927
|
"description": "Add a new comment thread anchored to a target range.",
|
|
2766
2928
|
"input_schema": {
|
|
2767
|
-
"
|
|
2929
|
+
"type": "object",
|
|
2768
2930
|
"properties": {
|
|
2931
|
+
"doc": {
|
|
2932
|
+
"type": "string"
|
|
2933
|
+
},
|
|
2934
|
+
"sessionId": {
|
|
2935
|
+
"type": "string"
|
|
2936
|
+
},
|
|
2937
|
+
"force": {
|
|
2938
|
+
"type": "boolean"
|
|
2939
|
+
},
|
|
2769
2940
|
"target": {
|
|
2770
|
-
"
|
|
2941
|
+
"type": "object",
|
|
2771
2942
|
"properties": {
|
|
2772
|
-
"blockId": {
|
|
2773
|
-
"type": "string"
|
|
2774
|
-
},
|
|
2775
2943
|
"kind": {
|
|
2776
2944
|
"const": "text"
|
|
2777
2945
|
},
|
|
2946
|
+
"blockId": {
|
|
2947
|
+
"type": "string"
|
|
2948
|
+
},
|
|
2778
2949
|
"range": {
|
|
2779
|
-
"
|
|
2950
|
+
"type": "object",
|
|
2780
2951
|
"properties": {
|
|
2781
|
-
"end": {
|
|
2782
|
-
"type": "integer"
|
|
2783
|
-
},
|
|
2784
2952
|
"start": {
|
|
2785
|
-
"type": "
|
|
2953
|
+
"type": "number"
|
|
2954
|
+
},
|
|
2955
|
+
"end": {
|
|
2956
|
+
"type": "number"
|
|
2786
2957
|
}
|
|
2787
2958
|
},
|
|
2788
2959
|
"required": [
|
|
2789
2960
|
"start",
|
|
2790
2961
|
"end"
|
|
2791
|
-
]
|
|
2792
|
-
"type": "object"
|
|
2962
|
+
]
|
|
2793
2963
|
}
|
|
2794
2964
|
},
|
|
2795
2965
|
"required": [
|
|
2796
2966
|
"kind",
|
|
2797
2967
|
"blockId",
|
|
2798
2968
|
"range"
|
|
2799
|
-
]
|
|
2800
|
-
"type": "object"
|
|
2969
|
+
]
|
|
2801
2970
|
},
|
|
2802
2971
|
"text": {
|
|
2803
2972
|
"type": "string"
|
|
@@ -2807,16 +2976,25 @@
|
|
|
2807
2976
|
"target",
|
|
2808
2977
|
"text"
|
|
2809
2978
|
],
|
|
2810
|
-
"
|
|
2979
|
+
"additionalProperties": false
|
|
2811
2980
|
}
|
|
2812
2981
|
},
|
|
2813
2982
|
{
|
|
2814
2983
|
"name": "doc_comments_edit",
|
|
2815
2984
|
"description": "Edit the content of an existing comment.",
|
|
2816
2985
|
"input_schema": {
|
|
2817
|
-
"
|
|
2986
|
+
"type": "object",
|
|
2818
2987
|
"properties": {
|
|
2819
|
-
"
|
|
2988
|
+
"doc": {
|
|
2989
|
+
"type": "string"
|
|
2990
|
+
},
|
|
2991
|
+
"sessionId": {
|
|
2992
|
+
"type": "string"
|
|
2993
|
+
},
|
|
2994
|
+
"force": {
|
|
2995
|
+
"type": "boolean"
|
|
2996
|
+
},
|
|
2997
|
+
"id": {
|
|
2820
2998
|
"type": "string"
|
|
2821
2999
|
},
|
|
2822
3000
|
"text": {
|
|
@@ -2824,19 +3002,28 @@
|
|
|
2824
3002
|
}
|
|
2825
3003
|
},
|
|
2826
3004
|
"required": [
|
|
2827
|
-
"
|
|
3005
|
+
"id",
|
|
2828
3006
|
"text"
|
|
2829
3007
|
],
|
|
2830
|
-
"
|
|
3008
|
+
"additionalProperties": false
|
|
2831
3009
|
}
|
|
2832
3010
|
},
|
|
2833
3011
|
{
|
|
2834
3012
|
"name": "doc_comments_reply",
|
|
2835
3013
|
"description": "Add a reply to an existing comment thread.",
|
|
2836
3014
|
"input_schema": {
|
|
2837
|
-
"
|
|
3015
|
+
"type": "object",
|
|
2838
3016
|
"properties": {
|
|
2839
|
-
"
|
|
3017
|
+
"doc": {
|
|
3018
|
+
"type": "string"
|
|
3019
|
+
},
|
|
3020
|
+
"sessionId": {
|
|
3021
|
+
"type": "string"
|
|
3022
|
+
},
|
|
3023
|
+
"force": {
|
|
3024
|
+
"type": "boolean"
|
|
3025
|
+
},
|
|
3026
|
+
"parentId": {
|
|
2840
3027
|
"type": "string"
|
|
2841
3028
|
},
|
|
2842
3029
|
"text": {
|
|
@@ -2844,101 +3031,135 @@
|
|
|
2844
3031
|
}
|
|
2845
3032
|
},
|
|
2846
3033
|
"required": [
|
|
2847
|
-
"
|
|
3034
|
+
"parentId",
|
|
2848
3035
|
"text"
|
|
2849
3036
|
],
|
|
2850
|
-
"
|
|
3037
|
+
"additionalProperties": false
|
|
2851
3038
|
}
|
|
2852
3039
|
},
|
|
2853
3040
|
{
|
|
2854
3041
|
"name": "doc_comments_move",
|
|
2855
3042
|
"description": "Move a comment thread to a new anchor range.",
|
|
2856
3043
|
"input_schema": {
|
|
2857
|
-
"
|
|
3044
|
+
"type": "object",
|
|
2858
3045
|
"properties": {
|
|
2859
|
-
"
|
|
3046
|
+
"doc": {
|
|
3047
|
+
"type": "string"
|
|
3048
|
+
},
|
|
3049
|
+
"sessionId": {
|
|
3050
|
+
"type": "string"
|
|
3051
|
+
},
|
|
3052
|
+
"force": {
|
|
3053
|
+
"type": "boolean"
|
|
3054
|
+
},
|
|
3055
|
+
"id": {
|
|
2860
3056
|
"type": "string"
|
|
2861
3057
|
},
|
|
2862
3058
|
"target": {
|
|
2863
|
-
"
|
|
3059
|
+
"type": "object",
|
|
2864
3060
|
"properties": {
|
|
2865
|
-
"blockId": {
|
|
2866
|
-
"type": "string"
|
|
2867
|
-
},
|
|
2868
3061
|
"kind": {
|
|
2869
3062
|
"const": "text"
|
|
2870
3063
|
},
|
|
3064
|
+
"blockId": {
|
|
3065
|
+
"type": "string"
|
|
3066
|
+
},
|
|
2871
3067
|
"range": {
|
|
2872
|
-
"
|
|
3068
|
+
"type": "object",
|
|
2873
3069
|
"properties": {
|
|
2874
|
-
"end": {
|
|
2875
|
-
"type": "integer"
|
|
2876
|
-
},
|
|
2877
3070
|
"start": {
|
|
2878
|
-
"type": "
|
|
3071
|
+
"type": "number"
|
|
3072
|
+
},
|
|
3073
|
+
"end": {
|
|
3074
|
+
"type": "number"
|
|
2879
3075
|
}
|
|
2880
3076
|
},
|
|
2881
3077
|
"required": [
|
|
2882
3078
|
"start",
|
|
2883
3079
|
"end"
|
|
2884
|
-
]
|
|
2885
|
-
"type": "object"
|
|
3080
|
+
]
|
|
2886
3081
|
}
|
|
2887
3082
|
},
|
|
2888
3083
|
"required": [
|
|
2889
3084
|
"kind",
|
|
2890
3085
|
"blockId",
|
|
2891
3086
|
"range"
|
|
2892
|
-
]
|
|
2893
|
-
"type": "object"
|
|
3087
|
+
]
|
|
2894
3088
|
}
|
|
2895
3089
|
},
|
|
2896
3090
|
"required": [
|
|
2897
|
-
"
|
|
3091
|
+
"id",
|
|
2898
3092
|
"target"
|
|
2899
3093
|
],
|
|
2900
|
-
"
|
|
3094
|
+
"additionalProperties": false
|
|
2901
3095
|
}
|
|
2902
3096
|
},
|
|
2903
3097
|
{
|
|
2904
3098
|
"name": "doc_comments_resolve",
|
|
2905
3099
|
"description": "Resolve or unresolve a comment thread.",
|
|
2906
3100
|
"input_schema": {
|
|
2907
|
-
"
|
|
3101
|
+
"type": "object",
|
|
2908
3102
|
"properties": {
|
|
2909
|
-
"
|
|
3103
|
+
"doc": {
|
|
3104
|
+
"type": "string"
|
|
3105
|
+
},
|
|
3106
|
+
"sessionId": {
|
|
3107
|
+
"type": "string"
|
|
3108
|
+
},
|
|
3109
|
+
"force": {
|
|
3110
|
+
"type": "boolean"
|
|
3111
|
+
},
|
|
3112
|
+
"id": {
|
|
2910
3113
|
"type": "string"
|
|
2911
3114
|
}
|
|
2912
3115
|
},
|
|
2913
3116
|
"required": [
|
|
2914
|
-
"
|
|
3117
|
+
"id"
|
|
2915
3118
|
],
|
|
2916
|
-
"
|
|
3119
|
+
"additionalProperties": false
|
|
2917
3120
|
}
|
|
2918
3121
|
},
|
|
2919
3122
|
{
|
|
2920
3123
|
"name": "doc_comments_remove",
|
|
2921
3124
|
"description": "Remove a comment or reply by ID.",
|
|
2922
3125
|
"input_schema": {
|
|
2923
|
-
"
|
|
3126
|
+
"type": "object",
|
|
2924
3127
|
"properties": {
|
|
2925
|
-
"
|
|
3128
|
+
"doc": {
|
|
3129
|
+
"type": "string"
|
|
3130
|
+
},
|
|
3131
|
+
"sessionId": {
|
|
3132
|
+
"type": "string"
|
|
3133
|
+
},
|
|
3134
|
+
"force": {
|
|
3135
|
+
"type": "boolean"
|
|
3136
|
+
},
|
|
3137
|
+
"id": {
|
|
2926
3138
|
"type": "string"
|
|
2927
3139
|
}
|
|
2928
3140
|
},
|
|
2929
3141
|
"required": [
|
|
2930
|
-
"
|
|
3142
|
+
"id"
|
|
2931
3143
|
],
|
|
2932
|
-
"
|
|
3144
|
+
"additionalProperties": false
|
|
2933
3145
|
}
|
|
2934
3146
|
},
|
|
2935
3147
|
{
|
|
2936
3148
|
"name": "doc_comments_setInternal",
|
|
2937
3149
|
"description": "Toggle the internal (private) flag on a comment thread.",
|
|
2938
3150
|
"input_schema": {
|
|
2939
|
-
"
|
|
3151
|
+
"type": "object",
|
|
2940
3152
|
"properties": {
|
|
2941
|
-
"
|
|
3153
|
+
"doc": {
|
|
3154
|
+
"type": "string"
|
|
3155
|
+
},
|
|
3156
|
+
"sessionId": {
|
|
3157
|
+
"type": "string"
|
|
3158
|
+
},
|
|
3159
|
+
"force": {
|
|
3160
|
+
"type": "boolean"
|
|
3161
|
+
},
|
|
3162
|
+
"id": {
|
|
2942
3163
|
"type": "string"
|
|
2943
3164
|
},
|
|
2944
3165
|
"isInternal": {
|
|
@@ -2946,105 +3167,140 @@
|
|
|
2946
3167
|
}
|
|
2947
3168
|
},
|
|
2948
3169
|
"required": [
|
|
2949
|
-
"
|
|
3170
|
+
"id",
|
|
2950
3171
|
"isInternal"
|
|
2951
3172
|
],
|
|
2952
|
-
"
|
|
3173
|
+
"additionalProperties": false
|
|
2953
3174
|
}
|
|
2954
3175
|
},
|
|
2955
3176
|
{
|
|
2956
3177
|
"name": "doc_comments_setActive",
|
|
2957
3178
|
"description": "Set the active (focused) comment thread for UI highlighting.",
|
|
2958
3179
|
"input_schema": {
|
|
2959
|
-
"
|
|
3180
|
+
"type": "object",
|
|
2960
3181
|
"properties": {
|
|
3182
|
+
"doc": {
|
|
3183
|
+
"type": "string"
|
|
3184
|
+
},
|
|
3185
|
+
"sessionId": {
|
|
3186
|
+
"type": "string"
|
|
3187
|
+
},
|
|
3188
|
+
"force": {
|
|
3189
|
+
"type": "boolean"
|
|
3190
|
+
},
|
|
2961
3191
|
"commentId": {
|
|
2962
|
-
"type":
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
3192
|
+
"type": "json"
|
|
3193
|
+
},
|
|
3194
|
+
"id": {
|
|
3195
|
+
"type": "string"
|
|
3196
|
+
},
|
|
3197
|
+
"clear": {
|
|
3198
|
+
"type": "boolean"
|
|
2966
3199
|
}
|
|
2967
3200
|
},
|
|
2968
|
-
"
|
|
2969
|
-
"commentId"
|
|
2970
|
-
],
|
|
2971
|
-
"type": "object"
|
|
3201
|
+
"additionalProperties": false
|
|
2972
3202
|
}
|
|
2973
3203
|
},
|
|
2974
3204
|
{
|
|
2975
3205
|
"name": "doc_comments_goTo",
|
|
2976
3206
|
"description": "Scroll the viewport to a comment thread by ID.",
|
|
2977
3207
|
"input_schema": {
|
|
2978
|
-
"
|
|
3208
|
+
"type": "object",
|
|
2979
3209
|
"properties": {
|
|
2980
|
-
"
|
|
3210
|
+
"doc": {
|
|
3211
|
+
"type": "string"
|
|
3212
|
+
},
|
|
3213
|
+
"sessionId": {
|
|
3214
|
+
"type": "string"
|
|
3215
|
+
},
|
|
3216
|
+
"id": {
|
|
2981
3217
|
"type": "string"
|
|
2982
3218
|
}
|
|
2983
3219
|
},
|
|
2984
3220
|
"required": [
|
|
2985
|
-
"
|
|
3221
|
+
"id"
|
|
2986
3222
|
],
|
|
2987
|
-
"
|
|
3223
|
+
"additionalProperties": false
|
|
2988
3224
|
}
|
|
2989
3225
|
},
|
|
2990
3226
|
{
|
|
2991
3227
|
"name": "doc_comments_get",
|
|
2992
3228
|
"description": "Retrieve a single comment thread by ID.",
|
|
2993
3229
|
"input_schema": {
|
|
2994
|
-
"
|
|
3230
|
+
"type": "object",
|
|
2995
3231
|
"properties": {
|
|
2996
|
-
"
|
|
3232
|
+
"doc": {
|
|
3233
|
+
"type": "string"
|
|
3234
|
+
},
|
|
3235
|
+
"sessionId": {
|
|
3236
|
+
"type": "string"
|
|
3237
|
+
},
|
|
3238
|
+
"id": {
|
|
2997
3239
|
"type": "string"
|
|
2998
3240
|
}
|
|
2999
3241
|
},
|
|
3000
3242
|
"required": [
|
|
3001
|
-
"
|
|
3243
|
+
"id"
|
|
3002
3244
|
],
|
|
3003
|
-
"
|
|
3245
|
+
"additionalProperties": false
|
|
3004
3246
|
}
|
|
3005
3247
|
},
|
|
3006
3248
|
{
|
|
3007
3249
|
"name": "doc_comments_list",
|
|
3008
3250
|
"description": "List all comment threads in the document.",
|
|
3009
3251
|
"input_schema": {
|
|
3010
|
-
"
|
|
3252
|
+
"type": "object",
|
|
3011
3253
|
"properties": {
|
|
3254
|
+
"doc": {
|
|
3255
|
+
"type": "string"
|
|
3256
|
+
},
|
|
3257
|
+
"sessionId": {
|
|
3258
|
+
"type": "string"
|
|
3259
|
+
},
|
|
3012
3260
|
"includeResolved": {
|
|
3013
3261
|
"type": "boolean"
|
|
3014
3262
|
}
|
|
3015
3263
|
},
|
|
3016
|
-
"
|
|
3264
|
+
"additionalProperties": false
|
|
3017
3265
|
}
|
|
3018
3266
|
},
|
|
3019
3267
|
{
|
|
3020
3268
|
"name": "doc_trackChanges_list",
|
|
3021
3269
|
"description": "List all tracked changes in the document.",
|
|
3022
3270
|
"input_schema": {
|
|
3023
|
-
"
|
|
3271
|
+
"type": "object",
|
|
3024
3272
|
"properties": {
|
|
3273
|
+
"doc": {
|
|
3274
|
+
"type": "string"
|
|
3275
|
+
},
|
|
3276
|
+
"sessionId": {
|
|
3277
|
+
"type": "string"
|
|
3278
|
+
},
|
|
3025
3279
|
"limit": {
|
|
3026
|
-
"type": "
|
|
3280
|
+
"type": "number"
|
|
3027
3281
|
},
|
|
3028
3282
|
"offset": {
|
|
3029
|
-
"type": "
|
|
3283
|
+
"type": "number"
|
|
3030
3284
|
},
|
|
3031
3285
|
"type": {
|
|
3032
|
-
"
|
|
3033
|
-
"insert",
|
|
3034
|
-
"delete",
|
|
3035
|
-
"format"
|
|
3036
|
-
]
|
|
3286
|
+
"type": "string"
|
|
3037
3287
|
}
|
|
3038
3288
|
},
|
|
3039
|
-
"
|
|
3289
|
+
"additionalProperties": false
|
|
3040
3290
|
}
|
|
3041
3291
|
},
|
|
3042
3292
|
{
|
|
3043
3293
|
"name": "doc_trackChanges_get",
|
|
3044
3294
|
"description": "Retrieve a single tracked change by ID.",
|
|
3045
3295
|
"input_schema": {
|
|
3046
|
-
"
|
|
3296
|
+
"type": "object",
|
|
3047
3297
|
"properties": {
|
|
3298
|
+
"doc": {
|
|
3299
|
+
"type": "string"
|
|
3300
|
+
},
|
|
3301
|
+
"sessionId": {
|
|
3302
|
+
"type": "string"
|
|
3303
|
+
},
|
|
3048
3304
|
"id": {
|
|
3049
3305
|
"type": "string"
|
|
3050
3306
|
}
|
|
@@ -3052,15 +3308,24 @@
|
|
|
3052
3308
|
"required": [
|
|
3053
3309
|
"id"
|
|
3054
3310
|
],
|
|
3055
|
-
"
|
|
3311
|
+
"additionalProperties": false
|
|
3056
3312
|
}
|
|
3057
3313
|
},
|
|
3058
3314
|
{
|
|
3059
3315
|
"name": "doc_trackChanges_accept",
|
|
3060
3316
|
"description": "Accept a tracked change, applying it permanently.",
|
|
3061
3317
|
"input_schema": {
|
|
3062
|
-
"
|
|
3318
|
+
"type": "object",
|
|
3063
3319
|
"properties": {
|
|
3320
|
+
"doc": {
|
|
3321
|
+
"type": "string"
|
|
3322
|
+
},
|
|
3323
|
+
"sessionId": {
|
|
3324
|
+
"type": "string"
|
|
3325
|
+
},
|
|
3326
|
+
"force": {
|
|
3327
|
+
"type": "boolean"
|
|
3328
|
+
},
|
|
3064
3329
|
"id": {
|
|
3065
3330
|
"type": "string"
|
|
3066
3331
|
}
|
|
@@ -3068,15 +3333,24 @@
|
|
|
3068
3333
|
"required": [
|
|
3069
3334
|
"id"
|
|
3070
3335
|
],
|
|
3071
|
-
"
|
|
3336
|
+
"additionalProperties": false
|
|
3072
3337
|
}
|
|
3073
3338
|
},
|
|
3074
3339
|
{
|
|
3075
3340
|
"name": "doc_trackChanges_reject",
|
|
3076
3341
|
"description": "Reject a tracked change, reverting it.",
|
|
3077
3342
|
"input_schema": {
|
|
3078
|
-
"
|
|
3343
|
+
"type": "object",
|
|
3079
3344
|
"properties": {
|
|
3345
|
+
"doc": {
|
|
3346
|
+
"type": "string"
|
|
3347
|
+
},
|
|
3348
|
+
"sessionId": {
|
|
3349
|
+
"type": "string"
|
|
3350
|
+
},
|
|
3351
|
+
"force": {
|
|
3352
|
+
"type": "boolean"
|
|
3353
|
+
},
|
|
3080
3354
|
"id": {
|
|
3081
3355
|
"type": "string"
|
|
3082
3356
|
}
|
|
@@ -3084,25 +3358,45 @@
|
|
|
3084
3358
|
"required": [
|
|
3085
3359
|
"id"
|
|
3086
3360
|
],
|
|
3087
|
-
"
|
|
3361
|
+
"additionalProperties": false
|
|
3088
3362
|
}
|
|
3089
3363
|
},
|
|
3090
3364
|
{
|
|
3091
3365
|
"name": "doc_trackChanges_acceptAll",
|
|
3092
3366
|
"description": "Accept all tracked changes in the document.",
|
|
3093
3367
|
"input_schema": {
|
|
3094
|
-
"
|
|
3095
|
-
"properties": {
|
|
3096
|
-
|
|
3368
|
+
"type": "object",
|
|
3369
|
+
"properties": {
|
|
3370
|
+
"doc": {
|
|
3371
|
+
"type": "string"
|
|
3372
|
+
},
|
|
3373
|
+
"sessionId": {
|
|
3374
|
+
"type": "string"
|
|
3375
|
+
},
|
|
3376
|
+
"force": {
|
|
3377
|
+
"type": "boolean"
|
|
3378
|
+
}
|
|
3379
|
+
},
|
|
3380
|
+
"additionalProperties": false
|
|
3097
3381
|
}
|
|
3098
3382
|
},
|
|
3099
3383
|
{
|
|
3100
3384
|
"name": "doc_trackChanges_rejectAll",
|
|
3101
3385
|
"description": "Reject all tracked changes in the document.",
|
|
3102
3386
|
"input_schema": {
|
|
3103
|
-
"
|
|
3104
|
-
"properties": {
|
|
3105
|
-
|
|
3387
|
+
"type": "object",
|
|
3388
|
+
"properties": {
|
|
3389
|
+
"doc": {
|
|
3390
|
+
"type": "string"
|
|
3391
|
+
},
|
|
3392
|
+
"sessionId": {
|
|
3393
|
+
"type": "string"
|
|
3394
|
+
},
|
|
3395
|
+
"force": {
|
|
3396
|
+
"type": "boolean"
|
|
3397
|
+
}
|
|
3398
|
+
},
|
|
3399
|
+
"additionalProperties": false
|
|
3106
3400
|
}
|
|
3107
3401
|
},
|
|
3108
3402
|
{
|