@superdoc-dev/sdk 1.16.0-next.5 → 1.16.0-next.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client.cjs +8 -0
- package/dist/generated/client.d.ts +55931 -4682
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/client.js +8 -0
- package/dist/generated/contract.cjs +118331 -28612
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +118458 -28556
- 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 +2575 -130
- package/tools/tools-policy.json +1 -1
- package/tools/tools.anthropic.json +2570 -111
- package/tools/tools.generic.json +2570 -111
- package/tools/tools.openai.json +2570 -111
- package/tools/tools.vercel.json +2570 -111
|
@@ -111,6 +111,7 @@ function createDocApi(runtime) {
|
|
|
111
111
|
clearShading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.clearShading"], params, options), "result"),
|
|
112
112
|
setDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.setDirection"], params, options), "result"),
|
|
113
113
|
clearDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.clearDirection"], params, options), "result"),
|
|
114
|
+
setNumbering: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.setNumbering"], params, options), "result"),
|
|
114
115
|
},
|
|
115
116
|
},
|
|
116
117
|
styles: {
|
|
@@ -218,6 +219,9 @@ function createDocApi(runtime) {
|
|
|
218
219
|
preview: async (params, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
|
|
219
220
|
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
|
|
220
221
|
},
|
|
222
|
+
plan: {
|
|
223
|
+
execute: async (params, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.plan.execute"], params, options), "result"),
|
|
224
|
+
},
|
|
221
225
|
capabilities: {
|
|
222
226
|
get: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.capabilities.get"], params, options), "capabilities"),
|
|
223
227
|
},
|
|
@@ -636,6 +640,7 @@ function createBoundDocApi(runtime) {
|
|
|
636
640
|
clearShading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.clearShading"], params, options), "result"),
|
|
637
641
|
setDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.setDirection"], params, options), "result"),
|
|
638
642
|
clearDirection: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.clearDirection"], params, options), "result"),
|
|
643
|
+
setNumbering: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.format.paragraph.setNumbering"], params, options), "result"),
|
|
639
644
|
},
|
|
640
645
|
},
|
|
641
646
|
styles: {
|
|
@@ -743,6 +748,9 @@ function createBoundDocApi(runtime) {
|
|
|
743
748
|
preview: async (params, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
|
|
744
749
|
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
|
|
745
750
|
},
|
|
751
|
+
plan: {
|
|
752
|
+
execute: async (params, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.plan.execute"], params, options), "result"),
|
|
753
|
+
},
|
|
746
754
|
capabilities: {
|
|
747
755
|
get: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(contract.CONTRACT.operations["doc.capabilities.get"], params, options), "capabilities"),
|
|
748
756
|
},
|