@superdoc-dev/sdk 1.8.0-next.5 → 1.8.0-next.7
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 +4 -0
- package/dist/generated/client.d.ts +97 -0
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/client.js +4 -0
- package/dist/generated/contract.cjs +875 -226
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +875 -226
- 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 +85 -4
- 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 +47 -4
- package/tools/tools.generic.json +53 -5
- package/tools/tools.openai.json +47 -4
- package/tools/tools.vercel.json +47 -4
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"),
|
|
@@ -656,6 +658,8 @@ export function createBoundDocApi(runtime) {
|
|
|
656
658
|
join: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.join"], params, options), "result"),
|
|
657
659
|
canJoin: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.canJoin"], params, options), "result"),
|
|
658
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),
|
|
659
663
|
setLevel: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setLevel"], params, options), "result"),
|
|
660
664
|
setValue: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.setValue"], params, options), "result"),
|
|
661
665
|
continuePrevious: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.lists.continuePrevious"], params, options), "result"),
|