@superdoc-dev/cli 0.3.0-next.37 → 0.3.0-next.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +930 -331
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -7254,8 +7254,20 @@ function ref(name) {
|
|
|
7254
7254
|
function targetLocatorWithPayload(payloadProperties, payloadRequired = []) {
|
|
7255
7255
|
return {
|
|
7256
7256
|
oneOf: [
|
|
7257
|
-
objectSchema({
|
|
7258
|
-
|
|
7257
|
+
objectSchema({
|
|
7258
|
+
target: {
|
|
7259
|
+
...ref("SelectionTarget"),
|
|
7260
|
+
description: "Selection target: {kind:'selection', start:{kind:'text', blockId, offset}, end:{kind:'text', blockId, offset}}. Use 'ref' instead when you have a search result handle."
|
|
7261
|
+
},
|
|
7262
|
+
...payloadProperties
|
|
7263
|
+
}, ["target", ...payloadRequired]),
|
|
7264
|
+
objectSchema({
|
|
7265
|
+
ref: {
|
|
7266
|
+
type: "string",
|
|
7267
|
+
description: "Handle ref string from a superdoc_search result. Pass the handle.ref value directly (e.g. 'text:eyJ...'). Preferred over 'target' for inline formatting."
|
|
7268
|
+
},
|
|
7269
|
+
...payloadProperties
|
|
7270
|
+
}, ["ref", ...payloadRequired])
|
|
7259
7271
|
]
|
|
7260
7272
|
};
|
|
7261
7273
|
}
|
|
@@ -7907,6 +7919,7 @@ var init_schemas = __esm(() => {
|
|
|
7907
7919
|
nodeId: { type: "string" }
|
|
7908
7920
|
}, ["kind", "nodeType", "nodeId"]),
|
|
7909
7921
|
SelectionPoint: {
|
|
7922
|
+
description: "A point in the document. Use {kind:'text', blockId, offset} for character positions or {kind:'nodeEdge', node:{kind:'block', nodeType, nodeId}, edge:'before'|'after'} for block boundaries.",
|
|
7910
7923
|
oneOf: [
|
|
7911
7924
|
objectSchema({ kind: { const: "text" }, blockId: { type: "string" }, offset: { type: "integer", minimum: 0 } }, [
|
|
7912
7925
|
"kind",
|
|
@@ -8191,15 +8204,18 @@ var init_schemas = __esm(() => {
|
|
|
8191
8204
|
hint: { type: "string" }
|
|
8192
8205
|
}, ["message"]);
|
|
8193
8206
|
textSelectorSchema = objectSchema({
|
|
8194
|
-
type: { const: "text" },
|
|
8195
|
-
pattern: { type: "string" },
|
|
8196
|
-
mode: { enum: ["contains", "regex"] },
|
|
8197
|
-
caseSensitive: { type: "boolean" }
|
|
8207
|
+
type: { const: "text", description: "Must be 'text' for text pattern search." },
|
|
8208
|
+
pattern: { type: "string", description: "Text or regex pattern to match." },
|
|
8209
|
+
mode: { enum: ["contains", "regex"], description: "Match mode: 'contains' (substring) or 'regex'." },
|
|
8210
|
+
caseSensitive: { type: "boolean", description: "Case-sensitive matching. Default: false." }
|
|
8198
8211
|
}, ["type", "pattern"]);
|
|
8199
8212
|
nodeSelectorSchema = objectSchema({
|
|
8200
|
-
type: { const: "node" },
|
|
8201
|
-
nodeType: {
|
|
8202
|
-
|
|
8213
|
+
type: { const: "node", description: "Must be 'node' for node type search." },
|
|
8214
|
+
nodeType: {
|
|
8215
|
+
enum: [...nodeTypeValues],
|
|
8216
|
+
description: "Block type to match (paragraph, heading, table, listItem, etc.)."
|
|
8217
|
+
},
|
|
8218
|
+
kind: { enum: ["block", "inline"], description: "Filter: 'block' or 'inline'." }
|
|
8203
8219
|
}, ["type"]);
|
|
8204
8220
|
selectorShorthandSchema = objectSchema({
|
|
8205
8221
|
nodeType: { enum: [...nodeTypeValues] }
|
|
@@ -8580,20 +8596,36 @@ var init_schemas = __esm(() => {
|
|
|
8580
8596
|
oneOf: [{ type: "object" }, { type: "array", items: { type: "object" } }]
|
|
8581
8597
|
};
|
|
8582
8598
|
placementSchema = { enum: ["before", "after", "insideStart", "insideEnd"] };
|
|
8583
|
-
nestingPolicySchema =
|
|
8584
|
-
|
|
8585
|
-
|
|
8599
|
+
nestingPolicySchema = {
|
|
8600
|
+
...objectSchema({
|
|
8601
|
+
tables: { enum: ["forbid", "allow"] }
|
|
8602
|
+
}),
|
|
8603
|
+
description: "Controls nesting behavior. tables: 'allow' permits inserting tables inside other tables."
|
|
8604
|
+
};
|
|
8586
8605
|
insertInputSchema = {
|
|
8587
8606
|
oneOf: [
|
|
8588
8607
|
objectSchema({
|
|
8589
|
-
target:
|
|
8590
|
-
|
|
8591
|
-
|
|
8608
|
+
target: {
|
|
8609
|
+
...textAddressSchema,
|
|
8610
|
+
description: "Insertion point: {kind:'text', blockId:'...', range:{start, end}}."
|
|
8611
|
+
},
|
|
8612
|
+
value: { type: "string", description: "Text content to insert." },
|
|
8613
|
+
type: {
|
|
8614
|
+
type: "string",
|
|
8615
|
+
enum: ["text", "markdown", "html"],
|
|
8616
|
+
description: "Content format: 'text' (default), 'markdown', or 'html'."
|
|
8617
|
+
}
|
|
8592
8618
|
}, ["value"]),
|
|
8593
8619
|
objectSchema({
|
|
8594
|
-
target:
|
|
8595
|
-
|
|
8596
|
-
|
|
8620
|
+
target: {
|
|
8621
|
+
...blockNodeAddressSchema,
|
|
8622
|
+
description: "Block address for structural insertion: {kind:'block', nodeType:'...', nodeId:'...'}."
|
|
8623
|
+
},
|
|
8624
|
+
content: { ...sdFragmentSchema, description: "Document fragment to insert (structured content)." },
|
|
8625
|
+
placement: {
|
|
8626
|
+
...placementSchema,
|
|
8627
|
+
description: "Where to place content relative to target: 'before', 'after', 'insideStart', or 'insideEnd'."
|
|
8628
|
+
},
|
|
8597
8629
|
nestingPolicy: nestingPolicySchema
|
|
8598
8630
|
}, ["content"])
|
|
8599
8631
|
]
|
|
@@ -9066,7 +9098,10 @@ var init_schemas = __esm(() => {
|
|
|
9066
9098
|
},
|
|
9067
9099
|
getHtml: {
|
|
9068
9100
|
input: objectSchema({
|
|
9069
|
-
unflattenLists: {
|
|
9101
|
+
unflattenLists: {
|
|
9102
|
+
type: "boolean",
|
|
9103
|
+
description: "When true, flattens nested list structures in output. Default: false."
|
|
9104
|
+
}
|
|
9070
9105
|
}),
|
|
9071
9106
|
output: { type: "string" }
|
|
9072
9107
|
},
|
|
@@ -9103,18 +9138,27 @@ var init_schemas = __esm(() => {
|
|
|
9103
9138
|
input: {
|
|
9104
9139
|
oneOf: [
|
|
9105
9140
|
{
|
|
9106
|
-
...targetLocatorWithPayload({ text: { type: "string" } }, ["text"])
|
|
9141
|
+
...targetLocatorWithPayload({ text: { type: "string", description: "Replacement text content." } }, ["text"])
|
|
9107
9142
|
},
|
|
9108
9143
|
{
|
|
9109
9144
|
oneOf: [
|
|
9110
9145
|
objectSchema({
|
|
9111
|
-
target: {
|
|
9112
|
-
|
|
9146
|
+
target: {
|
|
9147
|
+
oneOf: [blockNodeAddressSchema, selectionTargetSchema],
|
|
9148
|
+
description: "Target block or selection to replace."
|
|
9149
|
+
},
|
|
9150
|
+
content: {
|
|
9151
|
+
...sdFragmentSchema,
|
|
9152
|
+
description: "Document fragment to replace with (structured content)."
|
|
9153
|
+
},
|
|
9113
9154
|
nestingPolicy: nestingPolicySchema
|
|
9114
9155
|
}, ["target", "content"]),
|
|
9115
9156
|
objectSchema({
|
|
9116
|
-
ref: { type: "string" },
|
|
9117
|
-
content:
|
|
9157
|
+
ref: { type: "string", description: "Reference handle from a previous search result." },
|
|
9158
|
+
content: {
|
|
9159
|
+
...sdFragmentSchema,
|
|
9160
|
+
description: "Document fragment to replace with (structured content)."
|
|
9161
|
+
},
|
|
9118
9162
|
nestingPolicy: nestingPolicySchema
|
|
9119
9163
|
}, ["ref", "content"])
|
|
9120
9164
|
]
|
|
@@ -9127,7 +9171,9 @@ var init_schemas = __esm(() => {
|
|
|
9127
9171
|
},
|
|
9128
9172
|
delete: {
|
|
9129
9173
|
input: {
|
|
9130
|
-
...targetLocatorWithPayload({
|
|
9174
|
+
...targetLocatorWithPayload({
|
|
9175
|
+
behavior: { ...deleteBehaviorSchema, description: "Delete behavior: 'selection' (default) or 'exact'." }
|
|
9176
|
+
})
|
|
9131
9177
|
},
|
|
9132
9178
|
output: textMutationResultSchemaFor("delete"),
|
|
9133
9179
|
success: textMutationSuccessSchema,
|
|
@@ -9135,7 +9181,12 @@ var init_schemas = __esm(() => {
|
|
|
9135
9181
|
},
|
|
9136
9182
|
"format.apply": {
|
|
9137
9183
|
input: {
|
|
9138
|
-
...targetLocatorWithPayload({
|
|
9184
|
+
...targetLocatorWithPayload({
|
|
9185
|
+
inline: {
|
|
9186
|
+
...buildInlineRunPatchSchema(),
|
|
9187
|
+
description: "Inline formatting properties to apply. Set a property to apply it, use null to clear it. Example: {bold: true, italic: true} or {bold: null} to remove bold."
|
|
9188
|
+
}
|
|
9189
|
+
}, ["inline"])
|
|
9139
9190
|
},
|
|
9140
9191
|
output: textMutationResultSchemaFor("format.apply"),
|
|
9141
9192
|
success: textMutationSuccessSchema,
|
|
@@ -9261,10 +9312,18 @@ var init_schemas = __esm(() => {
|
|
|
9261
9312
|
input: {
|
|
9262
9313
|
...objectSchema({
|
|
9263
9314
|
target: paragraphTargetSchema,
|
|
9264
|
-
left: { type: "integer", minimum: 0 },
|
|
9265
|
-
right: { type: "integer", minimum: 0 },
|
|
9266
|
-
firstLine: {
|
|
9267
|
-
|
|
9315
|
+
left: { type: "integer", minimum: 0, description: "Left indentation in twips (1440 = 1 inch)." },
|
|
9316
|
+
right: { type: "integer", minimum: 0, description: "Right indentation in twips (1440 = 1 inch)." },
|
|
9317
|
+
firstLine: {
|
|
9318
|
+
type: "integer",
|
|
9319
|
+
minimum: 0,
|
|
9320
|
+
description: "First line indent in twips. Cannot be combined with hanging."
|
|
9321
|
+
},
|
|
9322
|
+
hanging: {
|
|
9323
|
+
type: "integer",
|
|
9324
|
+
minimum: 0,
|
|
9325
|
+
description: "Hanging indent in twips. Cannot be combined with firstLine."
|
|
9326
|
+
}
|
|
9268
9327
|
}, ["target"]),
|
|
9269
9328
|
anyOf: [{ required: ["left"] }, { required: ["right"] }, { required: ["firstLine"] }, { required: ["hanging"] }],
|
|
9270
9329
|
not: { required: ["firstLine", "hanging"] }
|
|
@@ -9283,10 +9342,17 @@ var init_schemas = __esm(() => {
|
|
|
9283
9342
|
input: {
|
|
9284
9343
|
...objectSchema({
|
|
9285
9344
|
target: paragraphTargetSchema,
|
|
9286
|
-
before: { type: "integer", minimum: 0 },
|
|
9287
|
-
after: { type: "integer", minimum: 0 },
|
|
9288
|
-
line: {
|
|
9289
|
-
|
|
9345
|
+
before: { type: "integer", minimum: 0, description: "Space before paragraph in twips (20 twips = 1pt)." },
|
|
9346
|
+
after: { type: "integer", minimum: 0, description: "Space after paragraph in twips (20 twips = 1pt)." },
|
|
9347
|
+
line: {
|
|
9348
|
+
type: "integer",
|
|
9349
|
+
minimum: 1,
|
|
9350
|
+
description: "Line spacing value. Meaning depends on lineRule. Must be provided together with lineRule."
|
|
9351
|
+
},
|
|
9352
|
+
lineRule: {
|
|
9353
|
+
enum: [...LINE_RULES],
|
|
9354
|
+
description: "Line spacing rule. Required when 'line' is set."
|
|
9355
|
+
}
|
|
9290
9356
|
}, ["target"]),
|
|
9291
9357
|
anyOf: [{ required: ["before"] }, { required: ["after"] }, { required: ["line"] }, { required: ["lineRule"] }],
|
|
9292
9358
|
if: { required: ["line"] },
|
|
@@ -9474,6 +9540,7 @@ var init_schemas = __esm(() => {
|
|
|
9474
9540
|
"create.paragraph": {
|
|
9475
9541
|
input: objectSchema({
|
|
9476
9542
|
at: {
|
|
9543
|
+
description: "Position: {kind:'documentEnd'} to append, {kind:'documentStart'} to prepend, or {kind:'before'|'after', target:{kind:'block', nodeType:'...', nodeId:'...'}} for relative placement.",
|
|
9477
9544
|
oneOf: [
|
|
9478
9545
|
objectSchema({ kind: { const: "documentStart" } }, ["kind"]),
|
|
9479
9546
|
objectSchema({ kind: { const: "documentEnd" } }, ["kind"]),
|
|
@@ -9487,7 +9554,7 @@ var init_schemas = __esm(() => {
|
|
|
9487
9554
|
}, ["kind", "target"])
|
|
9488
9555
|
]
|
|
9489
9556
|
},
|
|
9490
|
-
text: { type: "string" }
|
|
9557
|
+
text: { type: "string", description: "Paragraph text content." }
|
|
9491
9558
|
}),
|
|
9492
9559
|
output: createParagraphResultSchemaFor("create.paragraph"),
|
|
9493
9560
|
success: createParagraphSuccessSchema,
|
|
@@ -9495,8 +9562,9 @@ var init_schemas = __esm(() => {
|
|
|
9495
9562
|
},
|
|
9496
9563
|
"create.heading": {
|
|
9497
9564
|
input: objectSchema({
|
|
9498
|
-
level: headingLevelSchema,
|
|
9565
|
+
level: { ...headingLevelSchema, description: "Heading level (1-6)." },
|
|
9499
9566
|
at: {
|
|
9567
|
+
description: "Position: {kind:'documentEnd'} to append, {kind:'documentStart'} to prepend, or {kind:'before'|'after', target:{kind:'block', nodeType:'...', nodeId:'...'}} for relative placement.",
|
|
9500
9568
|
oneOf: [
|
|
9501
9569
|
objectSchema({ kind: { const: "documentStart" } }, ["kind"]),
|
|
9502
9570
|
objectSchema({ kind: { const: "documentEnd" } }, ["kind"]),
|
|
@@ -9510,7 +9578,7 @@ var init_schemas = __esm(() => {
|
|
|
9510
9578
|
}, ["kind", "target"])
|
|
9511
9579
|
]
|
|
9512
9580
|
},
|
|
9513
|
-
text: { type: "string" }
|
|
9581
|
+
text: { type: "string", description: "Heading text content." }
|
|
9514
9582
|
}, ["level"]),
|
|
9515
9583
|
output: createHeadingResultSchemaFor("create.heading"),
|
|
9516
9584
|
success: createHeadingSuccessSchema,
|
|
@@ -9756,9 +9824,15 @@ var init_schemas = __esm(() => {
|
|
|
9756
9824
|
},
|
|
9757
9825
|
"lists.insert": {
|
|
9758
9826
|
input: objectSchema({
|
|
9759
|
-
target:
|
|
9760
|
-
|
|
9761
|
-
|
|
9827
|
+
target: {
|
|
9828
|
+
...listItemAddressSchema,
|
|
9829
|
+
description: "The target list item. For 'insert': the item to insert relative to. For 'create' with mode 'fromParagraphs': use nodeType 'paragraph' instead. Format: {kind:'block', nodeType:'listItem', nodeId:'<id>'}."
|
|
9830
|
+
},
|
|
9831
|
+
position: {
|
|
9832
|
+
...listInsertPositionSchema,
|
|
9833
|
+
description: "Required. Insert position relative to target: 'before' or 'after'."
|
|
9834
|
+
},
|
|
9835
|
+
text: { type: "string", description: "Text content for the new list item." }
|
|
9762
9836
|
}, ["target", "position"]),
|
|
9763
9837
|
output: listsInsertResultSchemaFor("lists.insert"),
|
|
9764
9838
|
success: listsInsertSuccessSchema,
|
|
@@ -9768,11 +9842,28 @@ var init_schemas = __esm(() => {
|
|
|
9768
9842
|
input: {
|
|
9769
9843
|
type: "object",
|
|
9770
9844
|
properties: {
|
|
9771
|
-
mode: {
|
|
9772
|
-
|
|
9773
|
-
|
|
9774
|
-
|
|
9775
|
-
|
|
9845
|
+
mode: {
|
|
9846
|
+
enum: ["empty", "fromParagraphs"],
|
|
9847
|
+
description: "Required. Creation mode: 'empty' creates a new empty list at the paragraph specified by 'at'; 'fromParagraphs' converts existing paragraph(s) specified by 'target' into list items."
|
|
9848
|
+
},
|
|
9849
|
+
at: {
|
|
9850
|
+
...ref("BlockAddress"),
|
|
9851
|
+
description: "Required when mode is 'empty'. The paragraph to create the list at. Format: {kind:'block', nodeType:'paragraph', nodeId:'<id>'}."
|
|
9852
|
+
},
|
|
9853
|
+
target: {
|
|
9854
|
+
...ref("BlockAddressOrRange"),
|
|
9855
|
+
description: "Required when mode is 'fromParagraphs'. The paragraph(s) to convert into list items. Format: {kind:'block', nodeType:'paragraph', nodeId:'<id>'}."
|
|
9856
|
+
},
|
|
9857
|
+
kind: {
|
|
9858
|
+
...listKindSchema,
|
|
9859
|
+
description: "List type: 'bullet' for bullet points, 'ordered' for numbered lists."
|
|
9860
|
+
},
|
|
9861
|
+
level: {
|
|
9862
|
+
type: "integer",
|
|
9863
|
+
minimum: 0,
|
|
9864
|
+
maximum: 8,
|
|
9865
|
+
description: "List nesting level (0-8). 0 is the top level."
|
|
9866
|
+
},
|
|
9776
9867
|
preset: {
|
|
9777
9868
|
enum: [
|
|
9778
9869
|
"decimal",
|
|
@@ -9785,7 +9876,8 @@ var init_schemas = __esm(() => {
|
|
|
9785
9876
|
"circle",
|
|
9786
9877
|
"square",
|
|
9787
9878
|
"dash"
|
|
9788
|
-
]
|
|
9879
|
+
],
|
|
9880
|
+
description: "Predefined list style preset. Overrides 'kind' with a specific numbering or bullet format."
|
|
9789
9881
|
},
|
|
9790
9882
|
style: objectSchema({
|
|
9791
9883
|
version: { const: 1 },
|
|
@@ -10050,7 +10142,10 @@ var init_schemas = __esm(() => {
|
|
|
10050
10142
|
input: objectSchema({
|
|
10051
10143
|
target: listItemAddressSchema,
|
|
10052
10144
|
kind: { enum: ["ordered", "bullet"] },
|
|
10053
|
-
continuity: {
|
|
10145
|
+
continuity: {
|
|
10146
|
+
enum: ["preserve", "none"],
|
|
10147
|
+
description: "Numbering continuity: 'preserve' keeps numbering; 'none' restarts."
|
|
10148
|
+
}
|
|
10054
10149
|
}, ["target", "kind"]),
|
|
10055
10150
|
output: listsMutateItemResultSchemaFor("lists.setType"),
|
|
10056
10151
|
success: listsMutateItemSuccessSchema,
|
|
@@ -10298,9 +10393,12 @@ var init_schemas = __esm(() => {
|
|
|
10298
10393
|
},
|
|
10299
10394
|
"comments.create": {
|
|
10300
10395
|
input: objectSchema({
|
|
10301
|
-
text: { type: "string" },
|
|
10302
|
-
target:
|
|
10303
|
-
|
|
10396
|
+
text: { type: "string", description: "Comment text content." },
|
|
10397
|
+
target: {
|
|
10398
|
+
...textAddressSchema,
|
|
10399
|
+
description: "Text range to anchor the comment: {kind:'text', blockId:'...', range:{start:N, end:N}}."
|
|
10400
|
+
},
|
|
10401
|
+
parentCommentId: { type: "string", description: "Parent comment ID for creating a threaded reply." }
|
|
10304
10402
|
}, ["text"]),
|
|
10305
10403
|
output: receiptResultSchemaFor("comments.create"),
|
|
10306
10404
|
success: receiptSuccessSchema,
|
|
@@ -10309,10 +10407,13 @@ var init_schemas = __esm(() => {
|
|
|
10309
10407
|
"comments.patch": {
|
|
10310
10408
|
input: objectSchema({
|
|
10311
10409
|
commentId: { type: "string" },
|
|
10312
|
-
text: { type: "string" },
|
|
10410
|
+
text: { type: "string", description: "Updated comment text." },
|
|
10313
10411
|
target: textAddressSchema,
|
|
10314
|
-
status: { enum: ["resolved"] },
|
|
10315
|
-
isInternal: {
|
|
10412
|
+
status: { enum: ["resolved"], description: "Set comment status. Use 'resolved' to mark as resolved." },
|
|
10413
|
+
isInternal: {
|
|
10414
|
+
type: "boolean",
|
|
10415
|
+
description: "When true, marks the comment as internal (hidden from external collaborators)."
|
|
10416
|
+
}
|
|
10316
10417
|
}, ["commentId"]),
|
|
10317
10418
|
output: receiptResultSchemaFor("comments.patch"),
|
|
10318
10419
|
success: receiptSuccessSchema,
|
|
@@ -10330,17 +10431,23 @@ var init_schemas = __esm(() => {
|
|
|
10330
10431
|
},
|
|
10331
10432
|
"comments.list": {
|
|
10332
10433
|
input: objectSchema({
|
|
10333
|
-
includeResolved: {
|
|
10334
|
-
|
|
10335
|
-
|
|
10434
|
+
includeResolved: {
|
|
10435
|
+
type: "boolean",
|
|
10436
|
+
description: "When true, includes resolved comments in results. Default: false."
|
|
10437
|
+
},
|
|
10438
|
+
limit: { type: "integer", description: "Maximum number of comments to return." },
|
|
10439
|
+
offset: { type: "integer", description: "Number of comments to skip for pagination." }
|
|
10336
10440
|
}),
|
|
10337
10441
|
output: commentsListResultSchema
|
|
10338
10442
|
},
|
|
10339
10443
|
"trackChanges.list": {
|
|
10340
10444
|
input: objectSchema({
|
|
10341
|
-
limit: { type: "integer" },
|
|
10342
|
-
offset: { type: "integer" },
|
|
10343
|
-
type: {
|
|
10445
|
+
limit: { type: "integer", description: "Maximum number of tracked changes to return." },
|
|
10446
|
+
offset: { type: "integer", description: "Number of tracked changes to skip for pagination." },
|
|
10447
|
+
type: {
|
|
10448
|
+
enum: ["insert", "delete", "format"],
|
|
10449
|
+
description: "Filter by change type: 'insert', 'delete', or 'format'."
|
|
10450
|
+
}
|
|
10344
10451
|
}),
|
|
10345
10452
|
output: trackChangesListResultSchema
|
|
10346
10453
|
},
|
|
@@ -10369,13 +10476,28 @@ var init_schemas = __esm(() => {
|
|
|
10369
10476
|
},
|
|
10370
10477
|
"query.match": {
|
|
10371
10478
|
input: objectSchema({
|
|
10372
|
-
select: {
|
|
10373
|
-
|
|
10374
|
-
|
|
10375
|
-
|
|
10376
|
-
|
|
10377
|
-
|
|
10378
|
-
|
|
10479
|
+
select: {
|
|
10480
|
+
description: "Search selector. Use {type:'text', pattern:'...'} for text search or {type:'node', nodeType:'paragraph'|'heading'|...} for node search.",
|
|
10481
|
+
oneOf: [textSelectorSchema, nodeSelectorSchema]
|
|
10482
|
+
},
|
|
10483
|
+
within: {
|
|
10484
|
+
...blockNodeAddressSchema,
|
|
10485
|
+
description: "Limit search scope to within a specific block: {kind:'block', nodeType:'...', nodeId:'...'}."
|
|
10486
|
+
},
|
|
10487
|
+
require: {
|
|
10488
|
+
enum: ["any", "first", "exactlyOne", "all"],
|
|
10489
|
+
description: "Match cardinality: 'any' (all matches), 'first' (only first), 'exactlyOne' (fail if != 1), 'all' (fail if 0)."
|
|
10490
|
+
},
|
|
10491
|
+
mode: {
|
|
10492
|
+
enum: ["strict", "candidates"],
|
|
10493
|
+
description: "Search mode: 'strict' (default, exact matching) or 'candidates' (returns scored potential matches)."
|
|
10494
|
+
},
|
|
10495
|
+
includeNodes: {
|
|
10496
|
+
type: "boolean",
|
|
10497
|
+
description: "When true, includes full node data in results. Default: false."
|
|
10498
|
+
},
|
|
10499
|
+
limit: { type: "integer", minimum: 1, description: "Maximum number of matches to return." },
|
|
10500
|
+
offset: { type: "integer", minimum: 0, description: "Number of matches to skip for pagination." }
|
|
10379
10501
|
}, ["select"]),
|
|
10380
10502
|
output: (() => {
|
|
10381
10503
|
const textMatchItemSchema = discoveryItemSchema({
|
|
@@ -10507,10 +10629,23 @@ var init_schemas = __esm(() => {
|
|
|
10507
10629
|
]
|
|
10508
10630
|
};
|
|
10509
10631
|
const mutationsInputSchema = objectSchema({
|
|
10510
|
-
expectedRevision: {
|
|
10511
|
-
|
|
10512
|
-
|
|
10513
|
-
|
|
10632
|
+
expectedRevision: {
|
|
10633
|
+
type: "string",
|
|
10634
|
+
description: "Document revision for optimistic concurrency. Mutation fails if document was modified since this revision."
|
|
10635
|
+
},
|
|
10636
|
+
atomic: {
|
|
10637
|
+
const: true,
|
|
10638
|
+
type: "boolean",
|
|
10639
|
+
description: "Must be true. All steps execute as one atomic transaction."
|
|
10640
|
+
},
|
|
10641
|
+
changeMode: {
|
|
10642
|
+
enum: ["direct", "tracked"],
|
|
10643
|
+
description: "Required. Use 'direct' for immediate edits or 'tracked' for suggestions. Must always be provided."
|
|
10644
|
+
},
|
|
10645
|
+
steps: {
|
|
10646
|
+
...arraySchema(mutationStepSchema),
|
|
10647
|
+
description: "Ordered array of mutation steps. Each step needs 'op' (text.rewrite, text.insert, text.delete, format.apply, or assert) and a 'where' targeting clause."
|
|
10648
|
+
}
|
|
10514
10649
|
}, ["atomic", "changeMode", "steps"]);
|
|
10515
10650
|
const documentEdgeAnchorSchema = objectSchema({
|
|
10516
10651
|
kind: { const: "document" },
|
|
@@ -39787,7 +39922,7 @@ var init_remark_gfm_z_sDF4ss_es = __esm(() => {
|
|
|
39787
39922
|
emptyOptions2 = {};
|
|
39788
39923
|
});
|
|
39789
39924
|
|
|
39790
|
-
// ../../packages/superdoc/dist/chunks/SuperConverter-
|
|
39925
|
+
// ../../packages/superdoc/dist/chunks/SuperConverter-DarcJh0X.es.js
|
|
39791
39926
|
function getExtensionConfigField(extension$1, field, context = { name: "" }) {
|
|
39792
39927
|
const fieldValue = extension$1.config[field];
|
|
39793
39928
|
if (typeof fieldValue === "function")
|
|
@@ -41516,10 +41651,16 @@ function ref2(name) {
|
|
|
41516
41651
|
}
|
|
41517
41652
|
function targetLocatorWithPayload2(payloadProperties, payloadRequired = []) {
|
|
41518
41653
|
return { oneOf: [objectSchema2({
|
|
41519
|
-
target:
|
|
41654
|
+
target: {
|
|
41655
|
+
...ref2("SelectionTarget"),
|
|
41656
|
+
description: "Selection target: {kind:'selection', start:{kind:'text', blockId, offset}, end:{kind:'text', blockId, offset}}. Use 'ref' instead when you have a search result handle."
|
|
41657
|
+
},
|
|
41520
41658
|
...payloadProperties
|
|
41521
41659
|
}, ["target", ...payloadRequired]), objectSchema2({
|
|
41522
|
-
ref: {
|
|
41660
|
+
ref: {
|
|
41661
|
+
type: "string",
|
|
41662
|
+
description: "Handle ref string from a superdoc_search result. Pass the handle.ref value directly (e.g. 'text:eyJ...'). Preferred over 'target' for inline formatting."
|
|
41663
|
+
},
|
|
41523
41664
|
...payloadProperties
|
|
41524
41665
|
}, ["ref", ...payloadRequired])] };
|
|
41525
41666
|
}
|
|
@@ -85856,7 +85997,7 @@ var isRegExp = (value) => {
|
|
|
85856
85997
|
state.kern = kernNode.attributes["w:val"];
|
|
85857
85998
|
}
|
|
85858
85999
|
}, SuperConverter;
|
|
85859
|
-
var
|
|
86000
|
+
var init_SuperConverter_DarcJh0X_es = __esm(() => {
|
|
85860
86001
|
init_rolldown_runtime_B2q5OVn9_es();
|
|
85861
86002
|
init_jszip_ChlR43oI_es();
|
|
85862
86003
|
init_xml_js_BtmJ6bNs_es();
|
|
@@ -95266,15 +95407,36 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
95266
95407
|
hint: { type: "string" }
|
|
95267
95408
|
}, ["message"]);
|
|
95268
95409
|
textSelectorSchema2 = objectSchema2({
|
|
95269
|
-
type: {
|
|
95270
|
-
|
|
95271
|
-
|
|
95272
|
-
|
|
95410
|
+
type: {
|
|
95411
|
+
const: "text",
|
|
95412
|
+
description: "Must be 'text' for text pattern search."
|
|
95413
|
+
},
|
|
95414
|
+
pattern: {
|
|
95415
|
+
type: "string",
|
|
95416
|
+
description: "Text or regex pattern to match."
|
|
95417
|
+
},
|
|
95418
|
+
mode: {
|
|
95419
|
+
enum: ["contains", "regex"],
|
|
95420
|
+
description: "Match mode: 'contains' (substring) or 'regex'."
|
|
95421
|
+
},
|
|
95422
|
+
caseSensitive: {
|
|
95423
|
+
type: "boolean",
|
|
95424
|
+
description: "Case-sensitive matching. Default: false."
|
|
95425
|
+
}
|
|
95273
95426
|
}, ["type", "pattern"]);
|
|
95274
95427
|
nodeSelectorSchema2 = objectSchema2({
|
|
95275
|
-
type: {
|
|
95276
|
-
|
|
95277
|
-
|
|
95428
|
+
type: {
|
|
95429
|
+
const: "node",
|
|
95430
|
+
description: "Must be 'node' for node type search."
|
|
95431
|
+
},
|
|
95432
|
+
nodeType: {
|
|
95433
|
+
enum: [...nodeTypeValues2],
|
|
95434
|
+
description: "Block type to match (paragraph, heading, table, listItem, etc.)."
|
|
95435
|
+
},
|
|
95436
|
+
kind: {
|
|
95437
|
+
enum: ["block", "inline"],
|
|
95438
|
+
description: "Filter: 'block' or 'inline'."
|
|
95439
|
+
}
|
|
95278
95440
|
}, ["type"]);
|
|
95279
95441
|
objectSchema2({ nodeType: { enum: [...nodeTypeValues2] } }, ["nodeType"]);
|
|
95280
95442
|
objectSchema2({
|
|
@@ -95830,22 +95992,41 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
95830
95992
|
"insideStart",
|
|
95831
95993
|
"insideEnd"
|
|
95832
95994
|
] };
|
|
95833
|
-
nestingPolicySchema2 =
|
|
95995
|
+
nestingPolicySchema2 = {
|
|
95996
|
+
...objectSchema2({ tables: { enum: ["forbid", "allow"] } }),
|
|
95997
|
+
description: "Controls nesting behavior. tables: 'allow' permits inserting tables inside other tables."
|
|
95998
|
+
};
|
|
95834
95999
|
objectSchema2({
|
|
95835
|
-
target:
|
|
95836
|
-
|
|
96000
|
+
target: {
|
|
96001
|
+
...textAddressSchema2,
|
|
96002
|
+
description: "Insertion point: {kind:'text', blockId:'...', range:{start, end}}."
|
|
96003
|
+
},
|
|
96004
|
+
value: {
|
|
96005
|
+
type: "string",
|
|
96006
|
+
description: "Text content to insert."
|
|
96007
|
+
},
|
|
95837
96008
|
type: {
|
|
95838
96009
|
type: "string",
|
|
95839
96010
|
enum: [
|
|
95840
96011
|
"text",
|
|
95841
96012
|
"markdown",
|
|
95842
96013
|
"html"
|
|
95843
|
-
]
|
|
96014
|
+
],
|
|
96015
|
+
description: "Content format: 'text' (default), 'markdown', or 'html'."
|
|
95844
96016
|
}
|
|
95845
96017
|
}, ["value"]), objectSchema2({
|
|
95846
|
-
target:
|
|
95847
|
-
|
|
95848
|
-
|
|
96018
|
+
target: {
|
|
96019
|
+
...blockNodeAddressSchema2,
|
|
96020
|
+
description: "Block address for structural insertion: {kind:'block', nodeType:'...', nodeId:'...'}."
|
|
96021
|
+
},
|
|
96022
|
+
content: {
|
|
96023
|
+
...sdFragmentSchema2,
|
|
96024
|
+
description: "Document fragment to insert (structured content)."
|
|
96025
|
+
},
|
|
96026
|
+
placement: {
|
|
96027
|
+
...placementSchema2,
|
|
96028
|
+
description: "Where to place content relative to target: 'before', 'after', 'insideStart', or 'insideEnd'."
|
|
96029
|
+
},
|
|
95849
96030
|
nestingPolicy: nestingPolicySchema2
|
|
95850
96031
|
}, ["content"]);
|
|
95851
96032
|
({ ...objectSchema2({
|
|
@@ -96528,7 +96709,10 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
96528
96709
|
}, ["modelVersion", "body"]), objectSchema2({
|
|
96529
96710
|
nodeId: { type: "string" },
|
|
96530
96711
|
nodeType: { enum: [...blockNodeTypeValues2] }
|
|
96531
|
-
}, ["nodeId"]), objectSchema2({ unflattenLists: {
|
|
96712
|
+
}, ["nodeId"]), objectSchema2({ unflattenLists: {
|
|
96713
|
+
type: "boolean",
|
|
96714
|
+
description: "When true, flattens nested list structures in output. Default: false."
|
|
96715
|
+
} }), objectSchema2({ markdown: { type: "string" } }, ["markdown"]), objectSchema2({
|
|
96532
96716
|
fragment: {},
|
|
96533
96717
|
lossy: { type: "boolean" },
|
|
96534
96718
|
diagnostics: arraySchema2(objectSchema2({
|
|
@@ -96552,15 +96736,36 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
96552
96736
|
"fragment",
|
|
96553
96737
|
"lossy",
|
|
96554
96738
|
"diagnostics"
|
|
96555
|
-
]), receiptResultSchemaFor2("clearContent"), receiptFailureResultSchemaFor2("clearContent"), sdMutationResultSchemaFor2("insert"), sdMutationFailureSchemaFor2("insert"), { ...targetLocatorWithPayload2({ text: {
|
|
96556
|
-
|
|
96557
|
-
|
|
96739
|
+
]), receiptResultSchemaFor2("clearContent"), receiptFailureResultSchemaFor2("clearContent"), sdMutationResultSchemaFor2("insert"), sdMutationFailureSchemaFor2("insert"), { ...targetLocatorWithPayload2({ text: {
|
|
96740
|
+
type: "string",
|
|
96741
|
+
description: "Replacement text content."
|
|
96742
|
+
} }, ["text"]) }, objectSchema2({
|
|
96743
|
+
target: {
|
|
96744
|
+
oneOf: [blockNodeAddressSchema2, selectionTargetSchema2],
|
|
96745
|
+
description: "Target block or selection to replace."
|
|
96746
|
+
},
|
|
96747
|
+
content: {
|
|
96748
|
+
...sdFragmentSchema2,
|
|
96749
|
+
description: "Document fragment to replace with (structured content)."
|
|
96750
|
+
},
|
|
96558
96751
|
nestingPolicy: nestingPolicySchema2
|
|
96559
96752
|
}, ["target", "content"]), objectSchema2({
|
|
96560
|
-
ref: {
|
|
96561
|
-
|
|
96753
|
+
ref: {
|
|
96754
|
+
type: "string",
|
|
96755
|
+
description: "Reference handle from a previous search result."
|
|
96756
|
+
},
|
|
96757
|
+
content: {
|
|
96758
|
+
...sdFragmentSchema2,
|
|
96759
|
+
description: "Document fragment to replace with (structured content)."
|
|
96760
|
+
},
|
|
96562
96761
|
nestingPolicy: nestingPolicySchema2
|
|
96563
|
-
}, ["ref", "content"]), sdMutationResultSchemaFor2("replace"), sdMutationFailureSchemaFor2("replace"), { ...targetLocatorWithPayload2({ behavior:
|
|
96762
|
+
}, ["ref", "content"]), sdMutationResultSchemaFor2("replace"), sdMutationFailureSchemaFor2("replace"), { ...targetLocatorWithPayload2({ behavior: {
|
|
96763
|
+
...deleteBehaviorSchema2,
|
|
96764
|
+
description: "Delete behavior: 'selection' (default) or 'exact'."
|
|
96765
|
+
} }) }, textMutationResultSchemaFor2("delete"), textMutationFailureSchemaFor2("delete"), { ...targetLocatorWithPayload2({ inline: {
|
|
96766
|
+
...buildInlineRunPatchSchema2(),
|
|
96767
|
+
description: "Inline formatting properties to apply. Set a property to apply it, use null to clear it. Example: {bold: true, italic: true} or {bold: null} to remove bold."
|
|
96768
|
+
} }, ["inline"]) }, textMutationResultSchemaFor2("format.apply"), textMutationFailureSchemaFor2("format.apply"), { ...formatInlineAliasOperationSchemas2 }, objectSchema2({
|
|
96564
96769
|
offset: {
|
|
96565
96770
|
type: "number",
|
|
96566
96771
|
minimum: 0
|
|
@@ -96673,35 +96878,45 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
96673
96878
|
target: paragraphTargetSchema2,
|
|
96674
96879
|
left: {
|
|
96675
96880
|
type: "integer",
|
|
96676
|
-
minimum: 0
|
|
96881
|
+
minimum: 0,
|
|
96882
|
+
description: "Left indentation in twips (1440 = 1 inch)."
|
|
96677
96883
|
},
|
|
96678
96884
|
right: {
|
|
96679
96885
|
type: "integer",
|
|
96680
|
-
minimum: 0
|
|
96886
|
+
minimum: 0,
|
|
96887
|
+
description: "Right indentation in twips (1440 = 1 inch)."
|
|
96681
96888
|
},
|
|
96682
96889
|
firstLine: {
|
|
96683
96890
|
type: "integer",
|
|
96684
|
-
minimum: 0
|
|
96891
|
+
minimum: 0,
|
|
96892
|
+
description: "First line indent in twips. Cannot be combined with hanging."
|
|
96685
96893
|
},
|
|
96686
96894
|
hanging: {
|
|
96687
96895
|
type: "integer",
|
|
96688
|
-
minimum: 0
|
|
96896
|
+
minimum: 0,
|
|
96897
|
+
description: "Hanging indent in twips. Cannot be combined with firstLine."
|
|
96689
96898
|
}
|
|
96690
96899
|
}, ["target"]) }, paragraphMutationResultSchemaFor2("format.paragraph.setIndentation"), paragraphMutationFailureSchemaFor2("format.paragraph.setIndentation"), objectSchema2({ target: paragraphTargetSchema2 }, ["target"]), paragraphMutationResultSchemaFor2("format.paragraph.clearIndentation"), paragraphMutationFailureSchemaFor2("format.paragraph.clearIndentation"), { ...objectSchema2({
|
|
96691
96900
|
target: paragraphTargetSchema2,
|
|
96692
96901
|
before: {
|
|
96693
96902
|
type: "integer",
|
|
96694
|
-
minimum: 0
|
|
96903
|
+
minimum: 0,
|
|
96904
|
+
description: "Space before paragraph in twips (20 twips = 1pt)."
|
|
96695
96905
|
},
|
|
96696
96906
|
after: {
|
|
96697
96907
|
type: "integer",
|
|
96698
|
-
minimum: 0
|
|
96908
|
+
minimum: 0,
|
|
96909
|
+
description: "Space after paragraph in twips (20 twips = 1pt)."
|
|
96699
96910
|
},
|
|
96700
96911
|
line: {
|
|
96701
96912
|
type: "integer",
|
|
96702
|
-
minimum: 1
|
|
96913
|
+
minimum: 1,
|
|
96914
|
+
description: "Line spacing value. Meaning depends on lineRule. Must be provided together with lineRule."
|
|
96703
96915
|
},
|
|
96704
|
-
lineRule: {
|
|
96916
|
+
lineRule: {
|
|
96917
|
+
enum: [...LINE_RULES2],
|
|
96918
|
+
description: "Line spacing rule. Required when 'line' is set."
|
|
96919
|
+
}
|
|
96705
96920
|
}, ["target"]) }, paragraphMutationResultSchemaFor2("format.paragraph.setSpacing"), paragraphMutationFailureSchemaFor2("format.paragraph.setSpacing"), objectSchema2({ target: paragraphTargetSchema2 }, ["target"]), paragraphMutationResultSchemaFor2("format.paragraph.clearSpacing"), paragraphMutationFailureSchemaFor2("format.paragraph.clearSpacing"), { ...objectSchema2({
|
|
96706
96921
|
target: paragraphTargetSchema2,
|
|
96707
96922
|
keepNext: { type: "boolean" },
|
|
@@ -96849,34 +97064,49 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
96849
97064
|
failure: stylesFailureSchema
|
|
96850
97065
|
};
|
|
96851
97066
|
})(), objectSchema2({
|
|
96852
|
-
at: {
|
|
96853
|
-
|
|
96854
|
-
|
|
96855
|
-
|
|
96856
|
-
kind: { const: "
|
|
96857
|
-
|
|
96858
|
-
|
|
96859
|
-
|
|
96860
|
-
kind
|
|
96861
|
-
|
|
96862
|
-
|
|
96863
|
-
|
|
96864
|
-
|
|
97067
|
+
at: {
|
|
97068
|
+
description: "Position: {kind:'documentEnd'} to append, {kind:'documentStart'} to prepend, or {kind:'before'|'after', target:{kind:'block', nodeType:'...', nodeId:'...'}} for relative placement.",
|
|
97069
|
+
oneOf: [
|
|
97070
|
+
objectSchema2({ kind: { const: "documentStart" } }, ["kind"]),
|
|
97071
|
+
objectSchema2({ kind: { const: "documentEnd" } }, ["kind"]),
|
|
97072
|
+
objectSchema2({
|
|
97073
|
+
kind: { const: "before" },
|
|
97074
|
+
target: blockNodeAddressSchema2
|
|
97075
|
+
}, ["kind", "target"]),
|
|
97076
|
+
objectSchema2({
|
|
97077
|
+
kind: { const: "after" },
|
|
97078
|
+
target: blockNodeAddressSchema2
|
|
97079
|
+
}, ["kind", "target"])
|
|
97080
|
+
]
|
|
97081
|
+
},
|
|
97082
|
+
text: {
|
|
97083
|
+
type: "string",
|
|
97084
|
+
description: "Paragraph text content."
|
|
97085
|
+
}
|
|
96865
97086
|
}), createParagraphResultSchemaFor2("create.paragraph"), createParagraphFailureSchemaFor2("create.paragraph"), objectSchema2({
|
|
96866
|
-
level:
|
|
96867
|
-
|
|
96868
|
-
|
|
96869
|
-
|
|
96870
|
-
|
|
96871
|
-
|
|
96872
|
-
|
|
96873
|
-
|
|
96874
|
-
|
|
96875
|
-
|
|
96876
|
-
|
|
96877
|
-
|
|
96878
|
-
|
|
96879
|
-
|
|
97087
|
+
level: {
|
|
97088
|
+
...headingLevelSchema2,
|
|
97089
|
+
description: "Heading level (1-6)."
|
|
97090
|
+
},
|
|
97091
|
+
at: {
|
|
97092
|
+
description: "Position: {kind:'documentEnd'} to append, {kind:'documentStart'} to prepend, or {kind:'before'|'after', target:{kind:'block', nodeType:'...', nodeId:'...'}} for relative placement.",
|
|
97093
|
+
oneOf: [
|
|
97094
|
+
objectSchema2({ kind: { const: "documentStart" } }, ["kind"]),
|
|
97095
|
+
objectSchema2({ kind: { const: "documentEnd" } }, ["kind"]),
|
|
97096
|
+
objectSchema2({
|
|
97097
|
+
kind: { const: "before" },
|
|
97098
|
+
target: blockNodeAddressSchema2
|
|
97099
|
+
}, ["kind", "target"]),
|
|
97100
|
+
objectSchema2({
|
|
97101
|
+
kind: { const: "after" },
|
|
97102
|
+
target: blockNodeAddressSchema2
|
|
97103
|
+
}, ["kind", "target"])
|
|
97104
|
+
]
|
|
97105
|
+
},
|
|
97106
|
+
text: {
|
|
97107
|
+
type: "string",
|
|
97108
|
+
description: "Heading text content."
|
|
97109
|
+
}
|
|
96880
97110
|
}, ["level"]), createHeadingResultSchemaFor2("create.heading"), createHeadingFailureSchemaFor2("create.heading"), objectSchema2({
|
|
96881
97111
|
at: { oneOf: [
|
|
96882
97112
|
objectSchema2({ kind: { const: "documentStart" } }, ["kind"]),
|
|
@@ -97037,10 +97267,19 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
97037
97267
|
level: { type: "integer" },
|
|
97038
97268
|
ordinal: { type: "integer" }
|
|
97039
97269
|
}), objectSchema2({ address: listItemAddressSchema2 }, ["address"]), objectSchema2({
|
|
97040
|
-
target:
|
|
97041
|
-
|
|
97042
|
-
|
|
97043
|
-
|
|
97270
|
+
target: {
|
|
97271
|
+
...listItemAddressSchema2,
|
|
97272
|
+
description: "The target list item. For 'insert': the item to insert relative to. For 'create' with mode 'fromParagraphs': use nodeType 'paragraph' instead. Format: {kind:'block', nodeType:'listItem', nodeId:'<id>'}."
|
|
97273
|
+
},
|
|
97274
|
+
position: {
|
|
97275
|
+
...listInsertPositionSchema2,
|
|
97276
|
+
description: "Required. Insert position relative to target: 'before' or 'after'."
|
|
97277
|
+
},
|
|
97278
|
+
text: {
|
|
97279
|
+
type: "string",
|
|
97280
|
+
description: "Text content for the new list item."
|
|
97281
|
+
}
|
|
97282
|
+
}, ["target", "position"]), listsInsertResultSchemaFor2("lists.insert"), listsFailureSchemaFor2("lists.insert"), { ...ref2("BlockAddress") }, { ...ref2("BlockAddressOrRange") }, { ...listKindSchema2 }, objectSchema2({
|
|
97044
97283
|
version: { const: 1 },
|
|
97045
97284
|
levels: arraySchema2(objectSchema2({
|
|
97046
97285
|
level: {
|
|
@@ -97244,7 +97483,10 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
97244
97483
|
}, ["target", "preset"]), listsMutateItemResultSchemaFor2("lists.applyPreset"), listsFailureSchemaFor2("lists.applyPreset"), objectSchema2({
|
|
97245
97484
|
target: listItemAddressSchema2,
|
|
97246
97485
|
kind: { enum: ["ordered", "bullet"] },
|
|
97247
|
-
continuity: {
|
|
97486
|
+
continuity: {
|
|
97487
|
+
enum: ["preserve", "none"],
|
|
97488
|
+
description: "Numbering continuity: 'preserve' keeps numbering; 'none' restarts."
|
|
97489
|
+
}
|
|
97248
97490
|
}, ["target", "kind"]), listsMutateItemResultSchemaFor2("lists.setType"), listsFailureSchemaFor2("lists.setType"), (() => {
|
|
97249
97491
|
const successSchema = objectSchema2({
|
|
97250
97492
|
success: { const: true },
|
|
@@ -97540,45 +97782,98 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
97540
97782
|
"level",
|
|
97541
97783
|
"layout"
|
|
97542
97784
|
]), listsMutateItemResultSchemaFor2("lists.setLevelLayout"), listsFailureSchemaFor2("lists.setLevelLayout"), objectSchema2({
|
|
97543
|
-
text: {
|
|
97544
|
-
|
|
97545
|
-
|
|
97785
|
+
text: {
|
|
97786
|
+
type: "string",
|
|
97787
|
+
description: "Comment text content."
|
|
97788
|
+
},
|
|
97789
|
+
target: {
|
|
97790
|
+
...textAddressSchema2,
|
|
97791
|
+
description: "Text range to anchor the comment: {kind:'text', blockId:'...', range:{start:N, end:N}}."
|
|
97792
|
+
},
|
|
97793
|
+
parentCommentId: {
|
|
97794
|
+
type: "string",
|
|
97795
|
+
description: "Parent comment ID for creating a threaded reply."
|
|
97796
|
+
}
|
|
97546
97797
|
}, ["text"]), receiptResultSchemaFor2("comments.create"), receiptFailureResultSchemaFor2("comments.create"), objectSchema2({
|
|
97547
97798
|
commentId: { type: "string" },
|
|
97548
|
-
text: {
|
|
97799
|
+
text: {
|
|
97800
|
+
type: "string",
|
|
97801
|
+
description: "Updated comment text."
|
|
97802
|
+
},
|
|
97549
97803
|
target: textAddressSchema2,
|
|
97550
|
-
status: {
|
|
97551
|
-
|
|
97804
|
+
status: {
|
|
97805
|
+
enum: ["resolved"],
|
|
97806
|
+
description: "Set comment status. Use 'resolved' to mark as resolved."
|
|
97807
|
+
},
|
|
97808
|
+
isInternal: {
|
|
97809
|
+
type: "boolean",
|
|
97810
|
+
description: "When true, marks the comment as internal (hidden from external collaborators)."
|
|
97811
|
+
}
|
|
97552
97812
|
}, ["commentId"]), receiptResultSchemaFor2("comments.patch"), receiptFailureResultSchemaFor2("comments.patch"), objectSchema2({ commentId: { type: "string" } }, ["commentId"]), receiptResultSchemaFor2("comments.delete"), receiptFailureResultSchemaFor2("comments.delete"), objectSchema2({ commentId: { type: "string" } }, ["commentId"]), objectSchema2({
|
|
97553
|
-
includeResolved: {
|
|
97554
|
-
|
|
97555
|
-
|
|
97813
|
+
includeResolved: {
|
|
97814
|
+
type: "boolean",
|
|
97815
|
+
description: "When true, includes resolved comments in results. Default: false."
|
|
97816
|
+
},
|
|
97817
|
+
limit: {
|
|
97818
|
+
type: "integer",
|
|
97819
|
+
description: "Maximum number of comments to return."
|
|
97820
|
+
},
|
|
97821
|
+
offset: {
|
|
97822
|
+
type: "integer",
|
|
97823
|
+
description: "Number of comments to skip for pagination."
|
|
97824
|
+
}
|
|
97556
97825
|
}), objectSchema2({
|
|
97557
|
-
limit: {
|
|
97558
|
-
|
|
97559
|
-
|
|
97560
|
-
|
|
97561
|
-
|
|
97562
|
-
"
|
|
97563
|
-
|
|
97826
|
+
limit: {
|
|
97827
|
+
type: "integer",
|
|
97828
|
+
description: "Maximum number of tracked changes to return."
|
|
97829
|
+
},
|
|
97830
|
+
offset: {
|
|
97831
|
+
type: "integer",
|
|
97832
|
+
description: "Number of tracked changes to skip for pagination."
|
|
97833
|
+
},
|
|
97834
|
+
type: {
|
|
97835
|
+
enum: [
|
|
97836
|
+
"insert",
|
|
97837
|
+
"delete",
|
|
97838
|
+
"format"
|
|
97839
|
+
],
|
|
97840
|
+
description: "Filter by change type: 'insert', 'delete', or 'format'."
|
|
97841
|
+
}
|
|
97564
97842
|
}), objectSchema2({ id: { type: "string" } }, ["id"]), objectSchema2({ id: { type: "string" } }, ["id"]), objectSchema2({ scope: { enum: ["all"] } }, ["scope"]), receiptResultSchemaFor2("trackChanges.decide"), receiptFailureResultSchemaFor2("trackChanges.decide"), objectSchema2({
|
|
97565
|
-
select: {
|
|
97566
|
-
|
|
97567
|
-
|
|
97568
|
-
|
|
97569
|
-
|
|
97570
|
-
|
|
97571
|
-
"
|
|
97572
|
-
|
|
97573
|
-
|
|
97574
|
-
|
|
97843
|
+
select: {
|
|
97844
|
+
description: "Search selector. Use {type:'text', pattern:'...'} for text search or {type:'node', nodeType:'paragraph'|'heading'|...} for node search.",
|
|
97845
|
+
oneOf: [textSelectorSchema2, nodeSelectorSchema2]
|
|
97846
|
+
},
|
|
97847
|
+
within: {
|
|
97848
|
+
...blockNodeAddressSchema2,
|
|
97849
|
+
description: "Limit search scope to within a specific block: {kind:'block', nodeType:'...', nodeId:'...'}."
|
|
97850
|
+
},
|
|
97851
|
+
require: {
|
|
97852
|
+
enum: [
|
|
97853
|
+
"any",
|
|
97854
|
+
"first",
|
|
97855
|
+
"exactlyOne",
|
|
97856
|
+
"all"
|
|
97857
|
+
],
|
|
97858
|
+
description: "Match cardinality: 'any' (all matches), 'first' (only first), 'exactlyOne' (fail if != 1), 'all' (fail if 0)."
|
|
97859
|
+
},
|
|
97860
|
+
mode: {
|
|
97861
|
+
enum: ["strict", "candidates"],
|
|
97862
|
+
description: "Search mode: 'strict' (default, exact matching) or 'candidates' (returns scored potential matches)."
|
|
97863
|
+
},
|
|
97864
|
+
includeNodes: {
|
|
97865
|
+
type: "boolean",
|
|
97866
|
+
description: "When true, includes full node data in results. Default: false."
|
|
97867
|
+
},
|
|
97575
97868
|
limit: {
|
|
97576
97869
|
type: "integer",
|
|
97577
|
-
minimum: 1
|
|
97870
|
+
minimum: 1,
|
|
97871
|
+
description: "Maximum number of matches to return."
|
|
97578
97872
|
},
|
|
97579
97873
|
offset: {
|
|
97580
97874
|
type: "integer",
|
|
97581
|
-
minimum: 0
|
|
97875
|
+
minimum: 0,
|
|
97876
|
+
description: "Number of matches to skip for pagination."
|
|
97582
97877
|
}
|
|
97583
97878
|
}, ["select"]), (() => {
|
|
97584
97879
|
const textMatchItemSchema = discoveryItemSchema2({
|
|
@@ -97721,91 +98016,101 @@ var init_SuperConverter_BsjuwDIO_es = __esm(() => {
|
|
|
97721
98016
|
setMarks: setMarksSchema
|
|
97722
98017
|
}, ["mode"]) }, ["inline"]);
|
|
97723
98018
|
const mutationsInputSchema = objectSchema2({
|
|
97724
|
-
expectedRevision: {
|
|
98019
|
+
expectedRevision: {
|
|
98020
|
+
type: "string",
|
|
98021
|
+
description: "Document revision for optimistic concurrency. Mutation fails if document was modified since this revision."
|
|
98022
|
+
},
|
|
97725
98023
|
atomic: {
|
|
97726
98024
|
const: true,
|
|
97727
|
-
type: "boolean"
|
|
98025
|
+
type: "boolean",
|
|
98026
|
+
description: "Must be true. All steps execute as one atomic transaction."
|
|
97728
98027
|
},
|
|
97729
|
-
changeMode: {
|
|
97730
|
-
|
|
97731
|
-
|
|
97732
|
-
|
|
97733
|
-
|
|
97734
|
-
|
|
97735
|
-
|
|
97736
|
-
|
|
97737
|
-
|
|
97738
|
-
|
|
97739
|
-
|
|
97740
|
-
|
|
97741
|
-
|
|
97742
|
-
|
|
97743
|
-
|
|
97744
|
-
|
|
97745
|
-
|
|
97746
|
-
|
|
97747
|
-
|
|
97748
|
-
|
|
97749
|
-
|
|
97750
|
-
|
|
97751
|
-
|
|
97752
|
-
|
|
97753
|
-
|
|
97754
|
-
|
|
97755
|
-
|
|
97756
|
-
|
|
97757
|
-
|
|
97758
|
-
|
|
97759
|
-
|
|
97760
|
-
|
|
97761
|
-
|
|
97762
|
-
|
|
97763
|
-
|
|
97764
|
-
|
|
97765
|
-
|
|
97766
|
-
|
|
97767
|
-
|
|
97768
|
-
|
|
97769
|
-
|
|
97770
|
-
|
|
97771
|
-
|
|
97772
|
-
|
|
97773
|
-
|
|
97774
|
-
|
|
97775
|
-
|
|
97776
|
-
|
|
97777
|
-
|
|
97778
|
-
|
|
97779
|
-
|
|
97780
|
-
|
|
97781
|
-
|
|
97782
|
-
|
|
97783
|
-
|
|
97784
|
-
|
|
97785
|
-
|
|
97786
|
-
|
|
97787
|
-
|
|
97788
|
-
|
|
97789
|
-
|
|
97790
|
-
|
|
97791
|
-
|
|
97792
|
-
|
|
97793
|
-
|
|
97794
|
-
|
|
97795
|
-
|
|
97796
|
-
|
|
97797
|
-
|
|
97798
|
-
|
|
97799
|
-
|
|
97800
|
-
|
|
97801
|
-
|
|
97802
|
-
|
|
97803
|
-
|
|
97804
|
-
|
|
97805
|
-
|
|
97806
|
-
|
|
97807
|
-
|
|
97808
|
-
|
|
98028
|
+
changeMode: {
|
|
98029
|
+
enum: ["direct", "tracked"],
|
|
98030
|
+
description: "Required. Use 'direct' for immediate edits or 'tracked' for suggestions. Must always be provided."
|
|
98031
|
+
},
|
|
98032
|
+
steps: {
|
|
98033
|
+
...arraySchema2({ oneOf: [
|
|
98034
|
+
objectSchema2({
|
|
98035
|
+
id: { type: "string" },
|
|
98036
|
+
op: {
|
|
98037
|
+
const: "text.rewrite",
|
|
98038
|
+
type: "string"
|
|
98039
|
+
},
|
|
98040
|
+
where: stepWhereSchema,
|
|
98041
|
+
args: objectSchema2({
|
|
98042
|
+
replacement: replacementPayloadSchema,
|
|
98043
|
+
style: stylePolicySchema
|
|
98044
|
+
}, ["replacement"])
|
|
98045
|
+
}, [
|
|
98046
|
+
"id",
|
|
98047
|
+
"op",
|
|
98048
|
+
"where",
|
|
98049
|
+
"args"
|
|
98050
|
+
]),
|
|
98051
|
+
objectSchema2({
|
|
98052
|
+
id: { type: "string" },
|
|
98053
|
+
op: {
|
|
98054
|
+
const: "text.insert",
|
|
98055
|
+
type: "string"
|
|
98056
|
+
},
|
|
98057
|
+
where: insertWhereSchema,
|
|
98058
|
+
args: objectSchema2({
|
|
98059
|
+
position: { enum: ["before", "after"] },
|
|
98060
|
+
content: objectSchema2({ text: { type: "string" } }, ["text"]),
|
|
98061
|
+
style: insertStylePolicySchema
|
|
98062
|
+
}, ["position", "content"])
|
|
98063
|
+
}, [
|
|
98064
|
+
"id",
|
|
98065
|
+
"op",
|
|
98066
|
+
"where",
|
|
98067
|
+
"args"
|
|
98068
|
+
]),
|
|
98069
|
+
objectSchema2({
|
|
98070
|
+
id: { type: "string" },
|
|
98071
|
+
op: {
|
|
98072
|
+
const: "text.delete",
|
|
98073
|
+
type: "string"
|
|
98074
|
+
},
|
|
98075
|
+
where: stepWhereSchema,
|
|
98076
|
+
args: objectSchema2({ behavior: deleteBehaviorSchema2 })
|
|
98077
|
+
}, [
|
|
98078
|
+
"id",
|
|
98079
|
+
"op",
|
|
98080
|
+
"where",
|
|
98081
|
+
"args"
|
|
98082
|
+
]),
|
|
98083
|
+
objectSchema2({
|
|
98084
|
+
id: { type: "string" },
|
|
98085
|
+
op: {
|
|
98086
|
+
const: "format.apply",
|
|
98087
|
+
type: "string"
|
|
98088
|
+
},
|
|
98089
|
+
where: stepWhereSchema,
|
|
98090
|
+
args: objectSchema2({ inline: buildInlineRunPatchSchema2() }, ["inline"])
|
|
98091
|
+
}, [
|
|
98092
|
+
"id",
|
|
98093
|
+
"op",
|
|
98094
|
+
"where",
|
|
98095
|
+
"args"
|
|
98096
|
+
]),
|
|
98097
|
+
objectSchema2({
|
|
98098
|
+
id: { type: "string" },
|
|
98099
|
+
op: {
|
|
98100
|
+
const: "assert",
|
|
98101
|
+
type: "string"
|
|
98102
|
+
},
|
|
98103
|
+
where: assertWhereSchema,
|
|
98104
|
+
args: objectSchema2({ expectCount: { type: "number" } }, ["expectCount"])
|
|
98105
|
+
}, [
|
|
98106
|
+
"id",
|
|
98107
|
+
"op",
|
|
98108
|
+
"where",
|
|
98109
|
+
"args"
|
|
98110
|
+
])
|
|
98111
|
+
] }),
|
|
98112
|
+
description: "Ordered array of mutation steps. Each step needs 'op' (text.rewrite, text.insert, text.delete, format.apply, or assert) and a 'where' targeting clause."
|
|
98113
|
+
}
|
|
97809
98114
|
}, [
|
|
97810
98115
|
"atomic",
|
|
97811
98116
|
"changeMode",
|
|
@@ -148508,7 +148813,7 @@ var init_remark_gfm_CjV8kaUy_es = __esm(() => {
|
|
|
148508
148813
|
init_remark_gfm_z_sDF4ss_es();
|
|
148509
148814
|
});
|
|
148510
148815
|
|
|
148511
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
148816
|
+
// ../../packages/superdoc/dist/chunks/src-Bf4fUvSx.es.js
|
|
148512
148817
|
function deleteProps(obj, propOrProps) {
|
|
148513
148818
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
148514
148819
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -228674,9 +228979,9 @@ var Node$13 = class Node$14 {
|
|
|
228674
228979
|
return false;
|
|
228675
228980
|
return Boolean(checker(attrs));
|
|
228676
228981
|
}, SuperToolbar, ICONS, TEXTS, tableActionsOptions;
|
|
228677
|
-
var
|
|
228982
|
+
var init_src_Bf4fUvSx_es = __esm(() => {
|
|
228678
228983
|
init_rolldown_runtime_B2q5OVn9_es();
|
|
228679
|
-
|
|
228984
|
+
init_SuperConverter_DarcJh0X_es();
|
|
228680
228985
|
init_jszip_ChlR43oI_es();
|
|
228681
228986
|
init_uuid_qzgm05fK_es();
|
|
228682
228987
|
init_constants_ep1_Gwqi_es();
|
|
@@ -261979,8 +262284,8 @@ var init_zipper_DqXT7uTa_es = __esm(() => {
|
|
|
261979
262284
|
|
|
261980
262285
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
261981
262286
|
var init_super_editor_es = __esm(() => {
|
|
261982
|
-
|
|
261983
|
-
|
|
262287
|
+
init_src_Bf4fUvSx_es();
|
|
262288
|
+
init_SuperConverter_DarcJh0X_es();
|
|
261984
262289
|
init_jszip_ChlR43oI_es();
|
|
261985
262290
|
init_xml_js_BtmJ6bNs_es();
|
|
261986
262291
|
init_constants_ep1_Gwqi_es();
|
|
@@ -318451,40 +318756,43 @@ function isSimpleType2(schema, $defs) {
|
|
|
318451
318756
|
}
|
|
318452
318757
|
function jsonSchemaToTypeSpec(schema, $defs) {
|
|
318453
318758
|
schema = resolveRef(schema, $defs);
|
|
318454
|
-
|
|
318455
|
-
|
|
318456
|
-
if (schema
|
|
318457
|
-
|
|
318759
|
+
const desc = typeof schema.description === "string" ? schema.description : undefined;
|
|
318760
|
+
let result2;
|
|
318761
|
+
if ("const" in schema) {
|
|
318762
|
+
result2 = { const: schema.const };
|
|
318763
|
+
} else if (schema.oneOf) {
|
|
318764
|
+
result2 = {
|
|
318458
318765
|
oneOf: schema.oneOf.map((s2) => jsonSchemaToTypeSpec(s2, $defs))
|
|
318459
318766
|
};
|
|
318460
|
-
}
|
|
318461
|
-
|
|
318462
|
-
return {
|
|
318767
|
+
} else if (schema.enum && Array.isArray(schema.enum)) {
|
|
318768
|
+
result2 = {
|
|
318463
318769
|
oneOf: schema.enum.map((v) => ({ const: v }))
|
|
318464
318770
|
};
|
|
318465
|
-
}
|
|
318466
|
-
|
|
318467
|
-
|
|
318468
|
-
|
|
318469
|
-
|
|
318470
|
-
|
|
318471
|
-
|
|
318472
|
-
if (schema.type === "array") {
|
|
318771
|
+
} else if (schema.type === "string") {
|
|
318772
|
+
result2 = { type: "string" };
|
|
318773
|
+
} else if (schema.type === "number" || schema.type === "integer") {
|
|
318774
|
+
result2 = { type: "number" };
|
|
318775
|
+
} else if (schema.type === "boolean") {
|
|
318776
|
+
result2 = { type: "boolean" };
|
|
318777
|
+
} else if (schema.type === "array") {
|
|
318473
318778
|
const items2 = schema.items ?? {};
|
|
318474
|
-
|
|
318475
|
-
}
|
|
318476
|
-
if (schema.type === "object") {
|
|
318779
|
+
result2 = { type: "array", items: jsonSchemaToTypeSpec(items2, $defs) };
|
|
318780
|
+
} else if (schema.type === "object") {
|
|
318477
318781
|
const properties = {};
|
|
318478
318782
|
for (const [key2, propSchema] of Object.entries(schema.properties ?? {})) {
|
|
318479
318783
|
properties[key2] = jsonSchemaToTypeSpec(propSchema, $defs);
|
|
318480
318784
|
}
|
|
318481
|
-
|
|
318785
|
+
result2 = { type: "object", properties };
|
|
318482
318786
|
if (schema.required && Array.isArray(schema.required)) {
|
|
318483
318787
|
result2.required = schema.required;
|
|
318484
318788
|
}
|
|
318485
|
-
|
|
318789
|
+
} else {
|
|
318790
|
+
result2 = { type: "json" };
|
|
318486
318791
|
}
|
|
318487
|
-
|
|
318792
|
+
if (desc) {
|
|
318793
|
+
result2.description = desc;
|
|
318794
|
+
}
|
|
318795
|
+
return result2;
|
|
318488
318796
|
}
|
|
318489
318797
|
function deriveParamsFromInputSchema(inputSchema, $defs) {
|
|
318490
318798
|
const params4 = [];
|
|
@@ -318512,13 +318820,20 @@ function deriveParamsFromInputSchema(inputSchema, $defs) {
|
|
|
318512
318820
|
const paramType = schemaToParamType(propSchema, $defs);
|
|
318513
318821
|
const isComplex = !isSimpleType2(propSchema, $defs) && paramType === "json";
|
|
318514
318822
|
const flagBase = camelToKebab4(name2);
|
|
318823
|
+
const isRequired = required.has(name2);
|
|
318515
318824
|
const param = {
|
|
318516
318825
|
name: name2,
|
|
318517
318826
|
kind: isComplex ? "jsonFlag" : "flag",
|
|
318518
318827
|
flag: isComplex ? `${flagBase}-json` : flagBase,
|
|
318519
318828
|
type: paramType,
|
|
318520
|
-
required:
|
|
318829
|
+
required: isRequired
|
|
318521
318830
|
};
|
|
318831
|
+
const rawDesc = rawPropSchema.description;
|
|
318832
|
+
const resolvedDesc = propSchema.description;
|
|
318833
|
+
const desc = typeof rawDesc === "string" ? rawDesc : typeof resolvedDesc === "string" ? resolvedDesc : undefined;
|
|
318834
|
+
if (desc) {
|
|
318835
|
+
param.description = desc;
|
|
318836
|
+
}
|
|
318522
318837
|
if (AGENT_HIDDEN_PARAM_NAMES.has(name2)) {
|
|
318523
318838
|
param.agentVisible = false;
|
|
318524
318839
|
}
|
|
@@ -318572,9 +318887,9 @@ function buildDocBackedMetadata() {
|
|
|
318572
318887
|
const envelope = envelopeParams(docApiId);
|
|
318573
318888
|
const seenNames = new Set;
|
|
318574
318889
|
const mergedParams = [];
|
|
318575
|
-
for (const
|
|
318576
|
-
seenNames.add(
|
|
318577
|
-
mergedParams.push(
|
|
318890
|
+
for (const envelopeParam of envelope) {
|
|
318891
|
+
seenNames.add(envelopeParam.name);
|
|
318892
|
+
mergedParams.push(envelopeParam);
|
|
318578
318893
|
}
|
|
318579
318894
|
const overrides = PARAM_FLAG_OVERRIDES[cliOpId];
|
|
318580
318895
|
const schemaOverrides = PARAM_SCHEMA_OVERRIDES[cliOpId];
|
|
@@ -318663,30 +318978,49 @@ function deriveOptionSpecs(operationId, params4) {
|
|
|
318663
318978
|
var DOC_PARAM, SESSION_PARAM, OUT_PARAM, FORCE_PARAM, DRY_RUN_PARAM, CHANGE_MODE_PARAM, EXPECTED_REVISION_PARAM, USER_NAME_PARAM, USER_EMAIL_PARAM, AGENT_HIDDEN_PARAM_NAMES, OPERATION_CONSTRAINTS, PARAM_FLAG_OVERRIDES, PARAM_SCHEMA_OVERRIDES, PARAM_EXCLUSIONS, TEXT_TARGET_FLAT_PARAMS, INSERT_FLAT_PARAMS, LIST_TARGET_FLAT_PARAMS, FORMAT_OPERATION_IDS, EXTRA_CLI_PARAMS, CLI_ONLY_METADATA, CLI_OPERATION_METADATA, OPTION_FLAG_ALIASES, CLI_OPERATION_OPTION_SPECS;
|
|
318664
318979
|
var init_operation_params = __esm(() => {
|
|
318665
318980
|
init_src();
|
|
318666
|
-
init_operation_set();
|
|
318667
318981
|
init_commands();
|
|
318668
|
-
|
|
318669
|
-
|
|
318982
|
+
init_operation_set();
|
|
318983
|
+
DOC_PARAM = {
|
|
318984
|
+
name: "doc",
|
|
318985
|
+
kind: "doc",
|
|
318986
|
+
type: "string",
|
|
318987
|
+
description: "Document path. Optional when a session is already open."
|
|
318988
|
+
};
|
|
318989
|
+
SESSION_PARAM = {
|
|
318990
|
+
name: "sessionId",
|
|
318991
|
+
kind: "flag",
|
|
318992
|
+
flag: "session",
|
|
318993
|
+
type: "string",
|
|
318994
|
+
description: "Session ID for multi-session workflows. Optional when only one session is open."
|
|
318995
|
+
};
|
|
318670
318996
|
OUT_PARAM = { name: "out", kind: "flag", type: "string", agentVisible: false };
|
|
318671
|
-
FORCE_PARAM = {
|
|
318997
|
+
FORCE_PARAM = {
|
|
318998
|
+
name: "force",
|
|
318999
|
+
kind: "flag",
|
|
319000
|
+
type: "boolean",
|
|
319001
|
+
description: "Bypass confirmation checks."
|
|
319002
|
+
};
|
|
318672
319003
|
DRY_RUN_PARAM = {
|
|
318673
319004
|
name: "dryRun",
|
|
318674
319005
|
kind: "flag",
|
|
318675
319006
|
flag: "dry-run",
|
|
318676
|
-
type: "boolean"
|
|
319007
|
+
type: "boolean",
|
|
319008
|
+
description: "Preview the result without applying changes."
|
|
318677
319009
|
};
|
|
318678
319010
|
CHANGE_MODE_PARAM = {
|
|
318679
319011
|
name: "changeMode",
|
|
318680
319012
|
kind: "flag",
|
|
318681
319013
|
flag: "change-mode",
|
|
318682
319014
|
type: "string",
|
|
318683
|
-
schema: { enum: ["direct", "tracked"] }
|
|
319015
|
+
schema: { enum: ["direct", "tracked"] },
|
|
319016
|
+
description: 'Edit mode: "direct" applies changes immediately, "tracked" records as suggestions.'
|
|
318684
319017
|
};
|
|
318685
319018
|
EXPECTED_REVISION_PARAM = {
|
|
318686
319019
|
name: "expectedRevision",
|
|
318687
319020
|
kind: "flag",
|
|
318688
319021
|
flag: "expected-revision",
|
|
318689
|
-
type: "number"
|
|
319022
|
+
type: "number",
|
|
319023
|
+
agentVisible: false
|
|
318690
319024
|
};
|
|
318691
319025
|
USER_NAME_PARAM = {
|
|
318692
319026
|
name: "userName",
|
|
@@ -318742,94 +319076,325 @@ var init_operation_params = __esm(() => {
|
|
|
318742
319076
|
"doc.find": new Set(["select"])
|
|
318743
319077
|
};
|
|
318744
319078
|
TEXT_TARGET_FLAT_PARAMS = [
|
|
318745
|
-
{ name: "blockId", kind: "flag", flag: "block-id", type: "string" },
|
|
318746
|
-
{ name: "start", kind: "flag", type: "number" },
|
|
318747
|
-
{ name: "end", kind: "flag", type: "number" }
|
|
319079
|
+
{ name: "blockId", kind: "flag", flag: "block-id", type: "string", description: "Block ID of the target paragraph." },
|
|
319080
|
+
{ name: "start", kind: "flag", type: "number", description: "Start offset within the block (character index)." },
|
|
319081
|
+
{ name: "end", kind: "flag", type: "number", description: "End offset within the block (character index)." }
|
|
318748
319082
|
];
|
|
318749
319083
|
INSERT_FLAT_PARAMS = [
|
|
318750
|
-
{ name: "blockId", kind: "flag", flag: "block-id", type: "string" },
|
|
318751
|
-
{ name: "offset", kind: "flag", type: "number" }
|
|
319084
|
+
{ name: "blockId", kind: "flag", flag: "block-id", type: "string", description: "Block ID of the target paragraph." },
|
|
319085
|
+
{ name: "offset", kind: "flag", type: "number", description: "Character offset within the block for insertion." }
|
|
318752
319086
|
];
|
|
318753
319087
|
LIST_TARGET_FLAT_PARAMS = [
|
|
318754
|
-
{ name: "nodeId", kind: "flag", flag: "node-id", type: "string" }
|
|
319088
|
+
{ name: "nodeId", kind: "flag", flag: "node-id", type: "string", description: "Node ID of the target list item." }
|
|
318755
319089
|
];
|
|
318756
319090
|
FORMAT_OPERATION_IDS = CLI_DOC_OPERATIONS.filter((operationId) => operationId.startsWith("format."));
|
|
318757
319091
|
EXTRA_CLI_PARAMS = {
|
|
318758
319092
|
"doc.find": [
|
|
318759
|
-
{
|
|
318760
|
-
|
|
318761
|
-
|
|
318762
|
-
|
|
318763
|
-
|
|
318764
|
-
|
|
318765
|
-
{
|
|
318766
|
-
|
|
319093
|
+
{
|
|
319094
|
+
name: "type",
|
|
319095
|
+
kind: "flag",
|
|
319096
|
+
type: "string",
|
|
319097
|
+
description: "Selector type: 'text' for text search or 'node' for node type search."
|
|
319098
|
+
},
|
|
319099
|
+
{
|
|
319100
|
+
name: "nodeType",
|
|
319101
|
+
kind: "flag",
|
|
319102
|
+
flag: "node-type",
|
|
319103
|
+
type: "string",
|
|
319104
|
+
description: "Node type to match (paragraph, heading, table, listItem, etc.)."
|
|
319105
|
+
},
|
|
319106
|
+
{ name: "kind", kind: "flag", type: "string", description: "Filter: 'block' or 'inline'." },
|
|
319107
|
+
{ name: "pattern", kind: "flag", type: "string", description: "Text or regex pattern to match." },
|
|
319108
|
+
{ name: "mode", kind: "flag", type: "string", description: "Match mode: 'contains' (substring) or 'regex'." },
|
|
319109
|
+
{
|
|
319110
|
+
name: "caseSensitive",
|
|
319111
|
+
kind: "flag",
|
|
319112
|
+
flag: "case-sensitive",
|
|
319113
|
+
type: "boolean",
|
|
319114
|
+
description: "Case-sensitive matching. Default: false."
|
|
319115
|
+
},
|
|
319116
|
+
{
|
|
319117
|
+
name: "select",
|
|
319118
|
+
kind: "jsonFlag",
|
|
319119
|
+
flag: "select-json",
|
|
319120
|
+
type: "json",
|
|
319121
|
+
description: "Search selector as JSON: {type:'text', pattern:'...'} or {type:'node', nodeType:'...'}."
|
|
319122
|
+
},
|
|
319123
|
+
{ name: "query", kind: "jsonFlag", flag: "query-json", type: "json", description: "Query filter as JSON object." }
|
|
318767
319124
|
],
|
|
318768
319125
|
"doc.lists.list": [{ name: "query", kind: "jsonFlag", flag: "query-json", type: "json" }],
|
|
318769
|
-
"doc.getNode": [
|
|
319126
|
+
"doc.getNode": [
|
|
319127
|
+
{
|
|
319128
|
+
name: "address",
|
|
319129
|
+
kind: "jsonFlag",
|
|
319130
|
+
flag: "address-json",
|
|
319131
|
+
type: "json",
|
|
319132
|
+
description: "Node address to retrieve (block or inline address object)."
|
|
319133
|
+
}
|
|
319134
|
+
],
|
|
318770
319135
|
"doc.insert": [...INSERT_FLAT_PARAMS],
|
|
318771
319136
|
"doc.replace": [...TEXT_TARGET_FLAT_PARAMS],
|
|
318772
319137
|
"doc.delete": [...TEXT_TARGET_FLAT_PARAMS],
|
|
318773
319138
|
"doc.styles.apply": [
|
|
318774
|
-
{
|
|
318775
|
-
|
|
319139
|
+
{
|
|
319140
|
+
name: "target",
|
|
319141
|
+
kind: "jsonFlag",
|
|
319142
|
+
flag: "target-json",
|
|
319143
|
+
type: "json",
|
|
319144
|
+
description: "Text address or block address to apply styles to."
|
|
319145
|
+
},
|
|
319146
|
+
{
|
|
319147
|
+
name: "patch",
|
|
319148
|
+
kind: "jsonFlag",
|
|
319149
|
+
flag: "patch-json",
|
|
319150
|
+
type: "json",
|
|
319151
|
+
description: "Style patch object with run and/or paragraph properties to apply."
|
|
319152
|
+
}
|
|
318776
319153
|
],
|
|
318777
319154
|
"doc.comments.create": [...TEXT_TARGET_FLAT_PARAMS],
|
|
318778
319155
|
"doc.comments.patch": [...TEXT_TARGET_FLAT_PARAMS],
|
|
318779
319156
|
"doc.lists.insert": [
|
|
318780
|
-
{
|
|
319157
|
+
{
|
|
319158
|
+
name: "input",
|
|
319159
|
+
kind: "jsonFlag",
|
|
319160
|
+
flag: "input-json",
|
|
319161
|
+
type: "json",
|
|
319162
|
+
description: "Operation input as JSON object."
|
|
319163
|
+
},
|
|
318781
319164
|
...LIST_TARGET_FLAT_PARAMS
|
|
318782
319165
|
],
|
|
318783
319166
|
"doc.lists.indent": [
|
|
318784
|
-
{
|
|
319167
|
+
{
|
|
319168
|
+
name: "input",
|
|
319169
|
+
kind: "jsonFlag",
|
|
319170
|
+
flag: "input-json",
|
|
319171
|
+
type: "json",
|
|
319172
|
+
description: "Operation input as JSON object."
|
|
319173
|
+
},
|
|
318785
319174
|
...LIST_TARGET_FLAT_PARAMS
|
|
318786
319175
|
],
|
|
318787
319176
|
"doc.lists.outdent": [
|
|
318788
|
-
{
|
|
319177
|
+
{
|
|
319178
|
+
name: "input",
|
|
319179
|
+
kind: "jsonFlag",
|
|
319180
|
+
flag: "input-json",
|
|
319181
|
+
type: "json",
|
|
319182
|
+
description: "Operation input as JSON object."
|
|
319183
|
+
},
|
|
318789
319184
|
...LIST_TARGET_FLAT_PARAMS
|
|
318790
319185
|
],
|
|
318791
|
-
"doc.lists.create": [
|
|
318792
|
-
|
|
319186
|
+
"doc.lists.create": [
|
|
319187
|
+
{
|
|
319188
|
+
name: "input",
|
|
319189
|
+
kind: "jsonFlag",
|
|
319190
|
+
flag: "input-json",
|
|
319191
|
+
type: "json",
|
|
319192
|
+
description: "Operation input as JSON object."
|
|
319193
|
+
}
|
|
319194
|
+
],
|
|
319195
|
+
"doc.lists.attach": [
|
|
319196
|
+
{
|
|
319197
|
+
name: "input",
|
|
319198
|
+
kind: "jsonFlag",
|
|
319199
|
+
flag: "input-json",
|
|
319200
|
+
type: "json",
|
|
319201
|
+
description: "Operation input as JSON object."
|
|
319202
|
+
}
|
|
319203
|
+
],
|
|
318793
319204
|
"doc.lists.detach": [
|
|
318794
|
-
{
|
|
319205
|
+
{
|
|
319206
|
+
name: "input",
|
|
319207
|
+
kind: "jsonFlag",
|
|
319208
|
+
flag: "input-json",
|
|
319209
|
+
type: "json",
|
|
319210
|
+
description: "Operation input as JSON object."
|
|
319211
|
+
},
|
|
318795
319212
|
...LIST_TARGET_FLAT_PARAMS
|
|
318796
319213
|
],
|
|
318797
|
-
"doc.lists.join": [
|
|
318798
|
-
|
|
319214
|
+
"doc.lists.join": [
|
|
319215
|
+
{
|
|
319216
|
+
name: "input",
|
|
319217
|
+
kind: "jsonFlag",
|
|
319218
|
+
flag: "input-json",
|
|
319219
|
+
type: "json",
|
|
319220
|
+
description: "Operation input as JSON object."
|
|
319221
|
+
}
|
|
319222
|
+
],
|
|
319223
|
+
"doc.lists.canJoin": [
|
|
319224
|
+
{
|
|
319225
|
+
name: "input",
|
|
319226
|
+
kind: "jsonFlag",
|
|
319227
|
+
flag: "input-json",
|
|
319228
|
+
type: "json",
|
|
319229
|
+
description: "Operation input as JSON object."
|
|
319230
|
+
}
|
|
319231
|
+
],
|
|
318799
319232
|
"doc.lists.separate": [
|
|
318800
|
-
{
|
|
319233
|
+
{
|
|
319234
|
+
name: "input",
|
|
319235
|
+
kind: "jsonFlag",
|
|
319236
|
+
flag: "input-json",
|
|
319237
|
+
type: "json",
|
|
319238
|
+
description: "Operation input as JSON object."
|
|
319239
|
+
},
|
|
318801
319240
|
...LIST_TARGET_FLAT_PARAMS
|
|
318802
319241
|
],
|
|
318803
319242
|
"doc.lists.setLevel": [
|
|
318804
|
-
{
|
|
319243
|
+
{
|
|
319244
|
+
name: "input",
|
|
319245
|
+
kind: "jsonFlag",
|
|
319246
|
+
flag: "input-json",
|
|
319247
|
+
type: "json",
|
|
319248
|
+
description: "Operation input as JSON object."
|
|
319249
|
+
},
|
|
318805
319250
|
...LIST_TARGET_FLAT_PARAMS
|
|
318806
319251
|
],
|
|
318807
319252
|
"doc.lists.setValue": [
|
|
318808
|
-
{
|
|
319253
|
+
{
|
|
319254
|
+
name: "input",
|
|
319255
|
+
kind: "jsonFlag",
|
|
319256
|
+
flag: "input-json",
|
|
319257
|
+
type: "json",
|
|
319258
|
+
description: "Operation input as JSON object."
|
|
319259
|
+
},
|
|
318809
319260
|
...LIST_TARGET_FLAT_PARAMS
|
|
318810
319261
|
],
|
|
318811
319262
|
"doc.lists.continuePrevious": [
|
|
318812
|
-
{
|
|
319263
|
+
{
|
|
319264
|
+
name: "input",
|
|
319265
|
+
kind: "jsonFlag",
|
|
319266
|
+
flag: "input-json",
|
|
319267
|
+
type: "json",
|
|
319268
|
+
description: "Operation input as JSON object."
|
|
319269
|
+
},
|
|
318813
319270
|
...LIST_TARGET_FLAT_PARAMS
|
|
318814
319271
|
],
|
|
318815
319272
|
"doc.lists.canContinuePrevious": [
|
|
318816
|
-
{
|
|
319273
|
+
{
|
|
319274
|
+
name: "input",
|
|
319275
|
+
kind: "jsonFlag",
|
|
319276
|
+
flag: "input-json",
|
|
319277
|
+
type: "json",
|
|
319278
|
+
description: "Operation input as JSON object."
|
|
319279
|
+
},
|
|
318817
319280
|
...LIST_TARGET_FLAT_PARAMS
|
|
318818
319281
|
],
|
|
318819
|
-
"doc.lists.setLevelRestart": [
|
|
318820
|
-
|
|
318821
|
-
|
|
318822
|
-
|
|
318823
|
-
|
|
318824
|
-
|
|
318825
|
-
|
|
318826
|
-
|
|
318827
|
-
|
|
318828
|
-
"doc.lists.
|
|
318829
|
-
|
|
318830
|
-
|
|
319282
|
+
"doc.lists.setLevelRestart": [
|
|
319283
|
+
{
|
|
319284
|
+
name: "input",
|
|
319285
|
+
kind: "jsonFlag",
|
|
319286
|
+
flag: "input-json",
|
|
319287
|
+
type: "json",
|
|
319288
|
+
description: "Operation input as JSON object."
|
|
319289
|
+
}
|
|
319290
|
+
],
|
|
319291
|
+
"doc.lists.applyTemplate": [
|
|
319292
|
+
{
|
|
319293
|
+
name: "input",
|
|
319294
|
+
kind: "jsonFlag",
|
|
319295
|
+
flag: "input-json",
|
|
319296
|
+
type: "json",
|
|
319297
|
+
description: "Operation input as JSON object."
|
|
319298
|
+
}
|
|
319299
|
+
],
|
|
319300
|
+
"doc.lists.applyPreset": [
|
|
319301
|
+
{
|
|
319302
|
+
name: "input",
|
|
319303
|
+
kind: "jsonFlag",
|
|
319304
|
+
flag: "input-json",
|
|
319305
|
+
type: "json",
|
|
319306
|
+
description: "Operation input as JSON object."
|
|
319307
|
+
}
|
|
319308
|
+
],
|
|
319309
|
+
"doc.lists.captureTemplate": [
|
|
319310
|
+
{
|
|
319311
|
+
name: "input",
|
|
319312
|
+
kind: "jsonFlag",
|
|
319313
|
+
flag: "input-json",
|
|
319314
|
+
type: "json",
|
|
319315
|
+
description: "Operation input as JSON object."
|
|
319316
|
+
}
|
|
319317
|
+
],
|
|
319318
|
+
"doc.lists.setLevelNumbering": [
|
|
319319
|
+
{
|
|
319320
|
+
name: "input",
|
|
319321
|
+
kind: "jsonFlag",
|
|
319322
|
+
flag: "input-json",
|
|
319323
|
+
type: "json",
|
|
319324
|
+
description: "Operation input as JSON object."
|
|
319325
|
+
}
|
|
319326
|
+
],
|
|
319327
|
+
"doc.lists.setLevelBullet": [
|
|
319328
|
+
{
|
|
319329
|
+
name: "input",
|
|
319330
|
+
kind: "jsonFlag",
|
|
319331
|
+
flag: "input-json",
|
|
319332
|
+
type: "json",
|
|
319333
|
+
description: "Operation input as JSON object."
|
|
319334
|
+
}
|
|
319335
|
+
],
|
|
319336
|
+
"doc.lists.setLevelPictureBullet": [
|
|
319337
|
+
{
|
|
319338
|
+
name: "input",
|
|
319339
|
+
kind: "jsonFlag",
|
|
319340
|
+
flag: "input-json",
|
|
319341
|
+
type: "json",
|
|
319342
|
+
description: "Operation input as JSON object."
|
|
319343
|
+
}
|
|
319344
|
+
],
|
|
319345
|
+
"doc.lists.setLevelAlignment": [
|
|
319346
|
+
{
|
|
319347
|
+
name: "input",
|
|
319348
|
+
kind: "jsonFlag",
|
|
319349
|
+
flag: "input-json",
|
|
319350
|
+
type: "json",
|
|
319351
|
+
description: "Operation input as JSON object."
|
|
319352
|
+
}
|
|
319353
|
+
],
|
|
319354
|
+
"doc.lists.setLevelIndents": [
|
|
319355
|
+
{
|
|
319356
|
+
name: "input",
|
|
319357
|
+
kind: "jsonFlag",
|
|
319358
|
+
flag: "input-json",
|
|
319359
|
+
type: "json",
|
|
319360
|
+
description: "Operation input as JSON object."
|
|
319361
|
+
}
|
|
319362
|
+
],
|
|
319363
|
+
"doc.lists.setLevelTrailingCharacter": [
|
|
319364
|
+
{
|
|
319365
|
+
name: "input",
|
|
319366
|
+
kind: "jsonFlag",
|
|
319367
|
+
flag: "input-json",
|
|
319368
|
+
type: "json",
|
|
319369
|
+
description: "Operation input as JSON object."
|
|
319370
|
+
}
|
|
319371
|
+
],
|
|
319372
|
+
"doc.lists.setLevelMarkerFont": [
|
|
319373
|
+
{
|
|
319374
|
+
name: "input",
|
|
319375
|
+
kind: "jsonFlag",
|
|
319376
|
+
flag: "input-json",
|
|
319377
|
+
type: "json",
|
|
319378
|
+
description: "Operation input as JSON object."
|
|
319379
|
+
}
|
|
319380
|
+
],
|
|
319381
|
+
"doc.lists.clearLevelOverrides": [
|
|
319382
|
+
{
|
|
319383
|
+
name: "input",
|
|
319384
|
+
kind: "jsonFlag",
|
|
319385
|
+
flag: "input-json",
|
|
319386
|
+
type: "json",
|
|
319387
|
+
description: "Operation input as JSON object."
|
|
319388
|
+
}
|
|
319389
|
+
],
|
|
318831
319390
|
"doc.lists.convertToText": [
|
|
318832
|
-
{
|
|
319391
|
+
{
|
|
319392
|
+
name: "input",
|
|
319393
|
+
kind: "jsonFlag",
|
|
319394
|
+
flag: "input-json",
|
|
319395
|
+
type: "json",
|
|
319396
|
+
description: "Operation input as JSON object."
|
|
319397
|
+
},
|
|
318833
319398
|
...LIST_TARGET_FLAT_PARAMS
|
|
318834
319399
|
],
|
|
318835
319400
|
"doc.blocks.list": [
|
|
@@ -318838,15 +319403,49 @@ var init_operation_params = __esm(() => {
|
|
|
318838
319403
|
{ name: "nodeTypes", kind: "jsonFlag", flag: "node-types-json", type: "json" }
|
|
318839
319404
|
],
|
|
318840
319405
|
"doc.blocks.delete": [
|
|
318841
|
-
{
|
|
318842
|
-
|
|
319406
|
+
{
|
|
319407
|
+
name: "nodeType",
|
|
319408
|
+
kind: "flag",
|
|
319409
|
+
flag: "node-type",
|
|
319410
|
+
type: "string",
|
|
319411
|
+
description: "Block type of the node to delete."
|
|
319412
|
+
},
|
|
319413
|
+
{ name: "nodeId", kind: "flag", flag: "node-id", type: "string", description: "Node ID of the block to delete." }
|
|
318843
319414
|
],
|
|
318844
319415
|
"doc.blocks.deleteRange": [
|
|
318845
|
-
{
|
|
318846
|
-
|
|
319416
|
+
{
|
|
319417
|
+
name: "start",
|
|
319418
|
+
kind: "jsonFlag",
|
|
319419
|
+
flag: "start-json",
|
|
319420
|
+
type: "json",
|
|
319421
|
+
description: "Block address of the first block in the range to delete."
|
|
319422
|
+
},
|
|
319423
|
+
{
|
|
319424
|
+
name: "end",
|
|
319425
|
+
kind: "jsonFlag",
|
|
319426
|
+
flag: "end-json",
|
|
319427
|
+
type: "json",
|
|
319428
|
+
description: "Block address of the last block in the range to delete."
|
|
319429
|
+
}
|
|
319430
|
+
],
|
|
319431
|
+
"doc.create.paragraph": [
|
|
319432
|
+
{
|
|
319433
|
+
name: "input",
|
|
319434
|
+
kind: "jsonFlag",
|
|
319435
|
+
flag: "input-json",
|
|
319436
|
+
type: "json",
|
|
319437
|
+
description: "Full paragraph input as JSON (alternative to individual text/at params)."
|
|
319438
|
+
}
|
|
318847
319439
|
],
|
|
318848
|
-
"doc.create.
|
|
318849
|
-
|
|
319440
|
+
"doc.create.heading": [
|
|
319441
|
+
{
|
|
319442
|
+
name: "input",
|
|
319443
|
+
kind: "jsonFlag",
|
|
319444
|
+
flag: "input-json",
|
|
319445
|
+
type: "json",
|
|
319446
|
+
description: "Full heading input as JSON (alternative to individual text/level/at params)."
|
|
319447
|
+
}
|
|
319448
|
+
]
|
|
318850
319449
|
};
|
|
318851
319450
|
for (const operationId of FORMAT_OPERATION_IDS) {
|
|
318852
319451
|
EXTRA_CLI_PARAMS[`doc.${operationId}`] = [...TEXT_TARGET_FLAT_PARAMS];
|