@superdoc-dev/sdk 1.8.0-next.3 → 1.8.0-next.31
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 +10 -0
- package/dist/generated/client.d.ts +1019 -57
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/client.js +10 -0
- package/dist/generated/contract.cjs +2872 -123
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +2875 -123
- package/dist/generated/intent-dispatch.generated.cjs +5 -0
- package/dist/generated/intent-dispatch.generated.d.ts.map +1 -1
- package/dist/generated/intent-dispatch.generated.js +5 -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 +303 -27
- package/tools/intent_dispatch_generated.py +10 -0
- package/tools/prompt-templates/system-prompt-core.md +88 -0
- package/tools/system-prompt-mcp.md +88 -0
- package/tools/system-prompt.md +88 -0
- package/tools/tools-policy.json +1 -1
- package/tools/tools.anthropic.json +265 -27
- package/tools/tools.generic.json +271 -28
- package/tools/tools.openai.json +265 -27
- package/tools/tools.vercel.json +265 -27
package/dist/generated/client.js
CHANGED
|
@@ -157,6 +157,8 @@ export function createDocApi(runtime) {
|
|
|
157
157
|
join: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.join"], params, options), "result"),
|
|
158
158
|
canJoin: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.canJoin"], params, options), "result"),
|
|
159
159
|
separate: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.separate"], params, options), "result"),
|
|
160
|
+
merge: (params, options) => runtime.invoke(CONTRACT.operations["doc.lists.merge"], params, options),
|
|
161
|
+
split: (params, options) => runtime.invoke(CONTRACT.operations["doc.lists.split"], params, options),
|
|
160
162
|
setLevel: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevel"], params, options), "result"),
|
|
161
163
|
setValue: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setValue"], params, options), "result"),
|
|
162
164
|
continuePrevious: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.continuePrevious"], params, options), "result"),
|
|
@@ -201,6 +203,9 @@ export function createDocApi(runtime) {
|
|
|
201
203
|
ranges: {
|
|
202
204
|
resolve: (params, options) => runtime.invoke(CONTRACT.operations["doc.ranges.resolve"], params, options),
|
|
203
205
|
},
|
|
206
|
+
selection: {
|
|
207
|
+
current: (params = {}, options) => runtime.invoke(CONTRACT.operations["doc.selection.current"], params, options),
|
|
208
|
+
},
|
|
204
209
|
mutations: {
|
|
205
210
|
preview: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
|
|
206
211
|
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
|
|
@@ -653,6 +658,8 @@ export function createBoundDocApi(runtime) {
|
|
|
653
658
|
join: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.join"], params, options), "result"),
|
|
654
659
|
canJoin: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.canJoin"], params, options), "result"),
|
|
655
660
|
separate: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.separate"], params, options), "result"),
|
|
661
|
+
merge: (params, options) => runtime.invoke(CONTRACT.operations["doc.lists.merge"], params, options),
|
|
662
|
+
split: (params, options) => runtime.invoke(CONTRACT.operations["doc.lists.split"], params, options),
|
|
656
663
|
setLevel: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevel"], params, options), "result"),
|
|
657
664
|
setValue: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setValue"], params, options), "result"),
|
|
658
665
|
continuePrevious: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.continuePrevious"], params, options), "result"),
|
|
@@ -697,6 +704,9 @@ export function createBoundDocApi(runtime) {
|
|
|
697
704
|
ranges: {
|
|
698
705
|
resolve: (params, options) => runtime.invoke(CONTRACT.operations["doc.ranges.resolve"], params, options),
|
|
699
706
|
},
|
|
707
|
+
selection: {
|
|
708
|
+
current: (params = {}, options) => runtime.invoke(CONTRACT.operations["doc.selection.current"], params, options),
|
|
709
|
+
},
|
|
700
710
|
mutations: {
|
|
701
711
|
preview: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
|
|
702
712
|
apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
|