@superdoc-dev/sdk 1.16.0-next.33 → 1.16.0-next.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client.cjs +26 -0
- package/dist/generated/client.d.ts +73203 -19798
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/client.js +26 -0
- package/dist/generated/contract.cjs +132089 -37254
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +132740 -37722
- package/dist/generated/intent-dispatch.generated.cjs +1 -0
- package/dist/generated/intent-dispatch.generated.d.ts.map +1 -1
- package/dist/generated/intent-dispatch.generated.js +1 -0
- package/package.json +6 -6
- package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/__pycache__/intent_dispatch_generated.cpython-312.pyc +0 -0
- package/tools/catalog.json +2817 -216
- package/tools/intent_dispatch_generated.py +2 -0
- package/tools/tools-policy.json +1 -1
- package/tools/tools.anthropic.json +2726 -131
- package/tools/tools.generic.json +2728 -132
- package/tools/tools.openai.json +2726 -131
- package/tools/tools.vercel.json +2726 -131
package/dist/generated/client.js
CHANGED
|
@@ -42,6 +42,9 @@ export function createDocApi(runtime) {
|
|
|
42
42
|
list: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.list"], params, options), "result"),
|
|
43
43
|
delete: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.delete"], params, options), "result"),
|
|
44
44
|
deleteRange: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.deleteRange"], params, options), "result"),
|
|
45
|
+
split: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.split"], params, options), "result"),
|
|
46
|
+
merge: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.merge"], params, options), "result"),
|
|
47
|
+
move: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.move"], params, options), "result"),
|
|
45
48
|
},
|
|
46
49
|
format: {
|
|
47
50
|
apply: (params = {}, options) => runtime.invoke(CONTRACT.operations["doc.format.apply"], params, options),
|
|
@@ -106,6 +109,7 @@ export function createDocApi(runtime) {
|
|
|
106
109
|
clearBorder: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.clearBorder"], params, options), "result"),
|
|
107
110
|
setShading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.setShading"], params, options), "result"),
|
|
108
111
|
clearShading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.clearShading"], params, options), "result"),
|
|
112
|
+
setMarkRunProps: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.setMarkRunProps"], params, options), "result"),
|
|
109
113
|
setDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.setDirection"], params, options), "result"),
|
|
110
114
|
clearDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.clearDirection"], params, options), "result"),
|
|
111
115
|
},
|
|
@@ -189,6 +193,11 @@ export function createDocApi(runtime) {
|
|
|
189
193
|
setLevelText: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevelText"], params, options), "result"),
|
|
190
194
|
setLevelStart: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevelStart"], params, options), "result"),
|
|
191
195
|
setLevelLayout: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevelLayout"], params, options), "result"),
|
|
196
|
+
getState: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.getState"], params, options), "result"),
|
|
197
|
+
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.apply"], params, options), "result"),
|
|
198
|
+
continue: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.continue"], params, options), "result"),
|
|
199
|
+
restart: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.restart"], params, options), "result"),
|
|
200
|
+
remove: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.remove"], params, options), "result"),
|
|
192
201
|
},
|
|
193
202
|
comments: {
|
|
194
203
|
create: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.comments.create"], params, options), "receipt"),
|
|
@@ -215,6 +224,9 @@ export function createDocApi(runtime) {
|
|
|
215
224
|
preview: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
|
|
216
225
|
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
|
|
217
226
|
},
|
|
227
|
+
plan: {
|
|
228
|
+
execute: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.plan.execute"], params, options), "result"),
|
|
229
|
+
},
|
|
218
230
|
capabilities: {
|
|
219
231
|
get: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.capabilities.get"], params, options), "capabilities"),
|
|
220
232
|
},
|
|
@@ -228,6 +240,7 @@ export function createDocApi(runtime) {
|
|
|
228
240
|
setLayout: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.setLayout"], params, options), "result"),
|
|
229
241
|
insertRow: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.insertRow"], params, options), "result"),
|
|
230
242
|
deleteRow: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.deleteRow"], params, options), "result"),
|
|
243
|
+
moveRow: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.moveRow"], params, options), "result"),
|
|
231
244
|
setRowHeight: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.setRowHeight"], params, options), "result"),
|
|
232
245
|
distributeRows: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.distributeRows"], params, options), "result"),
|
|
233
246
|
setRowOptions: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.setRowOptions"], params, options), "result"),
|
|
@@ -567,6 +580,9 @@ export function createBoundDocApi(runtime) {
|
|
|
567
580
|
list: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.list"], params, options), "result"),
|
|
568
581
|
delete: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.delete"], params, options), "result"),
|
|
569
582
|
deleteRange: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.deleteRange"], params, options), "result"),
|
|
583
|
+
split: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.split"], params, options), "result"),
|
|
584
|
+
merge: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.merge"], params, options), "result"),
|
|
585
|
+
move: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.blocks.move"], params, options), "result"),
|
|
570
586
|
},
|
|
571
587
|
format: {
|
|
572
588
|
apply: (params = {}, options) => runtime.invoke(CONTRACT.operations["doc.format.apply"], params, options),
|
|
@@ -631,6 +647,7 @@ export function createBoundDocApi(runtime) {
|
|
|
631
647
|
clearBorder: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.clearBorder"], params, options), "result"),
|
|
632
648
|
setShading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.setShading"], params, options), "result"),
|
|
633
649
|
clearShading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.clearShading"], params, options), "result"),
|
|
650
|
+
setMarkRunProps: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.setMarkRunProps"], params, options), "result"),
|
|
634
651
|
setDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.setDirection"], params, options), "result"),
|
|
635
652
|
clearDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.format.paragraph.clearDirection"], params, options), "result"),
|
|
636
653
|
},
|
|
@@ -714,6 +731,11 @@ export function createBoundDocApi(runtime) {
|
|
|
714
731
|
setLevelText: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevelText"], params, options), "result"),
|
|
715
732
|
setLevelStart: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevelStart"], params, options), "result"),
|
|
716
733
|
setLevelLayout: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevelLayout"], params, options), "result"),
|
|
734
|
+
getState: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.getState"], params, options), "result"),
|
|
735
|
+
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.apply"], params, options), "result"),
|
|
736
|
+
continue: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.continue"], params, options), "result"),
|
|
737
|
+
restart: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.restart"], params, options), "result"),
|
|
738
|
+
remove: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.remove"], params, options), "result"),
|
|
717
739
|
},
|
|
718
740
|
comments: {
|
|
719
741
|
create: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.comments.create"], params, options), "receipt"),
|
|
@@ -740,6 +762,9 @@ export function createBoundDocApi(runtime) {
|
|
|
740
762
|
preview: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
|
|
741
763
|
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
|
|
742
764
|
},
|
|
765
|
+
plan: {
|
|
766
|
+
execute: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.plan.execute"], params, options), "result"),
|
|
767
|
+
},
|
|
743
768
|
capabilities: {
|
|
744
769
|
get: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.capabilities.get"], params, options), "capabilities"),
|
|
745
770
|
},
|
|
@@ -753,6 +778,7 @@ export function createBoundDocApi(runtime) {
|
|
|
753
778
|
setLayout: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.setLayout"], params, options), "result"),
|
|
754
779
|
insertRow: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.insertRow"], params, options), "result"),
|
|
755
780
|
deleteRow: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.deleteRow"], params, options), "result"),
|
|
781
|
+
moveRow: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.moveRow"], params, options), "result"),
|
|
756
782
|
setRowHeight: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.setRowHeight"], params, options), "result"),
|
|
757
783
|
distributeRows: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.distributeRows"], params, options), "result"),
|
|
758
784
|
setRowOptions: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.tables.setRowOptions"], params, options), "result"),
|